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

48816 рядки
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: 739/665,
  2261. bottom: 39/778
  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: 734/653,
  2271. bottom: 13/747
  2272. }
  2273. },
  2274. sitting: {
  2275. height: math.unit(2.95, "feet"),
  2276. weight: math.unit(100, "kg"),
  2277. name: "Sitting",
  2278. image: {
  2279. source: "./media/characters/okuri/sitting.svg",
  2280. extra: 370/318,
  2281. bottom: 99/469
  2282. }
  2283. },
  2284. },
  2285. [
  2286. {
  2287. name: "Smallest",
  2288. height: math.unit(5 + 2/12, "feet")
  2289. },
  2290. {
  2291. name: "Smaller",
  2292. height: math.unit(300, "feet")
  2293. },
  2294. {
  2295. name: "Small",
  2296. height: math.unit(1000, "feet")
  2297. },
  2298. {
  2299. name: "Macro",
  2300. height: math.unit(1, "mile")
  2301. },
  2302. {
  2303. name: "Mega Macro (Small)",
  2304. height: math.unit(20, "km")
  2305. },
  2306. {
  2307. name: "Mega Macro (Large)",
  2308. height: math.unit(600, "km")
  2309. },
  2310. {
  2311. name: "Giga Macro",
  2312. height: math.unit(10000, "km")
  2313. },
  2314. {
  2315. name: "Normal",
  2316. height: math.unit(577560, "km"),
  2317. default: true
  2318. },
  2319. {
  2320. name: "Large",
  2321. height: math.unit(4, "galaxies")
  2322. },
  2323. {
  2324. name: "Largest",
  2325. height: math.unit(15, "multiverses")
  2326. },
  2327. ]
  2328. ))
  2329. characterMakers.push(() => makeCharacter(
  2330. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2331. {
  2332. front: {
  2333. height: math.unit(7, "feet"),
  2334. weight: math.unit(100, "kg"),
  2335. name: "Front",
  2336. image: {
  2337. source: "./media/characters/manny/front.svg",
  2338. extra: 1,
  2339. bottom: 0.06
  2340. }
  2341. },
  2342. back: {
  2343. height: math.unit(7, "feet"),
  2344. weight: math.unit(100, "kg"),
  2345. name: "Back",
  2346. image: {
  2347. source: "./media/characters/manny/back.svg",
  2348. extra: 1,
  2349. bottom: 0.014
  2350. }
  2351. },
  2352. },
  2353. [
  2354. {
  2355. name: "Normal",
  2356. height: math.unit(7, "feet"),
  2357. },
  2358. {
  2359. name: "Macro",
  2360. height: math.unit(78, "feet"),
  2361. default: true
  2362. },
  2363. {
  2364. name: "Macro+",
  2365. height: math.unit(300, "meters")
  2366. },
  2367. {
  2368. name: "Macro++",
  2369. height: math.unit(2400, "meters")
  2370. },
  2371. {
  2372. name: "Megamacro",
  2373. height: math.unit(5167, "meters")
  2374. },
  2375. {
  2376. name: "Gigamacro",
  2377. height: math.unit(41769, "miles")
  2378. },
  2379. ]
  2380. ))
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2383. {
  2384. front: {
  2385. height: math.unit(7, "feet"),
  2386. weight: math.unit(100, "kg"),
  2387. name: "Front",
  2388. image: {
  2389. source: "./media/characters/adake/front-1.svg"
  2390. }
  2391. },
  2392. frontAlt: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(100, "kg"),
  2395. name: "Front (Alt)",
  2396. image: {
  2397. source: "./media/characters/adake/front-2.svg",
  2398. extra: 1,
  2399. bottom: 0.01
  2400. }
  2401. },
  2402. back: {
  2403. height: math.unit(7, "feet"),
  2404. weight: math.unit(100, "kg"),
  2405. name: "Back",
  2406. image: {
  2407. source: "./media/characters/adake/back.svg",
  2408. }
  2409. },
  2410. kneel: {
  2411. height: math.unit(5.385, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Kneeling",
  2414. image: {
  2415. source: "./media/characters/adake/kneel.svg",
  2416. bottom: 0.052
  2417. }
  2418. },
  2419. },
  2420. [
  2421. {
  2422. name: "Normal",
  2423. height: math.unit(7, "feet"),
  2424. },
  2425. {
  2426. name: "Macro",
  2427. height: math.unit(78, "feet"),
  2428. default: true
  2429. },
  2430. {
  2431. name: "Macro+",
  2432. height: math.unit(300, "meters")
  2433. },
  2434. {
  2435. name: "Macro++",
  2436. height: math.unit(2400, "meters")
  2437. },
  2438. {
  2439. name: "Megamacro",
  2440. height: math.unit(5167, "meters")
  2441. },
  2442. {
  2443. name: "Gigamacro",
  2444. height: math.unit(41769, "miles")
  2445. },
  2446. ]
  2447. ))
  2448. characterMakers.push(() => makeCharacter(
  2449. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2450. {
  2451. front: {
  2452. height: math.unit(1.65, "meters"),
  2453. weight: math.unit(50, "kg"),
  2454. name: "Front",
  2455. image: {
  2456. source: "./media/characters/elijah/front.svg",
  2457. extra: 858 / 830,
  2458. bottom: 95.5 / 953.8559
  2459. }
  2460. },
  2461. back: {
  2462. height: math.unit(1.65, "meters"),
  2463. weight: math.unit(50, "kg"),
  2464. name: "Back",
  2465. image: {
  2466. source: "./media/characters/elijah/back.svg",
  2467. extra: 895 / 850,
  2468. bottom: 5.3 / 897.956
  2469. }
  2470. },
  2471. frontNsfw: {
  2472. height: math.unit(1.65, "meters"),
  2473. weight: math.unit(50, "kg"),
  2474. name: "Front (NSFW)",
  2475. image: {
  2476. source: "./media/characters/elijah/front-nsfw.svg",
  2477. extra: 858 / 830,
  2478. bottom: 95.5 / 953.8559
  2479. }
  2480. },
  2481. backNsfw: {
  2482. height: math.unit(1.65, "meters"),
  2483. weight: math.unit(50, "kg"),
  2484. name: "Back (NSFW)",
  2485. image: {
  2486. source: "./media/characters/elijah/back-nsfw.svg",
  2487. extra: 895 / 850,
  2488. bottom: 5.3 / 897.956
  2489. }
  2490. },
  2491. dick: {
  2492. height: math.unit(1, "feet"),
  2493. name: "Dick",
  2494. image: {
  2495. source: "./media/characters/elijah/dick.svg"
  2496. }
  2497. },
  2498. beakOpen: {
  2499. height: math.unit(1.25, "feet"),
  2500. name: "Beak (Open)",
  2501. image: {
  2502. source: "./media/characters/elijah/beak-open.svg"
  2503. }
  2504. },
  2505. beakShut: {
  2506. height: math.unit(1.25, "feet"),
  2507. name: "Beak (Shut)",
  2508. image: {
  2509. source: "./media/characters/elijah/beak-shut.svg"
  2510. }
  2511. },
  2512. footFlexing: {
  2513. height: math.unit(1.61, "feet"),
  2514. name: "Foot (Flexing)",
  2515. image: {
  2516. source: "./media/characters/elijah/foot-flexing.svg"
  2517. }
  2518. },
  2519. footStepping: {
  2520. height: math.unit(1.44, "feet"),
  2521. name: "Foot (Stepping)",
  2522. image: {
  2523. source: "./media/characters/elijah/foot-stepping.svg"
  2524. }
  2525. },
  2526. plantigradeLeg: {
  2527. height: math.unit(2.34, "feet"),
  2528. name: "Plantigrade Leg",
  2529. image: {
  2530. source: "./media/characters/elijah/plantigrade-leg.svg"
  2531. }
  2532. },
  2533. plantigradeFootLeft: {
  2534. height: math.unit(0.9, "feet"),
  2535. name: "Plantigrade Foot (Left)",
  2536. image: {
  2537. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2538. }
  2539. },
  2540. plantigradeFootRight: {
  2541. height: math.unit(0.9, "feet"),
  2542. name: "Plantigrade Foot (Right)",
  2543. image: {
  2544. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2545. }
  2546. },
  2547. },
  2548. [
  2549. {
  2550. name: "Normal",
  2551. height: math.unit(1.65, "meters")
  2552. },
  2553. {
  2554. name: "Macro",
  2555. height: math.unit(55, "meters"),
  2556. default: true
  2557. },
  2558. {
  2559. name: "Macro+",
  2560. height: math.unit(105, "meters")
  2561. },
  2562. ]
  2563. ))
  2564. characterMakers.push(() => makeCharacter(
  2565. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2566. {
  2567. front: {
  2568. height: math.unit(7 + 2/12, "feet"),
  2569. weight: math.unit(320, "kg"),
  2570. name: "Front",
  2571. image: {
  2572. source: "./media/characters/rai/front.svg",
  2573. extra: 1802/1696,
  2574. bottom: 68/1870
  2575. }
  2576. },
  2577. frontDressed: {
  2578. height: math.unit(7 + 2/12, "feet"),
  2579. weight: math.unit(320, "kg"),
  2580. name: "Front (Dressed)",
  2581. image: {
  2582. source: "./media/characters/rai/front-dressed.svg",
  2583. extra: 1802/1696,
  2584. bottom: 68/1870
  2585. }
  2586. },
  2587. side: {
  2588. height: math.unit(7 + 2/12, "feet"),
  2589. weight: math.unit(320, "kg"),
  2590. name: "Side",
  2591. image: {
  2592. source: "./media/characters/rai/side.svg",
  2593. extra: 1789/1710,
  2594. bottom: 115/1904
  2595. }
  2596. },
  2597. back: {
  2598. height: math.unit(7 + 2/12, "feet"),
  2599. weight: math.unit(320, "kg"),
  2600. name: "Back",
  2601. image: {
  2602. source: "./media/characters/rai/back.svg",
  2603. extra: 1770/1707,
  2604. bottom: 28/1798
  2605. }
  2606. },
  2607. feral: {
  2608. height: math.unit(9.5, "feet"),
  2609. weight: math.unit(640, "kg"),
  2610. name: "Feral",
  2611. image: {
  2612. source: "./media/characters/rai/feral.svg",
  2613. extra: 945/553,
  2614. bottom: 176/1121
  2615. }
  2616. },
  2617. dragon: {
  2618. height: math.unit(23, "feet"),
  2619. weight: math.unit(50000, "lb"),
  2620. name: "Dragon",
  2621. image: {
  2622. source: "./media/characters/rai/dragon.svg",
  2623. extra: 2498 / 2030,
  2624. bottom: 85.2 / 2584
  2625. }
  2626. },
  2627. maw: {
  2628. height: math.unit(1.69, "feet"),
  2629. name: "Maw",
  2630. image: {
  2631. source: "./media/characters/rai/maw.svg"
  2632. }
  2633. },
  2634. },
  2635. [
  2636. {
  2637. name: "Normal",
  2638. height: math.unit(7 + 2/12, "feet")
  2639. },
  2640. {
  2641. name: "Big",
  2642. height: math.unit(11, "feet")
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(302, "feet"),
  2647. default: true
  2648. },
  2649. ]
  2650. ))
  2651. characterMakers.push(() => makeCharacter(
  2652. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2653. {
  2654. frontDressed: {
  2655. height: math.unit(216, "feet"),
  2656. weight: math.unit(7000000, "lb"),
  2657. name: "Front (Dressed)",
  2658. image: {
  2659. source: "./media/characters/jazzy/front-dressed.svg",
  2660. extra: 2738 / 2651,
  2661. bottom: 41.8 / 2786
  2662. }
  2663. },
  2664. backDressed: {
  2665. height: math.unit(216, "feet"),
  2666. weight: math.unit(7000000, "lb"),
  2667. name: "Back (Dressed)",
  2668. image: {
  2669. source: "./media/characters/jazzy/back-dressed.svg",
  2670. extra: 2775 / 2673,
  2671. bottom: 36.8 / 2817
  2672. }
  2673. },
  2674. front: {
  2675. height: math.unit(216, "feet"),
  2676. weight: math.unit(7000000, "lb"),
  2677. name: "Front",
  2678. image: {
  2679. source: "./media/characters/jazzy/front.svg",
  2680. extra: 2738 / 2651,
  2681. bottom: 41.8 / 2786
  2682. }
  2683. },
  2684. back: {
  2685. height: math.unit(216, "feet"),
  2686. weight: math.unit(7000000, "lb"),
  2687. name: "Back",
  2688. image: {
  2689. source: "./media/characters/jazzy/back.svg",
  2690. extra: 2775 / 2673,
  2691. bottom: 36.8 / 2817
  2692. }
  2693. },
  2694. maw: {
  2695. height: math.unit(20, "feet"),
  2696. name: "Maw",
  2697. image: {
  2698. source: "./media/characters/jazzy/maw.svg"
  2699. }
  2700. },
  2701. paws: {
  2702. height: math.unit(27.5, "feet"),
  2703. name: "Paws",
  2704. image: {
  2705. source: "./media/characters/jazzy/paws.svg"
  2706. }
  2707. },
  2708. eye: {
  2709. height: math.unit(4.4, "feet"),
  2710. name: "Eye",
  2711. image: {
  2712. source: "./media/characters/jazzy/eye.svg"
  2713. }
  2714. },
  2715. droneOffense: {
  2716. height: math.unit(9.5, "inches"),
  2717. name: "Drone (Offense)",
  2718. image: {
  2719. source: "./media/characters/jazzy/drone-offense.svg"
  2720. }
  2721. },
  2722. droneRecon: {
  2723. height: math.unit(9.5, "inches"),
  2724. name: "Drone (Recon)",
  2725. image: {
  2726. source: "./media/characters/jazzy/drone-recon.svg"
  2727. }
  2728. },
  2729. droneDefense: {
  2730. height: math.unit(9.5, "inches"),
  2731. name: "Drone (Defense)",
  2732. image: {
  2733. source: "./media/characters/jazzy/drone-defense.svg"
  2734. }
  2735. },
  2736. },
  2737. [
  2738. {
  2739. name: "Macro",
  2740. height: math.unit(216, "feet"),
  2741. default: true
  2742. },
  2743. ]
  2744. ))
  2745. characterMakers.push(() => makeCharacter(
  2746. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2747. {
  2748. front: {
  2749. height: math.unit(9 + 6/12, "feet"),
  2750. weight: math.unit(700, "lb"),
  2751. name: "Front",
  2752. image: {
  2753. source: "./media/characters/flamm/front.svg",
  2754. extra: 1751/1632,
  2755. bottom: 46/1797
  2756. }
  2757. },
  2758. buff: {
  2759. height: math.unit(9 + 6/12, "feet"),
  2760. weight: math.unit(950, "lb"),
  2761. name: "Buff",
  2762. image: {
  2763. source: "./media/characters/flamm/buff.svg",
  2764. extra: 3018/2874,
  2765. bottom: 221/3239
  2766. }
  2767. },
  2768. },
  2769. [
  2770. {
  2771. name: "Normal",
  2772. height: math.unit(9.5, "feet")
  2773. },
  2774. {
  2775. name: "Macro",
  2776. height: math.unit(200, "feet"),
  2777. default: true
  2778. },
  2779. ]
  2780. ))
  2781. characterMakers.push(() => makeCharacter(
  2782. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2783. {
  2784. front: {
  2785. height: math.unit(5 + 3/12, "feet"),
  2786. weight: math.unit(60, "kg"),
  2787. name: "Front",
  2788. image: {
  2789. source: "./media/characters/zephiro/front.svg",
  2790. extra: 2309 / 2162,
  2791. bottom: 0.069
  2792. }
  2793. },
  2794. side: {
  2795. height: math.unit(5 + 3/12, "feet"),
  2796. weight: math.unit(60, "kg"),
  2797. name: "Side",
  2798. image: {
  2799. source: "./media/characters/zephiro/side.svg",
  2800. extra: 2403 / 2279,
  2801. bottom: 0.015
  2802. }
  2803. },
  2804. back: {
  2805. height: math.unit(5 + 3/12, "feet"),
  2806. weight: math.unit(60, "kg"),
  2807. name: "Back",
  2808. image: {
  2809. source: "./media/characters/zephiro/back.svg",
  2810. extra: 2373 / 2244,
  2811. bottom: 0.013
  2812. }
  2813. },
  2814. hand: {
  2815. height: math.unit(0.68, "feet"),
  2816. name: "Hand",
  2817. image: {
  2818. source: "./media/characters/zephiro/hand.svg"
  2819. }
  2820. },
  2821. paw: {
  2822. height: math.unit(1, "feet"),
  2823. name: "Paw",
  2824. image: {
  2825. source: "./media/characters/zephiro/paw.svg"
  2826. }
  2827. },
  2828. beans: {
  2829. height: math.unit(0.93, "feet"),
  2830. name: "Beans",
  2831. image: {
  2832. source: "./media/characters/zephiro/beans.svg"
  2833. }
  2834. },
  2835. },
  2836. [
  2837. {
  2838. name: "Micro",
  2839. height: math.unit(3, "inches")
  2840. },
  2841. {
  2842. name: "Normal",
  2843. height: math.unit(5 + 3 / 12, "feet"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Macro",
  2848. height: math.unit(118, "feet")
  2849. },
  2850. ]
  2851. ))
  2852. characterMakers.push(() => makeCharacter(
  2853. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2854. {
  2855. front: {
  2856. height: math.unit(5, "feet"),
  2857. weight: math.unit(90, "kg"),
  2858. name: "Front",
  2859. image: {
  2860. source: "./media/characters/fory/front.svg",
  2861. extra: 2862 / 2674,
  2862. bottom: 180 / 3043.8
  2863. }
  2864. },
  2865. back: {
  2866. height: math.unit(5, "feet"),
  2867. weight: math.unit(90, "kg"),
  2868. name: "Back",
  2869. image: {
  2870. source: "./media/characters/fory/back.svg",
  2871. extra: 2962 / 2791,
  2872. bottom: 106 / 3071.8
  2873. }
  2874. },
  2875. foot: {
  2876. height: math.unit(2.14, "feet"),
  2877. name: "Foot",
  2878. image: {
  2879. source: "./media/characters/fory/foot.svg"
  2880. }
  2881. },
  2882. },
  2883. [
  2884. {
  2885. name: "Normal",
  2886. height: math.unit(5, "feet")
  2887. },
  2888. {
  2889. name: "Macro",
  2890. height: math.unit(50, "feet"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Megamacro",
  2895. height: math.unit(10, "miles")
  2896. },
  2897. {
  2898. name: "Gigamacro",
  2899. height: math.unit(5, "earths")
  2900. },
  2901. ]
  2902. ))
  2903. characterMakers.push(() => makeCharacter(
  2904. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2905. {
  2906. front: {
  2907. height: math.unit(7, "feet"),
  2908. weight: math.unit(90, "kg"),
  2909. name: "Front",
  2910. image: {
  2911. source: "./media/characters/kurrikage/front.svg",
  2912. extra: 1845/1733,
  2913. bottom: 119/1964
  2914. }
  2915. },
  2916. back: {
  2917. height: math.unit(7, "feet"),
  2918. weight: math.unit(90, "kg"),
  2919. name: "Back",
  2920. image: {
  2921. source: "./media/characters/kurrikage/back.svg",
  2922. extra: 1790/1677,
  2923. bottom: 61/1851
  2924. }
  2925. },
  2926. dressed: {
  2927. height: math.unit(7, "feet"),
  2928. weight: math.unit(90, "kg"),
  2929. name: "Dressed",
  2930. image: {
  2931. source: "./media/characters/kurrikage/dressed.svg",
  2932. extra: 1845/1733,
  2933. bottom: 119/1964
  2934. }
  2935. },
  2936. foot: {
  2937. height: math.unit(1.5, "feet"),
  2938. name: "Foot",
  2939. image: {
  2940. source: "./media/characters/kurrikage/foot.svg"
  2941. }
  2942. },
  2943. staff: {
  2944. height: math.unit(6.7, "feet"),
  2945. name: "Staff",
  2946. image: {
  2947. source: "./media/characters/kurrikage/staff.svg"
  2948. }
  2949. },
  2950. peek: {
  2951. height: math.unit(1.05, "feet"),
  2952. name: "Peeking",
  2953. image: {
  2954. source: "./media/characters/kurrikage/peek.svg",
  2955. bottom: 0.08
  2956. }
  2957. },
  2958. },
  2959. [
  2960. {
  2961. name: "Normal",
  2962. height: math.unit(12, "feet"),
  2963. default: true
  2964. },
  2965. {
  2966. name: "Big",
  2967. height: math.unit(20, "feet")
  2968. },
  2969. {
  2970. name: "Macro",
  2971. height: math.unit(500, "feet")
  2972. },
  2973. {
  2974. name: "Megamacro",
  2975. height: math.unit(20, "miles")
  2976. },
  2977. ]
  2978. ))
  2979. characterMakers.push(() => makeCharacter(
  2980. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2981. {
  2982. front: {
  2983. height: math.unit(6, "feet"),
  2984. weight: math.unit(75, "kg"),
  2985. name: "Front",
  2986. image: {
  2987. source: "./media/characters/shingo/front.svg",
  2988. extra: 1900/1825,
  2989. bottom: 82/1982
  2990. }
  2991. },
  2992. side: {
  2993. height: math.unit(6, "feet"),
  2994. weight: math.unit(75, "kg"),
  2995. name: "Side",
  2996. image: {
  2997. source: "./media/characters/shingo/side.svg",
  2998. extra: 1930/1865,
  2999. bottom: 16/1946
  3000. }
  3001. },
  3002. back: {
  3003. height: math.unit(6, "feet"),
  3004. weight: math.unit(75, "kg"),
  3005. name: "Back",
  3006. image: {
  3007. source: "./media/characters/shingo/back.svg",
  3008. extra: 1922/1852,
  3009. bottom: 16/1938
  3010. }
  3011. },
  3012. frontDressed: {
  3013. height: math.unit(6, "feet"),
  3014. weight: math.unit(150, "lb"),
  3015. name: "Front-dressed",
  3016. image: {
  3017. source: "./media/characters/shingo/front-dressed.svg",
  3018. extra: 1900/1825,
  3019. bottom: 82/1982
  3020. }
  3021. },
  3022. paw: {
  3023. height: math.unit(1.29, "feet"),
  3024. name: "Paw",
  3025. image: {
  3026. source: "./media/characters/shingo/paw.svg"
  3027. }
  3028. },
  3029. hand: {
  3030. height: math.unit(1.07, "feet"),
  3031. name: "Hand",
  3032. image: {
  3033. source: "./media/characters/shingo/hand.svg"
  3034. }
  3035. },
  3036. frontAlt: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Front (Alt)",
  3040. image: {
  3041. source: "./media/characters/shingo/front-alt.svg",
  3042. extra: 3511 / 3338,
  3043. bottom: 0.005
  3044. }
  3045. },
  3046. frontAlt2: {
  3047. height: math.unit(6, "feet"),
  3048. weight: math.unit(75, "kg"),
  3049. name: "Front (Alt 2)",
  3050. image: {
  3051. source: "./media/characters/shingo/front-alt-2.svg",
  3052. extra: 706/681,
  3053. bottom: 11/717
  3054. }
  3055. },
  3056. pawAlt: {
  3057. height: math.unit(1, "feet"),
  3058. name: "Paw (Alt)",
  3059. image: {
  3060. source: "./media/characters/shingo/paw-alt.svg"
  3061. }
  3062. },
  3063. },
  3064. [
  3065. {
  3066. name: "Micro",
  3067. height: math.unit(4, "inches")
  3068. },
  3069. {
  3070. name: "Normal",
  3071. height: math.unit(6, "feet"),
  3072. default: true
  3073. },
  3074. {
  3075. name: "Macro",
  3076. height: math.unit(108, "feet")
  3077. },
  3078. {
  3079. name: "Macro+",
  3080. height: math.unit(1500, "feet")
  3081. },
  3082. ]
  3083. ))
  3084. characterMakers.push(() => makeCharacter(
  3085. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3086. {
  3087. side: {
  3088. height: math.unit(6, "feet"),
  3089. weight: math.unit(75, "kg"),
  3090. name: "Side",
  3091. image: {
  3092. source: "./media/characters/aigey/side.svg"
  3093. }
  3094. },
  3095. },
  3096. [
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(200, "feet"),
  3100. default: true
  3101. },
  3102. {
  3103. name: "Megamacro",
  3104. height: math.unit(100, "miles")
  3105. },
  3106. ]
  3107. )
  3108. )
  3109. characterMakers.push(() => makeCharacter(
  3110. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3111. {
  3112. front: {
  3113. height: math.unit(5 + 5 / 12, "feet"),
  3114. weight: math.unit(75, "kg"),
  3115. name: "Front",
  3116. image: {
  3117. source: "./media/characters/natasha/front.svg",
  3118. extra: 859 / 824,
  3119. bottom: 23 / 879.6
  3120. }
  3121. },
  3122. frontNsfw: {
  3123. height: math.unit(5 + 5 / 12, "feet"),
  3124. weight: math.unit(75, "kg"),
  3125. name: "Front (NSFW)",
  3126. image: {
  3127. source: "./media/characters/natasha/front-nsfw.svg",
  3128. extra: 859 / 824,
  3129. bottom: 23 / 879.6
  3130. }
  3131. },
  3132. frontErect: {
  3133. height: math.unit(5 + 5 / 12, "feet"),
  3134. weight: math.unit(75, "kg"),
  3135. name: "Front (Erect)",
  3136. image: {
  3137. source: "./media/characters/natasha/front-erect.svg",
  3138. extra: 859 / 824,
  3139. bottom: 23 / 879.6
  3140. }
  3141. },
  3142. back: {
  3143. height: math.unit(5 + 5 / 12, "feet"),
  3144. weight: math.unit(75, "kg"),
  3145. name: "Back",
  3146. image: {
  3147. source: "./media/characters/natasha/back.svg",
  3148. extra: 887.9 / 852.6,
  3149. bottom: 9.7 / 896.4
  3150. }
  3151. },
  3152. backAlt: {
  3153. height: math.unit(5 + 5 / 12, "feet"),
  3154. weight: math.unit(75, "kg"),
  3155. name: "Back (Alt)",
  3156. image: {
  3157. source: "./media/characters/natasha/back-alt.svg",
  3158. extra: 1236.7 / 1192,
  3159. bottom: 22.3 / 1258.2
  3160. }
  3161. },
  3162. dick: {
  3163. height: math.unit(1.772, "feet"),
  3164. name: "Dick",
  3165. image: {
  3166. source: "./media/characters/natasha/dick.svg"
  3167. }
  3168. },
  3169. paw: {
  3170. height: math.unit(0.250, "meters"),
  3171. name: "Paw",
  3172. image: {
  3173. source: "./media/characters/natasha/paw.svg"
  3174. }
  3175. },
  3176. },
  3177. [
  3178. {
  3179. name: "Normal",
  3180. height: math.unit(5 + 5 / 12, "feet")
  3181. },
  3182. {
  3183. name: "Large",
  3184. height: math.unit(12, "feet")
  3185. },
  3186. {
  3187. name: "Macro",
  3188. height: math.unit(100, "feet"),
  3189. default: true
  3190. },
  3191. {
  3192. name: "Macro+",
  3193. height: math.unit(260, "feet")
  3194. },
  3195. {
  3196. name: "Macro++",
  3197. height: math.unit(1, "mile")
  3198. },
  3199. ]
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3203. {
  3204. front: {
  3205. height: math.unit(6, "feet"),
  3206. weight: math.unit(75, "kg"),
  3207. name: "Front",
  3208. image: {
  3209. source: "./media/characters/malik/front.svg"
  3210. }
  3211. },
  3212. side: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Side",
  3216. image: {
  3217. source: "./media/characters/malik/side.svg",
  3218. extra: 1.1539
  3219. }
  3220. },
  3221. back: {
  3222. height: math.unit(6, "feet"),
  3223. weight: math.unit(75, "kg"),
  3224. name: "Back",
  3225. image: {
  3226. source: "./media/characters/malik/back.svg"
  3227. }
  3228. },
  3229. },
  3230. [
  3231. {
  3232. name: "Macro",
  3233. height: math.unit(156, "feet"),
  3234. default: true
  3235. },
  3236. {
  3237. name: "Macro+",
  3238. height: math.unit(1188, "feet")
  3239. },
  3240. ]
  3241. ))
  3242. characterMakers.push(() => makeCharacter(
  3243. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3244. {
  3245. front: {
  3246. height: math.unit(6, "feet"),
  3247. weight: math.unit(75, "kg"),
  3248. name: "Front",
  3249. image: {
  3250. source: "./media/characters/sefer/front.svg",
  3251. extra: 848 / 659,
  3252. bottom: 28.3 / 876.442
  3253. }
  3254. },
  3255. back: {
  3256. height: math.unit(6, "feet"),
  3257. weight: math.unit(75, "kg"),
  3258. name: "Back",
  3259. image: {
  3260. source: "./media/characters/sefer/back.svg",
  3261. extra: 864 / 695,
  3262. bottom: 10 / 871
  3263. }
  3264. },
  3265. frontDressed: {
  3266. height: math.unit(6, "feet"),
  3267. weight: math.unit(75, "kg"),
  3268. name: "Front (Dressed)",
  3269. image: {
  3270. source: "./media/characters/sefer/front-dressed.svg",
  3271. extra: 839 / 653,
  3272. bottom: 37.6 / 878
  3273. }
  3274. },
  3275. },
  3276. [
  3277. {
  3278. name: "Normal",
  3279. height: math.unit(6, "feet"),
  3280. default: true
  3281. },
  3282. ]
  3283. ))
  3284. characterMakers.push(() => makeCharacter(
  3285. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3286. {
  3287. body: {
  3288. height: math.unit(2.2428, "meter"),
  3289. weight: math.unit(124.738, "kg"),
  3290. name: "Body",
  3291. image: {
  3292. extra: 1225 / 1050,
  3293. source: "./media/characters/north/front.svg"
  3294. }
  3295. }
  3296. },
  3297. [
  3298. {
  3299. name: "Micro",
  3300. height: math.unit(4, "inches")
  3301. },
  3302. {
  3303. name: "Macro",
  3304. height: math.unit(63, "meters")
  3305. },
  3306. {
  3307. name: "Megamacro",
  3308. height: math.unit(101, "miles"),
  3309. default: true
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3315. {
  3316. angled: {
  3317. height: math.unit(4, "meter"),
  3318. weight: math.unit(150, "kg"),
  3319. name: "Angled",
  3320. image: {
  3321. source: "./media/characters/talan/angled-sfw.svg",
  3322. bottom: 29 / 3734
  3323. }
  3324. },
  3325. angledNsfw: {
  3326. height: math.unit(4, "meter"),
  3327. weight: math.unit(150, "kg"),
  3328. name: "Angled (NSFW)",
  3329. image: {
  3330. source: "./media/characters/talan/angled-nsfw.svg",
  3331. bottom: 29 / 3734
  3332. }
  3333. },
  3334. frontNsfw: {
  3335. height: math.unit(4, "meter"),
  3336. weight: math.unit(150, "kg"),
  3337. name: "Front (NSFW)",
  3338. image: {
  3339. source: "./media/characters/talan/front-nsfw.svg",
  3340. bottom: 29 / 3734
  3341. }
  3342. },
  3343. sideNsfw: {
  3344. height: math.unit(4, "meter"),
  3345. weight: math.unit(150, "kg"),
  3346. name: "Side (NSFW)",
  3347. image: {
  3348. source: "./media/characters/talan/side-nsfw.svg",
  3349. bottom: 29 / 3734
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(4, "meter"),
  3354. weight: math.unit(150, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/talan/back.svg"
  3358. }
  3359. },
  3360. dickBottom: {
  3361. height: math.unit(0.621, "meter"),
  3362. name: "Dick (Bottom)",
  3363. image: {
  3364. source: "./media/characters/talan/dick-bottom.svg"
  3365. }
  3366. },
  3367. dickTop: {
  3368. height: math.unit(0.621, "meter"),
  3369. name: "Dick (Top)",
  3370. image: {
  3371. source: "./media/characters/talan/dick-top.svg"
  3372. }
  3373. },
  3374. dickSide: {
  3375. height: math.unit(0.305, "meter"),
  3376. name: "Dick (Side)",
  3377. image: {
  3378. source: "./media/characters/talan/dick-side.svg"
  3379. }
  3380. },
  3381. dickFront: {
  3382. height: math.unit(0.305, "meter"),
  3383. name: "Dick (Front)",
  3384. image: {
  3385. source: "./media/characters/talan/dick-front.svg"
  3386. }
  3387. },
  3388. },
  3389. [
  3390. {
  3391. name: "Normal",
  3392. height: math.unit(4, "meters")
  3393. },
  3394. {
  3395. name: "Macro",
  3396. height: math.unit(100, "meters")
  3397. },
  3398. {
  3399. name: "Megamacro",
  3400. height: math.unit(2, "miles"),
  3401. default: true
  3402. },
  3403. {
  3404. name: "Gigamacro",
  3405. height: math.unit(5000, "miles")
  3406. },
  3407. {
  3408. name: "Teramacro",
  3409. height: math.unit(100, "parsecs")
  3410. }
  3411. ]
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3415. {
  3416. front: {
  3417. height: math.unit(2, "meter"),
  3418. weight: math.unit(90, "kg"),
  3419. name: "Front",
  3420. image: {
  3421. source: "./media/characters/gael'rathus/front.svg"
  3422. }
  3423. },
  3424. frontAlt: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(90, "kg"),
  3427. name: "Front (alt)",
  3428. image: {
  3429. source: "./media/characters/gael'rathus/front-alt.svg"
  3430. }
  3431. },
  3432. frontAlt2: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front (alt 2)",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3438. }
  3439. }
  3440. },
  3441. [
  3442. {
  3443. name: "Normal",
  3444. height: math.unit(9, "feet"),
  3445. default: true
  3446. },
  3447. {
  3448. name: "Large",
  3449. height: math.unit(25, "feet")
  3450. },
  3451. {
  3452. name: "Macro",
  3453. height: math.unit(0.25, "miles")
  3454. },
  3455. {
  3456. name: "Megamacro",
  3457. height: math.unit(10, "miles")
  3458. }
  3459. ]
  3460. ))
  3461. characterMakers.push(() => makeCharacter(
  3462. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3463. {
  3464. side: {
  3465. height: math.unit(2, "meter"),
  3466. weight: math.unit(140, "kg"),
  3467. name: "Side",
  3468. image: {
  3469. source: "./media/characters/sosha/side.svg",
  3470. bottom: 0.042
  3471. }
  3472. },
  3473. },
  3474. [
  3475. {
  3476. name: "Normal",
  3477. height: math.unit(12, "feet"),
  3478. default: true
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3484. {
  3485. side: {
  3486. height: math.unit(5 + 5 / 12, "feet"),
  3487. weight: math.unit(170, "kg"),
  3488. name: "Side",
  3489. image: {
  3490. source: "./media/characters/runnola/side.svg",
  3491. extra: 741 / 448,
  3492. bottom: 0.05
  3493. }
  3494. },
  3495. },
  3496. [
  3497. {
  3498. name: "Small",
  3499. height: math.unit(3, "feet")
  3500. },
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(5 + 5 / 12, "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Big",
  3508. height: math.unit(10, "feet")
  3509. },
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(50, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/kurribird/front.svg",
  3521. bottom: 0.015
  3522. }
  3523. },
  3524. frontAlt: {
  3525. height: math.unit(1.5, "meter"),
  3526. weight: math.unit(50, "kg"),
  3527. name: "Front (Alt)",
  3528. image: {
  3529. source: "./media/characters/kurribird/front-alt.svg",
  3530. extra: 1.45
  3531. }
  3532. },
  3533. },
  3534. [
  3535. {
  3536. name: "Normal",
  3537. height: math.unit(7, "feet")
  3538. },
  3539. {
  3540. name: "Big",
  3541. height: math.unit(12, "feet"),
  3542. default: true
  3543. },
  3544. {
  3545. name: "Macro",
  3546. height: math.unit(1500, "feet")
  3547. },
  3548. {
  3549. name: "Megamacro",
  3550. height: math.unit(2, "miles")
  3551. }
  3552. ]
  3553. ))
  3554. characterMakers.push(() => makeCharacter(
  3555. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3556. {
  3557. front: {
  3558. height: math.unit(2, "meter"),
  3559. weight: math.unit(80, "kg"),
  3560. name: "Front",
  3561. image: {
  3562. source: "./media/characters/elbial/front.svg",
  3563. extra: 1643 / 1556,
  3564. bottom: 60.2 / 1696
  3565. }
  3566. },
  3567. side: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(80, "kg"),
  3570. name: "Side",
  3571. image: {
  3572. source: "./media/characters/elbial/side.svg",
  3573. extra: 1601/1528,
  3574. bottom: 97/1698
  3575. }
  3576. },
  3577. back: {
  3578. height: math.unit(2, "meter"),
  3579. weight: math.unit(80, "kg"),
  3580. name: "Back",
  3581. image: {
  3582. source: "./media/characters/elbial/back.svg",
  3583. extra: 1653/1569,
  3584. bottom: 20/1673
  3585. }
  3586. },
  3587. frontDressed: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(80, "kg"),
  3590. name: "Front (Dressed)",
  3591. image: {
  3592. source: "./media/characters/elbial/front-dressed.svg",
  3593. extra: 1638/1569,
  3594. bottom: 70/1708
  3595. }
  3596. },
  3597. genitals: {
  3598. height: math.unit(2 / 3.367, "meter"),
  3599. name: "Genitals",
  3600. image: {
  3601. source: "./media/characters/elbial/genitals.svg"
  3602. }
  3603. },
  3604. },
  3605. [
  3606. {
  3607. name: "Large",
  3608. height: math.unit(100, "feet")
  3609. },
  3610. {
  3611. name: "Macro",
  3612. height: math.unit(500, "feet"),
  3613. default: true
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(10, "miles")
  3618. },
  3619. {
  3620. name: "Gigamacro",
  3621. height: math.unit(25000, "miles")
  3622. },
  3623. {
  3624. name: "Full-Size",
  3625. height: math.unit(8000000, "gigaparsecs")
  3626. }
  3627. ]
  3628. ))
  3629. characterMakers.push(() => makeCharacter(
  3630. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3631. {
  3632. front: {
  3633. height: math.unit(2, "meter"),
  3634. weight: math.unit(60, "kg"),
  3635. name: "Front",
  3636. image: {
  3637. source: "./media/characters/noah/front.svg"
  3638. }
  3639. },
  3640. talons: {
  3641. height: math.unit(0.315, "meter"),
  3642. name: "Talons",
  3643. image: {
  3644. source: "./media/characters/noah/talons.svg"
  3645. }
  3646. }
  3647. },
  3648. [
  3649. {
  3650. name: "Large",
  3651. height: math.unit(50, "feet")
  3652. },
  3653. {
  3654. name: "Macro",
  3655. height: math.unit(750, "feet"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Megamacro",
  3660. height: math.unit(50, "miles")
  3661. },
  3662. {
  3663. name: "Gigamacro",
  3664. height: math.unit(100000, "miles")
  3665. },
  3666. {
  3667. name: "Full-Size",
  3668. height: math.unit(3000000000, "miles")
  3669. }
  3670. ]
  3671. ))
  3672. characterMakers.push(() => makeCharacter(
  3673. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3674. {
  3675. front: {
  3676. height: math.unit(2, "meter"),
  3677. weight: math.unit(80, "kg"),
  3678. name: "Front",
  3679. image: {
  3680. source: "./media/characters/natalya/front.svg"
  3681. }
  3682. },
  3683. back: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(80, "kg"),
  3686. name: "Back",
  3687. image: {
  3688. source: "./media/characters/natalya/back.svg"
  3689. }
  3690. }
  3691. },
  3692. [
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(150, "feet"),
  3696. default: true
  3697. },
  3698. {
  3699. name: "Megamacro",
  3700. height: math.unit(5, "miles")
  3701. },
  3702. {
  3703. name: "Full-Size",
  3704. height: math.unit(600, "kiloparsecs")
  3705. }
  3706. ]
  3707. ))
  3708. characterMakers.push(() => makeCharacter(
  3709. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3710. {
  3711. front: {
  3712. height: math.unit(2, "meter"),
  3713. weight: math.unit(50, "kg"),
  3714. name: "Front",
  3715. image: {
  3716. source: "./media/characters/erestrebah/front.svg",
  3717. extra: 1262/1162,
  3718. bottom: 96/1358
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(50, "kg"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/erestrebah/back.svg",
  3727. extra: 1257/1139,
  3728. bottom: 13/1270
  3729. }
  3730. },
  3731. wing: {
  3732. height: math.unit(2, "meter"),
  3733. weight: math.unit(50, "kg"),
  3734. name: "Wing",
  3735. image: {
  3736. source: "./media/characters/erestrebah/wing.svg",
  3737. extra: 1262/1162,
  3738. bottom: 96/1358
  3739. }
  3740. },
  3741. mouth: {
  3742. height: math.unit(0.39, "feet"),
  3743. name: "Mouth",
  3744. image: {
  3745. source: "./media/characters/erestrebah/mouth.svg"
  3746. }
  3747. }
  3748. },
  3749. [
  3750. {
  3751. name: "Normal",
  3752. height: math.unit(10, "feet")
  3753. },
  3754. {
  3755. name: "Large",
  3756. height: math.unit(50, "feet"),
  3757. default: true
  3758. },
  3759. {
  3760. name: "Macro",
  3761. height: math.unit(300, "feet")
  3762. },
  3763. {
  3764. name: "Macro+",
  3765. height: math.unit(750, "feet")
  3766. },
  3767. {
  3768. name: "Megamacro",
  3769. height: math.unit(3, "miles")
  3770. }
  3771. ]
  3772. ))
  3773. characterMakers.push(() => makeCharacter(
  3774. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3775. {
  3776. front: {
  3777. height: math.unit(2, "meter"),
  3778. weight: math.unit(80, "kg"),
  3779. name: "Front",
  3780. image: {
  3781. source: "./media/characters/jennifer/front.svg",
  3782. bottom: 0.11,
  3783. extra: 1.16
  3784. }
  3785. },
  3786. frontAlt: {
  3787. height: math.unit(2, "meter"),
  3788. weight: math.unit(80, "kg"),
  3789. name: "Front (Alt)",
  3790. image: {
  3791. source: "./media/characters/jennifer/front-alt.svg"
  3792. }
  3793. }
  3794. },
  3795. [
  3796. {
  3797. name: "Canon Height",
  3798. height: math.unit(120, "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Macro+",
  3803. height: math.unit(300, "feet")
  3804. },
  3805. {
  3806. name: "Megamacro",
  3807. height: math.unit(20000, "feet")
  3808. }
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3813. {
  3814. front: {
  3815. height: math.unit(2, "meter"),
  3816. weight: math.unit(50, "kg"),
  3817. name: "Front",
  3818. image: {
  3819. source: "./media/characters/kalista/front.svg",
  3820. extra: 1314/1145,
  3821. bottom: 101/1415
  3822. }
  3823. },
  3824. back: {
  3825. height: math.unit(2, "meter"),
  3826. weight: math.unit(50, "kg"),
  3827. name: "Back",
  3828. image: {
  3829. source: "./media/characters/kalista/back.svg",
  3830. extra: 1366 / 1156,
  3831. bottom: 33.9 / 1362.78
  3832. }
  3833. }
  3834. },
  3835. [
  3836. {
  3837. name: "Uncomfortably Small",
  3838. height: math.unit(10, "feet")
  3839. },
  3840. {
  3841. name: "Small",
  3842. height: math.unit(30, "feet")
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(100, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Macro+",
  3851. height: math.unit(2000, "feet")
  3852. },
  3853. {
  3854. name: "True Form",
  3855. height: math.unit(8924, "miles")
  3856. }
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3861. {
  3862. front: {
  3863. height: math.unit(2, "meter"),
  3864. weight: math.unit(120, "kg"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/ggv/front.svg"
  3868. }
  3869. },
  3870. side: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(120, "kg"),
  3873. name: "Side",
  3874. image: {
  3875. source: "./media/characters/ggv/side.svg"
  3876. }
  3877. }
  3878. },
  3879. [
  3880. {
  3881. name: "Extremely Puny",
  3882. height: math.unit(9 + 5 / 12, "feet")
  3883. },
  3884. {
  3885. name: "Horribly Small",
  3886. height: math.unit(47.7, "miles"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Reasonably Sized",
  3891. height: math.unit(25000, "parsecs")
  3892. },
  3893. {
  3894. name: "Slightly Uncompressed",
  3895. height: math.unit(7.77e31, "parsecs")
  3896. },
  3897. {
  3898. name: "Omniversal",
  3899. height: math.unit(1e300, "meters")
  3900. },
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3905. {
  3906. front: {
  3907. height: math.unit(2, "meter"),
  3908. weight: math.unit(75, "lb"),
  3909. name: "Front",
  3910. image: {
  3911. source: "./media/characters/napalm/front.svg"
  3912. }
  3913. },
  3914. back: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(75, "lb"),
  3917. name: "Back",
  3918. image: {
  3919. source: "./media/characters/napalm/back.svg"
  3920. }
  3921. }
  3922. },
  3923. [
  3924. {
  3925. name: "Standard",
  3926. height: math.unit(55, "feet"),
  3927. default: true
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3933. {
  3934. front: {
  3935. height: math.unit(7 + 5 / 6, "feet"),
  3936. weight: math.unit(325, "lb"),
  3937. name: "Front",
  3938. image: {
  3939. source: "./media/characters/asana/front.svg",
  3940. extra: 1133 / 1060,
  3941. bottom: 15.2 / 1148.6
  3942. }
  3943. },
  3944. back: {
  3945. height: math.unit(7 + 5 / 6, "feet"),
  3946. weight: math.unit(325, "lb"),
  3947. name: "Back",
  3948. image: {
  3949. source: "./media/characters/asana/back.svg",
  3950. extra: 1114 / 1043,
  3951. bottom: 5 / 1120
  3952. }
  3953. },
  3954. dressedDark: {
  3955. height: math.unit(7 + 5 / 6, "feet"),
  3956. weight: math.unit(325, "lb"),
  3957. name: "Dressed (Dark)",
  3958. image: {
  3959. source: "./media/characters/asana/dressed-dark.svg",
  3960. extra: 1133 / 1060,
  3961. bottom: 15.2 / 1148.6
  3962. }
  3963. },
  3964. dressedLight: {
  3965. height: math.unit(7 + 5 / 6, "feet"),
  3966. weight: math.unit(325, "lb"),
  3967. name: "Dressed (Light)",
  3968. image: {
  3969. source: "./media/characters/asana/dressed-light.svg",
  3970. extra: 1133 / 1060,
  3971. bottom: 15.2 / 1148.6
  3972. }
  3973. },
  3974. },
  3975. [
  3976. {
  3977. name: "Standard",
  3978. height: math.unit(7 + 5 / 6, "feet"),
  3979. default: true
  3980. },
  3981. {
  3982. name: "Large",
  3983. height: math.unit(10, "meters")
  3984. },
  3985. {
  3986. name: "Macro",
  3987. height: math.unit(2500, "meters")
  3988. },
  3989. {
  3990. name: "Megamacro",
  3991. height: math.unit(5e6, "meters")
  3992. },
  3993. {
  3994. name: "Examacro",
  3995. height: math.unit(5e12, "lightyears")
  3996. },
  3997. {
  3998. name: "Max Size",
  3999. height: math.unit(1e31, "lightyears")
  4000. }
  4001. ]
  4002. ))
  4003. characterMakers.push(() => makeCharacter(
  4004. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4005. {
  4006. front: {
  4007. height: math.unit(2, "meter"),
  4008. weight: math.unit(60, "kg"),
  4009. name: "Front",
  4010. image: {
  4011. source: "./media/characters/ebony/front.svg",
  4012. bottom: 0.03,
  4013. extra: 1045 / 810 + 0.03
  4014. }
  4015. },
  4016. side: {
  4017. height: math.unit(2, "meter"),
  4018. weight: math.unit(60, "kg"),
  4019. name: "Side",
  4020. image: {
  4021. source: "./media/characters/ebony/side.svg",
  4022. bottom: 0.03,
  4023. extra: 1045 / 810 + 0.03
  4024. }
  4025. },
  4026. back: {
  4027. height: math.unit(2, "meter"),
  4028. weight: math.unit(60, "kg"),
  4029. name: "Back",
  4030. image: {
  4031. source: "./media/characters/ebony/back.svg",
  4032. bottom: 0.01,
  4033. extra: 1045 / 810 + 0.01
  4034. }
  4035. },
  4036. },
  4037. [
  4038. // TODO check why I did this lol
  4039. {
  4040. name: "Standard",
  4041. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(200, "feet")
  4047. },
  4048. {
  4049. name: "Gigamacro",
  4050. height: math.unit(13000, "km")
  4051. }
  4052. ]
  4053. ))
  4054. characterMakers.push(() => makeCharacter(
  4055. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4056. {
  4057. front: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(175, "lb"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/mountain/front.svg",
  4063. extra: 972 / 955,
  4064. bottom: 64 / 1036.6
  4065. }
  4066. },
  4067. back: {
  4068. height: math.unit(6, "feet"),
  4069. weight: math.unit(175, "lb"),
  4070. name: "Back",
  4071. image: {
  4072. source: "./media/characters/mountain/back.svg",
  4073. extra: 970 / 950,
  4074. bottom: 28.25 / 999
  4075. }
  4076. },
  4077. },
  4078. [
  4079. {
  4080. name: "Large",
  4081. height: math.unit(20, "meters")
  4082. },
  4083. {
  4084. name: "Macro",
  4085. height: math.unit(300, "meters")
  4086. },
  4087. {
  4088. name: "Gigamacro",
  4089. height: math.unit(10000, "km"),
  4090. default: true
  4091. },
  4092. {
  4093. name: "Examacro",
  4094. height: math.unit(10e9, "lightyears")
  4095. }
  4096. ]
  4097. ))
  4098. characterMakers.push(() => makeCharacter(
  4099. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4100. {
  4101. front: {
  4102. height: math.unit(8, "feet"),
  4103. weight: math.unit(500, "lb"),
  4104. name: "Front",
  4105. image: {
  4106. source: "./media/characters/rick/front.svg"
  4107. }
  4108. }
  4109. },
  4110. [
  4111. {
  4112. name: "Normal",
  4113. height: math.unit(8, "feet"),
  4114. default: true
  4115. },
  4116. {
  4117. name: "Macro",
  4118. height: math.unit(5, "km")
  4119. }
  4120. ]
  4121. ))
  4122. characterMakers.push(() => makeCharacter(
  4123. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4124. {
  4125. front: {
  4126. height: math.unit(8, "feet"),
  4127. weight: math.unit(120, "lb"),
  4128. name: "Front",
  4129. image: {
  4130. source: "./media/characters/ona/front.svg"
  4131. }
  4132. },
  4133. frontAlt: {
  4134. height: math.unit(8, "feet"),
  4135. weight: math.unit(120, "lb"),
  4136. name: "Front (Alt)",
  4137. image: {
  4138. source: "./media/characters/ona/front-alt.svg"
  4139. }
  4140. },
  4141. back: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Back",
  4145. image: {
  4146. source: "./media/characters/ona/back.svg"
  4147. }
  4148. },
  4149. foot: {
  4150. height: math.unit(1.1, "feet"),
  4151. name: "Foot",
  4152. image: {
  4153. source: "./media/characters/ona/foot.svg"
  4154. }
  4155. }
  4156. },
  4157. [
  4158. {
  4159. name: "Megamacro",
  4160. height: math.unit(70, "km"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Gigamacro",
  4165. height: math.unit(681818, "miles")
  4166. },
  4167. {
  4168. name: "Examacro",
  4169. height: math.unit(3800000, "lightyears")
  4170. },
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(12, "feet"),
  4178. weight: math.unit(3000, "lb"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/mech/front.svg",
  4182. extra: 2900 / 2770,
  4183. bottom: 110 / 3010
  4184. }
  4185. },
  4186. back: {
  4187. height: math.unit(12, "feet"),
  4188. weight: math.unit(3000, "lb"),
  4189. name: "Back",
  4190. image: {
  4191. source: "./media/characters/mech/back.svg",
  4192. extra: 3011 / 2890,
  4193. bottom: 94 / 3105
  4194. }
  4195. },
  4196. maw: {
  4197. height: math.unit(3.07, "feet"),
  4198. name: "Maw",
  4199. image: {
  4200. source: "./media/characters/mech/maw.svg"
  4201. }
  4202. },
  4203. head: {
  4204. height: math.unit(2.82, "feet"),
  4205. name: "Head",
  4206. image: {
  4207. source: "./media/characters/mech/head.svg"
  4208. }
  4209. },
  4210. dick: {
  4211. height: math.unit(1.43, "feet"),
  4212. name: "Dick",
  4213. image: {
  4214. source: "./media/characters/mech/dick.svg"
  4215. }
  4216. },
  4217. },
  4218. [
  4219. {
  4220. name: "Normal",
  4221. height: math.unit(12, "feet")
  4222. },
  4223. {
  4224. name: "Macro",
  4225. height: math.unit(300, "feet"),
  4226. default: true
  4227. },
  4228. {
  4229. name: "Macro+",
  4230. height: math.unit(1500, "feet")
  4231. },
  4232. ]
  4233. ))
  4234. characterMakers.push(() => makeCharacter(
  4235. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4236. {
  4237. front: {
  4238. height: math.unit(1.3, "meter"),
  4239. weight: math.unit(30, "kg"),
  4240. name: "Front",
  4241. image: {
  4242. source: "./media/characters/gregory/front.svg",
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(1.3, "meter"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Macro",
  4254. height: math.unit(20, "meter")
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4260. {
  4261. front: {
  4262. height: math.unit(2.8, "meter"),
  4263. weight: math.unit(200, "kg"),
  4264. name: "Front",
  4265. image: {
  4266. source: "./media/characters/elory/front.svg",
  4267. }
  4268. }
  4269. },
  4270. [
  4271. {
  4272. name: "Normal",
  4273. height: math.unit(2.8, "meter"),
  4274. default: true
  4275. },
  4276. {
  4277. name: "Macro",
  4278. height: math.unit(38, "meter")
  4279. }
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4284. {
  4285. front: {
  4286. height: math.unit(470, "feet"),
  4287. weight: math.unit(924, "tons"),
  4288. name: "Front",
  4289. image: {
  4290. source: "./media/characters/angelpatamon/front.svg",
  4291. }
  4292. }
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(470, "feet"),
  4298. default: true
  4299. },
  4300. {
  4301. name: "Deity Size I",
  4302. height: math.unit(28651.2, "km")
  4303. },
  4304. {
  4305. name: "Deity Size II",
  4306. height: math.unit(171907.2, "km")
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4312. {
  4313. side: {
  4314. height: math.unit(7.2, "meter"),
  4315. weight: math.unit(8.2, "tons"),
  4316. name: "Side",
  4317. image: {
  4318. source: "./media/characters/cryae/side.svg",
  4319. extra: 3500 / 1500
  4320. }
  4321. }
  4322. },
  4323. [
  4324. {
  4325. name: "Normal",
  4326. height: math.unit(7.2, "meter"),
  4327. default: true
  4328. }
  4329. ]
  4330. ))
  4331. characterMakers.push(() => makeCharacter(
  4332. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4333. {
  4334. front: {
  4335. height: math.unit(6, "feet"),
  4336. weight: math.unit(175, "lb"),
  4337. name: "Front",
  4338. image: {
  4339. source: "./media/characters/xera/front.svg",
  4340. extra: 2377 / 1972,
  4341. bottom: 75.5 / 2452
  4342. }
  4343. },
  4344. side: {
  4345. height: math.unit(6, "feet"),
  4346. weight: math.unit(175, "lb"),
  4347. name: "Side",
  4348. image: {
  4349. source: "./media/characters/xera/side.svg",
  4350. extra: 2345 / 2019,
  4351. bottom: 39.7 / 2384
  4352. }
  4353. },
  4354. back: {
  4355. height: math.unit(6, "feet"),
  4356. weight: math.unit(175, "lb"),
  4357. name: "Back",
  4358. image: {
  4359. source: "./media/characters/xera/back.svg",
  4360. extra: 2095 / 1984,
  4361. bottom: 67 / 2166
  4362. }
  4363. },
  4364. },
  4365. [
  4366. {
  4367. name: "Small",
  4368. height: math.unit(10, "feet")
  4369. },
  4370. {
  4371. name: "Macro",
  4372. height: math.unit(500, "meters"),
  4373. default: true
  4374. },
  4375. {
  4376. name: "Macro+",
  4377. height: math.unit(10, "km")
  4378. },
  4379. {
  4380. name: "Gigamacro",
  4381. height: math.unit(25000, "km")
  4382. },
  4383. {
  4384. name: "Teramacro",
  4385. height: math.unit(3e6, "km")
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4391. {
  4392. front: {
  4393. height: math.unit(6, "feet"),
  4394. weight: math.unit(175, "lb"),
  4395. name: "Front",
  4396. image: {
  4397. source: "./media/characters/nebula/front.svg",
  4398. extra: 2566 / 2362,
  4399. bottom: 81 / 2644
  4400. }
  4401. }
  4402. },
  4403. [
  4404. {
  4405. name: "Small",
  4406. height: math.unit(4.5, "meters")
  4407. },
  4408. {
  4409. name: "Macro",
  4410. height: math.unit(1500, "meters"),
  4411. default: true
  4412. },
  4413. {
  4414. name: "Megamacro",
  4415. height: math.unit(150, "km")
  4416. },
  4417. {
  4418. name: "Gigamacro",
  4419. height: math.unit(27000, "km")
  4420. }
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(6, "feet"),
  4428. weight: math.unit(225, "lb"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/abysgar/front.svg"
  4432. }
  4433. }
  4434. },
  4435. [
  4436. {
  4437. name: "Small",
  4438. height: math.unit(4.5, "meters")
  4439. },
  4440. {
  4441. name: "Macro",
  4442. height: math.unit(1250, "meters"),
  4443. default: true
  4444. },
  4445. {
  4446. name: "Megamacro",
  4447. height: math.unit(125, "km")
  4448. },
  4449. {
  4450. name: "Gigamacro",
  4451. height: math.unit(26000, "km")
  4452. }
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(6, "feet"),
  4460. weight: math.unit(180, "lb"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/yakuz/front.svg"
  4464. }
  4465. }
  4466. },
  4467. [
  4468. {
  4469. name: "Small",
  4470. height: math.unit(5, "meters")
  4471. },
  4472. {
  4473. name: "Macro",
  4474. height: math.unit(1500, "meters"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Megamacro",
  4479. height: math.unit(200, "km")
  4480. },
  4481. {
  4482. name: "Gigamacro",
  4483. height: math.unit(100000, "km")
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(175, "lb"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/mirova/front.svg",
  4496. extra: 3334 / 3071,
  4497. bottom: 42 / 3375.6
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Small",
  4504. height: math.unit(5, "meters")
  4505. },
  4506. {
  4507. name: "Macro",
  4508. height: math.unit(900, "meters"),
  4509. default: true
  4510. },
  4511. {
  4512. name: "Megamacro",
  4513. height: math.unit(135, "km")
  4514. },
  4515. {
  4516. name: "Gigamacro",
  4517. height: math.unit(20000, "km")
  4518. }
  4519. ]
  4520. ))
  4521. characterMakers.push(() => makeCharacter(
  4522. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4523. {
  4524. side: {
  4525. height: math.unit(28.35, "feet"),
  4526. weight: math.unit(99.75, "tons"),
  4527. name: "Side",
  4528. image: {
  4529. source: "./media/characters/asana-mech/side.svg",
  4530. extra: 923 / 699,
  4531. bottom: 50 / 975
  4532. }
  4533. },
  4534. chaingun: {
  4535. height: math.unit(7, "feet"),
  4536. weight: math.unit(2400, "lb"),
  4537. name: "Chaingun",
  4538. image: {
  4539. source: "./media/characters/asana-mech/chaingun.svg"
  4540. }
  4541. },
  4542. laser: {
  4543. height: math.unit(7.12, "feet"),
  4544. weight: math.unit(2000, "lb"),
  4545. name: "Laser",
  4546. image: {
  4547. source: "./media/characters/asana-mech/laser.svg"
  4548. }
  4549. },
  4550. },
  4551. [
  4552. {
  4553. name: "Normal",
  4554. height: math.unit(28.35, "feet"),
  4555. default: true
  4556. },
  4557. {
  4558. name: "Macro",
  4559. height: math.unit(2500, "feet")
  4560. },
  4561. {
  4562. name: "Megamacro",
  4563. height: math.unit(25, "miles")
  4564. },
  4565. {
  4566. name: "Examacro",
  4567. height: math.unit(6e8, "lightyears")
  4568. },
  4569. ]
  4570. ))
  4571. characterMakers.push(() => makeCharacter(
  4572. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4573. {
  4574. front: {
  4575. height: math.unit(5, "meters"),
  4576. weight: math.unit(1000, "kg"),
  4577. name: "Front",
  4578. image: {
  4579. source: "./media/characters/asche/front.svg",
  4580. extra: 1258 / 1190,
  4581. bottom: 47 / 1305
  4582. }
  4583. },
  4584. frontUnderwear: {
  4585. height: math.unit(5, "meters"),
  4586. weight: math.unit(1000, "kg"),
  4587. name: "Front (Underwear)",
  4588. image: {
  4589. source: "./media/characters/asche/front-underwear.svg",
  4590. extra: 1258 / 1190,
  4591. bottom: 47 / 1305
  4592. }
  4593. },
  4594. frontDressed: {
  4595. height: math.unit(5, "meters"),
  4596. weight: math.unit(1000, "kg"),
  4597. name: "Front (Dressed)",
  4598. image: {
  4599. source: "./media/characters/asche/front-dressed.svg",
  4600. extra: 1258 / 1190,
  4601. bottom: 47 / 1305
  4602. }
  4603. },
  4604. frontArmor: {
  4605. height: math.unit(5, "meters"),
  4606. weight: math.unit(1000, "kg"),
  4607. name: "Front (Armored)",
  4608. image: {
  4609. source: "./media/characters/asche/front-armored.svg",
  4610. extra: 1374 / 1308,
  4611. bottom: 23 / 1397
  4612. }
  4613. },
  4614. mp724: {
  4615. height: math.unit(0.96, "meters"),
  4616. weight: math.unit(38, "kg"),
  4617. name: "H&K MP724",
  4618. image: {
  4619. source: "./media/characters/asche/h&k-mp724.svg"
  4620. }
  4621. },
  4622. side: {
  4623. height: math.unit(5, "meters"),
  4624. weight: math.unit(1000, "kg"),
  4625. name: "Side",
  4626. image: {
  4627. source: "./media/characters/asche/side.svg",
  4628. extra: 1717 / 1609,
  4629. bottom: 0.005
  4630. }
  4631. },
  4632. back: {
  4633. height: math.unit(5, "meters"),
  4634. weight: math.unit(1000, "kg"),
  4635. name: "Back",
  4636. image: {
  4637. source: "./media/characters/asche/back.svg",
  4638. extra: 1570 / 1501
  4639. }
  4640. },
  4641. },
  4642. [
  4643. {
  4644. name: "DEFCON 5",
  4645. height: math.unit(5, "meters")
  4646. },
  4647. {
  4648. name: "DEFCON 4",
  4649. height: math.unit(500, "meters"),
  4650. default: true
  4651. },
  4652. {
  4653. name: "DEFCON 3",
  4654. height: math.unit(5, "km")
  4655. },
  4656. {
  4657. name: "DEFCON 2",
  4658. height: math.unit(500, "km")
  4659. },
  4660. {
  4661. name: "DEFCON 1",
  4662. height: math.unit(500000, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 0",
  4666. height: math.unit(3, "gigaparsecs")
  4667. },
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4672. {
  4673. front: {
  4674. height: math.unit(2, "meters"),
  4675. weight: math.unit(76, "kg"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/gale/front.svg"
  4679. }
  4680. },
  4681. frontAlt1: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(76, "kg"),
  4684. name: "Front (Alt 1)",
  4685. image: {
  4686. source: "./media/characters/gale/front-alt-1.svg"
  4687. }
  4688. },
  4689. frontAlt2: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front (Alt 2)",
  4693. image: {
  4694. source: "./media/characters/gale/front-alt-2.svg"
  4695. }
  4696. },
  4697. },
  4698. [
  4699. {
  4700. name: "Normal",
  4701. height: math.unit(7, "feet")
  4702. },
  4703. {
  4704. name: "Macro",
  4705. height: math.unit(150, "feet"),
  4706. default: true
  4707. },
  4708. {
  4709. name: "Macro+",
  4710. height: math.unit(300, "feet")
  4711. },
  4712. ]
  4713. ))
  4714. characterMakers.push(() => makeCharacter(
  4715. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4716. {
  4717. front: {
  4718. height: math.unit(5 + 10/12, "feet"),
  4719. weight: math.unit(67, "kg"),
  4720. name: "Front",
  4721. image: {
  4722. source: "./media/characters/draylen/front.svg",
  4723. extra: 832/777,
  4724. bottom: 85/917
  4725. }
  4726. }
  4727. },
  4728. [
  4729. {
  4730. name: "Normal",
  4731. height: math.unit(5 + 10/12, "feet")
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(150, "feet"),
  4736. default: true
  4737. }
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(7 + 9 / 12, "feet"),
  4745. weight: math.unit(379, "lbs"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/chez/front.svg"
  4749. }
  4750. },
  4751. side: {
  4752. height: math.unit(7 + 9 / 12, "feet"),
  4753. weight: math.unit(379, "lbs"),
  4754. name: "Side",
  4755. image: {
  4756. source: "./media/characters/chez/side.svg"
  4757. }
  4758. }
  4759. },
  4760. [
  4761. {
  4762. name: "Normal",
  4763. height: math.unit(7 + 9 / 12, "feet"),
  4764. default: true
  4765. },
  4766. {
  4767. name: "God King",
  4768. height: math.unit(9750000, "meters")
  4769. }
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4774. {
  4775. front: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(275, "lbs"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/kaylum/front.svg",
  4781. bottom: 0.01,
  4782. extra: 1166 / 1031
  4783. }
  4784. },
  4785. frontWingless: {
  4786. height: math.unit(6, "feet"),
  4787. weight: math.unit(275, "lbs"),
  4788. name: "Front (Wingless)",
  4789. image: {
  4790. source: "./media/characters/kaylum/front-wingless.svg",
  4791. bottom: 0.01,
  4792. extra: 1117 / 1031
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Normal",
  4799. height: math.unit(3.05, "meters")
  4800. },
  4801. {
  4802. name: "Master",
  4803. height: math.unit(5.5, "meters")
  4804. },
  4805. {
  4806. name: "Rampage",
  4807. height: math.unit(19, "meters")
  4808. },
  4809. {
  4810. name: "Macro Lite",
  4811. height: math.unit(37, "meters")
  4812. },
  4813. {
  4814. name: "Hyper Predator",
  4815. height: math.unit(61, "meters")
  4816. },
  4817. {
  4818. name: "Macro",
  4819. height: math.unit(138, "meters"),
  4820. default: true
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(150, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/geta/front.svg"
  4833. }
  4834. }
  4835. },
  4836. [
  4837. {
  4838. name: "Micro",
  4839. height: math.unit(3, "inches"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Normal",
  4844. height: math.unit(5 + 5 / 12, "feet")
  4845. }
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4850. {
  4851. front: {
  4852. height: math.unit(6, "feet"),
  4853. weight: math.unit(300, "lbs"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/tyrnn/front.svg"
  4857. }
  4858. }
  4859. },
  4860. [
  4861. {
  4862. name: "Main Height",
  4863. height: math.unit(355, "feet"),
  4864. default: true
  4865. },
  4866. {
  4867. name: "Fave. Height",
  4868. height: math.unit(2400, "feet")
  4869. }
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4874. {
  4875. front: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(300, "lbs"),
  4878. name: "Front",
  4879. image: {
  4880. source: "./media/characters/appledectomy/front.svg"
  4881. }
  4882. }
  4883. },
  4884. [
  4885. {
  4886. name: "Macro",
  4887. height: math.unit(2500, "feet")
  4888. },
  4889. {
  4890. name: "Megamacro",
  4891. height: math.unit(50, "miles"),
  4892. default: true
  4893. },
  4894. {
  4895. name: "Gigamacro",
  4896. height: math.unit(5000, "miles")
  4897. },
  4898. {
  4899. name: "Teramacro",
  4900. height: math.unit(250000, "miles")
  4901. },
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(200, "lbs"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/vulpes/front.svg",
  4913. extra: 573 / 543,
  4914. bottom: 0.033
  4915. }
  4916. },
  4917. side: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(200, "lbs"),
  4920. name: "Side",
  4921. image: {
  4922. source: "./media/characters/vulpes/side.svg",
  4923. extra: 577 / 549,
  4924. bottom: 11 / 588
  4925. }
  4926. },
  4927. back: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(200, "lbs"),
  4930. name: "Back",
  4931. image: {
  4932. source: "./media/characters/vulpes/back.svg",
  4933. extra: 573 / 549,
  4934. bottom: 20 / 593
  4935. }
  4936. },
  4937. feet: {
  4938. height: math.unit(1.276, "feet"),
  4939. name: "Feet",
  4940. image: {
  4941. source: "./media/characters/vulpes/feet.svg"
  4942. }
  4943. },
  4944. maw: {
  4945. height: math.unit(1.18, "feet"),
  4946. name: "Maw",
  4947. image: {
  4948. source: "./media/characters/vulpes/maw.svg"
  4949. }
  4950. },
  4951. },
  4952. [
  4953. {
  4954. name: "Micro",
  4955. height: math.unit(2, "inches")
  4956. },
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(6.3, "feet")
  4960. },
  4961. {
  4962. name: "Macro",
  4963. height: math.unit(850, "feet")
  4964. },
  4965. {
  4966. name: "Megamacro",
  4967. height: math.unit(7500, "feet"),
  4968. default: true
  4969. },
  4970. {
  4971. name: "Gigamacro",
  4972. height: math.unit(570000, "miles")
  4973. }
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4978. {
  4979. front: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(210, "lbs"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/rain-fallen/front.svg"
  4985. }
  4986. },
  4987. side: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(210, "lbs"),
  4990. name: "Side",
  4991. image: {
  4992. source: "./media/characters/rain-fallen/side.svg"
  4993. }
  4994. },
  4995. back: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(210, "lbs"),
  4998. name: "Back",
  4999. image: {
  5000. source: "./media/characters/rain-fallen/back.svg"
  5001. }
  5002. },
  5003. feral: {
  5004. height: math.unit(9, "feet"),
  5005. weight: math.unit(700, "lbs"),
  5006. name: "Feral",
  5007. image: {
  5008. source: "./media/characters/rain-fallen/feral.svg"
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Meddling with Mortals",
  5015. height: math.unit(8 + 8/12, "feet")
  5016. },
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(5, "meter")
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(150, "meter"),
  5024. default: true
  5025. },
  5026. {
  5027. name: "Megamacro",
  5028. height: math.unit(278e6, "meter")
  5029. },
  5030. {
  5031. name: "Gigamacro",
  5032. height: math.unit(2e9, "meter")
  5033. },
  5034. {
  5035. name: "Teramacro",
  5036. height: math.unit(8e12, "meter")
  5037. },
  5038. {
  5039. name: "Devourer",
  5040. height: math.unit(14, "zettameters")
  5041. },
  5042. {
  5043. name: "Scarlet King",
  5044. height: math.unit(18, "yottameters")
  5045. },
  5046. {
  5047. name: "Void",
  5048. height: math.unit(1e88, "yottameters")
  5049. }
  5050. ]
  5051. ))
  5052. characterMakers.push(() => makeCharacter(
  5053. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5054. {
  5055. standing: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(180, "lbs"),
  5058. name: "Standing",
  5059. image: {
  5060. source: "./media/characters/zaakira/standing.svg",
  5061. extra: 1599/1504,
  5062. bottom: 39/1638
  5063. }
  5064. },
  5065. laying: {
  5066. height: math.unit(3, "feet"),
  5067. weight: math.unit(180, "lbs"),
  5068. name: "Laying",
  5069. image: {
  5070. source: "./media/characters/zaakira/laying.svg"
  5071. }
  5072. },
  5073. },
  5074. [
  5075. {
  5076. name: "Normal",
  5077. height: math.unit(12, "feet")
  5078. },
  5079. {
  5080. name: "Macro",
  5081. height: math.unit(279, "feet"),
  5082. default: true
  5083. }
  5084. ]
  5085. ))
  5086. characterMakers.push(() => makeCharacter(
  5087. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5088. {
  5089. femSfw: {
  5090. height: math.unit(8, "feet"),
  5091. weight: math.unit(350, "lb"),
  5092. name: "Fem",
  5093. image: {
  5094. source: "./media/characters/sigvald/fem-sfw.svg",
  5095. extra: 182 / 164,
  5096. bottom: 8.7 / 190.5
  5097. }
  5098. },
  5099. femNsfw: {
  5100. height: math.unit(8, "feet"),
  5101. weight: math.unit(350, "lb"),
  5102. name: "Fem (NSFW)",
  5103. image: {
  5104. source: "./media/characters/sigvald/fem-nsfw.svg",
  5105. extra: 182 / 164,
  5106. bottom: 8.7 / 190.5
  5107. }
  5108. },
  5109. maleNsfw: {
  5110. height: math.unit(8, "feet"),
  5111. weight: math.unit(350, "lb"),
  5112. name: "Male (NSFW)",
  5113. image: {
  5114. source: "./media/characters/sigvald/male-nsfw.svg",
  5115. extra: 182 / 164,
  5116. bottom: 8.7 / 190.5
  5117. }
  5118. },
  5119. hermNsfw: {
  5120. height: math.unit(8, "feet"),
  5121. weight: math.unit(350, "lb"),
  5122. name: "Herm (NSFW)",
  5123. image: {
  5124. source: "./media/characters/sigvald/herm-nsfw.svg",
  5125. extra: 182 / 164,
  5126. bottom: 8.7 / 190.5
  5127. }
  5128. },
  5129. dick: {
  5130. height: math.unit(2.36, "feet"),
  5131. name: "Dick",
  5132. image: {
  5133. source: "./media/characters/sigvald/dick.svg"
  5134. }
  5135. },
  5136. eye: {
  5137. height: math.unit(0.31, "feet"),
  5138. name: "Eye",
  5139. image: {
  5140. source: "./media/characters/sigvald/eye.svg"
  5141. }
  5142. },
  5143. mouth: {
  5144. height: math.unit(0.92, "feet"),
  5145. name: "Mouth",
  5146. image: {
  5147. source: "./media/characters/sigvald/mouth.svg"
  5148. }
  5149. },
  5150. paws: {
  5151. height: math.unit(2.2, "feet"),
  5152. name: "Paws",
  5153. image: {
  5154. source: "./media/characters/sigvald/paws.svg"
  5155. }
  5156. }
  5157. },
  5158. [
  5159. {
  5160. name: "Normal",
  5161. height: math.unit(8, "feet")
  5162. },
  5163. {
  5164. name: "Large",
  5165. height: math.unit(12, "feet")
  5166. },
  5167. {
  5168. name: "Larger",
  5169. height: math.unit(20, "feet")
  5170. },
  5171. {
  5172. name: "Macro",
  5173. height: math.unit(150, "feet")
  5174. },
  5175. {
  5176. name: "Macro+",
  5177. height: math.unit(200, "feet"),
  5178. default: true
  5179. },
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5184. {
  5185. side: {
  5186. height: math.unit(12, "feet"),
  5187. weight: math.unit(2000, "kg"),
  5188. name: "Side",
  5189. image: {
  5190. source: "./media/characters/scott/side.svg",
  5191. extra: 754 / 724,
  5192. bottom: 0.069
  5193. }
  5194. },
  5195. upright: {
  5196. height: math.unit(12, "feet"),
  5197. weight: math.unit(2000, "kg"),
  5198. name: "Upright",
  5199. image: {
  5200. source: "./media/characters/scott/upright.svg",
  5201. extra: 3881 / 3722,
  5202. bottom: 0.05
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(12, "feet"),
  5210. default: true
  5211. },
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5216. {
  5217. side: {
  5218. height: math.unit(8, "meters"),
  5219. weight: math.unit(84755, "lbs"),
  5220. name: "Side",
  5221. image: {
  5222. source: "./media/characters/tobias/side.svg",
  5223. extra: 1474 / 1096,
  5224. bottom: 38.9 / 1513.1235
  5225. }
  5226. },
  5227. },
  5228. [
  5229. {
  5230. name: "Normal",
  5231. height: math.unit(8, "meters"),
  5232. default: true
  5233. },
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5238. {
  5239. front: {
  5240. height: math.unit(5.5, "feet"),
  5241. weight: math.unit(400, "lbs"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/kieran/front.svg",
  5245. extra: 2694 / 2364,
  5246. bottom: 217 / 2908
  5247. }
  5248. },
  5249. side: {
  5250. height: math.unit(5.5, "feet"),
  5251. weight: math.unit(400, "lbs"),
  5252. name: "Side",
  5253. image: {
  5254. source: "./media/characters/kieran/side.svg",
  5255. extra: 875 / 777,
  5256. bottom: 84.6 / 959
  5257. }
  5258. },
  5259. },
  5260. [
  5261. {
  5262. name: "Normal",
  5263. height: math.unit(5.5, "feet"),
  5264. default: true
  5265. },
  5266. ]
  5267. ))
  5268. characterMakers.push(() => makeCharacter(
  5269. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5270. {
  5271. side: {
  5272. height: math.unit(2, "meters"),
  5273. weight: math.unit(70, "kg"),
  5274. name: "Side",
  5275. image: {
  5276. source: "./media/characters/sanya/side.svg",
  5277. bottom: 0.02,
  5278. extra: 1.02
  5279. }
  5280. },
  5281. },
  5282. [
  5283. {
  5284. name: "Small",
  5285. height: math.unit(2, "meters")
  5286. },
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(3, "meters")
  5290. },
  5291. {
  5292. name: "Macro",
  5293. height: math.unit(16, "meters"),
  5294. default: true
  5295. },
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(2, "meters"),
  5303. weight: math.unit(120, "kg"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/miranda/front.svg",
  5307. extra: 195 / 185,
  5308. bottom: 10.9 / 206.5
  5309. }
  5310. },
  5311. back: {
  5312. height: math.unit(2, "meters"),
  5313. weight: math.unit(120, "kg"),
  5314. name: "Back",
  5315. image: {
  5316. source: "./media/characters/miranda/back.svg",
  5317. extra: 201 / 193,
  5318. bottom: 2.3 / 203.7
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(10, "feet"),
  5326. default: true
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "James", species: ["deer"], tags: ["anthro"] },
  5332. {
  5333. side: {
  5334. height: math.unit(2, "meters"),
  5335. weight: math.unit(100, "kg"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/james/front.svg",
  5339. extra: 10 / 8.5
  5340. }
  5341. },
  5342. },
  5343. [
  5344. {
  5345. name: "Normal",
  5346. height: math.unit(8.5, "feet"),
  5347. default: true
  5348. }
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5353. {
  5354. side: {
  5355. height: math.unit(9.5, "feet"),
  5356. weight: math.unit(2500, "lbs"),
  5357. name: "Side",
  5358. image: {
  5359. source: "./media/characters/heather/side.svg"
  5360. }
  5361. },
  5362. },
  5363. [
  5364. {
  5365. name: "Normal",
  5366. height: math.unit(9.5, "feet"),
  5367. default: true
  5368. }
  5369. ]
  5370. ))
  5371. characterMakers.push(() => makeCharacter(
  5372. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5373. {
  5374. side: {
  5375. height: math.unit(6.5, "feet"),
  5376. weight: math.unit(400, "lbs"),
  5377. name: "Side",
  5378. image: {
  5379. source: "./media/characters/lukas/side.svg",
  5380. extra: 7.25 / 6.5
  5381. }
  5382. },
  5383. },
  5384. [
  5385. {
  5386. name: "Normal",
  5387. height: math.unit(6.5, "feet"),
  5388. default: true
  5389. }
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5394. {
  5395. side: {
  5396. height: math.unit(5, "feet"),
  5397. weight: math.unit(3000, "lbs"),
  5398. name: "Side",
  5399. image: {
  5400. source: "./media/characters/louise/side.svg"
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(5, "feet"),
  5408. default: true
  5409. }
  5410. ]
  5411. ))
  5412. characterMakers.push(() => makeCharacter(
  5413. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5414. {
  5415. side: {
  5416. height: math.unit(6, "feet"),
  5417. weight: math.unit(150, "lbs"),
  5418. name: "Side",
  5419. image: {
  5420. source: "./media/characters/ramona/side.svg",
  5421. extra: 871/854,
  5422. bottom: 41/912
  5423. }
  5424. },
  5425. },
  5426. [
  5427. {
  5428. name: "Normal",
  5429. height: math.unit(5.3, "meters"),
  5430. default: true
  5431. },
  5432. {
  5433. name: "Macro",
  5434. height: math.unit(20, "stories")
  5435. },
  5436. {
  5437. name: "Macro+",
  5438. height: math.unit(50, "stories")
  5439. },
  5440. ]
  5441. ))
  5442. characterMakers.push(() => makeCharacter(
  5443. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5444. {
  5445. standing: {
  5446. height: math.unit(5.75, "feet"),
  5447. weight: math.unit(160, "lbs"),
  5448. name: "Standing",
  5449. image: {
  5450. source: "./media/characters/deerpuff/standing.svg",
  5451. extra: 682 / 624
  5452. }
  5453. },
  5454. sitting: {
  5455. height: math.unit(5.75 / 1.79, "feet"),
  5456. weight: math.unit(160, "lbs"),
  5457. name: "Sitting",
  5458. image: {
  5459. source: "./media/characters/deerpuff/sitting.svg",
  5460. bottom: 44 / 400,
  5461. extra: 1
  5462. }
  5463. },
  5464. taurLaying: {
  5465. height: math.unit(6, "feet"),
  5466. weight: math.unit(400, "lbs"),
  5467. name: "Taur (Laying)",
  5468. image: {
  5469. source: "./media/characters/deerpuff/taur-laying.svg"
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Puffball",
  5476. height: math.unit(6, "inches")
  5477. },
  5478. {
  5479. name: "Normalpuff",
  5480. height: math.unit(5.75, "feet")
  5481. },
  5482. {
  5483. name: "Macropuff",
  5484. height: math.unit(1500, "feet"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Megapuff",
  5489. height: math.unit(500, "miles")
  5490. },
  5491. {
  5492. name: "Gigapuff",
  5493. height: math.unit(250000, "miles")
  5494. },
  5495. {
  5496. name: "Omegapuff",
  5497. height: math.unit(1000, "lightyears")
  5498. },
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5503. {
  5504. stomping: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(170, "lbs"),
  5507. name: "Stomping",
  5508. image: {
  5509. source: "./media/characters/vivian/stomping.svg"
  5510. }
  5511. },
  5512. sitting: {
  5513. height: math.unit(6 / 1.75, "feet"),
  5514. weight: math.unit(170, "lbs"),
  5515. name: "Sitting",
  5516. image: {
  5517. source: "./media/characters/vivian/sitting.svg",
  5518. bottom: 1 / 6.4,
  5519. extra: 1,
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(7, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Macro",
  5531. height: math.unit(10, "stories")
  5532. },
  5533. {
  5534. name: "Macro+",
  5535. height: math.unit(30, "stories")
  5536. },
  5537. {
  5538. name: "Megamacro",
  5539. height: math.unit(10, "miles")
  5540. },
  5541. {
  5542. name: "Megamacro+",
  5543. height: math.unit(2750000, "meters")
  5544. },
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(160, "lbs"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/prince/front.svg",
  5556. extra: 3400 / 3000
  5557. }
  5558. },
  5559. jumping: {
  5560. height: math.unit(6, "feet"),
  5561. weight: math.unit(160, "lbs"),
  5562. name: "Jumping",
  5563. image: {
  5564. source: "./media/characters/prince/jump.svg",
  5565. extra: 2555 / 2134
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(7.75, "feet"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Not cute",
  5577. height: math.unit(17, "feet")
  5578. },
  5579. {
  5580. name: "I said NOT",
  5581. height: math.unit(91, "feet")
  5582. },
  5583. {
  5584. name: "Please stop",
  5585. height: math.unit(560, "feet")
  5586. },
  5587. {
  5588. name: "What have you done",
  5589. height: math.unit(2200, "feet")
  5590. },
  5591. {
  5592. name: "Deer God",
  5593. height: math.unit(3.6, "miles")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5599. {
  5600. standing: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(300, "lbs"),
  5603. name: "Standing",
  5604. image: {
  5605. source: "./media/characters/psymon/standing.svg",
  5606. extra: 1888 / 1810,
  5607. bottom: 0.05
  5608. }
  5609. },
  5610. slithering: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(300, "lbs"),
  5613. name: "Slithering",
  5614. image: {
  5615. source: "./media/characters/psymon/slithering.svg",
  5616. extra: 1330 / 1224
  5617. }
  5618. },
  5619. slitheringAlt: {
  5620. height: math.unit(6, "feet"),
  5621. weight: math.unit(300, "lbs"),
  5622. name: "Slithering (Alt)",
  5623. image: {
  5624. source: "./media/characters/psymon/slithering-alt.svg",
  5625. extra: 1330 / 1224
  5626. }
  5627. },
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(11.25, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Large",
  5637. height: math.unit(27, "feet")
  5638. },
  5639. {
  5640. name: "Giant",
  5641. height: math.unit(87, "feet")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(365, "feet")
  5646. },
  5647. {
  5648. name: "Megamacro",
  5649. height: math.unit(3, "miles")
  5650. },
  5651. {
  5652. name: "World Serpent",
  5653. height: math.unit(8000, "miles")
  5654. },
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5659. {
  5660. front: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(180, "lbs"),
  5663. name: "Front",
  5664. image: {
  5665. source: "./media/characters/daimos/front.svg",
  5666. extra: 4160 / 3897,
  5667. bottom: 0.021
  5668. }
  5669. }
  5670. },
  5671. [
  5672. {
  5673. name: "Normal",
  5674. height: math.unit(8, "feet"),
  5675. default: true
  5676. },
  5677. {
  5678. name: "Big Dog",
  5679. height: math.unit(22, "feet")
  5680. },
  5681. {
  5682. name: "Macro",
  5683. height: math.unit(127, "feet")
  5684. },
  5685. {
  5686. name: "Megamacro",
  5687. height: math.unit(3600, "feet")
  5688. },
  5689. ]
  5690. ))
  5691. characterMakers.push(() => makeCharacter(
  5692. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5693. {
  5694. side: {
  5695. height: math.unit(6, "feet"),
  5696. weight: math.unit(180, "lbs"),
  5697. name: "Side",
  5698. image: {
  5699. source: "./media/characters/blake/side.svg",
  5700. extra: 1212 / 1120,
  5701. bottom: 0.05
  5702. }
  5703. },
  5704. crouched: {
  5705. height: math.unit(6 * 0.57, "feet"),
  5706. weight: math.unit(180, "lbs"),
  5707. name: "Crouched",
  5708. image: {
  5709. source: "./media/characters/blake/crouched.svg",
  5710. extra: 840 / 587,
  5711. bottom: 0.04
  5712. }
  5713. },
  5714. bent: {
  5715. height: math.unit(6 * 0.75, "feet"),
  5716. weight: math.unit(180, "lbs"),
  5717. name: "Bent",
  5718. image: {
  5719. source: "./media/characters/blake/bent.svg",
  5720. extra: 592 / 544,
  5721. bottom: 0.035
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(8 + 1 / 6, "feet"),
  5729. default: true
  5730. },
  5731. {
  5732. name: "Big Backside",
  5733. height: math.unit(37, "feet")
  5734. },
  5735. {
  5736. name: "Subway Shredder",
  5737. height: math.unit(72, "feet")
  5738. },
  5739. {
  5740. name: "City Carver",
  5741. height: math.unit(1675, "feet")
  5742. },
  5743. {
  5744. name: "Tectonic Tweaker",
  5745. height: math.unit(2300, "miles")
  5746. },
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5751. {
  5752. front: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(180, "lbs"),
  5755. name: "Front",
  5756. image: {
  5757. source: "./media/characters/guisetto/front.svg",
  5758. extra: 856 / 817,
  5759. bottom: 0.06
  5760. }
  5761. },
  5762. airborne: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(180, "lbs"),
  5765. name: "Airborne",
  5766. image: {
  5767. source: "./media/characters/guisetto/airborne.svg",
  5768. extra: 584 / 525
  5769. }
  5770. },
  5771. },
  5772. [
  5773. {
  5774. name: "Normal",
  5775. height: math.unit(10 + 11 / 12, "feet"),
  5776. default: true
  5777. },
  5778. {
  5779. name: "Large",
  5780. height: math.unit(35, "feet")
  5781. },
  5782. {
  5783. name: "Macro",
  5784. height: math.unit(475, "feet")
  5785. },
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5790. {
  5791. front: {
  5792. height: math.unit(6, "feet"),
  5793. weight: math.unit(180, "lbs"),
  5794. name: "Front",
  5795. image: {
  5796. source: "./media/characters/luxor/front.svg",
  5797. extra: 2940 / 2152
  5798. }
  5799. },
  5800. back: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(180, "lbs"),
  5803. name: "Back",
  5804. image: {
  5805. source: "./media/characters/luxor/back.svg",
  5806. extra: 1083 / 960
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(5 + 5 / 6, "feet"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Lamp",
  5818. height: math.unit(50, "feet")
  5819. },
  5820. {
  5821. name: "Lämp",
  5822. height: math.unit(300, "feet")
  5823. },
  5824. {
  5825. name: "The sun is a lamp",
  5826. height: math.unit(250000, "miles")
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(50, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/huoyan/front.svg"
  5839. }
  5840. },
  5841. side: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(180, "lbs"),
  5844. name: "Side",
  5845. image: {
  5846. source: "./media/characters/huoyan/side.svg"
  5847. }
  5848. },
  5849. },
  5850. [
  5851. {
  5852. name: "Chef",
  5853. height: math.unit(9, "feet")
  5854. },
  5855. {
  5856. name: "Normal",
  5857. height: math.unit(65, "feet"),
  5858. default: true
  5859. },
  5860. {
  5861. name: "Macro",
  5862. height: math.unit(780, "feet")
  5863. },
  5864. {
  5865. name: "Flaming Mountain",
  5866. height: math.unit(4.8, "miles")
  5867. },
  5868. {
  5869. name: "Celestial",
  5870. height: math.unit(765000, "miles")
  5871. },
  5872. ]
  5873. ))
  5874. characterMakers.push(() => makeCharacter(
  5875. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5876. {
  5877. front: {
  5878. height: math.unit(5 + 3 / 4, "feet"),
  5879. weight: math.unit(120, "lbs"),
  5880. name: "Front",
  5881. image: {
  5882. source: "./media/characters/tails/front.svg"
  5883. }
  5884. }
  5885. },
  5886. [
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(5 + 3 / 4, "feet"),
  5890. default: true
  5891. }
  5892. ]
  5893. ))
  5894. characterMakers.push(() => makeCharacter(
  5895. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5896. {
  5897. front: {
  5898. height: math.unit(4, "feet"),
  5899. weight: math.unit(50, "lbs"),
  5900. name: "Front",
  5901. image: {
  5902. source: "./media/characters/rainy/front.svg"
  5903. }
  5904. }
  5905. },
  5906. [
  5907. {
  5908. name: "Macro",
  5909. height: math.unit(800, "feet"),
  5910. default: true
  5911. }
  5912. ]
  5913. ))
  5914. characterMakers.push(() => makeCharacter(
  5915. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5916. {
  5917. front: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(150, "lbs"),
  5920. name: "Front",
  5921. image: {
  5922. source: "./media/characters/rainier/front.svg"
  5923. }
  5924. }
  5925. },
  5926. [
  5927. {
  5928. name: "Micro",
  5929. height: math.unit(2, "mm"),
  5930. default: true
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5936. {
  5937. front: {
  5938. height: math.unit(8 + 4/12, "feet"),
  5939. name: "Front",
  5940. image: {
  5941. source: "./media/characters/andy-renard/front.svg",
  5942. extra: 1839/1726,
  5943. bottom: 134/1973
  5944. }
  5945. },
  5946. back: {
  5947. height: math.unit(8 + 4/12, "feet"),
  5948. name: "Back",
  5949. image: {
  5950. source: "./media/characters/andy-renard/back.svg",
  5951. extra: 1838/1710,
  5952. bottom: 105/1943
  5953. }
  5954. },
  5955. },
  5956. [
  5957. {
  5958. name: "Tall",
  5959. height: math.unit(8 + 4/12, "feet")
  5960. },
  5961. {
  5962. name: "Mini Macro",
  5963. height: math.unit(15, "feet"),
  5964. default: true
  5965. },
  5966. {
  5967. name: "Macro",
  5968. height: math.unit(100, "feet")
  5969. },
  5970. {
  5971. name: "Mega Macro",
  5972. height: math.unit(1000, "feet")
  5973. },
  5974. {
  5975. name: "Giga Macro",
  5976. height: math.unit(10, "miles")
  5977. },
  5978. {
  5979. name: "God Macro",
  5980. height: math.unit(1, "multiverse")
  5981. },
  5982. ]
  5983. ))
  5984. characterMakers.push(() => makeCharacter(
  5985. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5986. {
  5987. front: {
  5988. height: math.unit(6, "feet"),
  5989. weight: math.unit(210, "lbs"),
  5990. name: "Front",
  5991. image: {
  5992. source: "./media/characters/cimmaron/front-sfw.svg",
  5993. extra: 701 / 676,
  5994. bottom: 0.046
  5995. }
  5996. },
  5997. back: {
  5998. height: math.unit(6, "feet"),
  5999. weight: math.unit(210, "lbs"),
  6000. name: "Back",
  6001. image: {
  6002. source: "./media/characters/cimmaron/back-sfw.svg",
  6003. extra: 701 / 676,
  6004. bottom: 0.046
  6005. }
  6006. },
  6007. frontNsfw: {
  6008. height: math.unit(6, "feet"),
  6009. weight: math.unit(210, "lbs"),
  6010. name: "Front (NSFW)",
  6011. image: {
  6012. source: "./media/characters/cimmaron/front-nsfw.svg",
  6013. extra: 701 / 676,
  6014. bottom: 0.046
  6015. }
  6016. },
  6017. backNsfw: {
  6018. height: math.unit(6, "feet"),
  6019. weight: math.unit(210, "lbs"),
  6020. name: "Back (NSFW)",
  6021. image: {
  6022. source: "./media/characters/cimmaron/back-nsfw.svg",
  6023. extra: 701 / 676,
  6024. bottom: 0.046
  6025. }
  6026. },
  6027. dick: {
  6028. height: math.unit(1.714, "feet"),
  6029. name: "Dick",
  6030. image: {
  6031. source: "./media/characters/cimmaron/dick.svg"
  6032. }
  6033. },
  6034. },
  6035. [
  6036. {
  6037. name: "Normal",
  6038. height: math.unit(6, "feet"),
  6039. default: true
  6040. },
  6041. {
  6042. name: "Macro Mayor",
  6043. height: math.unit(350, "meters")
  6044. },
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6049. {
  6050. front: {
  6051. height: math.unit(6, "feet"),
  6052. weight: math.unit(200, "lbs"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/akari/front.svg",
  6056. extra: 962 / 901,
  6057. bottom: 0.04
  6058. }
  6059. }
  6060. },
  6061. [
  6062. {
  6063. name: "Micro",
  6064. height: math.unit(5, "inches"),
  6065. default: true
  6066. },
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(7, "feet")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(140, "lbs"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/cynosura/front.svg",
  6082. extra: 896 / 847
  6083. }
  6084. },
  6085. back: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(140, "lbs"),
  6088. name: "Back",
  6089. image: {
  6090. source: "./media/characters/cynosura/back.svg",
  6091. extra: 1365 / 1250
  6092. }
  6093. },
  6094. },
  6095. [
  6096. {
  6097. name: "Micro",
  6098. height: math.unit(4, "inches")
  6099. },
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(5.75, "feet"),
  6103. default: true
  6104. },
  6105. {
  6106. name: "Tall",
  6107. height: math.unit(10, "feet")
  6108. },
  6109. {
  6110. name: "Big",
  6111. height: math.unit(20, "feet")
  6112. },
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(50, "feet")
  6116. },
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(13 + 2/12, "feet"),
  6124. weight: math.unit(800, "kg"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/gin/front.svg",
  6128. extra: 1312/1191,
  6129. bottom: 45/1357
  6130. }
  6131. },
  6132. mouth: {
  6133. height: math.unit(2.39 * 1.8, "feet"),
  6134. name: "Mouth",
  6135. image: {
  6136. source: "./media/characters/gin/mouth.svg"
  6137. }
  6138. },
  6139. hand: {
  6140. height: math.unit(1.57 * 2.19, "feet"),
  6141. name: "Hand",
  6142. image: {
  6143. source: "./media/characters/gin/hand.svg"
  6144. }
  6145. },
  6146. foot: {
  6147. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6148. name: "Foot",
  6149. image: {
  6150. source: "./media/characters/gin/foot.svg"
  6151. }
  6152. },
  6153. sole: {
  6154. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6155. name: "Sole",
  6156. image: {
  6157. source: "./media/characters/gin/sole.svg"
  6158. }
  6159. },
  6160. },
  6161. [
  6162. {
  6163. name: "Very Small",
  6164. height: math.unit(13 + 2 / 12, "feet")
  6165. },
  6166. {
  6167. name: "Micro",
  6168. height: math.unit(600, "miles")
  6169. },
  6170. {
  6171. name: "Regular",
  6172. height: math.unit(20, "earths"),
  6173. default: true
  6174. },
  6175. {
  6176. name: "Macro",
  6177. height: math.unit(2.2, "solarradii")
  6178. },
  6179. {
  6180. name: "Teramacro",
  6181. height: math.unit(1.2, "galaxies")
  6182. },
  6183. {
  6184. name: "Omegamacro",
  6185. height: math.unit(200, "universes")
  6186. },
  6187. ]
  6188. ))
  6189. characterMakers.push(() => makeCharacter(
  6190. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6191. {
  6192. front: {
  6193. height: math.unit(6 + 1 / 6, "feet"),
  6194. weight: math.unit(178, "lbs"),
  6195. name: "Front",
  6196. image: {
  6197. source: "./media/characters/guy/front.svg"
  6198. }
  6199. }
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(6 + 1 / 6, "feet"),
  6205. default: true
  6206. },
  6207. {
  6208. name: "Large",
  6209. height: math.unit(25 + 7 / 12, "feet")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(60 + 9 / 12, "feet")
  6214. },
  6215. {
  6216. name: "Macro+",
  6217. height: math.unit(246, "feet")
  6218. },
  6219. {
  6220. name: "Macro++",
  6221. height: math.unit(878, "feet")
  6222. }
  6223. ]
  6224. ))
  6225. characterMakers.push(() => makeCharacter(
  6226. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6227. {
  6228. front: {
  6229. height: math.unit(9, "feet"),
  6230. weight: math.unit(800, "lbs"),
  6231. name: "Front",
  6232. image: {
  6233. source: "./media/characters/tiberius/front.svg",
  6234. extra: 2295 / 2071
  6235. }
  6236. },
  6237. back: {
  6238. height: math.unit(9, "feet"),
  6239. weight: math.unit(800, "lbs"),
  6240. name: "Back",
  6241. image: {
  6242. source: "./media/characters/tiberius/back.svg",
  6243. extra: 2373 / 2160
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(9, "feet"),
  6251. default: true
  6252. }
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6257. {
  6258. front: {
  6259. height: math.unit(6, "feet"),
  6260. weight: math.unit(600, "lbs"),
  6261. name: "Front",
  6262. image: {
  6263. source: "./media/characters/surgo/front.svg",
  6264. extra: 3591 / 2227
  6265. }
  6266. },
  6267. back: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(600, "lbs"),
  6270. name: "Back",
  6271. image: {
  6272. source: "./media/characters/surgo/back.svg",
  6273. extra: 3557 / 2228
  6274. }
  6275. },
  6276. laying: {
  6277. height: math.unit(6 * 0.85, "feet"),
  6278. weight: math.unit(600, "lbs"),
  6279. name: "Laying",
  6280. image: {
  6281. source: "./media/characters/surgo/laying.svg"
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(6, "feet"),
  6289. default: true
  6290. }
  6291. ]
  6292. ))
  6293. characterMakers.push(() => makeCharacter(
  6294. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6295. {
  6296. side: {
  6297. height: math.unit(6, "feet"),
  6298. weight: math.unit(150, "lbs"),
  6299. name: "Side",
  6300. image: {
  6301. source: "./media/characters/cibus/side.svg",
  6302. extra: 800 / 400
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(6, "feet"),
  6310. default: true
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6316. {
  6317. front: {
  6318. height: math.unit(6, "feet"),
  6319. weight: math.unit(240, "lbs"),
  6320. name: "Front",
  6321. image: {
  6322. source: "./media/characters/nibbles/front.svg"
  6323. }
  6324. },
  6325. side: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(240, "lbs"),
  6328. name: "Side",
  6329. image: {
  6330. source: "./media/characters/nibbles/side.svg"
  6331. }
  6332. },
  6333. },
  6334. [
  6335. {
  6336. name: "Normal",
  6337. height: math.unit(9, "feet"),
  6338. default: true
  6339. }
  6340. ]
  6341. ))
  6342. characterMakers.push(() => makeCharacter(
  6343. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6344. {
  6345. side: {
  6346. height: math.unit(5 + 1 / 6, "feet"),
  6347. weight: math.unit(130, "lbs"),
  6348. name: "Side",
  6349. image: {
  6350. source: "./media/characters/rikky/side.svg",
  6351. extra: 851 / 801
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(5 + 1 / 6, "feet")
  6359. },
  6360. {
  6361. name: "Macro",
  6362. height: math.unit(152, "feet"),
  6363. default: true
  6364. },
  6365. {
  6366. name: "Megamacro",
  6367. height: math.unit(7, "miles")
  6368. }
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6373. {
  6374. side: {
  6375. height: math.unit(370, "cm"),
  6376. weight: math.unit(350, "lbs"),
  6377. name: "Side",
  6378. image: {
  6379. source: "./media/characters/malfressa/side.svg"
  6380. }
  6381. },
  6382. walking: {
  6383. height: math.unit(370, "cm"),
  6384. weight: math.unit(350, "lbs"),
  6385. name: "Walking",
  6386. image: {
  6387. source: "./media/characters/malfressa/walking.svg"
  6388. }
  6389. },
  6390. feral: {
  6391. height: math.unit(2500, "cm"),
  6392. weight: math.unit(100000, "lbs"),
  6393. name: "Feral",
  6394. image: {
  6395. source: "./media/characters/malfressa/feral.svg",
  6396. extra: 2108 / 837,
  6397. bottom: 0.02
  6398. }
  6399. },
  6400. },
  6401. [
  6402. {
  6403. name: "Normal",
  6404. height: math.unit(370, "cm")
  6405. },
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(300, "meters"),
  6409. default: true
  6410. }
  6411. ]
  6412. ))
  6413. characterMakers.push(() => makeCharacter(
  6414. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6415. {
  6416. front: {
  6417. height: math.unit(6, "feet"),
  6418. weight: math.unit(60, "kg"),
  6419. name: "Front",
  6420. image: {
  6421. source: "./media/characters/jaro/front.svg",
  6422. extra: 845/817,
  6423. bottom: 45/890
  6424. }
  6425. },
  6426. back: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(60, "kg"),
  6429. name: "Back",
  6430. image: {
  6431. source: "./media/characters/jaro/back.svg",
  6432. extra: 847/817,
  6433. bottom: 34/881
  6434. }
  6435. },
  6436. },
  6437. [
  6438. {
  6439. name: "Micro",
  6440. height: math.unit(7, "inches")
  6441. },
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(5.5, "feet"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Minimacro",
  6449. height: math.unit(20, "feet")
  6450. },
  6451. {
  6452. name: "Macro",
  6453. height: math.unit(200, "meters")
  6454. }
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6459. {
  6460. front: {
  6461. height: math.unit(6, "feet"),
  6462. weight: math.unit(195, "lb"),
  6463. name: "Front",
  6464. image: {
  6465. source: "./media/characters/rogue/front.svg"
  6466. }
  6467. },
  6468. },
  6469. [
  6470. {
  6471. name: "Macro",
  6472. height: math.unit(90, "feet"),
  6473. default: true
  6474. },
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6479. {
  6480. front: {
  6481. height: math.unit(5 + 8 / 12, "feet"),
  6482. weight: math.unit(140, "lb"),
  6483. name: "Front",
  6484. image: {
  6485. source: "./media/characters/piper/front.svg",
  6486. extra: 3948/3655,
  6487. bottom: 0/3948
  6488. }
  6489. },
  6490. },
  6491. [
  6492. {
  6493. name: "Micro",
  6494. height: math.unit(2, "inches")
  6495. },
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(5 + 8 / 12, "feet")
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(250, "feet"),
  6503. default: true
  6504. },
  6505. {
  6506. name: "Megamacro",
  6507. height: math.unit(7, "miles")
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6513. {
  6514. front: {
  6515. height: math.unit(6, "feet"),
  6516. weight: math.unit(220, "lb"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/gemini/front.svg"
  6520. }
  6521. },
  6522. back: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(220, "lb"),
  6525. name: "Back",
  6526. image: {
  6527. source: "./media/characters/gemini/back.svg"
  6528. }
  6529. },
  6530. kneeling: {
  6531. height: math.unit(6 / 1.5, "feet"),
  6532. weight: math.unit(220, "lb"),
  6533. name: "Kneeling",
  6534. image: {
  6535. source: "./media/characters/gemini/kneeling.svg",
  6536. bottom: 0.02
  6537. }
  6538. },
  6539. },
  6540. [
  6541. {
  6542. name: "Macro",
  6543. height: math.unit(300, "meters"),
  6544. default: true
  6545. },
  6546. {
  6547. name: "Megamacro",
  6548. height: math.unit(6900, "meters")
  6549. },
  6550. ]
  6551. ))
  6552. characterMakers.push(() => makeCharacter(
  6553. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6554. {
  6555. anthro: {
  6556. height: math.unit(2.35, "meters"),
  6557. weight: math.unit(73, "kg"),
  6558. name: "Anthro",
  6559. image: {
  6560. source: "./media/characters/alicia/anthro.svg",
  6561. extra: 2571 / 2385,
  6562. bottom: 75 / 2648
  6563. }
  6564. },
  6565. paw: {
  6566. height: math.unit(1.32, "feet"),
  6567. name: "Paw",
  6568. image: {
  6569. source: "./media/characters/alicia/paw.svg"
  6570. }
  6571. },
  6572. feral: {
  6573. height: math.unit(1.69, "meters"),
  6574. weight: math.unit(73, "kg"),
  6575. name: "Feral",
  6576. image: {
  6577. source: "./media/characters/alicia/feral.svg",
  6578. extra: 2123 / 1715,
  6579. bottom: 222 / 2349
  6580. }
  6581. },
  6582. },
  6583. [
  6584. {
  6585. name: "Normal",
  6586. height: math.unit(2.35, "meters")
  6587. },
  6588. {
  6589. name: "Macro",
  6590. height: math.unit(60, "meters"),
  6591. default: true
  6592. },
  6593. {
  6594. name: "Megamacro",
  6595. height: math.unit(10000, "kilometers")
  6596. },
  6597. ]
  6598. ))
  6599. characterMakers.push(() => makeCharacter(
  6600. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6601. {
  6602. front: {
  6603. height: math.unit(7, "feet"),
  6604. weight: math.unit(250, "lbs"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/archy/front.svg"
  6608. }
  6609. }
  6610. },
  6611. [
  6612. {
  6613. name: "Micro",
  6614. height: math.unit(1, "inch")
  6615. },
  6616. {
  6617. name: "Shorty",
  6618. height: math.unit(5, "feet")
  6619. },
  6620. {
  6621. name: "Normal",
  6622. height: math.unit(7, "feet")
  6623. },
  6624. {
  6625. name: "Macro",
  6626. height: math.unit(600, "meters"),
  6627. default: true
  6628. },
  6629. {
  6630. name: "Megamacro",
  6631. height: math.unit(1, "mile")
  6632. },
  6633. ]
  6634. ))
  6635. characterMakers.push(() => makeCharacter(
  6636. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6637. {
  6638. front: {
  6639. height: math.unit(1.65, "meters"),
  6640. weight: math.unit(74, "kg"),
  6641. name: "Front",
  6642. image: {
  6643. source: "./media/characters/berri/front.svg",
  6644. extra: 857 / 837,
  6645. bottom: 18 / 877
  6646. }
  6647. },
  6648. bum: {
  6649. height: math.unit(1.46, "feet"),
  6650. name: "Bum",
  6651. image: {
  6652. source: "./media/characters/berri/bum.svg"
  6653. }
  6654. },
  6655. mouth: {
  6656. height: math.unit(0.44, "feet"),
  6657. name: "Mouth",
  6658. image: {
  6659. source: "./media/characters/berri/mouth.svg"
  6660. }
  6661. },
  6662. paw: {
  6663. height: math.unit(0.826, "feet"),
  6664. name: "Paw",
  6665. image: {
  6666. source: "./media/characters/berri/paw.svg"
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(1.65, "meters")
  6674. },
  6675. {
  6676. name: "Macro",
  6677. height: math.unit(60, "m"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Megamacro",
  6682. height: math.unit(9.213, "km")
  6683. },
  6684. {
  6685. name: "Planet Eater",
  6686. height: math.unit(489, "megameters")
  6687. },
  6688. {
  6689. name: "Teramacro",
  6690. height: math.unit(2471635000000, "meters")
  6691. },
  6692. {
  6693. name: "Examacro",
  6694. height: math.unit(8.0624e+26, "meters")
  6695. }
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6700. {
  6701. front: {
  6702. height: math.unit(1.72, "meters"),
  6703. weight: math.unit(68, "kg"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/lexi/front.svg"
  6707. }
  6708. }
  6709. },
  6710. [
  6711. {
  6712. name: "Very Smol",
  6713. height: math.unit(10, "mm")
  6714. },
  6715. {
  6716. name: "Micro",
  6717. height: math.unit(6.8, "cm"),
  6718. default: true
  6719. },
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(1.72, "m")
  6723. }
  6724. ]
  6725. ))
  6726. characterMakers.push(() => makeCharacter(
  6727. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6728. {
  6729. front: {
  6730. height: math.unit(1.69, "meters"),
  6731. weight: math.unit(68, "kg"),
  6732. name: "Front",
  6733. image: {
  6734. source: "./media/characters/martin/front.svg",
  6735. extra: 596 / 581
  6736. }
  6737. }
  6738. },
  6739. [
  6740. {
  6741. name: "Micro",
  6742. height: math.unit(6.85, "cm"),
  6743. default: true
  6744. },
  6745. {
  6746. name: "Normal",
  6747. height: math.unit(1.69, "m")
  6748. }
  6749. ]
  6750. ))
  6751. characterMakers.push(() => makeCharacter(
  6752. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6753. {
  6754. front: {
  6755. height: math.unit(1.69, "meters"),
  6756. weight: math.unit(68, "kg"),
  6757. name: "Front",
  6758. image: {
  6759. source: "./media/characters/juno/front.svg"
  6760. }
  6761. }
  6762. },
  6763. [
  6764. {
  6765. name: "Micro",
  6766. height: math.unit(7, "cm")
  6767. },
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(1.89, "m")
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(353, "meters"),
  6775. default: true
  6776. }
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(1.93, "meters"),
  6784. weight: math.unit(83, "kg"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/samantha/front.svg"
  6788. }
  6789. },
  6790. frontClothed: {
  6791. height: math.unit(1.93, "meters"),
  6792. weight: math.unit(83, "kg"),
  6793. name: "Front (Clothed)",
  6794. image: {
  6795. source: "./media/characters/samantha/front-clothed.svg"
  6796. }
  6797. },
  6798. back: {
  6799. height: math.unit(1.93, "meters"),
  6800. weight: math.unit(83, "kg"),
  6801. name: "Back",
  6802. image: {
  6803. source: "./media/characters/samantha/back.svg"
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Normal",
  6810. height: math.unit(1.93, "m")
  6811. },
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(74, "meters"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Macro+",
  6819. height: math.unit(223, "meters"),
  6820. },
  6821. {
  6822. name: "Megamacro",
  6823. height: math.unit(8381, "meters"),
  6824. },
  6825. {
  6826. name: "Megamacro+",
  6827. height: math.unit(12000, "kilometers")
  6828. },
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6833. {
  6834. front: {
  6835. height: math.unit(1.92, "meters"),
  6836. weight: math.unit(80, "kg"),
  6837. name: "Front",
  6838. image: {
  6839. source: "./media/characters/dr-clay/front.svg"
  6840. }
  6841. },
  6842. frontClothed: {
  6843. height: math.unit(1.92, "meters"),
  6844. weight: math.unit(80, "kg"),
  6845. name: "Front (Clothed)",
  6846. image: {
  6847. source: "./media/characters/dr-clay/front-clothed.svg"
  6848. }
  6849. }
  6850. },
  6851. [
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(1.92, "m")
  6855. },
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(214, "meters"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Macro+",
  6863. height: math.unit(12.237, "meters"),
  6864. },
  6865. {
  6866. name: "Megamacro",
  6867. height: math.unit(557, "megameters"),
  6868. },
  6869. {
  6870. name: "Unimaginable",
  6871. height: math.unit(120e9, "lightyears")
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6877. {
  6878. front: {
  6879. height: math.unit(2, "meters"),
  6880. weight: math.unit(80, "kg"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6884. }
  6885. }
  6886. },
  6887. [
  6888. {
  6889. name: "Teramacro",
  6890. height: math.unit(500000, "lightyears"),
  6891. default: true
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6897. {
  6898. crux: {
  6899. height: math.unit(2, "meters"),
  6900. weight: math.unit(150, "kg"),
  6901. name: "Crux",
  6902. image: {
  6903. source: "./media/characters/vemus/crux.svg",
  6904. extra: 1074/936,
  6905. bottom: 23/1097
  6906. }
  6907. },
  6908. skunkTanuki: {
  6909. height: math.unit(2, "meters"),
  6910. weight: math.unit(150, "kg"),
  6911. name: "Skunk-Tanuki",
  6912. image: {
  6913. source: "./media/characters/vemus/skunk-tanuki.svg",
  6914. extra: 926/893,
  6915. bottom: 20/946
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(3.75, "meters"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Big",
  6927. height: math.unit(8, "meters")
  6928. },
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(100, "meters")
  6932. },
  6933. {
  6934. name: "Macro+",
  6935. height: math.unit(1500, "meters")
  6936. },
  6937. {
  6938. name: "Stellar",
  6939. height: math.unit(14e8, "meters")
  6940. },
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(2, "meters"),
  6948. weight: math.unit(70, "kg"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/beherit/front.svg",
  6952. extra: 1234/1109,
  6953. bottom: 55/1289
  6954. }
  6955. }
  6956. },
  6957. [
  6958. {
  6959. name: "Normal",
  6960. height: math.unit(6, "feet")
  6961. },
  6962. {
  6963. name: "Lorg",
  6964. height: math.unit(25, "feet"),
  6965. default: true
  6966. },
  6967. {
  6968. name: "Lorger",
  6969. height: math.unit(75, "feet")
  6970. },
  6971. {
  6972. name: "Macro",
  6973. height: math.unit(200, "meters")
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(2, "meters"),
  6982. weight: math.unit(150, "kg"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/everett/front.svg",
  6986. extra: 1017/866,
  6987. bottom: 86/1103
  6988. }
  6989. },
  6990. paw: {
  6991. height: math.unit(2 / 3.6, "meters"),
  6992. name: "Paw",
  6993. image: {
  6994. source: "./media/characters/everett/paw.svg"
  6995. }
  6996. },
  6997. },
  6998. [
  6999. {
  7000. name: "Normal",
  7001. height: math.unit(15, "feet"),
  7002. default: true
  7003. },
  7004. {
  7005. name: "Lorg",
  7006. height: math.unit(70, "feet"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Lorger",
  7011. height: math.unit(250, "feet")
  7012. },
  7013. {
  7014. name: "Macro",
  7015. height: math.unit(500, "meters")
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(2, "meters"),
  7024. weight: math.unit(86, "kg"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/rose/front.svg",
  7028. extra: 1785/1636,
  7029. bottom: 30/1815
  7030. }
  7031. },
  7032. frontSporty: {
  7033. height: math.unit(2, "meters"),
  7034. weight: math.unit(86, "kg"),
  7035. name: "Front (Sporty)",
  7036. image: {
  7037. source: "./media/characters/rose/front-sporty.svg",
  7038. extra: 350/335,
  7039. bottom: 10/360
  7040. }
  7041. },
  7042. frontAlt: {
  7043. height: math.unit(1.6, "meters"),
  7044. weight: math.unit(86, "kg"),
  7045. name: "Front (Alt)",
  7046. image: {
  7047. source: "./media/characters/rose/front-alt.svg",
  7048. extra: 299/283,
  7049. bottom: 3/302
  7050. }
  7051. },
  7052. plush: {
  7053. height: math.unit(2, "meters"),
  7054. weight: math.unit(86/3, "kg"),
  7055. name: "Plush",
  7056. image: {
  7057. source: "./media/characters/rose/plush.svg",
  7058. extra: 361/337,
  7059. bottom: 11/372
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "True Micro",
  7066. height: math.unit(9, "cm")
  7067. },
  7068. {
  7069. name: "Micro",
  7070. height: math.unit(16, "cm")
  7071. },
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(1.85, "meters"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Mini-Macro",
  7079. height: math.unit(5, "meters")
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(15, "meters")
  7084. },
  7085. {
  7086. name: "True Macro",
  7087. height: math.unit(40, "meters")
  7088. },
  7089. {
  7090. name: "City Scale",
  7091. height: math.unit(1, "km")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(2, "meters"),
  7100. weight: math.unit(350, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/regal/front.svg"
  7104. }
  7105. },
  7106. back: {
  7107. height: math.unit(2, "meters"),
  7108. weight: math.unit(350, "lbs"),
  7109. name: "Back",
  7110. image: {
  7111. source: "./media/characters/regal/back.svg"
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Macro",
  7118. height: math.unit(350, "feet"),
  7119. default: true
  7120. }
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(4 + 11 / 12, "feet"),
  7128. weight: math.unit(100, "lbs"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/opal/front.svg"
  7132. }
  7133. },
  7134. frontAlt: {
  7135. height: math.unit(4 + 11 / 12, "feet"),
  7136. weight: math.unit(100, "lbs"),
  7137. name: "Front (Alt)",
  7138. image: {
  7139. source: "./media/characters/opal/front-alt.svg"
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Small",
  7146. height: math.unit(4 + 11 / 12, "feet")
  7147. },
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(20, "feet"),
  7151. default: true
  7152. },
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(120, "feet")
  7156. },
  7157. {
  7158. name: "Megamacro",
  7159. height: math.unit(80, "miles")
  7160. },
  7161. {
  7162. name: "True Size",
  7163. height: math.unit(100000, "lightyears")
  7164. },
  7165. ]
  7166. ))
  7167. characterMakers.push(() => makeCharacter(
  7168. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7169. {
  7170. front: {
  7171. height: math.unit(6, "feet"),
  7172. weight: math.unit(200, "lbs"),
  7173. name: "Front",
  7174. image: {
  7175. source: "./media/characters/vector-wuff/front.svg"
  7176. }
  7177. }
  7178. },
  7179. [
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(2.8, "meters")
  7183. },
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(450, "meters"),
  7187. default: true
  7188. },
  7189. {
  7190. name: "Megamacro",
  7191. height: math.unit(15, "kilometers")
  7192. }
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7197. {
  7198. front: {
  7199. height: math.unit(6, "feet"),
  7200. weight: math.unit(256, "lbs"),
  7201. name: "Front",
  7202. image: {
  7203. source: "./media/characters/dannik/front.svg"
  7204. }
  7205. }
  7206. },
  7207. [
  7208. {
  7209. name: "Macro",
  7210. height: math.unit(69.57, "meters"),
  7211. default: true
  7212. },
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(6, "feet"),
  7220. weight: math.unit(120, "lbs"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/azura-saharah/front.svg"
  7224. }
  7225. },
  7226. back: {
  7227. height: math.unit(6, "feet"),
  7228. weight: math.unit(120, "lbs"),
  7229. name: "Back",
  7230. image: {
  7231. source: "./media/characters/azura-saharah/back.svg"
  7232. }
  7233. },
  7234. },
  7235. [
  7236. {
  7237. name: "Macro",
  7238. height: math.unit(100, "feet"),
  7239. default: true
  7240. },
  7241. ]
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7245. {
  7246. side: {
  7247. height: math.unit(5 + 4 / 12, "feet"),
  7248. weight: math.unit(163, "lbs"),
  7249. name: "Side",
  7250. image: {
  7251. source: "./media/characters/kennedy/side.svg"
  7252. }
  7253. }
  7254. },
  7255. [
  7256. {
  7257. name: "Standard Doggo",
  7258. height: math.unit(5 + 4 / 12, "feet")
  7259. },
  7260. {
  7261. name: "Big Doggo",
  7262. height: math.unit(25 + 3 / 12, "feet"),
  7263. default: true
  7264. },
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7269. {
  7270. front: {
  7271. height: math.unit(5 + 5/12, "feet"),
  7272. weight: math.unit(100, "lbs"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/odios-de-lunar/front.svg",
  7276. extra: 1468/1323,
  7277. bottom: 22/1490
  7278. }
  7279. }
  7280. },
  7281. [
  7282. {
  7283. name: "Micro",
  7284. height: math.unit(3, "inches")
  7285. },
  7286. {
  7287. name: "Normal",
  7288. height: math.unit(5.5, "feet"),
  7289. default: true
  7290. },
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(100, "feet")
  7294. },
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7299. {
  7300. back: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(220, "lbs"),
  7303. name: "Back",
  7304. image: {
  7305. source: "./media/characters/mandake/back.svg"
  7306. }
  7307. }
  7308. },
  7309. [
  7310. {
  7311. name: "Normal",
  7312. height: math.unit(7, "feet"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Macro",
  7317. height: math.unit(78, "feet")
  7318. },
  7319. {
  7320. name: "Macro+",
  7321. height: math.unit(300, "meters")
  7322. },
  7323. {
  7324. name: "Macro++",
  7325. height: math.unit(2400, "feet")
  7326. },
  7327. {
  7328. name: "Megamacro",
  7329. height: math.unit(5167, "meters")
  7330. },
  7331. {
  7332. name: "Gigamacro",
  7333. height: math.unit(41769, "miles")
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(6, "feet"),
  7342. weight: math.unit(120, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/yozey/front.svg"
  7346. }
  7347. },
  7348. frontAlt: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(120, "lbs"),
  7351. name: "Front (Alt)",
  7352. image: {
  7353. source: "./media/characters/yozey/front-alt.svg"
  7354. }
  7355. },
  7356. side: {
  7357. height: math.unit(6, "feet"),
  7358. weight: math.unit(120, "lbs"),
  7359. name: "Side",
  7360. image: {
  7361. source: "./media/characters/yozey/side.svg"
  7362. }
  7363. },
  7364. },
  7365. [
  7366. {
  7367. name: "Micro",
  7368. height: math.unit(3, "inches"),
  7369. default: true
  7370. },
  7371. {
  7372. name: "Normal",
  7373. height: math.unit(6, "feet")
  7374. }
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(6, "feet"),
  7382. weight: math.unit(103, "lbs"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/valeska-voss/front.svg"
  7386. }
  7387. }
  7388. },
  7389. [
  7390. {
  7391. name: "Mini-Sized Sub",
  7392. height: math.unit(3.1, "inches")
  7393. },
  7394. {
  7395. name: "Mid-Sized Sub",
  7396. height: math.unit(6.2, "inches")
  7397. },
  7398. {
  7399. name: "Full-Sized Sub",
  7400. height: math.unit(9.3, "inches")
  7401. },
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(5 + 2 / 12, "foot"),
  7405. default: true
  7406. },
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7411. {
  7412. front: {
  7413. height: math.unit(6, "feet"),
  7414. weight: math.unit(160, "lbs"),
  7415. name: "Front",
  7416. image: {
  7417. source: "./media/characters/gene-zeta/front.svg",
  7418. extra: 3006 / 2826,
  7419. bottom: 182 / 3188
  7420. }
  7421. }
  7422. },
  7423. [
  7424. {
  7425. name: "Micro",
  7426. height: math.unit(6, "inches")
  7427. },
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(5 + 11 / 12, "foot"),
  7431. default: true
  7432. },
  7433. {
  7434. name: "Macro",
  7435. height: math.unit(140, "feet")
  7436. },
  7437. {
  7438. name: "Supercharged",
  7439. height: math.unit(2500, "feet")
  7440. },
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(350, "lbs"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/razinox/front.svg",
  7452. extra: 1686 / 1548,
  7453. bottom: 28.2 / 1868
  7454. }
  7455. },
  7456. back: {
  7457. height: math.unit(6, "feet"),
  7458. weight: math.unit(350, "lbs"),
  7459. name: "Back",
  7460. image: {
  7461. source: "./media/characters/razinox/back.svg",
  7462. extra: 1660 / 1590,
  7463. bottom: 15 / 1665
  7464. }
  7465. },
  7466. },
  7467. [
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(10 + 8 / 12, "foot")
  7471. },
  7472. {
  7473. name: "Minimacro",
  7474. height: math.unit(15, "foot")
  7475. },
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(60, "foot"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Megamacro",
  7483. height: math.unit(5, "miles")
  7484. },
  7485. {
  7486. name: "Gigamacro",
  7487. height: math.unit(6000, "miles")
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(150, "lbs"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/cobalt/front.svg"
  7500. }
  7501. }
  7502. },
  7503. [
  7504. {
  7505. name: "Normal",
  7506. height: math.unit(8 + 1 / 12, "foot")
  7507. },
  7508. {
  7509. name: "Macro",
  7510. height: math.unit(111, "foot"),
  7511. default: true
  7512. },
  7513. {
  7514. name: "Supracosmic",
  7515. height: math.unit(1e42, "feet")
  7516. },
  7517. ]
  7518. ))
  7519. characterMakers.push(() => makeCharacter(
  7520. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7521. {
  7522. front: {
  7523. height: math.unit(6, "feet"),
  7524. weight: math.unit(140, "lbs"),
  7525. name: "Front",
  7526. image: {
  7527. source: "./media/characters/amanda/front.svg"
  7528. }
  7529. }
  7530. },
  7531. [
  7532. {
  7533. name: "Micro",
  7534. height: math.unit(5, "inches"),
  7535. default: true
  7536. },
  7537. ]
  7538. ))
  7539. characterMakers.push(() => makeCharacter(
  7540. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7541. {
  7542. front: {
  7543. height: math.unit(2.75, "meters"),
  7544. weight: math.unit(1200, "lb"),
  7545. name: "Front",
  7546. image: {
  7547. source: "./media/characters/teal/front.svg",
  7548. extra: 2463 / 2320,
  7549. bottom: 166 / 2629
  7550. }
  7551. },
  7552. back: {
  7553. height: math.unit(2.75, "meters"),
  7554. weight: math.unit(1200, "lb"),
  7555. name: "Back",
  7556. image: {
  7557. source: "./media/characters/teal/back.svg",
  7558. extra: 2580 / 2489,
  7559. bottom: 151 / 2731
  7560. }
  7561. },
  7562. sitting: {
  7563. height: math.unit(1.9, "meters"),
  7564. weight: math.unit(1200, "lb"),
  7565. name: "Sitting",
  7566. image: {
  7567. source: "./media/characters/teal/sitting.svg",
  7568. extra: 623 / 590,
  7569. bottom: 121 / 744
  7570. }
  7571. },
  7572. standing: {
  7573. height: math.unit(2.75, "meters"),
  7574. weight: math.unit(1200, "lb"),
  7575. name: "Standing",
  7576. image: {
  7577. source: "./media/characters/teal/standing.svg",
  7578. extra: 923 / 893,
  7579. bottom: 60 / 983
  7580. }
  7581. },
  7582. stretching: {
  7583. height: math.unit(3.65, "meters"),
  7584. weight: math.unit(1200, "lb"),
  7585. name: "Stretching",
  7586. image: {
  7587. source: "./media/characters/teal/stretching.svg",
  7588. extra: 1276 / 1244,
  7589. bottom: 0 / 1276
  7590. }
  7591. },
  7592. legged: {
  7593. height: math.unit(1.3, "meters"),
  7594. weight: math.unit(100, "lb"),
  7595. name: "Legged",
  7596. image: {
  7597. source: "./media/characters/teal/legged.svg",
  7598. extra: 462 / 437,
  7599. bottom: 24 / 486
  7600. }
  7601. },
  7602. naga: {
  7603. height: math.unit(5.4, "meters"),
  7604. weight: math.unit(4000, "lb"),
  7605. name: "Naga",
  7606. image: {
  7607. source: "./media/characters/teal/naga.svg",
  7608. extra: 1902 / 1858,
  7609. bottom: 0 / 1902
  7610. }
  7611. },
  7612. hand: {
  7613. height: math.unit(0.52, "meters"),
  7614. name: "Hand",
  7615. image: {
  7616. source: "./media/characters/teal/hand.svg"
  7617. }
  7618. },
  7619. maw: {
  7620. height: math.unit(0.43, "meters"),
  7621. name: "Maw",
  7622. image: {
  7623. source: "./media/characters/teal/maw.svg"
  7624. }
  7625. },
  7626. slit: {
  7627. height: math.unit(0.25, "meters"),
  7628. name: "Slit",
  7629. image: {
  7630. source: "./media/characters/teal/slit.svg"
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(2.75, "meters"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(300, "feet")
  7643. },
  7644. {
  7645. name: "Macro+",
  7646. height: math.unit(2000, "feet")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7652. {
  7653. frontCat: {
  7654. height: math.unit(6, "feet"),
  7655. weight: math.unit(180, "lbs"),
  7656. name: "Front (Cat)",
  7657. image: {
  7658. source: "./media/characters/ravin-amulet/front-cat.svg"
  7659. }
  7660. },
  7661. frontCatAlt: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(180, "lbs"),
  7664. name: "Front (Alt, Cat)",
  7665. image: {
  7666. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7667. }
  7668. },
  7669. frontWerewolf: {
  7670. height: math.unit(6 * 1.2, "feet"),
  7671. weight: math.unit(225, "lbs"),
  7672. name: "Front (Werewolf)",
  7673. image: {
  7674. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7675. }
  7676. },
  7677. backWerewolf: {
  7678. height: math.unit(6 * 1.2, "feet"),
  7679. weight: math.unit(225, "lbs"),
  7680. name: "Back (Werewolf)",
  7681. image: {
  7682. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Nano",
  7689. height: math.unit(1, "micrometer")
  7690. },
  7691. {
  7692. name: "Micro",
  7693. height: math.unit(1, "inch")
  7694. },
  7695. {
  7696. name: "Normal",
  7697. height: math.unit(6, "feet"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(60, "feet")
  7703. }
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(6, "feet"),
  7711. weight: math.unit(165, "lbs"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/fluoresce/front.svg"
  7715. }
  7716. }
  7717. },
  7718. [
  7719. {
  7720. name: "Micro",
  7721. height: math.unit(6, "cm")
  7722. },
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(5 + 7 / 12, "feet"),
  7726. default: true
  7727. },
  7728. {
  7729. name: "Macro",
  7730. height: math.unit(56, "feet")
  7731. },
  7732. {
  7733. name: "Megamacro",
  7734. height: math.unit(1.9, "miles")
  7735. },
  7736. ]
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7740. {
  7741. front: {
  7742. height: math.unit(9 + 6 / 12, "feet"),
  7743. weight: math.unit(523, "lbs"),
  7744. name: "Side",
  7745. image: {
  7746. source: "./media/characters/aurora/side.svg"
  7747. }
  7748. }
  7749. },
  7750. [
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(9 + 6 / 12, "feet")
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(96, "feet"),
  7758. default: true
  7759. },
  7760. {
  7761. name: "Macro+",
  7762. height: math.unit(243, "feet")
  7763. },
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7768. {
  7769. front: {
  7770. height: math.unit(194, "cm"),
  7771. weight: math.unit(90, "kg"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/ranek/front.svg"
  7775. }
  7776. },
  7777. side: {
  7778. height: math.unit(194, "cm"),
  7779. weight: math.unit(90, "kg"),
  7780. name: "Side",
  7781. image: {
  7782. source: "./media/characters/ranek/side.svg"
  7783. }
  7784. },
  7785. back: {
  7786. height: math.unit(194, "cm"),
  7787. weight: math.unit(90, "kg"),
  7788. name: "Back",
  7789. image: {
  7790. source: "./media/characters/ranek/back.svg"
  7791. }
  7792. },
  7793. feral: {
  7794. height: math.unit(30, "cm"),
  7795. weight: math.unit(1.6, "lbs"),
  7796. name: "Feral",
  7797. image: {
  7798. source: "./media/characters/ranek/feral.svg"
  7799. }
  7800. },
  7801. },
  7802. [
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(194, "cm"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Macro",
  7810. height: math.unit(100, "meters")
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7816. {
  7817. front: {
  7818. height: math.unit(5 + 6 / 12, "feet"),
  7819. weight: math.unit(153, "lbs"),
  7820. name: "Front",
  7821. image: {
  7822. source: "./media/characters/andrew-cooper/front.svg"
  7823. }
  7824. },
  7825. },
  7826. [
  7827. {
  7828. name: "Nano",
  7829. height: math.unit(1, "mm")
  7830. },
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(2, "inches")
  7834. },
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(5 + 6 / 12, "feet"),
  7838. default: true
  7839. }
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(180, "lbs"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/akane-sato/front.svg",
  7851. extra: 1219 / 1140
  7852. }
  7853. },
  7854. back: {
  7855. height: math.unit(6, "feet"),
  7856. weight: math.unit(180, "lbs"),
  7857. name: "Back",
  7858. image: {
  7859. source: "./media/characters/akane-sato/back.svg",
  7860. extra: 1219 / 1170
  7861. }
  7862. },
  7863. },
  7864. [
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(2.5, "meters")
  7868. },
  7869. {
  7870. name: "Macro",
  7871. height: math.unit(250, "meters"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Megamacro",
  7876. height: math.unit(25, "km")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(6, "feet"),
  7885. weight: math.unit(65, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/rook/front.svg",
  7889. extra: 960 / 950
  7890. }
  7891. }
  7892. },
  7893. [
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(8.8, "feet")
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(88, "feet"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Megamacro",
  7905. height: math.unit(8, "miles")
  7906. },
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(12 + 2 / 12, "feet"),
  7914. weight: math.unit(808, "lbs"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/prodigy/front.svg"
  7918. }
  7919. }
  7920. },
  7921. [
  7922. {
  7923. name: "Normal",
  7924. height: math.unit(12 + 2 / 12, "feet"),
  7925. default: true
  7926. },
  7927. {
  7928. name: "Macro",
  7929. height: math.unit(143, "feet")
  7930. },
  7931. {
  7932. name: "Macro+",
  7933. height: math.unit(400, "feet")
  7934. },
  7935. ]
  7936. ))
  7937. characterMakers.push(() => makeCharacter(
  7938. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7939. {
  7940. front: {
  7941. height: math.unit(6, "feet"),
  7942. weight: math.unit(225, "lbs"),
  7943. name: "Front",
  7944. image: {
  7945. source: "./media/characters/daniel/front.svg"
  7946. }
  7947. },
  7948. leaning: {
  7949. height: math.unit(6, "feet"),
  7950. weight: math.unit(225, "lbs"),
  7951. name: "Leaning",
  7952. image: {
  7953. source: "./media/characters/daniel/leaning.svg"
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(1000, "feet"),
  7961. default: true
  7962. },
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(6, "feet"),
  7970. weight: math.unit(88, "lbs"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/chiros/front.svg",
  7974. extra: 306 / 226
  7975. }
  7976. },
  7977. side: {
  7978. height: math.unit(6, "feet"),
  7979. weight: math.unit(88, "lbs"),
  7980. name: "Side",
  7981. image: {
  7982. source: "./media/characters/chiros/side.svg",
  7983. extra: 306 / 226
  7984. }
  7985. },
  7986. },
  7987. [
  7988. {
  7989. name: "Normal",
  7990. height: math.unit(6, "cm"),
  7991. default: true
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7997. {
  7998. front: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(100, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/selka/front.svg",
  8004. extra: 947 / 887
  8005. }
  8006. }
  8007. },
  8008. [
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(5, "cm"),
  8012. default: true
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8018. {
  8019. front: {
  8020. height: math.unit(8 + 3 / 12, "feet"),
  8021. weight: math.unit(424, "lbs"),
  8022. name: "Front",
  8023. image: {
  8024. source: "./media/characters/verin/front.svg",
  8025. extra: 1845 / 1550
  8026. }
  8027. },
  8028. frontArmored: {
  8029. height: math.unit(8 + 3 / 12, "feet"),
  8030. weight: math.unit(424, "lbs"),
  8031. name: "Front (Armored)",
  8032. image: {
  8033. source: "./media/characters/verin/front-armor.svg",
  8034. extra: 1845 / 1550,
  8035. bottom: 0.01
  8036. }
  8037. },
  8038. back: {
  8039. height: math.unit(8 + 3 / 12, "feet"),
  8040. weight: math.unit(424, "lbs"),
  8041. name: "Back",
  8042. image: {
  8043. source: "./media/characters/verin/back.svg",
  8044. bottom: 0.1,
  8045. extra: 1
  8046. }
  8047. },
  8048. foot: {
  8049. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8050. name: "Foot",
  8051. image: {
  8052. source: "./media/characters/verin/foot.svg"
  8053. }
  8054. },
  8055. },
  8056. [
  8057. {
  8058. name: "Normal",
  8059. height: math.unit(8 + 3 / 12, "feet")
  8060. },
  8061. {
  8062. name: "Minimacro",
  8063. height: math.unit(21, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(626, "feet")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8074. {
  8075. front: {
  8076. height: math.unit(2.718, "meters"),
  8077. weight: math.unit(150, "lbs"),
  8078. name: "Front",
  8079. image: {
  8080. source: "./media/characters/sovrim-terraquian/front.svg",
  8081. extra: 1752/1689,
  8082. bottom: 36/1788
  8083. }
  8084. },
  8085. back: {
  8086. height: math.unit(2.718, "meters"),
  8087. weight: math.unit(150, "lbs"),
  8088. name: "Back",
  8089. image: {
  8090. source: "./media/characters/sovrim-terraquian/back.svg",
  8091. extra: 1698/1657,
  8092. bottom: 58/1756
  8093. }
  8094. },
  8095. tongue: {
  8096. height: math.unit(2.865, "feet"),
  8097. name: "Tongue",
  8098. image: {
  8099. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8100. }
  8101. },
  8102. hand: {
  8103. height: math.unit(1.61, "feet"),
  8104. name: "Hand",
  8105. image: {
  8106. source: "./media/characters/sovrim-terraquian/hand.svg"
  8107. }
  8108. },
  8109. foot: {
  8110. height: math.unit(1.05, "feet"),
  8111. name: "Foot",
  8112. image: {
  8113. source: "./media/characters/sovrim-terraquian/foot.svg"
  8114. }
  8115. },
  8116. footAlt: {
  8117. height: math.unit(0.88, "feet"),
  8118. name: "Foot (Alt)",
  8119. image: {
  8120. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8121. }
  8122. },
  8123. },
  8124. [
  8125. {
  8126. name: "Micro",
  8127. height: math.unit(2, "inches")
  8128. },
  8129. {
  8130. name: "Small",
  8131. height: math.unit(1, "meter")
  8132. },
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(Math.E, "meters"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(20, "meters")
  8141. },
  8142. {
  8143. name: "Macro+",
  8144. height: math.unit(400, "meters")
  8145. },
  8146. ]
  8147. ))
  8148. characterMakers.push(() => makeCharacter(
  8149. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8150. {
  8151. front: {
  8152. height: math.unit(7, "feet"),
  8153. weight: math.unit(489, "lbs"),
  8154. name: "Front",
  8155. image: {
  8156. source: "./media/characters/reece-silvermane/front.svg",
  8157. bottom: 0.02,
  8158. extra: 1
  8159. }
  8160. },
  8161. },
  8162. [
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(1.5, "miles"),
  8166. default: true
  8167. },
  8168. ]
  8169. ))
  8170. characterMakers.push(() => makeCharacter(
  8171. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8172. {
  8173. front: {
  8174. height: math.unit(6, "feet"),
  8175. weight: math.unit(78, "kg"),
  8176. name: "Front",
  8177. image: {
  8178. source: "./media/characters/kane/front.svg",
  8179. extra: 978 / 899
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(2.1, "m"),
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(1, "km"),
  8191. default: true
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(6, "feet"),
  8200. weight: math.unit(200, "kg"),
  8201. name: "Front",
  8202. image: {
  8203. source: "./media/characters/tegon/front.svg",
  8204. bottom: 0.01,
  8205. extra: 1
  8206. }
  8207. },
  8208. },
  8209. [
  8210. {
  8211. name: "Micro",
  8212. height: math.unit(1, "inch")
  8213. },
  8214. {
  8215. name: "Normal",
  8216. height: math.unit(6 + 3 / 12, "feet"),
  8217. default: true
  8218. },
  8219. {
  8220. name: "Macro",
  8221. height: math.unit(300, "feet")
  8222. },
  8223. {
  8224. name: "Megamacro",
  8225. height: math.unit(69, "miles")
  8226. },
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8231. {
  8232. side: {
  8233. height: math.unit(6, "feet"),
  8234. weight: math.unit(2304, "lbs"),
  8235. name: "Side",
  8236. image: {
  8237. source: "./media/characters/arcturax/side.svg",
  8238. extra: 790 / 376,
  8239. bottom: 0.01
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Micro",
  8246. height: math.unit(2, "inch")
  8247. },
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(6, "feet")
  8251. },
  8252. {
  8253. name: "Macro",
  8254. height: math.unit(39, "feet"),
  8255. default: true
  8256. },
  8257. {
  8258. name: "Megamacro",
  8259. height: math.unit(7, "miles")
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(6, "feet"),
  8268. weight: math.unit(50, "lbs"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/sentri/front.svg",
  8272. extra: 1750 / 1570,
  8273. bottom: 0.025
  8274. }
  8275. },
  8276. frontAlt: {
  8277. height: math.unit(6, "feet"),
  8278. weight: math.unit(50, "lbs"),
  8279. name: "Front (Alt)",
  8280. image: {
  8281. source: "./media/characters/sentri/front-alt.svg",
  8282. extra: 1750 / 1570,
  8283. bottom: 0.025
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Normal",
  8290. height: math.unit(15, "feet"),
  8291. default: true
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(2500, "feet")
  8296. }
  8297. ]
  8298. ))
  8299. characterMakers.push(() => makeCharacter(
  8300. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8301. {
  8302. front: {
  8303. height: math.unit(5 + 8 / 12, "feet"),
  8304. weight: math.unit(130, "lbs"),
  8305. name: "Front",
  8306. image: {
  8307. source: "./media/characters/corvin/front.svg",
  8308. extra: 1803 / 1629
  8309. }
  8310. },
  8311. frontShirt: {
  8312. height: math.unit(5 + 8 / 12, "feet"),
  8313. weight: math.unit(130, "lbs"),
  8314. name: "Front (Shirt)",
  8315. image: {
  8316. source: "./media/characters/corvin/front-shirt.svg",
  8317. extra: 1803 / 1629
  8318. }
  8319. },
  8320. frontPoncho: {
  8321. height: math.unit(5 + 8 / 12, "feet"),
  8322. weight: math.unit(130, "lbs"),
  8323. name: "Front (Poncho)",
  8324. image: {
  8325. source: "./media/characters/corvin/front-poncho.svg",
  8326. extra: 1803 / 1629
  8327. }
  8328. },
  8329. side: {
  8330. height: math.unit(5 + 8 / 12, "feet"),
  8331. weight: math.unit(130, "lbs"),
  8332. name: "Side",
  8333. image: {
  8334. source: "./media/characters/corvin/side.svg",
  8335. extra: 1012 / 945
  8336. }
  8337. },
  8338. back: {
  8339. height: math.unit(5 + 8 / 12, "feet"),
  8340. weight: math.unit(130, "lbs"),
  8341. name: "Back",
  8342. image: {
  8343. source: "./media/characters/corvin/back.svg",
  8344. extra: 1803 / 1629
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Micro",
  8351. height: math.unit(3, "inches")
  8352. },
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(5 + 8 / 12, "feet")
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(300, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(500, "miles")
  8365. }
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(135, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/q/front.svg",
  8377. extra: 854 / 752,
  8378. bottom: 0.005
  8379. }
  8380. },
  8381. back: {
  8382. height: math.unit(6, "feet"),
  8383. weight: math.unit(130, "lbs"),
  8384. name: "Back",
  8385. image: {
  8386. source: "./media/characters/q/back.svg",
  8387. extra: 854 / 752
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(90, "feet"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Extra Macro",
  8399. height: math.unit(300, "feet"),
  8400. },
  8401. {
  8402. name: "BIG WALF",
  8403. height: math.unit(750, "feet"),
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(150, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/carley/front.svg",
  8416. extra: 3927 / 3540,
  8417. bottom: 29.2 / 735
  8418. }
  8419. }
  8420. },
  8421. [
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(6 + 3 / 12, "feet")
  8425. },
  8426. {
  8427. name: "Macro",
  8428. height: math.unit(185, "feet"),
  8429. default: true
  8430. },
  8431. {
  8432. name: "Megamacro",
  8433. height: math.unit(8, "miles"),
  8434. },
  8435. ]
  8436. ))
  8437. characterMakers.push(() => makeCharacter(
  8438. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8439. {
  8440. front: {
  8441. height: math.unit(3, "feet"),
  8442. weight: math.unit(28, "lbs"),
  8443. name: "Front",
  8444. image: {
  8445. source: "./media/characters/citrine/front.svg"
  8446. }
  8447. }
  8448. },
  8449. [
  8450. {
  8451. name: "Normal",
  8452. height: math.unit(3, "feet"),
  8453. default: true
  8454. }
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8459. {
  8460. front: {
  8461. height: math.unit(14, "feet"),
  8462. weight: math.unit(1450, "kg"),
  8463. capacity: math.unit(15, "people"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/aura-starwind/front.svg",
  8467. extra: 1440/1327,
  8468. bottom: 11/1451
  8469. }
  8470. },
  8471. side: {
  8472. height: math.unit(14, "feet"),
  8473. weight: math.unit(1450, "kg"),
  8474. capacity: math.unit(15, "people"),
  8475. name: "Side",
  8476. image: {
  8477. source: "./media/characters/aura-starwind/side.svg",
  8478. extra: 1654 / 1497
  8479. }
  8480. },
  8481. taur: {
  8482. height: math.unit(18, "feet"),
  8483. weight: math.unit(5500, "kg"),
  8484. capacity: math.unit(50, "people"),
  8485. name: "Taur",
  8486. image: {
  8487. source: "./media/characters/aura-starwind/taur.svg",
  8488. extra: 1760 / 1650
  8489. }
  8490. },
  8491. feral: {
  8492. height: math.unit(46, "feet"),
  8493. weight: math.unit(25000, "kg"),
  8494. capacity: math.unit(120, "people"),
  8495. name: "Feral",
  8496. image: {
  8497. source: "./media/characters/aura-starwind/feral.svg"
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Normal",
  8504. height: math.unit(14, "feet"),
  8505. default: true
  8506. },
  8507. {
  8508. name: "Macro",
  8509. height: math.unit(50, "meters")
  8510. },
  8511. {
  8512. name: "Megamacro",
  8513. height: math.unit(5000, "meters")
  8514. },
  8515. {
  8516. name: "Gigamacro",
  8517. height: math.unit(100000, "kilometers")
  8518. },
  8519. ]
  8520. ))
  8521. characterMakers.push(() => makeCharacter(
  8522. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8523. {
  8524. front: {
  8525. height: math.unit(2 + 7 / 12, "feet"),
  8526. weight: math.unit(32, "lbs"),
  8527. name: "Front",
  8528. image: {
  8529. source: "./media/characters/rivet/front.svg",
  8530. extra: 1716 / 1658,
  8531. bottom: 0.03
  8532. }
  8533. },
  8534. foot: {
  8535. height: math.unit(0.551, "feet"),
  8536. name: "Rivet's Foot",
  8537. image: {
  8538. source: "./media/characters/rivet/foot.svg"
  8539. },
  8540. rename: true
  8541. }
  8542. },
  8543. [
  8544. {
  8545. name: "Micro",
  8546. height: math.unit(1.5, "inches"),
  8547. },
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(2 + 7 / 12, "feet"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Macro",
  8555. height: math.unit(85, "feet")
  8556. },
  8557. {
  8558. name: "Megamacro",
  8559. height: math.unit(2.2, "km")
  8560. }
  8561. ]
  8562. ))
  8563. characterMakers.push(() => makeCharacter(
  8564. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8565. {
  8566. front: {
  8567. height: math.unit(5 + 9 / 12, "feet"),
  8568. weight: math.unit(150, "lbs"),
  8569. name: "Front",
  8570. image: {
  8571. source: "./media/characters/coffee/front.svg",
  8572. extra: 3666 / 3032,
  8573. bottom: 0.04
  8574. }
  8575. },
  8576. foot: {
  8577. height: math.unit(1.29, "feet"),
  8578. name: "Foot",
  8579. image: {
  8580. source: "./media/characters/coffee/foot.svg"
  8581. }
  8582. },
  8583. },
  8584. [
  8585. {
  8586. name: "Micro",
  8587. height: math.unit(2, "inches"),
  8588. },
  8589. {
  8590. name: "Normal",
  8591. height: math.unit(5 + 9 / 12, "feet"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(800, "feet")
  8597. },
  8598. {
  8599. name: "Megamacro",
  8600. height: math.unit(25, "miles")
  8601. }
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(6, "feet"),
  8609. weight: math.unit(200, "lbs"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/chari-gal/front.svg",
  8613. extra: 1568 / 1385,
  8614. bottom: 0.047
  8615. }
  8616. },
  8617. gigantamax: {
  8618. height: math.unit(6 * 16, "feet"),
  8619. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8620. name: "Gigantamax",
  8621. image: {
  8622. source: "./media/characters/chari-gal/gigantamax.svg",
  8623. extra: 1124 / 888,
  8624. bottom: 0.03
  8625. }
  8626. },
  8627. },
  8628. [
  8629. {
  8630. name: "Normal",
  8631. height: math.unit(5 + 7 / 12, "feet")
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(200, "feet"),
  8636. default: true
  8637. }
  8638. ]
  8639. ))
  8640. characterMakers.push(() => makeCharacter(
  8641. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8642. {
  8643. front: {
  8644. height: math.unit(6, "feet"),
  8645. weight: math.unit(150, "lbs"),
  8646. name: "Front",
  8647. image: {
  8648. source: "./media/characters/nova/front.svg",
  8649. extra: 5000 / 4722,
  8650. bottom: 0.02
  8651. }
  8652. }
  8653. },
  8654. [
  8655. {
  8656. name: "Micro-",
  8657. height: math.unit(0.8, "inches")
  8658. },
  8659. {
  8660. name: "Micro",
  8661. height: math.unit(2, "inches"),
  8662. default: true
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(3 + 1 / 12, "feet"),
  8671. weight: math.unit(21.7, "lbs"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/argent/front.svg",
  8675. extra: 1471 / 1331,
  8676. bottom: 100.8 / 1575.5
  8677. }
  8678. }
  8679. },
  8680. [
  8681. {
  8682. name: "Micro",
  8683. height: math.unit(2, "inches")
  8684. },
  8685. {
  8686. name: "Normal",
  8687. height: math.unit(3 + 1 / 12, "feet"),
  8688. default: true
  8689. },
  8690. {
  8691. name: "Macro",
  8692. height: math.unit(120, "feet")
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8698. {
  8699. lamp: {
  8700. height: math.unit(7 * 1559 / 989, "feet"),
  8701. name: "Magic Lamp",
  8702. image: {
  8703. source: "./media/characters/mira-al-cul/lamp.svg",
  8704. extra: 1617 / 1559
  8705. }
  8706. },
  8707. front: {
  8708. height: math.unit(7, "feet"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/mira-al-cul/front.svg",
  8712. extra: 1044 / 990
  8713. }
  8714. },
  8715. },
  8716. [
  8717. {
  8718. name: "Heavily Restricted",
  8719. height: math.unit(7 * 1559 / 989, "feet")
  8720. },
  8721. {
  8722. name: "Freshly Freed",
  8723. height: math.unit(50 * 1559 / 989, "feet")
  8724. },
  8725. {
  8726. name: "World Encompassing",
  8727. height: math.unit(10000 * 1559 / 989, "miles")
  8728. },
  8729. {
  8730. name: "Galactic",
  8731. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8732. },
  8733. {
  8734. name: "Palmed Universe",
  8735. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8736. default: true
  8737. },
  8738. {
  8739. name: "Multiversal Matriarch",
  8740. height: math.unit(8.87e10, "yottameters")
  8741. },
  8742. {
  8743. name: "Void Mother",
  8744. height: math.unit(3.14e110, "yottaparsecs")
  8745. },
  8746. {
  8747. name: "Toying with Transcendence",
  8748. height: math.unit(1e307, "meters")
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8754. {
  8755. front: {
  8756. height: math.unit(17 + 1 / 12, "feet"),
  8757. weight: math.unit(476.2 * 5, "lbs"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/kuro-shi-uchū/front.svg",
  8761. extra: 2329 / 1835,
  8762. bottom: 0.02
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Micro",
  8769. height: math.unit(2, "inches")
  8770. },
  8771. {
  8772. name: "Normal",
  8773. height: math.unit(12, "meters")
  8774. },
  8775. {
  8776. name: "Planetary",
  8777. height: math.unit(0.00929, "AU"),
  8778. default: true
  8779. },
  8780. {
  8781. name: "Universal",
  8782. height: math.unit(20, "gigaparsecs")
  8783. },
  8784. ]
  8785. ))
  8786. characterMakers.push(() => makeCharacter(
  8787. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8788. {
  8789. front: {
  8790. height: math.unit(5 + 2 / 12, "feet"),
  8791. weight: math.unit(120, "lbs"),
  8792. name: "Front",
  8793. image: {
  8794. source: "./media/characters/katherine/front.svg",
  8795. extra: 2075 / 1969
  8796. }
  8797. },
  8798. dress: {
  8799. height: math.unit(5 + 2 / 12, "feet"),
  8800. weight: math.unit(120, "lbs"),
  8801. name: "Dress",
  8802. image: {
  8803. source: "./media/characters/katherine/dress.svg",
  8804. extra: 2258 / 2064
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Micro",
  8811. height: math.unit(1, "inches"),
  8812. default: true
  8813. },
  8814. {
  8815. name: "Normal",
  8816. height: math.unit(5 + 2 / 12, "feet")
  8817. },
  8818. {
  8819. name: "Macro",
  8820. height: math.unit(100, "meters")
  8821. },
  8822. {
  8823. name: "Megamacro",
  8824. height: math.unit(80, "miles")
  8825. },
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8830. {
  8831. front: {
  8832. height: math.unit(7 + 8 / 12, "feet"),
  8833. weight: math.unit(250, "lbs"),
  8834. name: "Front",
  8835. image: {
  8836. source: "./media/characters/yevis/front.svg",
  8837. extra: 1938 / 1755
  8838. }
  8839. }
  8840. },
  8841. [
  8842. {
  8843. name: "Mortal",
  8844. height: math.unit(7 + 8 / 12, "feet")
  8845. },
  8846. {
  8847. name: "Battle",
  8848. height: math.unit(25 + 11 / 12, "feet")
  8849. },
  8850. {
  8851. name: "Wrath",
  8852. height: math.unit(1654 + 11 / 12, "feet")
  8853. },
  8854. {
  8855. name: "Planet Destroyer",
  8856. height: math.unit(12000, "miles")
  8857. },
  8858. {
  8859. name: "Galaxy Conqueror",
  8860. height: math.unit(1.45, "zettameters"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Universal War",
  8865. height: math.unit(184, "gigaparsecs")
  8866. },
  8867. {
  8868. name: "Eternity War",
  8869. height: math.unit(1.98e55, "yottaparsecs")
  8870. },
  8871. ]
  8872. ))
  8873. characterMakers.push(() => makeCharacter(
  8874. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8875. {
  8876. front: {
  8877. height: math.unit(5 + 8 / 12, "feet"),
  8878. weight: math.unit(63, "kg"),
  8879. name: "Front",
  8880. image: {
  8881. source: "./media/characters/xavier/front.svg",
  8882. extra: 944 / 883
  8883. }
  8884. },
  8885. frontStretch: {
  8886. height: math.unit(5 + 8 / 12, "feet"),
  8887. weight: math.unit(63, "kg"),
  8888. name: "Stretching",
  8889. image: {
  8890. source: "./media/characters/xavier/front-stretch.svg",
  8891. extra: 962 / 820
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Normal",
  8898. height: math.unit(5 + 8 / 12, "feet")
  8899. },
  8900. {
  8901. name: "Macro",
  8902. height: math.unit(100, "meters"),
  8903. default: true
  8904. },
  8905. {
  8906. name: "McLargeHuge",
  8907. height: math.unit(10, "miles")
  8908. },
  8909. ]
  8910. ))
  8911. characterMakers.push(() => makeCharacter(
  8912. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8913. {
  8914. front: {
  8915. height: math.unit(5 + 5 / 12, "feet"),
  8916. weight: math.unit(150, "lb"),
  8917. name: "Front",
  8918. image: {
  8919. source: "./media/characters/joshii/front.svg",
  8920. extra: 765 / 653,
  8921. bottom: 51 / 816
  8922. }
  8923. },
  8924. foot: {
  8925. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8926. name: "Foot",
  8927. image: {
  8928. source: "./media/characters/joshii/foot.svg"
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Micro",
  8935. height: math.unit(2, "inches"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Normal",
  8940. height: math.unit(5 + 5 / 12, "feet")
  8941. },
  8942. {
  8943. name: "Macro",
  8944. height: math.unit(785, "feet")
  8945. },
  8946. {
  8947. name: "Megamacro",
  8948. height: math.unit(24.5, "miles")
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(150, "lb"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/goddess-elizabeth/front.svg",
  8961. extra: 1800 / 1525,
  8962. bottom: 0.005
  8963. }
  8964. },
  8965. foot: {
  8966. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8967. name: "Foot",
  8968. image: {
  8969. source: "./media/characters/goddess-elizabeth/foot.svg"
  8970. }
  8971. },
  8972. mouth: {
  8973. height: math.unit(6, "feet"),
  8974. name: "Mouth",
  8975. image: {
  8976. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Micro",
  8983. height: math.unit(12, "feet")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(80, "miles"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro",
  8992. height: math.unit(15000, "parsecs")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(5 + 9 / 12, "feet"),
  9001. weight: math.unit(144, "lb"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/kara/front.svg"
  9005. }
  9006. },
  9007. feet: {
  9008. height: math.unit(6 / 6.765, "feet"),
  9009. name: "Kara's Feet",
  9010. rename: true,
  9011. image: {
  9012. source: "./media/characters/kara/feet.svg"
  9013. }
  9014. },
  9015. },
  9016. [
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(5 + 9 / 12, "feet")
  9020. },
  9021. {
  9022. name: "Macro",
  9023. height: math.unit(174, "feet"),
  9024. default: true
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(18, "feet"),
  9033. weight: math.unit(4050, "lb"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/tyrone/front.svg",
  9037. extra: 2405 / 2270,
  9038. bottom: 182 / 2587
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Normal",
  9045. height: math.unit(18, "feet"),
  9046. default: true
  9047. },
  9048. {
  9049. name: "Macro",
  9050. height: math.unit(300, "feet")
  9051. },
  9052. {
  9053. name: "Megamacro",
  9054. height: math.unit(15, "km")
  9055. },
  9056. {
  9057. name: "Gigamacro",
  9058. height: math.unit(500, "km")
  9059. },
  9060. {
  9061. name: "Teramacro",
  9062. height: math.unit(0.5, "gigameters")
  9063. },
  9064. {
  9065. name: "Omnimacro",
  9066. height: math.unit(1e252, "yottauniverse")
  9067. },
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9072. {
  9073. front: {
  9074. height: math.unit(7 + 8 / 12, "feet"),
  9075. weight: math.unit(120, "lb"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/danny/front.svg",
  9079. extra: 1490 / 1350
  9080. }
  9081. },
  9082. back: {
  9083. height: math.unit(7 + 8 / 12, "feet"),
  9084. weight: math.unit(120, "lb"),
  9085. name: "Back",
  9086. image: {
  9087. source: "./media/characters/danny/back.svg",
  9088. extra: 1490 / 1350
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Normal",
  9095. height: math.unit(7 + 8 / 12, "feet"),
  9096. default: true
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9102. {
  9103. front: {
  9104. height: math.unit(3.5, "inches"),
  9105. weight: math.unit(19, "grams"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/mallow/front.svg",
  9109. extra: 471 / 431
  9110. }
  9111. },
  9112. back: {
  9113. height: math.unit(3.5, "inches"),
  9114. weight: math.unit(19, "grams"),
  9115. name: "Back",
  9116. image: {
  9117. source: "./media/characters/mallow/back.svg",
  9118. extra: 471 / 431
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(3.5, "inches"),
  9126. default: true
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9132. {
  9133. front: {
  9134. height: math.unit(9, "feet"),
  9135. weight: math.unit(230, "kg"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/starry-aqua/front.svg"
  9139. }
  9140. },
  9141. back: {
  9142. height: math.unit(9, "feet"),
  9143. weight: math.unit(230, "kg"),
  9144. name: "Back",
  9145. image: {
  9146. source: "./media/characters/starry-aqua/back.svg"
  9147. }
  9148. },
  9149. hand: {
  9150. height: math.unit(9 * 0.1168, "feet"),
  9151. name: "Hand",
  9152. image: {
  9153. source: "./media/characters/starry-aqua/hand.svg"
  9154. }
  9155. },
  9156. foot: {
  9157. height: math.unit(9 * 0.18, "feet"),
  9158. name: "Foot",
  9159. image: {
  9160. source: "./media/characters/starry-aqua/foot.svg"
  9161. }
  9162. }
  9163. },
  9164. [
  9165. {
  9166. name: "Micro",
  9167. height: math.unit(3, "inches")
  9168. },
  9169. {
  9170. name: "Normal",
  9171. height: math.unit(9, "feet")
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(300, "feet"),
  9176. default: true
  9177. },
  9178. {
  9179. name: "Megamacro",
  9180. height: math.unit(3200, "feet")
  9181. }
  9182. ]
  9183. ))
  9184. characterMakers.push(() => makeCharacter(
  9185. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9186. {
  9187. front: {
  9188. height: math.unit(15, "feet"),
  9189. weight: math.unit(5026, "lb"),
  9190. name: "Front",
  9191. image: {
  9192. source: "./media/characters/luka-towers/front.svg",
  9193. extra: 1269/1133,
  9194. bottom: 51/1320
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(15, "feet"),
  9202. default: true
  9203. },
  9204. {
  9205. name: "Minimacro",
  9206. height: math.unit(25, "feet")
  9207. },
  9208. {
  9209. name: "Macro",
  9210. height: math.unit(320, "feet")
  9211. },
  9212. {
  9213. name: "Megamacro",
  9214. height: math.unit(35000, "feet")
  9215. },
  9216. {
  9217. name: "Gigamacro",
  9218. height: math.unit(4000, "miles")
  9219. },
  9220. {
  9221. name: "Teramacro",
  9222. height: math.unit(15000, "miles")
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(6, "feet"),
  9231. weight: math.unit(150, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/natalie-nightring/front.svg",
  9235. extra: 1,
  9236. bottom: 0.06
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Uh Oh",
  9243. height: math.unit(0.1, "mm")
  9244. },
  9245. {
  9246. name: "Small",
  9247. height: math.unit(3, "inches")
  9248. },
  9249. {
  9250. name: "Human Scale",
  9251. height: math.unit(6, "feet")
  9252. },
  9253. {
  9254. name: "Librarian",
  9255. height: math.unit(50, "feet"),
  9256. default: true
  9257. },
  9258. {
  9259. name: "Immense",
  9260. height: math.unit(200, "miles")
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(6, "feet"),
  9269. weight: math.unit(180, "lbs"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/danni-rosie/front.svg",
  9273. extra: 1260 / 1128,
  9274. bottom: 0.022
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Micro",
  9281. height: math.unit(2, "inches"),
  9282. default: true
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(5 + 9 / 12, "feet"),
  9291. weight: math.unit(220, "lb"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/samantha-kruse/front.svg",
  9295. extra: (985 / 935),
  9296. bottom: 0.03
  9297. }
  9298. },
  9299. frontUndressed: {
  9300. height: math.unit(5 + 9 / 12, "feet"),
  9301. weight: math.unit(220, "lb"),
  9302. name: "Front (Undressed)",
  9303. image: {
  9304. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9305. extra: (973 / 923),
  9306. bottom: 0.025
  9307. }
  9308. },
  9309. fat: {
  9310. height: math.unit(5 + 9 / 12, "feet"),
  9311. weight: math.unit(900, "lb"),
  9312. name: "Front (Fat)",
  9313. image: {
  9314. source: "./media/characters/samantha-kruse/fat.svg",
  9315. extra: 2688 / 2561
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Normal",
  9322. height: math.unit(5 + 9 / 12, "feet"),
  9323. default: true
  9324. }
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9329. {
  9330. back: {
  9331. height: math.unit(5 + 4 / 12, "feet"),
  9332. weight: math.unit(4963, "lb"),
  9333. name: "Back",
  9334. image: {
  9335. source: "./media/characters/amelia-rosie/back.svg",
  9336. extra: 1113 / 963,
  9337. bottom: 0.01
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Level 0",
  9344. height: math.unit(5 + 4 / 12, "feet")
  9345. },
  9346. {
  9347. name: "Level 1",
  9348. height: math.unit(164597, "feet"),
  9349. default: true
  9350. },
  9351. {
  9352. name: "Level 2",
  9353. height: math.unit(956243, "miles")
  9354. },
  9355. {
  9356. name: "Level 3",
  9357. height: math.unit(29421709423, "miles")
  9358. },
  9359. {
  9360. name: "Level 4",
  9361. height: math.unit(154, "lightyears")
  9362. },
  9363. {
  9364. name: "Level 5",
  9365. height: math.unit(4738272, "lightyears")
  9366. },
  9367. {
  9368. name: "Level 6",
  9369. height: math.unit(145787152896, "lightyears")
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9375. {
  9376. front: {
  9377. height: math.unit(5 + 11 / 12, "feet"),
  9378. weight: math.unit(65, "kg"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/rook-kitara/front.svg",
  9382. extra: 1347 / 1274,
  9383. bottom: 0.005
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Totally Unfair",
  9390. height: math.unit(1.8, "mm")
  9391. },
  9392. {
  9393. name: "Lap Rookie",
  9394. height: math.unit(1.4, "feet")
  9395. },
  9396. {
  9397. name: "Normal",
  9398. height: math.unit(5 + 11 / 12, "feet"),
  9399. default: true
  9400. },
  9401. {
  9402. name: "How Did This Happen",
  9403. height: math.unit(80, "miles")
  9404. }
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(7, "feet"),
  9412. weight: math.unit(300, "lb"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/pisces/front.svg",
  9416. extra: 2255 / 2115,
  9417. bottom: 0.03
  9418. }
  9419. },
  9420. back: {
  9421. height: math.unit(7, "feet"),
  9422. weight: math.unit(300, "lb"),
  9423. name: "Back",
  9424. image: {
  9425. source: "./media/characters/pisces/back.svg",
  9426. extra: 2146 / 2055,
  9427. bottom: 0.04
  9428. }
  9429. },
  9430. },
  9431. [
  9432. {
  9433. name: "Normal",
  9434. height: math.unit(7, "feet"),
  9435. default: true
  9436. },
  9437. {
  9438. name: "Swimming Pool",
  9439. height: math.unit(12.2, "meters")
  9440. },
  9441. {
  9442. name: "Olympic Swimming Pool",
  9443. height: math.unit(56.3, "meters")
  9444. },
  9445. {
  9446. name: "Lake Superior",
  9447. height: math.unit(93900, "meters")
  9448. },
  9449. {
  9450. name: "Mediterranean Sea",
  9451. height: math.unit(644457, "meters")
  9452. },
  9453. {
  9454. name: "World's Oceans",
  9455. height: math.unit(4567491, "meters")
  9456. },
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9461. {
  9462. front: {
  9463. height: math.unit(2.3, "meters"),
  9464. weight: math.unit(120, "kg"),
  9465. name: "Front",
  9466. image: {
  9467. source: "./media/characters/zelas/front.svg"
  9468. }
  9469. },
  9470. side: {
  9471. height: math.unit(2.3, "meters"),
  9472. weight: math.unit(120, "kg"),
  9473. name: "Side",
  9474. image: {
  9475. source: "./media/characters/zelas/side.svg"
  9476. }
  9477. },
  9478. back: {
  9479. height: math.unit(2.3, "meters"),
  9480. weight: math.unit(120, "kg"),
  9481. name: "Back",
  9482. image: {
  9483. source: "./media/characters/zelas/back.svg"
  9484. }
  9485. },
  9486. foot: {
  9487. height: math.unit(1.116, "feet"),
  9488. name: "Foot",
  9489. image: {
  9490. source: "./media/characters/zelas/foot.svg"
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(2.3, "meters")
  9498. },
  9499. {
  9500. name: "Macro",
  9501. height: math.unit(30, "meters"),
  9502. default: true
  9503. },
  9504. ]
  9505. ))
  9506. characterMakers.push(() => makeCharacter(
  9507. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9508. {
  9509. front: {
  9510. height: math.unit(1, "inch"),
  9511. weight: math.unit(0.21, "grams"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/talbot/front.svg",
  9515. extra: 594 / 544
  9516. }
  9517. },
  9518. },
  9519. [
  9520. {
  9521. name: "Micro",
  9522. height: math.unit(1, "inch"),
  9523. default: true
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9529. {
  9530. front: {
  9531. height: math.unit(3 + 3 / 12, "feet"),
  9532. weight: math.unit(51.8, "lb"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/fliss/front.svg",
  9536. extra: 840 / 640
  9537. }
  9538. },
  9539. },
  9540. [
  9541. {
  9542. name: "Teeny Tiny",
  9543. height: math.unit(1, "mm")
  9544. },
  9545. {
  9546. name: "Small",
  9547. height: math.unit(1, "inch"),
  9548. default: true
  9549. },
  9550. {
  9551. name: "Standard Sylveon",
  9552. height: math.unit(3 + 3 / 12, "feet")
  9553. },
  9554. {
  9555. name: "Large Nuisance",
  9556. height: math.unit(33, "feet")
  9557. },
  9558. {
  9559. name: "City Filler",
  9560. height: math.unit(3000, "feet")
  9561. },
  9562. {
  9563. name: "New Horizon",
  9564. height: math.unit(6000, "miles")
  9565. },
  9566. ]
  9567. ))
  9568. characterMakers.push(() => makeCharacter(
  9569. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9570. {
  9571. front: {
  9572. height: math.unit(5, "cm"),
  9573. weight: math.unit(1.94, "g"),
  9574. name: "Front",
  9575. image: {
  9576. source: "./media/characters/fleta/front.svg",
  9577. extra: 835 / 803
  9578. }
  9579. },
  9580. back: {
  9581. height: math.unit(5, "cm"),
  9582. weight: math.unit(1.94, "g"),
  9583. name: "Back",
  9584. image: {
  9585. source: "./media/characters/fleta/back.svg",
  9586. extra: 835 / 803
  9587. }
  9588. },
  9589. },
  9590. [
  9591. {
  9592. name: "Micro",
  9593. height: math.unit(5, "cm"),
  9594. default: true
  9595. },
  9596. ]
  9597. ))
  9598. characterMakers.push(() => makeCharacter(
  9599. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9600. {
  9601. front: {
  9602. height: math.unit(6, "feet"),
  9603. weight: math.unit(225, "lb"),
  9604. name: "Front",
  9605. image: {
  9606. source: "./media/characters/dominic/front.svg",
  9607. extra: 1770 / 1620,
  9608. bottom: 0.025
  9609. }
  9610. },
  9611. back: {
  9612. height: math.unit(6, "feet"),
  9613. weight: math.unit(225, "lb"),
  9614. name: "Back",
  9615. image: {
  9616. source: "./media/characters/dominic/back.svg",
  9617. extra: 1745 / 1620,
  9618. bottom: 0.065
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Nano",
  9625. height: math.unit(0.1, "mm")
  9626. },
  9627. {
  9628. name: "Micro-",
  9629. height: math.unit(1, "mm")
  9630. },
  9631. {
  9632. name: "Micro",
  9633. height: math.unit(4, "inches")
  9634. },
  9635. {
  9636. name: "Normal",
  9637. height: math.unit(6 + 4 / 12, "feet"),
  9638. default: true
  9639. },
  9640. {
  9641. name: "Macro",
  9642. height: math.unit(115, "feet")
  9643. },
  9644. {
  9645. name: "Macro+",
  9646. height: math.unit(955, "feet")
  9647. },
  9648. {
  9649. name: "Megamacro",
  9650. height: math.unit(8990, "feet")
  9651. },
  9652. {
  9653. name: "Gigmacro",
  9654. height: math.unit(9310, "miles")
  9655. },
  9656. {
  9657. name: "Teramacro",
  9658. height: math.unit(1567005010, "miles")
  9659. },
  9660. {
  9661. name: "Examacro",
  9662. height: math.unit(1425, "parsecs")
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9668. {
  9669. front: {
  9670. height: math.unit(400, "feet"),
  9671. weight: math.unit(44444444, "lb"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/major-colonel/front.svg"
  9675. }
  9676. },
  9677. back: {
  9678. height: math.unit(400, "feet"),
  9679. weight: math.unit(44444444, "lb"),
  9680. name: "Back",
  9681. image: {
  9682. source: "./media/characters/major-colonel/back.svg"
  9683. }
  9684. },
  9685. },
  9686. [
  9687. {
  9688. name: "Macro",
  9689. height: math.unit(400, "feet"),
  9690. default: true
  9691. },
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9696. {
  9697. catFront: {
  9698. height: math.unit(6, "feet"),
  9699. weight: math.unit(120, "lb"),
  9700. name: "Front (Cat Side)",
  9701. image: {
  9702. source: "./media/characters/axel-lycan/cat-front.svg",
  9703. extra: 430 / 402,
  9704. bottom: 43 / 472.35
  9705. }
  9706. },
  9707. catBack: {
  9708. height: math.unit(6, "feet"),
  9709. weight: math.unit(120, "lb"),
  9710. name: "Back (Cat Side)",
  9711. image: {
  9712. source: "./media/characters/axel-lycan/cat-back.svg",
  9713. extra: 447 / 419,
  9714. bottom: 23.3 / 469
  9715. }
  9716. },
  9717. wolfFront: {
  9718. height: math.unit(6, "feet"),
  9719. weight: math.unit(120, "lb"),
  9720. name: "Front (Wolf Side)",
  9721. image: {
  9722. source: "./media/characters/axel-lycan/wolf-front.svg",
  9723. extra: 485 / 456,
  9724. bottom: 19 / 504
  9725. }
  9726. },
  9727. wolfBack: {
  9728. height: math.unit(6, "feet"),
  9729. weight: math.unit(120, "lb"),
  9730. name: "Back (Wolf Side)",
  9731. image: {
  9732. source: "./media/characters/axel-lycan/wolf-back.svg",
  9733. extra: 475 / 438,
  9734. bottom: 39.2 / 514
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Macro",
  9741. height: math.unit(1, "km"),
  9742. default: true
  9743. },
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9748. {
  9749. front: {
  9750. height: math.unit(5 + 9 / 12, "feet"),
  9751. weight: math.unit(175, "lb"),
  9752. name: "Front",
  9753. image: {
  9754. source: "./media/characters/vanrel-hyena/front.svg",
  9755. extra: 1086 / 1010,
  9756. bottom: 0.04
  9757. }
  9758. },
  9759. },
  9760. [
  9761. {
  9762. name: "Normal",
  9763. height: math.unit(5 + 9 / 12, "feet"),
  9764. default: true
  9765. },
  9766. ]
  9767. ))
  9768. characterMakers.push(() => makeCharacter(
  9769. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9770. {
  9771. front: {
  9772. height: math.unit(6, "feet"),
  9773. weight: math.unit(103, "lb"),
  9774. name: "Front",
  9775. image: {
  9776. source: "./media/characters/abbott-absol/front.svg",
  9777. extra: 2010 / 1842
  9778. }
  9779. },
  9780. },
  9781. [
  9782. {
  9783. name: "Megamicro",
  9784. height: math.unit(0.1, "mm")
  9785. },
  9786. {
  9787. name: "Micro",
  9788. height: math.unit(1, "inch")
  9789. },
  9790. {
  9791. name: "Normal",
  9792. height: math.unit(6, "feet"),
  9793. default: true
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(6, "feet"),
  9802. weight: math.unit(264, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/hector/front.svg",
  9806. extra: 2280 / 2130,
  9807. bottom: 0.07
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(12.25, "foot"),
  9815. default: true
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(160, "feet")
  9820. },
  9821. ]
  9822. ))
  9823. characterMakers.push(() => makeCharacter(
  9824. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9825. {
  9826. front: {
  9827. height: math.unit(6, "feet"),
  9828. weight: math.unit(150, "lb"),
  9829. name: "Front",
  9830. image: {
  9831. source: "./media/characters/sal/front.svg",
  9832. extra: 1846 / 1699,
  9833. bottom: 0.04
  9834. }
  9835. },
  9836. },
  9837. [
  9838. {
  9839. name: "Megamacro",
  9840. height: math.unit(10, "miles"),
  9841. default: true
  9842. },
  9843. ]
  9844. ))
  9845. characterMakers.push(() => makeCharacter(
  9846. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9847. {
  9848. front: {
  9849. height: math.unit(3, "meters"),
  9850. weight: math.unit(450, "kg"),
  9851. name: "front",
  9852. image: {
  9853. source: "./media/characters/ranger/front.svg",
  9854. extra: 2401 / 2243,
  9855. bottom: 0.05
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Normal",
  9862. height: math.unit(3, "meters"),
  9863. default: true
  9864. },
  9865. ]
  9866. ))
  9867. characterMakers.push(() => makeCharacter(
  9868. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9869. {
  9870. front: {
  9871. height: math.unit(14, "feet"),
  9872. weight: math.unit(800, "kg"),
  9873. name: "Front",
  9874. image: {
  9875. source: "./media/characters/theresa/front.svg",
  9876. extra: 3575 / 3346,
  9877. bottom: 0.03
  9878. }
  9879. },
  9880. },
  9881. [
  9882. {
  9883. name: "Normal",
  9884. height: math.unit(14, "feet"),
  9885. default: true
  9886. },
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9891. {
  9892. front: {
  9893. height: math.unit(6, "feet"),
  9894. weight: math.unit(3, "kg"),
  9895. name: "Front",
  9896. image: {
  9897. source: "./media/characters/ine/front.svg",
  9898. extra: 678 / 539,
  9899. bottom: 0.023
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Normal",
  9906. height: math.unit(2.265, "feet"),
  9907. default: true
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9913. {
  9914. front: {
  9915. height: math.unit(5, "feet"),
  9916. weight: math.unit(30, "kg"),
  9917. name: "Front",
  9918. image: {
  9919. source: "./media/characters/vial/front.svg",
  9920. extra: 1365 / 1277,
  9921. bottom: 0.04
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Normal",
  9928. height: math.unit(5, "feet"),
  9929. default: true
  9930. },
  9931. ]
  9932. ))
  9933. characterMakers.push(() => makeCharacter(
  9934. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9935. {
  9936. side: {
  9937. height: math.unit(3.4, "meters"),
  9938. weight: math.unit(1000, "lb"),
  9939. name: "Side",
  9940. image: {
  9941. source: "./media/characters/rovoska/side.svg",
  9942. extra: 4403 / 1515
  9943. }
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Normal",
  9949. height: math.unit(3.4, "meters"),
  9950. default: true
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9956. {
  9957. front: {
  9958. height: math.unit(8, "feet"),
  9959. weight: math.unit(315, "lb"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/gunner-rotthbauer/front.svg"
  9963. }
  9964. },
  9965. back: {
  9966. height: math.unit(8, "feet"),
  9967. weight: math.unit(315, "lb"),
  9968. name: "Back",
  9969. image: {
  9970. source: "./media/characters/gunner-rotthbauer/back.svg"
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Micro",
  9977. height: math.unit(3.5, "inches")
  9978. },
  9979. {
  9980. name: "Normal",
  9981. height: math.unit(8, "feet"),
  9982. default: true
  9983. },
  9984. {
  9985. name: "Macro",
  9986. height: math.unit(250, "feet")
  9987. },
  9988. {
  9989. name: "Megamacro",
  9990. height: math.unit(1, "AU")
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9996. {
  9997. front: {
  9998. height: math.unit(5 + 5 / 12, "feet"),
  9999. weight: math.unit(140, "lb"),
  10000. name: "Front",
  10001. image: {
  10002. source: "./media/characters/allatia/front.svg",
  10003. extra: 1227 / 1180,
  10004. bottom: 0.027
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(5 + 5 / 12, "feet")
  10012. },
  10013. {
  10014. name: "Macro",
  10015. height: math.unit(250, "feet"),
  10016. default: true
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(8, "miles")
  10021. }
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(120, "lb"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/tene/front.svg",
  10033. extra: 1728 / 1578,
  10034. bottom: 0.022
  10035. }
  10036. },
  10037. stomping: {
  10038. height: math.unit(2.025, "meters"),
  10039. weight: math.unit(120, "lb"),
  10040. name: "Stomping",
  10041. image: {
  10042. source: "./media/characters/tene/stomping.svg",
  10043. extra: 938 / 873,
  10044. bottom: 0.01
  10045. }
  10046. },
  10047. sitting: {
  10048. height: math.unit(1, "meter"),
  10049. weight: math.unit(120, "lb"),
  10050. name: "Sitting",
  10051. image: {
  10052. source: "./media/characters/tene/sitting.svg",
  10053. extra: 437 / 415,
  10054. bottom: 0.1
  10055. }
  10056. },
  10057. feral: {
  10058. height: math.unit(3.9, "feet"),
  10059. weight: math.unit(250, "lb"),
  10060. name: "Feral",
  10061. image: {
  10062. source: "./media/characters/tene/feral.svg",
  10063. extra: 717 / 458,
  10064. bottom: 0.179
  10065. }
  10066. },
  10067. },
  10068. [
  10069. {
  10070. name: "Normal",
  10071. height: math.unit(6, "feet")
  10072. },
  10073. {
  10074. name: "Macro",
  10075. height: math.unit(300, "feet"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Megamacro",
  10080. height: math.unit(5, "miles")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10086. {
  10087. side: {
  10088. height: math.unit(6, "feet"),
  10089. name: "Side",
  10090. image: {
  10091. source: "./media/characters/evander/side.svg",
  10092. extra: 877 / 477
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(0.83, "meters"),
  10100. default: true
  10101. },
  10102. ]
  10103. ))
  10104. characterMakers.push(() => makeCharacter(
  10105. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10106. {
  10107. front: {
  10108. height: math.unit(12, "feet"),
  10109. weight: math.unit(1000, "lb"),
  10110. name: "Front",
  10111. image: {
  10112. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10113. extra: 1762 / 1611
  10114. }
  10115. },
  10116. back: {
  10117. height: math.unit(12, "feet"),
  10118. weight: math.unit(1000, "lb"),
  10119. name: "Back",
  10120. image: {
  10121. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10122. extra: 1762 / 1611
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(12, "feet"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Kaiju",
  10134. height: math.unit(150, "feet")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(6, "feet"),
  10143. weight: math.unit(150, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/zero-alurus/front.svg"
  10147. }
  10148. },
  10149. back: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(150, "lb"),
  10152. name: "Back",
  10153. image: {
  10154. source: "./media/characters/zero-alurus/back.svg"
  10155. }
  10156. },
  10157. },
  10158. [
  10159. {
  10160. name: "Normal",
  10161. height: math.unit(5 + 10 / 12, "feet")
  10162. },
  10163. {
  10164. name: "Macro",
  10165. height: math.unit(60, "feet"),
  10166. default: true
  10167. },
  10168. {
  10169. name: "Macro+",
  10170. height: math.unit(450, "feet")
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(6, "feet"),
  10179. weight: math.unit(200, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/mega-shi/front.svg",
  10183. extra: 1279 / 1250,
  10184. bottom: 0.02
  10185. }
  10186. },
  10187. back: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(200, "lb"),
  10190. name: "Back",
  10191. image: {
  10192. source: "./media/characters/mega-shi/back.svg",
  10193. extra: 1279 / 1250,
  10194. bottom: 0.02
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Micro",
  10201. height: math.unit(16 + 6 / 12, "feet")
  10202. },
  10203. {
  10204. name: "Third Dimension",
  10205. height: math.unit(40, "meters")
  10206. },
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(660, "feet"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "Megamacro",
  10214. height: math.unit(10, "miles")
  10215. },
  10216. {
  10217. name: "Planetary Launch",
  10218. height: math.unit(500, "miles")
  10219. },
  10220. {
  10221. name: "Interstellar",
  10222. height: math.unit(1e9, "miles")
  10223. },
  10224. {
  10225. name: "Leaving the Universe",
  10226. height: math.unit(1, "gigaparsec")
  10227. },
  10228. {
  10229. name: "Travelling Universes",
  10230. height: math.unit(30e15, "parsecs")
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(5 + 4/12, "feet"),
  10239. weight: math.unit(120, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/odyssey/front.svg",
  10243. extra: 1747/1571,
  10244. bottom: 47/1794
  10245. }
  10246. },
  10247. side: {
  10248. height: math.unit(5.1, "feet"),
  10249. weight: math.unit(120, "lb"),
  10250. name: "Side",
  10251. image: {
  10252. source: "./media/characters/odyssey/side.svg",
  10253. extra: 1847/1619,
  10254. bottom: 47/1894
  10255. }
  10256. },
  10257. lounging: {
  10258. height: math.unit(1.464, "feet"),
  10259. weight: math.unit(120, "lb"),
  10260. name: "Lounging",
  10261. image: {
  10262. source: "./media/characters/odyssey/lounging.svg",
  10263. extra: 1235/837,
  10264. bottom: 551/1786
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Normal",
  10271. height: math.unit(5 + 4 / 12, "feet")
  10272. },
  10273. {
  10274. name: "Macro",
  10275. height: math.unit(1, "km")
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(3000, "km")
  10280. },
  10281. {
  10282. name: "Gigamacro",
  10283. height: math.unit(1, "AU"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Omniversal",
  10288. height: math.unit(100e14, "lightyears")
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(300, "lb"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/mekuto/front.svg",
  10301. extra: 921 / 832,
  10302. bottom: 0.03
  10303. }
  10304. },
  10305. hand: {
  10306. height: math.unit(6 / 10.24, "feet"),
  10307. name: "Hand",
  10308. image: {
  10309. source: "./media/characters/mekuto/hand.svg"
  10310. }
  10311. },
  10312. foot: {
  10313. height: math.unit(6 / 5.05, "feet"),
  10314. name: "Foot",
  10315. image: {
  10316. source: "./media/characters/mekuto/foot.svg"
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Minimicro",
  10323. height: math.unit(0.2, "inches")
  10324. },
  10325. {
  10326. name: "Micro",
  10327. height: math.unit(1.5, "inches")
  10328. },
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(5 + 11 / 12, "feet"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Minimacro",
  10336. height: math.unit(17 + 9 / 12, "feet")
  10337. },
  10338. {
  10339. name: "Macro",
  10340. height: math.unit(177.5, "feet")
  10341. },
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(152, "miles")
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6.5, "inches"),
  10353. weight: math.unit(13, "oz"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/dafydd-tomos/front.svg",
  10357. extra: 2990 / 2603,
  10358. bottom: 0.03
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Micro",
  10365. height: math.unit(6.5, "inches"),
  10366. default: true
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(150, "lb"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/splinter/front.svg",
  10379. extra: 2990 / 2882,
  10380. bottom: 0.04
  10381. }
  10382. },
  10383. back: {
  10384. height: math.unit(6, "feet"),
  10385. weight: math.unit(150, "lb"),
  10386. name: "Back",
  10387. image: {
  10388. source: "./media/characters/splinter/back.svg",
  10389. extra: 2990 / 2882,
  10390. bottom: 0.04
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Normal",
  10397. height: math.unit(6, "feet")
  10398. },
  10399. {
  10400. name: "Macro",
  10401. height: math.unit(230, "meters"),
  10402. default: true
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(4 + 10 / 12, "feet"),
  10411. weight: math.unit(480, "lb"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/snow-gabumon/front.svg",
  10415. extra: 1140 / 963,
  10416. bottom: 0.058
  10417. }
  10418. },
  10419. back: {
  10420. height: math.unit(4 + 10 / 12, "feet"),
  10421. weight: math.unit(480, "lb"),
  10422. name: "Back",
  10423. image: {
  10424. source: "./media/characters/snow-gabumon/back.svg",
  10425. extra: 1115 / 962,
  10426. bottom: 0.041
  10427. }
  10428. },
  10429. frontUndresed: {
  10430. height: math.unit(4 + 10 / 12, "feet"),
  10431. weight: math.unit(480, "lb"),
  10432. name: "Front (Undressed)",
  10433. image: {
  10434. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10435. extra: 1061 / 960,
  10436. bottom: 0.045
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Micro",
  10443. height: math.unit(1, "inch")
  10444. },
  10445. {
  10446. name: "Normal",
  10447. height: math.unit(4 + 10 / 12, "feet"),
  10448. default: true
  10449. },
  10450. {
  10451. name: "Macro",
  10452. height: math.unit(200, "feet")
  10453. },
  10454. {
  10455. name: "Megamacro",
  10456. height: math.unit(120, "miles")
  10457. },
  10458. {
  10459. name: "Gigamacro",
  10460. height: math.unit(9800, "miles")
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10466. {
  10467. front: {
  10468. height: math.unit(1.7, "meters"),
  10469. weight: math.unit(140, "lb"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/moody/front.svg",
  10473. extra: 3226 / 3007,
  10474. bottom: 0.087
  10475. }
  10476. },
  10477. },
  10478. [
  10479. {
  10480. name: "Micro",
  10481. height: math.unit(1, "mm")
  10482. },
  10483. {
  10484. name: "Normal",
  10485. height: math.unit(1.7, "meters"),
  10486. default: true
  10487. },
  10488. {
  10489. name: "Macro",
  10490. height: math.unit(80, "meters")
  10491. },
  10492. {
  10493. name: "Macro+",
  10494. height: math.unit(500, "meters")
  10495. },
  10496. ]
  10497. ))
  10498. characterMakers.push(() => makeCharacter(
  10499. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10500. {
  10501. front: {
  10502. height: math.unit(6, "feet"),
  10503. weight: math.unit(150, "lb"),
  10504. name: "Front",
  10505. image: {
  10506. source: "./media/characters/zyas/front.svg",
  10507. extra: 1180 / 1120,
  10508. bottom: 0.045
  10509. }
  10510. },
  10511. },
  10512. [
  10513. {
  10514. name: "Normal",
  10515. height: math.unit(10, "feet"),
  10516. default: true
  10517. },
  10518. {
  10519. name: "Macro",
  10520. height: math.unit(500, "feet")
  10521. },
  10522. {
  10523. name: "Megamacro",
  10524. height: math.unit(5, "miles")
  10525. },
  10526. {
  10527. name: "Teramacro",
  10528. height: math.unit(150000, "miles")
  10529. },
  10530. ]
  10531. ))
  10532. characterMakers.push(() => makeCharacter(
  10533. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10534. {
  10535. front: {
  10536. height: math.unit(6, "feet"),
  10537. weight: math.unit(150, "lb"),
  10538. name: "Front",
  10539. image: {
  10540. source: "./media/characters/cuon/front.svg",
  10541. extra: 1390 / 1320,
  10542. bottom: 0.008
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Micro",
  10549. height: math.unit(3, "inches")
  10550. },
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(18 + 9 / 12, "feet"),
  10554. default: true
  10555. },
  10556. {
  10557. name: "Macro",
  10558. height: math.unit(360, "feet")
  10559. },
  10560. {
  10561. name: "Megamacro",
  10562. height: math.unit(360, "miles")
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(2.4, "meters"),
  10571. weight: math.unit(70, "kg"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/nyanuxk/front.svg",
  10575. extra: 1172 / 1084,
  10576. bottom: 0.065
  10577. }
  10578. },
  10579. side: {
  10580. height: math.unit(2.4, "meters"),
  10581. weight: math.unit(70, "kg"),
  10582. name: "Side",
  10583. image: {
  10584. source: "./media/characters/nyanuxk/side.svg",
  10585. extra: 1190 / 1132,
  10586. bottom: 0.007
  10587. }
  10588. },
  10589. back: {
  10590. height: math.unit(2.4, "meters"),
  10591. weight: math.unit(70, "kg"),
  10592. name: "Back",
  10593. image: {
  10594. source: "./media/characters/nyanuxk/back.svg",
  10595. extra: 1200 / 1141,
  10596. bottom: 0.015
  10597. }
  10598. },
  10599. foot: {
  10600. height: math.unit(0.52, "meters"),
  10601. name: "Foot",
  10602. image: {
  10603. source: "./media/characters/nyanuxk/foot.svg"
  10604. }
  10605. },
  10606. },
  10607. [
  10608. {
  10609. name: "Micro",
  10610. height: math.unit(2, "cm")
  10611. },
  10612. {
  10613. name: "Normal",
  10614. height: math.unit(2.4, "meters"),
  10615. default: true
  10616. },
  10617. {
  10618. name: "Smaller Macro",
  10619. height: math.unit(120, "meters")
  10620. },
  10621. {
  10622. name: "Bigger Macro",
  10623. height: math.unit(1.2, "km")
  10624. },
  10625. {
  10626. name: "Megamacro",
  10627. height: math.unit(15, "kilometers")
  10628. },
  10629. {
  10630. name: "Gigamacro",
  10631. height: math.unit(2000, "km")
  10632. },
  10633. {
  10634. name: "Teramacro",
  10635. height: math.unit(500000, "km")
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10641. {
  10642. side: {
  10643. height: math.unit(6, "feet"),
  10644. name: "Side",
  10645. image: {
  10646. source: "./media/characters/ailbhe/side.svg",
  10647. extra: 757 / 464,
  10648. bottom: 0.041
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(1.07, "meters"),
  10656. default: true
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10662. {
  10663. front: {
  10664. height: math.unit(6, "feet"),
  10665. weight: math.unit(120, "kg"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/zevulfius/front.svg",
  10669. extra: 965 / 903
  10670. }
  10671. },
  10672. side: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(120, "kg"),
  10675. name: "Side",
  10676. image: {
  10677. source: "./media/characters/zevulfius/side.svg",
  10678. extra: 939 / 900
  10679. }
  10680. },
  10681. back: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(120, "kg"),
  10684. name: "Back",
  10685. image: {
  10686. source: "./media/characters/zevulfius/back.svg",
  10687. extra: 918 / 854,
  10688. bottom: 0.005
  10689. }
  10690. },
  10691. foot: {
  10692. height: math.unit(6 / 3.72, "feet"),
  10693. name: "Foot",
  10694. image: {
  10695. source: "./media/characters/zevulfius/foot.svg"
  10696. }
  10697. },
  10698. },
  10699. [
  10700. {
  10701. name: "Macro",
  10702. height: math.unit(750, "meters")
  10703. },
  10704. {
  10705. name: "Megamacro",
  10706. height: math.unit(20, "km"),
  10707. default: true
  10708. },
  10709. {
  10710. name: "Gigamacro",
  10711. height: math.unit(2000, "km")
  10712. },
  10713. {
  10714. name: "Teramacro",
  10715. height: math.unit(250000, "km")
  10716. },
  10717. ]
  10718. ))
  10719. characterMakers.push(() => makeCharacter(
  10720. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10721. {
  10722. front: {
  10723. height: math.unit(100, "feet"),
  10724. weight: math.unit(350, "kg"),
  10725. name: "Front",
  10726. image: {
  10727. source: "./media/characters/rikes/front.svg",
  10728. extra: 1565 / 1483,
  10729. bottom: 0.017
  10730. }
  10731. },
  10732. },
  10733. [
  10734. {
  10735. name: "Macro",
  10736. height: math.unit(100, "feet"),
  10737. default: true
  10738. },
  10739. ]
  10740. ))
  10741. characterMakers.push(() => makeCharacter(
  10742. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10743. {
  10744. front: {
  10745. height: math.unit(8, "feet"),
  10746. weight: math.unit(356, "lb"),
  10747. name: "Front",
  10748. image: {
  10749. source: "./media/characters/adam-silver-mane/front.svg",
  10750. extra: 1036/937,
  10751. bottom: 63/1099
  10752. }
  10753. },
  10754. side: {
  10755. height: math.unit(8, "feet"),
  10756. weight: math.unit(356, "lb"),
  10757. name: "Side",
  10758. image: {
  10759. source: "./media/characters/adam-silver-mane/side.svg",
  10760. extra: 997/901,
  10761. bottom: 59/1056
  10762. }
  10763. },
  10764. frontNsfw: {
  10765. height: math.unit(8, "feet"),
  10766. weight: math.unit(356, "lb"),
  10767. name: "Front (NSFW)",
  10768. image: {
  10769. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10770. extra: 1036/937,
  10771. bottom: 63/1099
  10772. }
  10773. },
  10774. sideNsfw: {
  10775. height: math.unit(8, "feet"),
  10776. weight: math.unit(356, "lb"),
  10777. name: "Side (NSFW)",
  10778. image: {
  10779. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10780. extra: 997/901,
  10781. bottom: 59/1056
  10782. }
  10783. },
  10784. dick: {
  10785. height: math.unit(2.1, "feet"),
  10786. name: "Dick",
  10787. image: {
  10788. source: "./media/characters/adam-silver-mane/dick.svg"
  10789. }
  10790. },
  10791. taur: {
  10792. height: math.unit(16, "feet"),
  10793. weight: math.unit(1500, "kg"),
  10794. name: "Taur",
  10795. image: {
  10796. source: "./media/characters/adam-silver-mane/taur.svg",
  10797. extra: 1713 / 1571,
  10798. bottom: 0.01
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(8, "feet")
  10806. },
  10807. {
  10808. name: "Minimacro",
  10809. height: math.unit(80, "feet")
  10810. },
  10811. {
  10812. name: "MDA",
  10813. height: math.unit(80, "meters")
  10814. },
  10815. {
  10816. name: "Macro",
  10817. height: math.unit(800, "feet"),
  10818. default: true
  10819. },
  10820. {
  10821. name: "Megamacro",
  10822. height: math.unit(8000, "feet")
  10823. },
  10824. {
  10825. name: "Gigamacro",
  10826. height: math.unit(800, "miles")
  10827. },
  10828. {
  10829. name: "Teramacro",
  10830. height: math.unit(80000, "miles")
  10831. },
  10832. {
  10833. name: "Celestial",
  10834. height: math.unit(8e6, "miles")
  10835. },
  10836. {
  10837. name: "Star Dragon",
  10838. height: math.unit(800000, "parsecs")
  10839. },
  10840. {
  10841. name: "Godly",
  10842. height: math.unit(800, "teraparsecs")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(150, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/ky'owin/front.svg",
  10855. extra: 3888 / 3068,
  10856. bottom: 0.015
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Normal",
  10863. height: math.unit(6 + 8 / 12, "feet")
  10864. },
  10865. {
  10866. name: "Large",
  10867. height: math.unit(68, "feet")
  10868. },
  10869. {
  10870. name: "Macro",
  10871. height: math.unit(132, "feet")
  10872. },
  10873. {
  10874. name: "Macro+",
  10875. height: math.unit(340, "feet")
  10876. },
  10877. {
  10878. name: "Macro++",
  10879. height: math.unit(680, "feet"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Megamacro",
  10884. height: math.unit(1, "mile")
  10885. },
  10886. {
  10887. name: "Megamacro+",
  10888. height: math.unit(10, "miles")
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(4, "feet"),
  10897. weight: math.unit(50, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/mal/front.svg",
  10901. extra: 785 / 724,
  10902. bottom: 0.07
  10903. }
  10904. },
  10905. },
  10906. [
  10907. {
  10908. name: "Micro",
  10909. height: math.unit(4, "inches")
  10910. },
  10911. {
  10912. name: "Normal",
  10913. height: math.unit(4, "feet"),
  10914. default: true
  10915. },
  10916. {
  10917. name: "Macro",
  10918. height: math.unit(200, "feet")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(150, "lb"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/jordan-deware/front.svg",
  10931. extra: 1191 / 1012
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Nano",
  10938. height: math.unit(0.01, "mm")
  10939. },
  10940. {
  10941. name: "Minimicro",
  10942. height: math.unit(1, "mm")
  10943. },
  10944. {
  10945. name: "Micro",
  10946. height: math.unit(0.5, "inches")
  10947. },
  10948. {
  10949. name: "Normal",
  10950. height: math.unit(4, "feet"),
  10951. default: true
  10952. },
  10953. {
  10954. name: "Minimacro",
  10955. height: math.unit(40, "meters")
  10956. },
  10957. {
  10958. name: "Small Macro",
  10959. height: math.unit(400, "meters")
  10960. },
  10961. {
  10962. name: "Macro",
  10963. height: math.unit(4, "miles")
  10964. },
  10965. {
  10966. name: "Megamacro",
  10967. height: math.unit(40, "miles")
  10968. },
  10969. {
  10970. name: "Megamacro+",
  10971. height: math.unit(400, "miles")
  10972. },
  10973. {
  10974. name: "Gigamacro",
  10975. height: math.unit(400000, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10981. {
  10982. side: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(150, "lb"),
  10985. name: "Side",
  10986. image: {
  10987. source: "./media/characters/kimiko/side.svg",
  10988. extra: 600 / 358
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Normal",
  10995. height: math.unit(15, "feet"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Macro",
  11000. height: math.unit(220, "feet")
  11001. },
  11002. {
  11003. name: "Macro+",
  11004. height: math.unit(1450, "feet")
  11005. },
  11006. {
  11007. name: "Megamacro",
  11008. height: math.unit(11500, "feet")
  11009. },
  11010. {
  11011. name: "Gigamacro",
  11012. height: math.unit(9500, "miles")
  11013. },
  11014. {
  11015. name: "Teramacro",
  11016. height: math.unit(2208005005, "miles")
  11017. },
  11018. {
  11019. name: "Examacro",
  11020. height: math.unit(2750, "parsecs")
  11021. },
  11022. {
  11023. name: "Zettamacro",
  11024. height: math.unit(101500, "parsecs")
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11030. {
  11031. front: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(70, "kg"),
  11034. name: "Front",
  11035. image: {
  11036. source: "./media/characters/andrew-sleepy/front.svg"
  11037. }
  11038. },
  11039. side: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(70, "kg"),
  11042. name: "Side",
  11043. image: {
  11044. source: "./media/characters/andrew-sleepy/side.svg"
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Micro",
  11051. height: math.unit(1, "mm"),
  11052. default: true
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11058. {
  11059. front: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(150, "lb"),
  11062. name: "Front",
  11063. image: {
  11064. source: "./media/characters/judio/front.svg",
  11065. extra: 1258 / 1110
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(5 + 6 / 12, "feet")
  11073. },
  11074. {
  11075. name: "Macro",
  11076. height: math.unit(1000, "feet"),
  11077. default: true
  11078. },
  11079. {
  11080. name: "Megamacro",
  11081. height: math.unit(10, "miles")
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11087. {
  11088. frontDressed: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(68, "kg"),
  11091. name: "Front (Dressed)",
  11092. image: {
  11093. source: "./media/characters/nomaxice/front-dressed.svg",
  11094. extra: 1137/824,
  11095. bottom: 74/1211
  11096. }
  11097. },
  11098. frontShorts: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(68, "kg"),
  11101. name: "Front (Shorts)",
  11102. image: {
  11103. source: "./media/characters/nomaxice/front-shorts.svg",
  11104. extra: 1137/824,
  11105. bottom: 74/1211
  11106. }
  11107. },
  11108. back: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(68, "kg"),
  11111. name: "Back",
  11112. image: {
  11113. source: "./media/characters/nomaxice/back.svg",
  11114. extra: 822/786,
  11115. bottom: 39/861
  11116. }
  11117. },
  11118. hand: {
  11119. height: math.unit(0.565, "feet"),
  11120. name: "Hand",
  11121. image: {
  11122. source: "./media/characters/nomaxice/hand.svg"
  11123. }
  11124. },
  11125. foot: {
  11126. height: math.unit(1, "feet"),
  11127. name: "Foot",
  11128. image: {
  11129. source: "./media/characters/nomaxice/foot.svg"
  11130. }
  11131. },
  11132. },
  11133. [
  11134. {
  11135. name: "Micro",
  11136. height: math.unit(8, "cm")
  11137. },
  11138. {
  11139. name: "Norm",
  11140. height: math.unit(1.82, "m")
  11141. },
  11142. {
  11143. name: "Norm+",
  11144. height: math.unit(8.8, "feet"),
  11145. default: true
  11146. },
  11147. {
  11148. name: "Big",
  11149. height: math.unit(8, "meters")
  11150. },
  11151. {
  11152. name: "Macro",
  11153. height: math.unit(18, "meters")
  11154. },
  11155. {
  11156. name: "Macro+",
  11157. height: math.unit(88, "meters")
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11163. {
  11164. front: {
  11165. height: math.unit(12, "feet"),
  11166. weight: math.unit(1.5, "tons"),
  11167. name: "Front",
  11168. image: {
  11169. source: "./media/characters/dydros/front.svg",
  11170. extra: 863 / 800,
  11171. bottom: 0.015
  11172. }
  11173. },
  11174. back: {
  11175. height: math.unit(12, "feet"),
  11176. weight: math.unit(1.5, "tons"),
  11177. name: "Back",
  11178. image: {
  11179. source: "./media/characters/dydros/back.svg",
  11180. extra: 900 / 843,
  11181. bottom: 0.005
  11182. }
  11183. },
  11184. },
  11185. [
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(12, "feet"),
  11189. default: true
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(6, "feet"),
  11198. weight: math.unit(100, "kg"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/riggi/front.svg",
  11202. extra: 5787 / 5303
  11203. }
  11204. },
  11205. hyper: {
  11206. height: math.unit(6 * 5 / 3, "feet"),
  11207. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11208. name: "Hyper",
  11209. image: {
  11210. source: "./media/characters/riggi/hyper.svg",
  11211. extra: 3595 / 3485
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Small Macro",
  11218. height: math.unit(50, "feet")
  11219. },
  11220. {
  11221. name: "Default",
  11222. height: math.unit(200, "feet"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Loom",
  11227. height: math.unit(10000, "feet")
  11228. },
  11229. {
  11230. name: "Cruising Altitude",
  11231. height: math.unit(30000, "feet")
  11232. },
  11233. {
  11234. name: "Megamacro",
  11235. height: math.unit(100, "miles")
  11236. },
  11237. {
  11238. name: "Continent Sized",
  11239. height: math.unit(2800, "miles")
  11240. },
  11241. {
  11242. name: "Earth Sized",
  11243. height: math.unit(8000, "miles")
  11244. },
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11249. {
  11250. front: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(250, "lb"),
  11253. name: "Front",
  11254. image: {
  11255. source: "./media/characters/alexi/front.svg",
  11256. extra: 3483 / 3291,
  11257. bottom: 0.04
  11258. }
  11259. },
  11260. back: {
  11261. height: math.unit(6, "feet"),
  11262. weight: math.unit(250, "lb"),
  11263. name: "Back",
  11264. image: {
  11265. source: "./media/characters/alexi/back.svg",
  11266. extra: 3533 / 3356,
  11267. bottom: 0.021
  11268. }
  11269. },
  11270. frontTransforming: {
  11271. height: math.unit(8.58, "feet"),
  11272. weight: math.unit(1300, "lb"),
  11273. name: "Transforming",
  11274. image: {
  11275. source: "./media/characters/alexi/front-transforming.svg",
  11276. extra: 437 / 409,
  11277. bottom: 19 / 458.66
  11278. }
  11279. },
  11280. frontTransformed: {
  11281. height: math.unit(12.5, "feet"),
  11282. weight: math.unit(4000, "lb"),
  11283. name: "Transformed",
  11284. image: {
  11285. source: "./media/characters/alexi/front-transformed.svg",
  11286. extra: 639 / 614,
  11287. bottom: 30.55 / 671
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Normal",
  11294. height: math.unit(14, "feet"),
  11295. default: true
  11296. },
  11297. {
  11298. name: "Minimacro",
  11299. height: math.unit(30, "meters")
  11300. },
  11301. {
  11302. name: "Macro",
  11303. height: math.unit(500, "meters")
  11304. },
  11305. {
  11306. name: "Megamacro",
  11307. height: math.unit(9000, "km")
  11308. },
  11309. {
  11310. name: "Teramacro",
  11311. height: math.unit(384000, "km")
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11317. {
  11318. front: {
  11319. height: math.unit(6, "feet"),
  11320. weight: math.unit(150, "lb"),
  11321. name: "Front",
  11322. image: {
  11323. source: "./media/characters/kayroo/front.svg",
  11324. extra: 1153 / 1038,
  11325. bottom: 0.06
  11326. }
  11327. },
  11328. foot: {
  11329. height: math.unit(6, "feet"),
  11330. weight: math.unit(150, "lb"),
  11331. name: "Foot",
  11332. image: {
  11333. source: "./media/characters/kayroo/foot.svg"
  11334. }
  11335. },
  11336. },
  11337. [
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(8, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Minimacro",
  11345. height: math.unit(250, "feet")
  11346. },
  11347. {
  11348. name: "Macro",
  11349. height: math.unit(2800, "feet")
  11350. },
  11351. {
  11352. name: "Megamacro",
  11353. height: math.unit(5200, "feet")
  11354. },
  11355. {
  11356. name: "Gigamacro",
  11357. height: math.unit(27000, "feet")
  11358. },
  11359. {
  11360. name: "Omega",
  11361. height: math.unit(45000, "feet")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(18, "feet"),
  11370. weight: math.unit(5800, "lb"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/rhys/front.svg",
  11374. extra: 3386 / 3090,
  11375. bottom: 0.07
  11376. }
  11377. },
  11378. },
  11379. [
  11380. {
  11381. name: "Normal",
  11382. height: math.unit(18, "feet"),
  11383. default: true
  11384. },
  11385. {
  11386. name: "Working Size",
  11387. height: math.unit(200, "feet")
  11388. },
  11389. {
  11390. name: "Demolition Size",
  11391. height: math.unit(2000, "feet")
  11392. },
  11393. {
  11394. name: "Maximum Licensed Size",
  11395. height: math.unit(5, "miles")
  11396. },
  11397. {
  11398. name: "Maximum Observed Size",
  11399. height: math.unit(10, "yottameters")
  11400. },
  11401. ]
  11402. ))
  11403. characterMakers.push(() => makeCharacter(
  11404. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11405. {
  11406. front: {
  11407. height: math.unit(6, "feet"),
  11408. weight: math.unit(250, "lb"),
  11409. name: "Front",
  11410. image: {
  11411. source: "./media/characters/toto/front.svg",
  11412. extra: 527 / 479,
  11413. bottom: 0.05
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Micro",
  11420. height: math.unit(3, "feet")
  11421. },
  11422. {
  11423. name: "Normal",
  11424. height: math.unit(10, "feet")
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(150, "feet"),
  11429. default: true
  11430. },
  11431. {
  11432. name: "Megamacro",
  11433. height: math.unit(1200, "feet")
  11434. },
  11435. ]
  11436. ))
  11437. characterMakers.push(() => makeCharacter(
  11438. { name: "King", species: ["lion"], tags: ["anthro"] },
  11439. {
  11440. back: {
  11441. height: math.unit(6, "feet"),
  11442. weight: math.unit(150, "lb"),
  11443. name: "Back",
  11444. image: {
  11445. source: "./media/characters/king/back.svg"
  11446. }
  11447. },
  11448. },
  11449. [
  11450. {
  11451. name: "Micro",
  11452. height: math.unit(2, "inches")
  11453. },
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(8, "feet")
  11457. },
  11458. {
  11459. name: "Macro",
  11460. height: math.unit(200, "feet"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Megamacro",
  11465. height: math.unit(50, "miles")
  11466. },
  11467. ]
  11468. ))
  11469. characterMakers.push(() => makeCharacter(
  11470. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11471. {
  11472. front: {
  11473. height: math.unit(11, "feet"),
  11474. weight: math.unit(1400, "lb"),
  11475. name: "Front",
  11476. image: {
  11477. source: "./media/characters/cordite/front.svg",
  11478. extra: 1919/1827,
  11479. bottom: 40/1959
  11480. }
  11481. },
  11482. side: {
  11483. height: math.unit(11, "feet"),
  11484. weight: math.unit(1400, "lb"),
  11485. name: "Side",
  11486. image: {
  11487. source: "./media/characters/cordite/side.svg",
  11488. extra: 1908/1793,
  11489. bottom: 38/1946
  11490. }
  11491. },
  11492. back: {
  11493. height: math.unit(11, "feet"),
  11494. weight: math.unit(1400, "lb"),
  11495. name: "Back",
  11496. image: {
  11497. source: "./media/characters/cordite/back.svg",
  11498. extra: 1938/1837,
  11499. bottom: 10/1948
  11500. }
  11501. },
  11502. feral: {
  11503. height: math.unit(2, "feet"),
  11504. weight: math.unit(90, "lb"),
  11505. name: "Feral",
  11506. image: {
  11507. source: "./media/characters/cordite/feral.svg",
  11508. extra: 1260 / 755,
  11509. bottom: 0.05
  11510. }
  11511. },
  11512. },
  11513. [
  11514. {
  11515. name: "Normal",
  11516. height: math.unit(11, "feet"),
  11517. default: true
  11518. },
  11519. ]
  11520. ))
  11521. characterMakers.push(() => makeCharacter(
  11522. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11523. {
  11524. front: {
  11525. height: math.unit(6, "feet"),
  11526. weight: math.unit(150, "lb"),
  11527. name: "Front",
  11528. image: {
  11529. source: "./media/characters/pianostrong/front.svg",
  11530. extra: 6577 / 6254,
  11531. bottom: 0.02
  11532. }
  11533. },
  11534. side: {
  11535. height: math.unit(6, "feet"),
  11536. weight: math.unit(150, "lb"),
  11537. name: "Side",
  11538. image: {
  11539. source: "./media/characters/pianostrong/side.svg",
  11540. extra: 6106 / 5730
  11541. }
  11542. },
  11543. back: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(150, "lb"),
  11546. name: "Back",
  11547. image: {
  11548. source: "./media/characters/pianostrong/back.svg",
  11549. extra: 6085 / 5733,
  11550. bottom: 0.01
  11551. }
  11552. },
  11553. },
  11554. [
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(100, "feet")
  11558. },
  11559. {
  11560. name: "Macro+",
  11561. height: math.unit(300, "feet"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Macro++",
  11566. height: math.unit(1000, "feet")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(150, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/kona/front.svg",
  11579. extra: 2960 / 2629,
  11580. bottom: 0.005
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(11 + 8 / 12, "feet")
  11588. },
  11589. {
  11590. name: "Macro",
  11591. height: math.unit(850, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Macro+",
  11596. height: math.unit(1.5, "km"),
  11597. default: true
  11598. },
  11599. {
  11600. name: "Megamacro",
  11601. height: math.unit(80, "miles")
  11602. },
  11603. {
  11604. name: "Gigamacro",
  11605. height: math.unit(3500, "miles")
  11606. },
  11607. ]
  11608. ))
  11609. characterMakers.push(() => makeCharacter(
  11610. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11611. {
  11612. side: {
  11613. height: math.unit(1.9, "meters"),
  11614. weight: math.unit(326, "kg"),
  11615. name: "Side",
  11616. image: {
  11617. source: "./media/characters/levi/side.svg",
  11618. extra: 1704 / 1334,
  11619. bottom: 0.02
  11620. }
  11621. },
  11622. },
  11623. [
  11624. {
  11625. name: "Normal",
  11626. height: math.unit(1.9, "meters"),
  11627. default: true
  11628. },
  11629. {
  11630. name: "Macro",
  11631. height: math.unit(20, "meters")
  11632. },
  11633. {
  11634. name: "Macro+",
  11635. height: math.unit(200, "meters")
  11636. },
  11637. {
  11638. name: "Megamacro",
  11639. height: math.unit(2, "km")
  11640. },
  11641. {
  11642. name: "Megamacro+",
  11643. height: math.unit(20, "km")
  11644. },
  11645. {
  11646. name: "Gigamacro",
  11647. height: math.unit(2500, "km")
  11648. },
  11649. {
  11650. name: "Gigamacro+",
  11651. height: math.unit(120000, "km")
  11652. },
  11653. {
  11654. name: "Teramacro",
  11655. height: math.unit(7.77e6, "km")
  11656. },
  11657. ]
  11658. ))
  11659. characterMakers.push(() => makeCharacter(
  11660. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11661. {
  11662. front: {
  11663. height: math.unit(6 + 4/12, "feet"),
  11664. weight: math.unit(190, "lb"),
  11665. name: "Front",
  11666. image: {
  11667. source: "./media/characters/bmc/front.svg",
  11668. extra: 1626/1472,
  11669. bottom: 79/1705
  11670. }
  11671. },
  11672. back: {
  11673. height: math.unit(6 + 4/12, "feet"),
  11674. weight: math.unit(190, "lb"),
  11675. name: "Back",
  11676. image: {
  11677. source: "./media/characters/bmc/back.svg",
  11678. extra: 1640/1479,
  11679. bottom: 45/1685
  11680. }
  11681. },
  11682. frontArmor: {
  11683. height: math.unit(6 + 4/12, "feet"),
  11684. weight: math.unit(190, "lb"),
  11685. name: "Front-armor",
  11686. image: {
  11687. source: "./media/characters/bmc/front-armor.svg",
  11688. extra: 1538/1468,
  11689. bottom: 79/1617
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Human-sized",
  11696. height: math.unit(6 + 4 / 12, "feet")
  11697. },
  11698. {
  11699. name: "Interactive Size",
  11700. height: math.unit(25, "feet")
  11701. },
  11702. {
  11703. name: "Small",
  11704. height: math.unit(250, "feet")
  11705. },
  11706. {
  11707. name: "Normal",
  11708. height: math.unit(1250, "feet"),
  11709. default: true
  11710. },
  11711. {
  11712. name: "Good Day",
  11713. height: math.unit(88, "miles")
  11714. },
  11715. {
  11716. name: "Largest Measured Size",
  11717. height: math.unit(105.960, "galaxies")
  11718. },
  11719. ]
  11720. ))
  11721. characterMakers.push(() => makeCharacter(
  11722. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11723. {
  11724. front: {
  11725. height: math.unit(20, "feet"),
  11726. weight: math.unit(2016, "kg"),
  11727. name: "Front",
  11728. image: {
  11729. source: "./media/characters/sven-the-kaiju/front.svg",
  11730. extra: 1277/1250,
  11731. bottom: 35/1312
  11732. }
  11733. },
  11734. mouth: {
  11735. height: math.unit(1.85, "feet"),
  11736. name: "Mouth",
  11737. image: {
  11738. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11739. }
  11740. },
  11741. },
  11742. [
  11743. {
  11744. name: "Fairy",
  11745. height: math.unit(6, "inches")
  11746. },
  11747. {
  11748. name: "Normal",
  11749. height: math.unit(20, "feet"),
  11750. default: true
  11751. },
  11752. {
  11753. name: "Rampage",
  11754. height: math.unit(200, "feet")
  11755. },
  11756. {
  11757. name: "Archfey Forest Guardian",
  11758. height: math.unit(1, "mile")
  11759. },
  11760. ]
  11761. ))
  11762. characterMakers.push(() => makeCharacter(
  11763. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11764. {
  11765. front: {
  11766. height: math.unit(4, "meters"),
  11767. weight: math.unit(2, "tons"),
  11768. name: "Front",
  11769. image: {
  11770. source: "./media/characters/marik/front.svg",
  11771. extra: 1057 / 1003,
  11772. bottom: 0.08
  11773. }
  11774. },
  11775. },
  11776. [
  11777. {
  11778. name: "Normal",
  11779. height: math.unit(4, "meters"),
  11780. default: true
  11781. },
  11782. {
  11783. name: "Macro",
  11784. height: math.unit(20, "meters")
  11785. },
  11786. {
  11787. name: "Megamacro",
  11788. height: math.unit(50, "km")
  11789. },
  11790. {
  11791. name: "Gigamacro",
  11792. height: math.unit(100, "km")
  11793. },
  11794. {
  11795. name: "Alpha Macro",
  11796. height: math.unit(7.88e7, "yottameters")
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11802. {
  11803. front: {
  11804. height: math.unit(6, "feet"),
  11805. weight: math.unit(110, "lb"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/mel/front.svg",
  11809. extra: 736 / 617,
  11810. bottom: 0.017
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Pico",
  11817. height: math.unit(3, "pm")
  11818. },
  11819. {
  11820. name: "Nano",
  11821. height: math.unit(3, "nm")
  11822. },
  11823. {
  11824. name: "Micro",
  11825. height: math.unit(0.3, "mm"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Micro+",
  11830. height: math.unit(3, "mm")
  11831. },
  11832. {
  11833. name: "Normal",
  11834. height: math.unit(5 + 10.5 / 12, "feet")
  11835. },
  11836. ]
  11837. ))
  11838. characterMakers.push(() => makeCharacter(
  11839. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11840. {
  11841. kaiju: {
  11842. height: math.unit(1.75, "meters"),
  11843. weight: math.unit(55, "kg"),
  11844. name: "Kaiju",
  11845. image: {
  11846. source: "./media/characters/lykonous/kaiju.svg",
  11847. extra: 1055 / 946,
  11848. bottom: 0.135
  11849. }
  11850. },
  11851. },
  11852. [
  11853. {
  11854. name: "Normal",
  11855. height: math.unit(2.5, "meters"),
  11856. default: true
  11857. },
  11858. {
  11859. name: "Kaiju Dragon",
  11860. height: math.unit(60, "meters")
  11861. },
  11862. {
  11863. name: "Mega Kaiju",
  11864. height: math.unit(120, "km")
  11865. },
  11866. {
  11867. name: "Giga Kaiju",
  11868. height: math.unit(200, "megameters")
  11869. },
  11870. {
  11871. name: "Terra Kaiju",
  11872. height: math.unit(400, "gigameters")
  11873. },
  11874. {
  11875. name: "Kaiju Dragon God",
  11876. height: math.unit(13000, "exaparsecs")
  11877. },
  11878. ]
  11879. ))
  11880. characterMakers.push(() => makeCharacter(
  11881. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11882. {
  11883. front: {
  11884. height: math.unit(6, "feet"),
  11885. weight: math.unit(150, "lb"),
  11886. name: "Front",
  11887. image: {
  11888. source: "./media/characters/blü/front.svg",
  11889. extra: 1883 / 1564,
  11890. bottom: 0.031
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(13, "feet"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Big Boi",
  11902. height: math.unit(150, "meters")
  11903. },
  11904. {
  11905. name: "Mini Stomper",
  11906. height: math.unit(300, "meters")
  11907. },
  11908. {
  11909. name: "Macro",
  11910. height: math.unit(1000, "meters")
  11911. },
  11912. {
  11913. name: "Megamacro",
  11914. height: math.unit(11000, "meters")
  11915. },
  11916. {
  11917. name: "Gigamacro",
  11918. height: math.unit(11000, "km")
  11919. },
  11920. {
  11921. name: "Teramacro",
  11922. height: math.unit(420000, "km")
  11923. },
  11924. {
  11925. name: "Examacro",
  11926. height: math.unit(120, "parsecs")
  11927. },
  11928. {
  11929. name: "God Tho",
  11930. height: math.unit(98000000000, "parsecs")
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11936. {
  11937. taurFront: {
  11938. height: math.unit(6, "feet"),
  11939. weight: math.unit(200, "lb"),
  11940. name: "Taur (Front)",
  11941. image: {
  11942. source: "./media/characters/scales/taur-front.svg",
  11943. extra: 1,
  11944. bottom: 0.05
  11945. }
  11946. },
  11947. taurBack: {
  11948. height: math.unit(6, "feet"),
  11949. weight: math.unit(200, "lb"),
  11950. name: "Taur (Back)",
  11951. image: {
  11952. source: "./media/characters/scales/taur-back.svg",
  11953. extra: 1,
  11954. bottom: 0.08
  11955. }
  11956. },
  11957. anthro: {
  11958. height: math.unit(6 * 7 / 12, "feet"),
  11959. weight: math.unit(100, "lb"),
  11960. name: "Anthro",
  11961. image: {
  11962. source: "./media/characters/scales/anthro.svg",
  11963. extra: 1,
  11964. bottom: 0.06
  11965. }
  11966. },
  11967. },
  11968. [
  11969. {
  11970. name: "Normal",
  11971. height: math.unit(12, "feet"),
  11972. default: true
  11973. },
  11974. ]
  11975. ))
  11976. characterMakers.push(() => makeCharacter(
  11977. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11978. {
  11979. front: {
  11980. height: math.unit(6, "feet"),
  11981. weight: math.unit(150, "lb"),
  11982. name: "Front",
  11983. image: {
  11984. source: "./media/characters/koragos/front.svg",
  11985. extra: 841 / 794,
  11986. bottom: 0.035
  11987. }
  11988. },
  11989. back: {
  11990. height: math.unit(6, "feet"),
  11991. weight: math.unit(150, "lb"),
  11992. name: "Back",
  11993. image: {
  11994. source: "./media/characters/koragos/back.svg",
  11995. extra: 841 / 810,
  11996. bottom: 0.022
  11997. }
  11998. },
  11999. },
  12000. [
  12001. {
  12002. name: "Normal",
  12003. height: math.unit(6 + 11 / 12, "feet"),
  12004. default: true
  12005. },
  12006. {
  12007. name: "Macro",
  12008. height: math.unit(490, "feet")
  12009. },
  12010. {
  12011. name: "Megamacro",
  12012. height: math.unit(10, "miles")
  12013. },
  12014. {
  12015. name: "Gigamacro",
  12016. height: math.unit(50, "miles")
  12017. },
  12018. ]
  12019. ))
  12020. characterMakers.push(() => makeCharacter(
  12021. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12022. {
  12023. front: {
  12024. height: math.unit(6, "feet"),
  12025. weight: math.unit(250, "lb"),
  12026. name: "Front",
  12027. image: {
  12028. source: "./media/characters/xylrem/front.svg",
  12029. extra: 3323 / 3050,
  12030. bottom: 0.065
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Micro",
  12037. height: math.unit(4, "feet")
  12038. },
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(16, "feet"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(2720, "feet")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(25000, "miles")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12056. {
  12057. front: {
  12058. height: math.unit(8, "feet"),
  12059. weight: math.unit(250, "kg"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/ikideru/front.svg",
  12063. extra: 930 / 870,
  12064. bottom: 0.087
  12065. }
  12066. },
  12067. back: {
  12068. height: math.unit(8, "feet"),
  12069. weight: math.unit(250, "kg"),
  12070. name: "Back",
  12071. image: {
  12072. source: "./media/characters/ikideru/back.svg",
  12073. extra: 919 / 852,
  12074. bottom: 0.055
  12075. }
  12076. },
  12077. },
  12078. [
  12079. {
  12080. name: "Rare",
  12081. height: math.unit(8, "feet"),
  12082. default: true
  12083. },
  12084. {
  12085. name: "Playful Loom",
  12086. height: math.unit(80, "feet")
  12087. },
  12088. {
  12089. name: "City Leaner",
  12090. height: math.unit(230, "feet")
  12091. },
  12092. {
  12093. name: "Megamacro",
  12094. height: math.unit(2500, "feet")
  12095. },
  12096. {
  12097. name: "Gigamacro",
  12098. height: math.unit(26400, "feet")
  12099. },
  12100. {
  12101. name: "Tectonic Shifter",
  12102. height: math.unit(1.7, "megameters")
  12103. },
  12104. {
  12105. name: "Planet Carer",
  12106. height: math.unit(21, "megameters")
  12107. },
  12108. {
  12109. name: "God",
  12110. height: math.unit(11157.22, "parsecs")
  12111. },
  12112. ]
  12113. ))
  12114. characterMakers.push(() => makeCharacter(
  12115. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12116. {
  12117. front: {
  12118. height: math.unit(6, "feet"),
  12119. weight: math.unit(120, "lb"),
  12120. name: "Front",
  12121. image: {
  12122. source: "./media/characters/neo/front.svg"
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Micro",
  12129. height: math.unit(2, "inches"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Human Size",
  12134. height: math.unit(5 + 8 / 12, "feet")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(13 + 10 / 12, "feet"),
  12143. weight: math.unit(5320, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/chauncey-chantz/front.svg",
  12147. extra: 1587 / 1435,
  12148. bottom: 0.02
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(13 + 10 / 12, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(45, "feet")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(250, "miles")
  12165. },
  12166. {
  12167. name: "Planetary",
  12168. height: math.unit(10000, "miles")
  12169. },
  12170. {
  12171. name: "Galactic",
  12172. height: math.unit(40000, "parsecs")
  12173. },
  12174. {
  12175. name: "Universal",
  12176. height: math.unit(1, "yottameter")
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12182. {
  12183. front: {
  12184. height: math.unit(6, "feet"),
  12185. weight: math.unit(150, "lb"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/epifox/front.svg",
  12189. extra: 1,
  12190. bottom: 0.075
  12191. }
  12192. },
  12193. },
  12194. [
  12195. {
  12196. name: "Micro",
  12197. height: math.unit(6, "inches")
  12198. },
  12199. {
  12200. name: "Normal",
  12201. height: math.unit(12, "feet"),
  12202. default: true
  12203. },
  12204. {
  12205. name: "Macro",
  12206. height: math.unit(3810, "feet")
  12207. },
  12208. {
  12209. name: "Megamacro",
  12210. height: math.unit(500, "miles")
  12211. },
  12212. ]
  12213. ))
  12214. characterMakers.push(() => makeCharacter(
  12215. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12216. {
  12217. front: {
  12218. height: math.unit(1.8796, "m"),
  12219. weight: math.unit(230, "lb"),
  12220. name: "Front",
  12221. image: {
  12222. source: "./media/characters/colin-t/front.svg",
  12223. extra: 1272 / 1193,
  12224. bottom: 0.07
  12225. }
  12226. },
  12227. },
  12228. [
  12229. {
  12230. name: "Micro",
  12231. height: math.unit(0.571, "meters")
  12232. },
  12233. {
  12234. name: "Normal",
  12235. height: math.unit(1.8796, "meters"),
  12236. default: true
  12237. },
  12238. {
  12239. name: "Tall",
  12240. height: math.unit(4, "meters")
  12241. },
  12242. {
  12243. name: "Macro",
  12244. height: math.unit(67.241, "meters")
  12245. },
  12246. {
  12247. name: "Megamacro",
  12248. height: math.unit(371.856, "meters")
  12249. },
  12250. {
  12251. name: "Planetary",
  12252. height: math.unit(12631.5689, "km")
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12258. {
  12259. front: {
  12260. height: math.unit(1.85, "meters"),
  12261. weight: math.unit(80, "kg"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/matvei/front.svg",
  12265. extra: 614 / 594,
  12266. bottom: 0.01
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(1.85, "meters"),
  12274. default: true
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(5 + 9 / 12, "feet"),
  12283. weight: math.unit(70, "lb"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/quincy/front.svg",
  12287. extra: 3041 / 2751
  12288. }
  12289. },
  12290. back: {
  12291. height: math.unit(5 + 9 / 12, "feet"),
  12292. weight: math.unit(70, "lb"),
  12293. name: "Back",
  12294. image: {
  12295. source: "./media/characters/quincy/back.svg",
  12296. extra: 3041 / 2751
  12297. }
  12298. },
  12299. flying: {
  12300. height: math.unit(5 + 4 / 12, "feet"),
  12301. weight: math.unit(70, "lb"),
  12302. name: "Flying",
  12303. image: {
  12304. source: "./media/characters/quincy/flying.svg",
  12305. extra: 1044 / 930
  12306. }
  12307. },
  12308. },
  12309. [
  12310. {
  12311. name: "Micro",
  12312. height: math.unit(3, "cm")
  12313. },
  12314. {
  12315. name: "Normal",
  12316. height: math.unit(5 + 9 / 12, "feet")
  12317. },
  12318. {
  12319. name: "Macro",
  12320. height: math.unit(200, "meters"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Megamacro",
  12325. height: math.unit(1000, "meters")
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(3 + 11/12, "feet"),
  12334. weight: math.unit(50, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/vanrel/front.svg",
  12338. extra: 1104/949,
  12339. bottom: 52/1156
  12340. }
  12341. },
  12342. back: {
  12343. height: math.unit(3 + 11/12, "feet"),
  12344. weight: math.unit(50, "lb"),
  12345. name: "Back",
  12346. image: {
  12347. source: "./media/characters/vanrel/back.svg",
  12348. extra: 1119/976,
  12349. bottom: 37/1156
  12350. }
  12351. },
  12352. tome: {
  12353. height: math.unit(1.35, "feet"),
  12354. weight: math.unit(10, "lb"),
  12355. name: "Vanrel's Tome",
  12356. rename: true,
  12357. image: {
  12358. source: "./media/characters/vanrel/tome.svg"
  12359. }
  12360. },
  12361. beans: {
  12362. height: math.unit(0.89, "feet"),
  12363. name: "Beans",
  12364. image: {
  12365. source: "./media/characters/vanrel/beans.svg"
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Normal",
  12372. height: math.unit(3 + 11/12, "feet"),
  12373. default: true
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(7 + 5 / 12, "feet"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/kuiper-vanrel/front.svg",
  12385. extra: 1219/1169,
  12386. bottom: 69/1288
  12387. }
  12388. },
  12389. back: {
  12390. height: math.unit(7 + 5 / 12, "feet"),
  12391. name: "Back",
  12392. image: {
  12393. source: "./media/characters/kuiper-vanrel/back.svg",
  12394. extra: 1236/1193,
  12395. bottom: 27/1263
  12396. }
  12397. },
  12398. foot: {
  12399. height: math.unit(0.55, "meters"),
  12400. name: "Foot",
  12401. image: {
  12402. source: "./media/characters/kuiper-vanrel/foot.svg",
  12403. }
  12404. },
  12405. battle: {
  12406. height: math.unit(6.824, "feet"),
  12407. name: "Battle",
  12408. image: {
  12409. source: "./media/characters/kuiper-vanrel/battle.svg",
  12410. extra: 1466 / 1327,
  12411. bottom: 29 / 1492.5
  12412. }
  12413. },
  12414. meerkui: {
  12415. height: math.unit(18, "inches"),
  12416. name: "Meerkui",
  12417. image: {
  12418. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12419. extra: 1354/1289,
  12420. bottom: 69/1423
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(7 + 5 / 12, "feet"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(8 + 5 / 12, "feet"),
  12437. name: "Front",
  12438. image: {
  12439. source: "./media/characters/keset-vanrel/front.svg",
  12440. extra: 1231/1148,
  12441. bottom: 82/1313
  12442. }
  12443. },
  12444. back: {
  12445. height: math.unit(8 + 5 / 12, "feet"),
  12446. name: "Back",
  12447. image: {
  12448. source: "./media/characters/keset-vanrel/back.svg",
  12449. extra: 1240/1174,
  12450. bottom: 33/1273
  12451. }
  12452. },
  12453. hand: {
  12454. height: math.unit(0.6, "meters"),
  12455. name: "Hand",
  12456. image: {
  12457. source: "./media/characters/keset-vanrel/hand.svg"
  12458. }
  12459. },
  12460. foot: {
  12461. height: math.unit(0.94978, "meters"),
  12462. name: "Foot",
  12463. image: {
  12464. source: "./media/characters/keset-vanrel/foot.svg"
  12465. }
  12466. },
  12467. battle: {
  12468. height: math.unit(7.408, "feet"),
  12469. name: "Battle",
  12470. image: {
  12471. source: "./media/characters/keset-vanrel/battle.svg",
  12472. extra: 1890 / 1386,
  12473. bottom: 73.28 / 1970
  12474. }
  12475. },
  12476. },
  12477. [
  12478. {
  12479. name: "Normal",
  12480. height: math.unit(8 + 5 / 12, "feet"),
  12481. default: true
  12482. },
  12483. ]
  12484. ))
  12485. characterMakers.push(() => makeCharacter(
  12486. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12487. {
  12488. front: {
  12489. height: math.unit(6, "feet"),
  12490. weight: math.unit(150, "lb"),
  12491. name: "Front",
  12492. image: {
  12493. source: "./media/characters/neos/front.svg",
  12494. extra: 1696 / 992,
  12495. bottom: 0.14
  12496. }
  12497. },
  12498. },
  12499. [
  12500. {
  12501. name: "Normal",
  12502. height: math.unit(54, "cm"),
  12503. default: true
  12504. },
  12505. {
  12506. name: "Macro",
  12507. height: math.unit(100, "m")
  12508. },
  12509. {
  12510. name: "Megamacro",
  12511. height: math.unit(10, "km")
  12512. },
  12513. {
  12514. name: "Megamacro+",
  12515. height: math.unit(100, "km")
  12516. },
  12517. {
  12518. name: "Gigamacro",
  12519. height: math.unit(100, "Mm")
  12520. },
  12521. {
  12522. name: "Teramacro",
  12523. height: math.unit(100, "Gm")
  12524. },
  12525. {
  12526. name: "Examacro",
  12527. height: math.unit(100, "Em")
  12528. },
  12529. {
  12530. name: "Godly",
  12531. height: math.unit(10000, "Ym")
  12532. },
  12533. {
  12534. name: "Beyond Godly",
  12535. height: math.unit(25, "multiverses")
  12536. },
  12537. ]
  12538. ))
  12539. characterMakers.push(() => makeCharacter(
  12540. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12541. {
  12542. feminine: {
  12543. height: math.unit(5, "feet"),
  12544. weight: math.unit(100, "lb"),
  12545. name: "Feminine",
  12546. image: {
  12547. source: "./media/characters/sammy-mouse/feminine.svg",
  12548. extra: 2526 / 2425,
  12549. bottom: 0.123
  12550. }
  12551. },
  12552. masculine: {
  12553. height: math.unit(5, "feet"),
  12554. weight: math.unit(100, "lb"),
  12555. name: "Masculine",
  12556. image: {
  12557. source: "./media/characters/sammy-mouse/masculine.svg",
  12558. extra: 2526 / 2425,
  12559. bottom: 0.123
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Micro",
  12566. height: math.unit(5, "inches")
  12567. },
  12568. {
  12569. name: "Normal",
  12570. height: math.unit(5, "feet"),
  12571. default: true
  12572. },
  12573. {
  12574. name: "Macro",
  12575. height: math.unit(60, "feet")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(4, "feet"),
  12584. weight: math.unit(50, "lb"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/kole/front.svg",
  12588. extra: 1423 / 1303,
  12589. bottom: 0.025
  12590. }
  12591. },
  12592. back: {
  12593. height: math.unit(4, "feet"),
  12594. weight: math.unit(50, "lb"),
  12595. name: "Back",
  12596. image: {
  12597. source: "./media/characters/kole/back.svg",
  12598. extra: 1426 / 1280,
  12599. bottom: 0.02
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Normal",
  12606. height: math.unit(4, "feet"),
  12607. default: true
  12608. },
  12609. ]
  12610. ))
  12611. characterMakers.push(() => makeCharacter(
  12612. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12613. {
  12614. front: {
  12615. height: math.unit(2.5, "feet"),
  12616. weight: math.unit(32, "lb"),
  12617. name: "Front",
  12618. image: {
  12619. source: "./media/characters/rufran/front.svg",
  12620. extra: 1313/885,
  12621. bottom: 94/1407
  12622. }
  12623. },
  12624. side: {
  12625. height: math.unit(2.5, "feet"),
  12626. weight: math.unit(32, "lb"),
  12627. name: "Side",
  12628. image: {
  12629. source: "./media/characters/rufran/side.svg",
  12630. extra: 1109/852,
  12631. bottom: 118/1227
  12632. }
  12633. },
  12634. back: {
  12635. height: math.unit(2.5, "feet"),
  12636. weight: math.unit(32, "lb"),
  12637. name: "Back",
  12638. image: {
  12639. source: "./media/characters/rufran/back.svg",
  12640. extra: 1280/878,
  12641. bottom: 131/1411
  12642. }
  12643. },
  12644. mouth: {
  12645. height: math.unit(1.13, "feet"),
  12646. name: "Mouth",
  12647. image: {
  12648. source: "./media/characters/rufran/mouth.svg"
  12649. }
  12650. },
  12651. foot: {
  12652. height: math.unit(1.33, "feet"),
  12653. name: "Foot",
  12654. image: {
  12655. source: "./media/characters/rufran/foot.svg"
  12656. }
  12657. },
  12658. koboldFront: {
  12659. height: math.unit(2 + 6 / 12, "feet"),
  12660. weight: math.unit(20, "lb"),
  12661. name: "Front (Kobold)",
  12662. image: {
  12663. source: "./media/characters/rufran/kobold-front.svg",
  12664. extra: 2041 / 1839,
  12665. bottom: 0.055
  12666. }
  12667. },
  12668. koboldBack: {
  12669. height: math.unit(2 + 6 / 12, "feet"),
  12670. weight: math.unit(20, "lb"),
  12671. name: "Back (Kobold)",
  12672. image: {
  12673. source: "./media/characters/rufran/kobold-back.svg",
  12674. extra: 2054 / 1839,
  12675. bottom: 0.01
  12676. }
  12677. },
  12678. koboldHand: {
  12679. height: math.unit(0.2166, "meters"),
  12680. name: "Hand (Kobold)",
  12681. image: {
  12682. source: "./media/characters/rufran/kobold-hand.svg"
  12683. }
  12684. },
  12685. koboldFoot: {
  12686. height: math.unit(0.185, "meters"),
  12687. name: "Foot (Kobold)",
  12688. image: {
  12689. source: "./media/characters/rufran/kobold-foot.svg"
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Micro",
  12696. height: math.unit(1, "inch")
  12697. },
  12698. {
  12699. name: "Normal",
  12700. height: math.unit(2 + 6 / 12, "feet"),
  12701. default: true
  12702. },
  12703. {
  12704. name: "Big",
  12705. height: math.unit(60, "feet")
  12706. },
  12707. {
  12708. name: "Macro",
  12709. height: math.unit(325, "feet")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12715. {
  12716. front: {
  12717. height: math.unit(0.3, "meters"),
  12718. weight: math.unit(3.5, "kg"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/chip/front.svg",
  12722. extra: 748 / 674
  12723. }
  12724. },
  12725. },
  12726. [
  12727. {
  12728. name: "Micro",
  12729. height: math.unit(1, "inch"),
  12730. default: true
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12736. {
  12737. side: {
  12738. height: math.unit(2.3, "meters"),
  12739. weight: math.unit(3500, "lb"),
  12740. name: "Side",
  12741. image: {
  12742. source: "./media/characters/torvid/side.svg",
  12743. extra: 1972 / 722,
  12744. bottom: 0.035
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(2.3, "meters"),
  12752. default: true
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(2, "meters"),
  12761. weight: math.unit(150.5, "kg"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/susan/front.svg",
  12765. extra: 693 / 635,
  12766. bottom: 0.05
  12767. }
  12768. },
  12769. },
  12770. [
  12771. {
  12772. name: "Megamacro",
  12773. height: math.unit(505, "miles"),
  12774. default: true
  12775. },
  12776. ]
  12777. ))
  12778. characterMakers.push(() => makeCharacter(
  12779. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12780. {
  12781. front: {
  12782. height: math.unit(6, "feet"),
  12783. weight: math.unit(150, "lb"),
  12784. name: "Front",
  12785. image: {
  12786. source: "./media/characters/raindrops/front.svg",
  12787. extra: 2655 / 2461,
  12788. bottom: 49 / 2705
  12789. }
  12790. },
  12791. back: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Back",
  12795. image: {
  12796. source: "./media/characters/raindrops/back.svg",
  12797. extra: 2574 / 2400,
  12798. bottom: 65 / 2634
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Micro",
  12805. height: math.unit(6, "inches")
  12806. },
  12807. {
  12808. name: "Normal",
  12809. height: math.unit(6 + 2 / 12, "feet")
  12810. },
  12811. {
  12812. name: "Macro",
  12813. height: math.unit(131, "feet"),
  12814. default: true
  12815. },
  12816. {
  12817. name: "Megamacro",
  12818. height: math.unit(15, "miles")
  12819. },
  12820. {
  12821. name: "Gigamacro",
  12822. height: math.unit(4000, "miles")
  12823. },
  12824. {
  12825. name: "Teramacro",
  12826. height: math.unit(315000, "miles")
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12832. {
  12833. front: {
  12834. height: math.unit(2.794, "meters"),
  12835. weight: math.unit(325, "kg"),
  12836. name: "Front",
  12837. image: {
  12838. source: "./media/characters/tezwa/front.svg",
  12839. extra: 2083 / 1906,
  12840. bottom: 0.031
  12841. }
  12842. },
  12843. foot: {
  12844. height: math.unit(0.687, "meters"),
  12845. name: "Foot",
  12846. image: {
  12847. source: "./media/characters/tezwa/foot.svg"
  12848. }
  12849. },
  12850. },
  12851. [
  12852. {
  12853. name: "Normal",
  12854. height: math.unit(9 + 2 / 12, "feet"),
  12855. default: true
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12861. {
  12862. front: {
  12863. height: math.unit(58, "feet"),
  12864. weight: math.unit(89000, "lb"),
  12865. name: "Front",
  12866. image: {
  12867. source: "./media/characters/typhus/front.svg",
  12868. extra: 816 / 800,
  12869. bottom: 0.065
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Macro",
  12876. height: math.unit(58, "feet"),
  12877. default: true
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(12, "feet"),
  12886. weight: math.unit(6, "tonnes"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/lyra-von-wulf/front.svg",
  12890. extra: 1,
  12891. bottom: 0.10
  12892. }
  12893. },
  12894. frontMecha: {
  12895. height: math.unit(12, "feet"),
  12896. weight: math.unit(12, "tonnes"),
  12897. name: "Front (Mecha)",
  12898. image: {
  12899. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12900. extra: 1,
  12901. bottom: 0.042
  12902. }
  12903. },
  12904. maw: {
  12905. height: math.unit(2.2, "feet"),
  12906. name: "Maw",
  12907. image: {
  12908. source: "./media/characters/lyra-von-wulf/maw.svg"
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Normal",
  12915. height: math.unit(12, "feet"),
  12916. default: true
  12917. },
  12918. {
  12919. name: "Classic",
  12920. height: math.unit(50, "feet")
  12921. },
  12922. {
  12923. name: "Macro",
  12924. height: math.unit(500, "feet")
  12925. },
  12926. {
  12927. name: "Megamacro",
  12928. height: math.unit(1, "mile")
  12929. },
  12930. {
  12931. name: "Gigamacro",
  12932. height: math.unit(400, "miles")
  12933. },
  12934. {
  12935. name: "Teramacro",
  12936. height: math.unit(22000, "miles")
  12937. },
  12938. {
  12939. name: "Solarmacro",
  12940. height: math.unit(8600000, "miles")
  12941. },
  12942. {
  12943. name: "Galactic",
  12944. height: math.unit(1057000, "lightyears")
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12950. {
  12951. front: {
  12952. height: math.unit(6 + 10 / 12, "feet"),
  12953. weight: math.unit(150, "lb"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/dixon/front.svg",
  12957. extra: 3361 / 3209,
  12958. bottom: 0.01
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(6 + 10 / 12, "feet"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Big",
  12970. height: math.unit(12, "meters")
  12971. },
  12972. {
  12973. name: "Macro",
  12974. height: math.unit(500, "meters")
  12975. },
  12976. {
  12977. name: "Megamacro",
  12978. height: math.unit(2, "km")
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12984. {
  12985. front: {
  12986. height: math.unit(185, "cm"),
  12987. weight: math.unit(68, "kg"),
  12988. name: "Front",
  12989. image: {
  12990. source: "./media/characters/kauko/front.svg",
  12991. extra: 1455 / 1421,
  12992. bottom: 0.03
  12993. }
  12994. },
  12995. back: {
  12996. height: math.unit(185, "cm"),
  12997. weight: math.unit(68, "kg"),
  12998. name: "Back",
  12999. image: {
  13000. source: "./media/characters/kauko/back.svg",
  13001. extra: 1455 / 1421,
  13002. bottom: 0.004
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(185, "cm"),
  13010. default: true
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(6, "feet"),
  13019. weight: math.unit(150, "kg"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/varg/front.svg",
  13023. extra: 1108 / 1018,
  13024. bottom: 0.0375
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(5, "meters")
  13032. },
  13033. {
  13034. name: "Macro",
  13035. height: math.unit(200, "meters")
  13036. },
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(20, "kilometers")
  13040. },
  13041. {
  13042. name: "True Size",
  13043. height: math.unit(211, "km"),
  13044. default: true
  13045. },
  13046. {
  13047. name: "Gigamacro",
  13048. height: math.unit(1000, "km")
  13049. },
  13050. {
  13051. name: "Gigamacro+",
  13052. height: math.unit(8000, "km")
  13053. },
  13054. {
  13055. name: "Teramacro",
  13056. height: math.unit(1000000, "km")
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(7 + 7 / 12, "feet"),
  13065. weight: math.unit(267, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/dayza/front.svg",
  13069. extra: 1262 / 1200,
  13070. bottom: 0.035
  13071. }
  13072. },
  13073. side: {
  13074. height: math.unit(7 + 7 / 12, "feet"),
  13075. weight: math.unit(267, "lb"),
  13076. name: "Side",
  13077. image: {
  13078. source: "./media/characters/dayza/side.svg",
  13079. extra: 1295 / 1245,
  13080. bottom: 0.05
  13081. }
  13082. },
  13083. back: {
  13084. height: math.unit(7 + 7 / 12, "feet"),
  13085. weight: math.unit(267, "lb"),
  13086. name: "Back",
  13087. image: {
  13088. source: "./media/characters/dayza/back.svg",
  13089. extra: 1241 / 1170
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Normal",
  13096. height: math.unit(7 + 7 / 12, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Macro",
  13101. height: math.unit(155, "feet")
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(6 + 5 / 12, "feet"),
  13110. weight: math.unit(160, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/xanthos/front.svg",
  13114. extra: 1,
  13115. bottom: 0.04
  13116. }
  13117. },
  13118. back: {
  13119. height: math.unit(6 + 5 / 12, "feet"),
  13120. weight: math.unit(160, "lb"),
  13121. name: "Back",
  13122. image: {
  13123. source: "./media/characters/xanthos/back.svg",
  13124. extra: 1,
  13125. bottom: 0.03
  13126. }
  13127. },
  13128. hand: {
  13129. height: math.unit(0.928, "feet"),
  13130. name: "Hand",
  13131. image: {
  13132. source: "./media/characters/xanthos/hand.svg"
  13133. }
  13134. },
  13135. foot: {
  13136. height: math.unit(1.286, "feet"),
  13137. name: "Foot",
  13138. image: {
  13139. source: "./media/characters/xanthos/foot.svg"
  13140. }
  13141. },
  13142. },
  13143. [
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(6 + 5 / 12, "feet"),
  13147. default: true
  13148. },
  13149. {
  13150. name: "Normal+",
  13151. height: math.unit(6, "meters")
  13152. },
  13153. {
  13154. name: "Macro",
  13155. height: math.unit(40, "feet")
  13156. },
  13157. {
  13158. name: "Macro+",
  13159. height: math.unit(200, "meters")
  13160. },
  13161. {
  13162. name: "Megamacro",
  13163. height: math.unit(20, "km")
  13164. },
  13165. {
  13166. name: "Megamacro+",
  13167. height: math.unit(100, "km")
  13168. },
  13169. {
  13170. name: "Gigamacro",
  13171. height: math.unit(200, "megameters")
  13172. },
  13173. {
  13174. name: "Gigamacro+",
  13175. height: math.unit(1.5, "gigameters")
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13181. {
  13182. front: {
  13183. height: math.unit(6 + 3 / 12, "feet"),
  13184. weight: math.unit(215, "lb"),
  13185. name: "Front",
  13186. image: {
  13187. source: "./media/characters/grynn/front.svg",
  13188. extra: 4627 / 4209,
  13189. bottom: 0.047
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Micro",
  13196. height: math.unit(6, "inches")
  13197. },
  13198. {
  13199. name: "Normal",
  13200. height: math.unit(6 + 3 / 12, "feet"),
  13201. default: true
  13202. },
  13203. {
  13204. name: "Big",
  13205. height: math.unit(104, "feet")
  13206. },
  13207. {
  13208. name: "Macro",
  13209. height: math.unit(944, "feet")
  13210. },
  13211. {
  13212. name: "Macro+",
  13213. height: math.unit(9480, "feet")
  13214. },
  13215. {
  13216. name: "Megamacro",
  13217. height: math.unit(78752, "feet")
  13218. },
  13219. {
  13220. name: "Megamacro+",
  13221. height: math.unit(630128, "feet")
  13222. },
  13223. {
  13224. name: "Megamacro++",
  13225. height: math.unit(3150695, "feet")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(7 + 5 / 12, "feet"),
  13234. weight: math.unit(450, "lb"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/mocha-aura/front.svg",
  13238. extra: 1907 / 1817,
  13239. bottom: 0.04
  13240. }
  13241. },
  13242. back: {
  13243. height: math.unit(7 + 5 / 12, "feet"),
  13244. weight: math.unit(450, "lb"),
  13245. name: "Back",
  13246. image: {
  13247. source: "./media/characters/mocha-aura/back.svg",
  13248. extra: 1900 / 1825,
  13249. bottom: 0.045
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Nano",
  13256. height: math.unit(1, "nm")
  13257. },
  13258. {
  13259. name: "Megamicro",
  13260. height: math.unit(1, "mm")
  13261. },
  13262. {
  13263. name: "Micro",
  13264. height: math.unit(3, "inches")
  13265. },
  13266. {
  13267. name: "Normal",
  13268. height: math.unit(7 + 5 / 12, "feet"),
  13269. default: true
  13270. },
  13271. {
  13272. name: "Macro",
  13273. height: math.unit(30, "feet")
  13274. },
  13275. {
  13276. name: "Megamacro",
  13277. height: math.unit(3500, "feet")
  13278. },
  13279. {
  13280. name: "Teramacro",
  13281. height: math.unit(500000, "miles")
  13282. },
  13283. {
  13284. name: "Petamacro",
  13285. height: math.unit(50000000000000000, "parsecs")
  13286. },
  13287. ]
  13288. ))
  13289. characterMakers.push(() => makeCharacter(
  13290. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13291. {
  13292. front: {
  13293. height: math.unit(6, "feet"),
  13294. weight: math.unit(150, "lb"),
  13295. name: "Front",
  13296. image: {
  13297. source: "./media/characters/ilisha-devya/front.svg",
  13298. extra: 1053/1049,
  13299. bottom: 270/1323
  13300. }
  13301. },
  13302. back: {
  13303. height: math.unit(6, "feet"),
  13304. weight: math.unit(150, "lb"),
  13305. name: "Back",
  13306. image: {
  13307. source: "./media/characters/ilisha-devya/back.svg",
  13308. extra: 1131/1128,
  13309. bottom: 39/1170
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Macro",
  13316. height: math.unit(500, "feet"),
  13317. default: true
  13318. },
  13319. {
  13320. name: "Megamacro",
  13321. height: math.unit(10, "miles")
  13322. },
  13323. {
  13324. name: "Gigamacro",
  13325. height: math.unit(100000, "miles")
  13326. },
  13327. {
  13328. name: "Examacro",
  13329. height: math.unit(1e9, "lightyears")
  13330. },
  13331. {
  13332. name: "Omniversal",
  13333. height: math.unit(1e33, "lightyears")
  13334. },
  13335. {
  13336. name: "Beyond Infinite",
  13337. height: math.unit(1e100, "lightyears")
  13338. },
  13339. ]
  13340. ))
  13341. characterMakers.push(() => makeCharacter(
  13342. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13343. {
  13344. Side: {
  13345. height: math.unit(6, "feet"),
  13346. weight: math.unit(150, "lb"),
  13347. name: "Side",
  13348. image: {
  13349. source: "./media/characters/mira/side.svg",
  13350. extra: 900 / 799,
  13351. bottom: 0.02
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Human Size",
  13358. height: math.unit(6, "feet")
  13359. },
  13360. {
  13361. name: "Macro",
  13362. height: math.unit(100, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Megamacro",
  13367. height: math.unit(10, "miles")
  13368. },
  13369. {
  13370. name: "Gigamacro",
  13371. height: math.unit(25000, "miles")
  13372. },
  13373. {
  13374. name: "Teramacro",
  13375. height: math.unit(300, "AU")
  13376. },
  13377. {
  13378. name: "Full Size",
  13379. height: math.unit(4.5e10, "lightyears")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(150, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/holly/front.svg",
  13392. extra: 639 / 606
  13393. }
  13394. },
  13395. back: {
  13396. height: math.unit(6, "feet"),
  13397. weight: math.unit(150, "lb"),
  13398. name: "Back",
  13399. image: {
  13400. source: "./media/characters/holly/back.svg",
  13401. extra: 623 / 598
  13402. }
  13403. },
  13404. frontWorking: {
  13405. height: math.unit(6, "feet"),
  13406. weight: math.unit(150, "lb"),
  13407. name: "Front (Working)",
  13408. image: {
  13409. source: "./media/characters/holly/front-working.svg",
  13410. extra: 607 / 577,
  13411. bottom: 0.048
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(12 + 3 / 12, "feet"),
  13419. default: true
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(6, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/porter/front.svg",
  13432. extra: 1,
  13433. bottom: 0.01
  13434. }
  13435. },
  13436. frontRobes: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Front (Robes)",
  13440. image: {
  13441. source: "./media/characters/porter/front-robes.svg",
  13442. extra: 1.01,
  13443. bottom: 0.01
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(11 + 9 / 12, "feet"),
  13451. default: true
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13457. {
  13458. legendary: {
  13459. height: math.unit(6, "feet"),
  13460. weight: math.unit(150, "lb"),
  13461. name: "Legendary",
  13462. image: {
  13463. source: "./media/characters/lucy/legendary.svg",
  13464. extra: 1355 / 1100,
  13465. bottom: 0.045
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Legendary",
  13472. height: math.unit(86882 * 2, "miles"),
  13473. default: true
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(150, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/drusilla/front.svg",
  13486. extra: 678 / 635,
  13487. bottom: 0.03
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/drusilla/back.svg",
  13496. extra: 678 / 635,
  13497. bottom: 0.005
  13498. }
  13499. },
  13500. },
  13501. [
  13502. {
  13503. name: "Macro",
  13504. height: math.unit(100, "feet")
  13505. },
  13506. {
  13507. name: "Canon Height",
  13508. height: math.unit(2000, "feet"),
  13509. default: true
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13515. {
  13516. front: {
  13517. height: math.unit(6, "feet"),
  13518. weight: math.unit(180, "lb"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/renard-thatch/front.svg",
  13522. extra: 2411 / 2275,
  13523. bottom: 0.01
  13524. }
  13525. },
  13526. frontPosing: {
  13527. height: math.unit(6, "feet"),
  13528. weight: math.unit(180, "lb"),
  13529. name: "Front (Posing)",
  13530. image: {
  13531. source: "./media/characters/renard-thatch/front-posing.svg",
  13532. extra: 2381 / 2261,
  13533. bottom: 0.01
  13534. }
  13535. },
  13536. back: {
  13537. height: math.unit(6, "feet"),
  13538. weight: math.unit(180, "lb"),
  13539. name: "Back",
  13540. image: {
  13541. source: "./media/characters/renard-thatch/back.svg",
  13542. extra: 2428 / 2288
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Micro",
  13549. height: math.unit(3, "inches")
  13550. },
  13551. {
  13552. name: "Default",
  13553. height: math.unit(6, "feet"),
  13554. default: true
  13555. },
  13556. {
  13557. name: "Macro",
  13558. height: math.unit(75, "feet")
  13559. },
  13560. ]
  13561. ))
  13562. characterMakers.push(() => makeCharacter(
  13563. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13564. {
  13565. front: {
  13566. height: math.unit(1450, "feet"),
  13567. weight: math.unit(1.21e6, "tons"),
  13568. name: "Front",
  13569. image: {
  13570. source: "./media/characters/sekvra/front.svg",
  13571. extra: 1193/1190,
  13572. bottom: 78/1271
  13573. }
  13574. },
  13575. side: {
  13576. height: math.unit(1450, "feet"),
  13577. weight: math.unit(1.21e6, "tons"),
  13578. name: "Side",
  13579. image: {
  13580. source: "./media/characters/sekvra/side.svg",
  13581. extra: 1193/1190,
  13582. bottom: 52/1245
  13583. }
  13584. },
  13585. back: {
  13586. height: math.unit(1450, "feet"),
  13587. weight: math.unit(1.21e6, "tons"),
  13588. name: "Back",
  13589. image: {
  13590. source: "./media/characters/sekvra/back.svg",
  13591. extra: 1219/1216,
  13592. bottom: 21/1240
  13593. }
  13594. },
  13595. frontClothed: {
  13596. height: math.unit(1450, "feet"),
  13597. weight: math.unit(1.21e6, "tons"),
  13598. name: "Front (Clothed)",
  13599. image: {
  13600. source: "./media/characters/sekvra/front-clothed.svg",
  13601. extra: 1192/1189,
  13602. bottom: 79/1271
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Macro",
  13609. height: math.unit(1450, "feet"),
  13610. default: true
  13611. },
  13612. {
  13613. name: "Megamacro",
  13614. height: math.unit(15000, "feet")
  13615. },
  13616. ]
  13617. ))
  13618. characterMakers.push(() => makeCharacter(
  13619. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13620. {
  13621. front: {
  13622. height: math.unit(6, "feet"),
  13623. weight: math.unit(150, "lb"),
  13624. name: "Front",
  13625. image: {
  13626. source: "./media/characters/carmine/front.svg",
  13627. extra: 1,
  13628. bottom: 0.035
  13629. }
  13630. },
  13631. frontArmor: {
  13632. height: math.unit(6, "feet"),
  13633. weight: math.unit(150, "lb"),
  13634. name: "Front (Armor)",
  13635. image: {
  13636. source: "./media/characters/carmine/front-armor.svg",
  13637. extra: 1,
  13638. bottom: 0.035
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Large",
  13645. height: math.unit(1, "mile")
  13646. },
  13647. {
  13648. name: "Huge",
  13649. height: math.unit(40, "miles"),
  13650. default: true
  13651. },
  13652. {
  13653. name: "Colossal",
  13654. height: math.unit(2500, "miles")
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13660. {
  13661. front: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(150, "lb"),
  13664. name: "Front",
  13665. image: {
  13666. source: "./media/characters/elyssia/front.svg",
  13667. extra: 2201 / 2035,
  13668. bottom: 0.05
  13669. }
  13670. },
  13671. frontClothed: {
  13672. height: math.unit(6, "feet"),
  13673. weight: math.unit(150, "lb"),
  13674. name: "Front (Clothed)",
  13675. image: {
  13676. source: "./media/characters/elyssia/front-clothed.svg",
  13677. extra: 2201 / 2035,
  13678. bottom: 0.05
  13679. }
  13680. },
  13681. back: {
  13682. height: math.unit(6, "feet"),
  13683. weight: math.unit(150, "lb"),
  13684. name: "Back",
  13685. image: {
  13686. source: "./media/characters/elyssia/back.svg",
  13687. extra: 2201 / 2035,
  13688. bottom: 0.013
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Smaller",
  13695. height: math.unit(150, "feet")
  13696. },
  13697. {
  13698. name: "Standard",
  13699. height: math.unit(1400, "feet"),
  13700. default: true
  13701. },
  13702. {
  13703. name: "Distracted",
  13704. height: math.unit(15000, "feet")
  13705. },
  13706. ]
  13707. ))
  13708. characterMakers.push(() => makeCharacter(
  13709. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13710. {
  13711. front: {
  13712. height: math.unit(7 + 4/12, "feet"),
  13713. weight: math.unit(690, "lb"),
  13714. name: "Front",
  13715. image: {
  13716. source: "./media/characters/geno-maxwell/front.svg",
  13717. extra: 984/856,
  13718. bottom: 87/1071
  13719. }
  13720. },
  13721. back: {
  13722. height: math.unit(7 + 4/12, "feet"),
  13723. weight: math.unit(690, "lb"),
  13724. name: "Back",
  13725. image: {
  13726. source: "./media/characters/geno-maxwell/back.svg",
  13727. extra: 981/854,
  13728. bottom: 57/1038
  13729. }
  13730. },
  13731. frontCostume: {
  13732. height: math.unit(7 + 4/12, "feet"),
  13733. weight: math.unit(690, "lb"),
  13734. name: "Front (Costume)",
  13735. image: {
  13736. source: "./media/characters/geno-maxwell/front-costume.svg",
  13737. extra: 984/856,
  13738. bottom: 87/1071
  13739. }
  13740. },
  13741. backcostume: {
  13742. height: math.unit(7 + 4/12, "feet"),
  13743. weight: math.unit(690, "lb"),
  13744. name: "Back (Costume)",
  13745. image: {
  13746. source: "./media/characters/geno-maxwell/back-costume.svg",
  13747. extra: 981/854,
  13748. bottom: 57/1038
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Micro",
  13755. height: math.unit(3, "inches")
  13756. },
  13757. {
  13758. name: "Normal",
  13759. height: math.unit(7 + 4 / 12, "feet"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Macro",
  13764. height: math.unit(220, "feet")
  13765. },
  13766. {
  13767. name: "Megamacro",
  13768. height: math.unit(11, "miles")
  13769. },
  13770. ]
  13771. ))
  13772. characterMakers.push(() => makeCharacter(
  13773. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13774. {
  13775. front: {
  13776. height: math.unit(7 + 4/12, "feet"),
  13777. weight: math.unit(750, "lb"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/regena-maxwell/front.svg",
  13781. extra: 984/856,
  13782. bottom: 87/1071
  13783. }
  13784. },
  13785. back: {
  13786. height: math.unit(7 + 4/12, "feet"),
  13787. weight: math.unit(750, "lb"),
  13788. name: "Back",
  13789. image: {
  13790. source: "./media/characters/regena-maxwell/back.svg",
  13791. extra: 981/854,
  13792. bottom: 57/1038
  13793. }
  13794. },
  13795. frontCostume: {
  13796. height: math.unit(7 + 4/12, "feet"),
  13797. weight: math.unit(750, "lb"),
  13798. name: "Front (Costume)",
  13799. image: {
  13800. source: "./media/characters/regena-maxwell/front-costume.svg",
  13801. extra: 984/856,
  13802. bottom: 87/1071
  13803. }
  13804. },
  13805. backcostume: {
  13806. height: math.unit(7 + 4/12, "feet"),
  13807. weight: math.unit(750, "lb"),
  13808. name: "Back (Costume)",
  13809. image: {
  13810. source: "./media/characters/regena-maxwell/back-costume.svg",
  13811. extra: 981/854,
  13812. bottom: 57/1038
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(7 + 4 / 12, "feet"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Macro",
  13824. height: math.unit(220, "feet")
  13825. },
  13826. {
  13827. name: "Megamacro",
  13828. height: math.unit(11, "miles")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(6, "feet"),
  13837. weight: math.unit(150, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13841. extra: 860 / 690,
  13842. bottom: 0.03
  13843. }
  13844. },
  13845. },
  13846. [
  13847. {
  13848. name: "Normal",
  13849. height: math.unit(1.7, "meters"),
  13850. default: true
  13851. },
  13852. ]
  13853. ))
  13854. characterMakers.push(() => makeCharacter(
  13855. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13856. {
  13857. front: {
  13858. height: math.unit(6, "feet"),
  13859. weight: math.unit(150, "lb"),
  13860. name: "Front",
  13861. image: {
  13862. source: "./media/characters/quilly/front.svg",
  13863. extra: 890 / 776
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Gigamacro",
  13870. height: math.unit(404090, "miles"),
  13871. default: true
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13877. {
  13878. front: {
  13879. height: math.unit(7 + 8 / 12, "feet"),
  13880. weight: math.unit(350, "lb"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/tempest/front.svg",
  13884. extra: 1175 / 1086,
  13885. bottom: 0.02
  13886. }
  13887. },
  13888. },
  13889. [
  13890. {
  13891. name: "Normal",
  13892. height: math.unit(7 + 8 / 12, "feet"),
  13893. default: true
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13899. {
  13900. side: {
  13901. height: math.unit(4 + 5 / 12, "feet"),
  13902. weight: math.unit(80, "lb"),
  13903. name: "Side",
  13904. image: {
  13905. source: "./media/characters/rodger/side.svg",
  13906. extra: 1235 / 1118
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Micro",
  13913. height: math.unit(1, "inch")
  13914. },
  13915. {
  13916. name: "Normal",
  13917. height: math.unit(4 + 5 / 12, "feet"),
  13918. default: true
  13919. },
  13920. {
  13921. name: "Macro",
  13922. height: math.unit(120, "feet")
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(150, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/danyel/front.svg",
  13935. extra: 1185 / 1123,
  13936. bottom: 0.05
  13937. }
  13938. },
  13939. },
  13940. [
  13941. {
  13942. name: "Shrunken",
  13943. height: math.unit(0.5, "mm")
  13944. },
  13945. {
  13946. name: "Micro",
  13947. height: math.unit(1, "mm"),
  13948. default: true
  13949. },
  13950. {
  13951. name: "Upsized",
  13952. height: math.unit(5 + 5 / 12, "feet")
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(5 + 6 / 12, "feet"),
  13961. weight: math.unit(200, "lb"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/vivian-bijoux/front.svg",
  13965. extra: 1217/1209,
  13966. bottom: 76/1293
  13967. }
  13968. },
  13969. back: {
  13970. height: math.unit(5 + 6 / 12, "feet"),
  13971. weight: math.unit(200, "lb"),
  13972. name: "Back",
  13973. image: {
  13974. source: "./media/characters/vivian-bijoux/back.svg",
  13975. extra: 1214/1208,
  13976. bottom: 51/1265
  13977. }
  13978. },
  13979. dressed: {
  13980. height: math.unit(5 + 6 / 12, "feet"),
  13981. weight: math.unit(200, "lb"),
  13982. name: "Dressed",
  13983. image: {
  13984. source: "./media/characters/vivian-bijoux/dressed.svg",
  13985. extra: 1217/1209,
  13986. bottom: 76/1293
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Normal",
  13993. height: math.unit(5 + 6 / 12, "feet"),
  13994. default: true
  13995. },
  13996. {
  13997. name: "Bad Dream",
  13998. height: math.unit(500, "feet")
  13999. },
  14000. {
  14001. name: "Nightmare",
  14002. height: math.unit(500, "miles")
  14003. },
  14004. ]
  14005. ))
  14006. characterMakers.push(() => makeCharacter(
  14007. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14008. {
  14009. front: {
  14010. height: math.unit(6 + 1 / 12, "feet"),
  14011. weight: math.unit(260, "lb"),
  14012. name: "Front",
  14013. image: {
  14014. source: "./media/characters/zeta/front.svg",
  14015. extra: 1968 / 1889,
  14016. bottom: 0.06
  14017. }
  14018. },
  14019. back: {
  14020. height: math.unit(6 + 1 / 12, "feet"),
  14021. weight: math.unit(260, "lb"),
  14022. name: "Back",
  14023. image: {
  14024. source: "./media/characters/zeta/back.svg",
  14025. extra: 1944 / 1858,
  14026. bottom: 0.03
  14027. }
  14028. },
  14029. hand: {
  14030. height: math.unit(1.112, "feet"),
  14031. name: "Hand",
  14032. image: {
  14033. source: "./media/characters/zeta/hand.svg"
  14034. }
  14035. },
  14036. foot: {
  14037. height: math.unit(1.48, "feet"),
  14038. name: "Foot",
  14039. image: {
  14040. source: "./media/characters/zeta/foot.svg"
  14041. }
  14042. },
  14043. },
  14044. [
  14045. {
  14046. name: "Micro",
  14047. height: math.unit(6, "inches")
  14048. },
  14049. {
  14050. name: "Normal",
  14051. height: math.unit(6 + 1 / 12, "feet"),
  14052. default: true
  14053. },
  14054. {
  14055. name: "Macro",
  14056. height: math.unit(20, "feet")
  14057. },
  14058. ]
  14059. ))
  14060. characterMakers.push(() => makeCharacter(
  14061. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14062. {
  14063. front: {
  14064. height: math.unit(6, "feet"),
  14065. weight: math.unit(150, "lb"),
  14066. name: "Front",
  14067. image: {
  14068. source: "./media/characters/jamie-larsen/front.svg",
  14069. extra: 962 / 933,
  14070. bottom: 0.02
  14071. }
  14072. },
  14073. back: {
  14074. height: math.unit(6, "feet"),
  14075. weight: math.unit(150, "lb"),
  14076. name: "Back",
  14077. image: {
  14078. source: "./media/characters/jamie-larsen/back.svg",
  14079. extra: 997 / 946
  14080. }
  14081. },
  14082. },
  14083. [
  14084. {
  14085. name: "Macro",
  14086. height: math.unit(28 + 7 / 12, "feet"),
  14087. default: true
  14088. },
  14089. {
  14090. name: "Macro+",
  14091. height: math.unit(180, "feet")
  14092. },
  14093. {
  14094. name: "Megamacro",
  14095. height: math.unit(10, "miles")
  14096. },
  14097. {
  14098. name: "Gigamacro",
  14099. height: math.unit(200000, "miles")
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(120, "lb"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/vance/front.svg",
  14112. extra: 1980 / 1890,
  14113. bottom: 0.09
  14114. }
  14115. },
  14116. back: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(120, "lb"),
  14119. name: "Back",
  14120. image: {
  14121. source: "./media/characters/vance/back.svg",
  14122. extra: 2081 / 1994,
  14123. bottom: 0.014
  14124. }
  14125. },
  14126. hand: {
  14127. height: math.unit(0.88, "feet"),
  14128. name: "Hand",
  14129. image: {
  14130. source: "./media/characters/vance/hand.svg"
  14131. }
  14132. },
  14133. foot: {
  14134. height: math.unit(0.64, "feet"),
  14135. name: "Foot",
  14136. image: {
  14137. source: "./media/characters/vance/foot.svg"
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Small",
  14144. height: math.unit(90, "feet"),
  14145. default: true
  14146. },
  14147. {
  14148. name: "Macro",
  14149. height: math.unit(100, "meters")
  14150. },
  14151. {
  14152. name: "Megamacro",
  14153. height: math.unit(15, "miles")
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(6, "feet"),
  14162. weight: math.unit(180, "lb"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/xochitl/front.svg",
  14166. extra: 2297 / 2261,
  14167. bottom: 0.065
  14168. }
  14169. },
  14170. back: {
  14171. height: math.unit(6, "feet"),
  14172. weight: math.unit(180, "lb"),
  14173. name: "Back",
  14174. image: {
  14175. source: "./media/characters/xochitl/back.svg",
  14176. extra: 2386 / 2354,
  14177. bottom: 0.01
  14178. }
  14179. },
  14180. foot: {
  14181. height: math.unit(6 / 5 * 1.15, "feet"),
  14182. weight: math.unit(150, "lb"),
  14183. name: "Foot",
  14184. image: {
  14185. source: "./media/characters/xochitl/foot.svg"
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Macro",
  14192. height: math.unit(80, "feet")
  14193. },
  14194. {
  14195. name: "Macro+",
  14196. height: math.unit(400, "feet"),
  14197. default: true
  14198. },
  14199. {
  14200. name: "Gigamacro",
  14201. height: math.unit(80000, "miles")
  14202. },
  14203. {
  14204. name: "Gigamacro+",
  14205. height: math.unit(400000, "miles")
  14206. },
  14207. {
  14208. name: "Teramacro",
  14209. height: math.unit(300, "AU")
  14210. },
  14211. ]
  14212. ))
  14213. characterMakers.push(() => makeCharacter(
  14214. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14215. {
  14216. front: {
  14217. height: math.unit(6, "feet"),
  14218. weight: math.unit(150, "lb"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/vincent/front.svg",
  14222. extra: 1130 / 1080,
  14223. bottom: 0.055
  14224. }
  14225. },
  14226. beak: {
  14227. height: math.unit(6 * 0.1, "feet"),
  14228. name: "Beak",
  14229. image: {
  14230. source: "./media/characters/vincent/beak.svg"
  14231. }
  14232. },
  14233. hand: {
  14234. height: math.unit(6 * 0.85, "feet"),
  14235. weight: math.unit(150, "lb"),
  14236. name: "Hand",
  14237. image: {
  14238. source: "./media/characters/vincent/hand.svg"
  14239. }
  14240. },
  14241. foot: {
  14242. height: math.unit(6 * 0.19, "feet"),
  14243. weight: math.unit(150, "lb"),
  14244. name: "Foot",
  14245. image: {
  14246. source: "./media/characters/vincent/foot.svg"
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Base",
  14253. height: math.unit(6 + 5 / 12, "feet"),
  14254. default: true
  14255. },
  14256. {
  14257. name: "Macro",
  14258. height: math.unit(300, "feet")
  14259. },
  14260. {
  14261. name: "Megamacro",
  14262. height: math.unit(2, "miles")
  14263. },
  14264. {
  14265. name: "Gigamacro",
  14266. height: math.unit(1000, "miles")
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14272. {
  14273. front: {
  14274. height: math.unit(2, "meters"),
  14275. weight: math.unit(500, "kg"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/coatl/front.svg",
  14279. extra: 3948 / 3500,
  14280. bottom: 0.082
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Normal",
  14287. height: math.unit(4, "meters")
  14288. },
  14289. {
  14290. name: "Macro",
  14291. height: math.unit(100, "meters"),
  14292. default: true
  14293. },
  14294. {
  14295. name: "Macro+",
  14296. height: math.unit(300, "meters")
  14297. },
  14298. {
  14299. name: "Megamacro",
  14300. height: math.unit(3, "gigameters")
  14301. },
  14302. {
  14303. name: "Megamacro+",
  14304. height: math.unit(300, "terameters")
  14305. },
  14306. {
  14307. name: "Megamacro++",
  14308. height: math.unit(3, "lightyears")
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14314. {
  14315. front: {
  14316. height: math.unit(6, "feet"),
  14317. weight: math.unit(50, "kg"),
  14318. name: "front",
  14319. image: {
  14320. source: "./media/characters/shiroryu/front.svg",
  14321. extra: 1990 / 1935
  14322. }
  14323. },
  14324. },
  14325. [
  14326. {
  14327. name: "Mortal Mingling",
  14328. height: math.unit(3, "meters")
  14329. },
  14330. {
  14331. name: "Kaiju-ish",
  14332. height: math.unit(250, "meters")
  14333. },
  14334. {
  14335. name: "Somewhat Godly",
  14336. height: math.unit(400, "km"),
  14337. default: true
  14338. },
  14339. {
  14340. name: "Planetary",
  14341. height: math.unit(300, "megameters")
  14342. },
  14343. {
  14344. name: "Galaxy-dwarfing",
  14345. height: math.unit(450, "kiloparsecs")
  14346. },
  14347. {
  14348. name: "Universe Eater",
  14349. height: math.unit(150, "gigaparsecs")
  14350. },
  14351. {
  14352. name: "Almost Immeasurable",
  14353. height: math.unit(1.3e266, "yottaparsecs")
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(6, "feet"),
  14362. weight: math.unit(150, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/umeko/front.svg",
  14366. extra: 1,
  14367. bottom: 0.019
  14368. }
  14369. },
  14370. frontArmored: {
  14371. height: math.unit(6, "feet"),
  14372. weight: math.unit(150, "lb"),
  14373. name: "Front (Armored)",
  14374. image: {
  14375. source: "./media/characters/umeko/front-armored.svg",
  14376. extra: 1,
  14377. bottom: 0.021
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Macro",
  14384. height: math.unit(220, "feet"),
  14385. default: true
  14386. },
  14387. {
  14388. name: "Guardian Dragon",
  14389. height: math.unit(50, "miles")
  14390. },
  14391. {
  14392. name: "Cosmic",
  14393. height: math.unit(800000, "miles")
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(6, "feet"),
  14402. weight: math.unit(150, "lb"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/cassidy/front.svg",
  14406. extra: 810/808,
  14407. bottom: 41/851
  14408. }
  14409. },
  14410. },
  14411. [
  14412. {
  14413. name: "Canon Height",
  14414. height: math.unit(120, "feet"),
  14415. default: true
  14416. },
  14417. {
  14418. name: "Macro+",
  14419. height: math.unit(400, "feet")
  14420. },
  14421. {
  14422. name: "Macro++",
  14423. height: math.unit(4000, "feet")
  14424. },
  14425. {
  14426. name: "Megamacro",
  14427. height: math.unit(3, "miles")
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14433. {
  14434. front: {
  14435. height: math.unit(6, "feet"),
  14436. weight: math.unit(150, "lb"),
  14437. name: "Front",
  14438. image: {
  14439. source: "./media/characters/isaac/front.svg",
  14440. extra: 896 / 815,
  14441. bottom: 0.11
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Human Size",
  14448. height: math.unit(8, "feet"),
  14449. default: true
  14450. },
  14451. {
  14452. name: "Macro",
  14453. height: math.unit(400, "feet")
  14454. },
  14455. {
  14456. name: "Megamacro",
  14457. height: math.unit(50, "miles")
  14458. },
  14459. {
  14460. name: "Canon Height",
  14461. height: math.unit(200, "AU")
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(6, "feet"),
  14470. weight: math.unit(72, "kg"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/sleekit/front.svg",
  14474. extra: 4693 / 4487,
  14475. bottom: 0.012
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Minimum Height",
  14482. height: math.unit(10, "meters")
  14483. },
  14484. {
  14485. name: "Smaller",
  14486. height: math.unit(25, "meters")
  14487. },
  14488. {
  14489. name: "Larger",
  14490. height: math.unit(38, "meters"),
  14491. default: true
  14492. },
  14493. {
  14494. name: "Maximum height",
  14495. height: math.unit(100, "meters")
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(6, "feet"),
  14504. weight: math.unit(150, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/nillia/front.svg",
  14508. extra: 2195 / 2037,
  14509. bottom: 0.005
  14510. }
  14511. },
  14512. back: {
  14513. height: math.unit(6, "feet"),
  14514. weight: math.unit(150, "lb"),
  14515. name: "Back",
  14516. image: {
  14517. source: "./media/characters/nillia/back.svg",
  14518. extra: 2195 / 2037,
  14519. bottom: 0.005
  14520. }
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "Canon Height",
  14526. height: math.unit(489, "feet"),
  14527. default: true
  14528. }
  14529. ]
  14530. ))
  14531. characterMakers.push(() => makeCharacter(
  14532. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14533. {
  14534. front: {
  14535. height: math.unit(6, "feet"),
  14536. weight: math.unit(150, "lb"),
  14537. name: "Front",
  14538. image: {
  14539. source: "./media/characters/mesmyriza/front.svg",
  14540. extra: 2067 / 1784,
  14541. bottom: 0.035
  14542. }
  14543. },
  14544. foot: {
  14545. height: math.unit(6 / (250 / 35), "feet"),
  14546. name: "Foot",
  14547. image: {
  14548. source: "./media/characters/mesmyriza/foot.svg"
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Macro",
  14555. height: math.unit(457, "meters"),
  14556. default: true
  14557. },
  14558. {
  14559. name: "Megamacro",
  14560. height: math.unit(8, "megameters")
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14566. {
  14567. front: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(250, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/saudade/front.svg",
  14573. extra: 1172 / 1139,
  14574. bottom: 0.035
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Micro",
  14581. height: math.unit(3, "inches")
  14582. },
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(6, "feet"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(50, "feet")
  14591. },
  14592. {
  14593. name: "Megamacro",
  14594. height: math.unit(2800, "feet")
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(5 + 4 / 12, "feet"),
  14603. weight: math.unit(100, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/keireer/front.svg",
  14607. extra: 716 / 666,
  14608. bottom: 0.05
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(5 + 4 / 12, "feet"),
  14616. default: true
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14622. {
  14623. front: {
  14624. height: math.unit(6, "feet"),
  14625. weight: math.unit(90, "kg"),
  14626. name: "Front",
  14627. image: {
  14628. source: "./media/characters/mirja/front.svg",
  14629. extra: 1789 / 1683,
  14630. bottom: 0.05
  14631. }
  14632. },
  14633. frontDressed: {
  14634. height: math.unit(6, "feet"),
  14635. weight: math.unit(90, "lb"),
  14636. name: "Front (Dressed)",
  14637. image: {
  14638. source: "./media/characters/mirja/front-dressed.svg",
  14639. extra: 1789 / 1683,
  14640. bottom: 0.05
  14641. }
  14642. },
  14643. back: {
  14644. height: math.unit(6, "feet"),
  14645. weight: math.unit(90, "lb"),
  14646. name: "Back",
  14647. image: {
  14648. source: "./media/characters/mirja/back.svg",
  14649. extra: 953 / 917,
  14650. bottom: 0.017
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "\"Incognito\"",
  14657. height: math.unit(3, "meters")
  14658. },
  14659. {
  14660. name: "Strolling Size",
  14661. height: math.unit(15, "km")
  14662. },
  14663. {
  14664. name: "Larger Strolling Size",
  14665. height: math.unit(400, "km")
  14666. },
  14667. {
  14668. name: "Preferred Size",
  14669. height: math.unit(5000, "km")
  14670. },
  14671. {
  14672. name: "True Size",
  14673. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14674. default: true
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14680. {
  14681. front: {
  14682. height: math.unit(15, "feet"),
  14683. weight: math.unit(880, "kg"),
  14684. name: "Front",
  14685. image: {
  14686. source: "./media/characters/nightraver/front.svg",
  14687. extra: 2444 / 2160,
  14688. bottom: 0.027
  14689. }
  14690. },
  14691. back: {
  14692. height: math.unit(15, "feet"),
  14693. weight: math.unit(880, "kg"),
  14694. name: "Back",
  14695. image: {
  14696. source: "./media/characters/nightraver/back.svg",
  14697. extra: 2309 / 2180,
  14698. bottom: 0.005
  14699. }
  14700. },
  14701. sole: {
  14702. height: math.unit(2.878, "feet"),
  14703. name: "Sole",
  14704. image: {
  14705. source: "./media/characters/nightraver/sole.svg"
  14706. }
  14707. },
  14708. foot: {
  14709. height: math.unit(2.285, "feet"),
  14710. name: "Foot",
  14711. image: {
  14712. source: "./media/characters/nightraver/foot.svg"
  14713. }
  14714. },
  14715. maw: {
  14716. height: math.unit(2.67, "feet"),
  14717. name: "Maw",
  14718. image: {
  14719. source: "./media/characters/nightraver/maw.svg"
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Micro",
  14726. height: math.unit(1, "cm")
  14727. },
  14728. {
  14729. name: "Normal",
  14730. height: math.unit(15, "feet"),
  14731. default: true
  14732. },
  14733. {
  14734. name: "Macro",
  14735. height: math.unit(300, "feet")
  14736. },
  14737. {
  14738. name: "Megamacro",
  14739. height: math.unit(300, "miles")
  14740. },
  14741. {
  14742. name: "Gigamacro",
  14743. height: math.unit(10000, "miles")
  14744. },
  14745. ]
  14746. ))
  14747. characterMakers.push(() => makeCharacter(
  14748. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14749. {
  14750. side: {
  14751. height: math.unit(2, "inches"),
  14752. weight: math.unit(5, "grams"),
  14753. name: "Side",
  14754. image: {
  14755. source: "./media/characters/arc/side.svg"
  14756. }
  14757. },
  14758. },
  14759. [
  14760. {
  14761. name: "Micro",
  14762. height: math.unit(2, "inches"),
  14763. default: true
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(1.1938, "meters"),
  14772. weight: math.unit(54, "kg"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/nebula-shahar/front.svg",
  14776. extra: 1642 / 1436,
  14777. bottom: 0.06
  14778. }
  14779. },
  14780. },
  14781. [
  14782. {
  14783. name: "Megamicro",
  14784. height: math.unit(0.3, "mm")
  14785. },
  14786. {
  14787. name: "Micro",
  14788. height: math.unit(3, "cm")
  14789. },
  14790. {
  14791. name: "Normal",
  14792. height: math.unit(138, "cm"),
  14793. default: true
  14794. },
  14795. {
  14796. name: "Macro",
  14797. height: math.unit(30, "m")
  14798. },
  14799. ]
  14800. ))
  14801. characterMakers.push(() => makeCharacter(
  14802. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14803. {
  14804. front: {
  14805. height: math.unit(5.24, "feet"),
  14806. weight: math.unit(150, "lb"),
  14807. name: "Front",
  14808. image: {
  14809. source: "./media/characters/shayla/front.svg",
  14810. extra: 1512 / 1414,
  14811. bottom: 0.01
  14812. }
  14813. },
  14814. back: {
  14815. height: math.unit(5.24, "feet"),
  14816. weight: math.unit(150, "lb"),
  14817. name: "Back",
  14818. image: {
  14819. source: "./media/characters/shayla/back.svg",
  14820. extra: 1512 / 1414
  14821. }
  14822. },
  14823. hand: {
  14824. height: math.unit(0.7781496062992126, "feet"),
  14825. name: "Hand",
  14826. image: {
  14827. source: "./media/characters/shayla/hand.svg"
  14828. }
  14829. },
  14830. foot: {
  14831. height: math.unit(1.4206036745406823, "feet"),
  14832. name: "Foot",
  14833. image: {
  14834. source: "./media/characters/shayla/foot.svg"
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Micro",
  14841. height: math.unit(0.32, "feet")
  14842. },
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(5.24, "feet"),
  14846. default: true
  14847. },
  14848. {
  14849. name: "Macro",
  14850. height: math.unit(492.12, "feet")
  14851. },
  14852. {
  14853. name: "Megamacro",
  14854. height: math.unit(186.41, "miles")
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(2.2, "m"),
  14863. weight: math.unit(120, "kg"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/pia-jr/front.svg",
  14867. extra: 1000 / 970,
  14868. bottom: 0.035
  14869. }
  14870. },
  14871. hand: {
  14872. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14873. name: "Hand",
  14874. image: {
  14875. source: "./media/characters/pia-jr/hand.svg"
  14876. }
  14877. },
  14878. paw: {
  14879. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14880. name: "Paw",
  14881. image: {
  14882. source: "./media/characters/pia-jr/paw.svg"
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Micro",
  14889. height: math.unit(1.2, "cm")
  14890. },
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(2.2, "m"),
  14894. default: true
  14895. },
  14896. {
  14897. name: "Macro",
  14898. height: math.unit(180, "m")
  14899. },
  14900. {
  14901. name: "Megamacro",
  14902. height: math.unit(420, "km")
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(2, "m"),
  14911. weight: math.unit(115, "kg"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/pia-sr/front.svg",
  14915. extra: 760 / 730,
  14916. bottom: 0.015
  14917. }
  14918. },
  14919. back: {
  14920. height: math.unit(2, "m"),
  14921. weight: math.unit(115, "kg"),
  14922. name: "Back",
  14923. image: {
  14924. source: "./media/characters/pia-sr/back.svg",
  14925. extra: 760 / 730,
  14926. bottom: 0.01
  14927. }
  14928. },
  14929. hand: {
  14930. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14931. name: "Hand",
  14932. image: {
  14933. source: "./media/characters/pia-sr/hand.svg"
  14934. }
  14935. },
  14936. foot: {
  14937. height: math.unit(1.83, "feet"),
  14938. name: "Foot",
  14939. image: {
  14940. source: "./media/characters/pia-sr/foot.svg"
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Micro",
  14947. height: math.unit(88, "mm")
  14948. },
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(2, "m"),
  14952. default: true
  14953. },
  14954. {
  14955. name: "Macro",
  14956. height: math.unit(200, "m")
  14957. },
  14958. {
  14959. name: "Megamacro",
  14960. height: math.unit(420, "km")
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14966. {
  14967. front: {
  14968. height: math.unit(8 + 2 / 12, "feet"),
  14969. weight: math.unit(300, "lb"),
  14970. name: "Front",
  14971. image: {
  14972. source: "./media/characters/kibibyte/front.svg",
  14973. extra: 2221 / 2098,
  14974. bottom: 0.04
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(8 + 2 / 12, "feet"),
  14982. default: true
  14983. },
  14984. {
  14985. name: "Socialable Macro",
  14986. height: math.unit(50, "feet")
  14987. },
  14988. {
  14989. name: "Macro",
  14990. height: math.unit(300, "feet")
  14991. },
  14992. {
  14993. name: "Megamacro",
  14994. height: math.unit(500, "miles")
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(6, "feet"),
  15003. weight: math.unit(150, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/felix/front.svg",
  15007. extra: 762 / 722,
  15008. bottom: 0.02
  15009. }
  15010. },
  15011. frontClothed: {
  15012. height: math.unit(6, "feet"),
  15013. weight: math.unit(150, "lb"),
  15014. name: "Front (Clothed)",
  15015. image: {
  15016. source: "./media/characters/felix/front-clothed.svg",
  15017. extra: 762 / 722,
  15018. bottom: 0.02
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(6 + 8 / 12, "feet"),
  15026. default: true
  15027. },
  15028. {
  15029. name: "Macro",
  15030. height: math.unit(2600, "feet")
  15031. },
  15032. {
  15033. name: "Megamacro",
  15034. height: math.unit(450, "miles")
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(6 + 1 / 12, "feet"),
  15043. weight: math.unit(250, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/tobo/front.svg",
  15047. extra: 608 / 586,
  15048. bottom: 0.023
  15049. }
  15050. },
  15051. back: {
  15052. height: math.unit(6 + 1 / 12, "feet"),
  15053. weight: math.unit(250, "lb"),
  15054. name: "Back",
  15055. image: {
  15056. source: "./media/characters/tobo/back.svg",
  15057. extra: 608 / 586
  15058. }
  15059. },
  15060. },
  15061. [
  15062. {
  15063. name: "Nano",
  15064. height: math.unit(2, "nm")
  15065. },
  15066. {
  15067. name: "Megamicro",
  15068. height: math.unit(0.1, "mm")
  15069. },
  15070. {
  15071. name: "Micro",
  15072. height: math.unit(1, "inch"),
  15073. default: true
  15074. },
  15075. {
  15076. name: "Human-sized",
  15077. height: math.unit(6 + 1 / 12, "feet")
  15078. },
  15079. {
  15080. name: "Macro",
  15081. height: math.unit(250, "feet")
  15082. },
  15083. {
  15084. name: "Megamacro",
  15085. height: math.unit(75, "miles")
  15086. },
  15087. {
  15088. name: "Texas-sized",
  15089. height: math.unit(750, "miles")
  15090. },
  15091. {
  15092. name: "Teramacro",
  15093. height: math.unit(50000, "miles")
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(6, "feet"),
  15102. weight: math.unit(269, "lb"),
  15103. name: "Front",
  15104. image: {
  15105. source: "./media/characters/danny-kapowsky/front.svg",
  15106. extra: 766 / 736,
  15107. bottom: 0.044
  15108. }
  15109. },
  15110. back: {
  15111. height: math.unit(6, "feet"),
  15112. weight: math.unit(269, "lb"),
  15113. name: "Back",
  15114. image: {
  15115. source: "./media/characters/danny-kapowsky/back.svg",
  15116. extra: 797 / 760,
  15117. bottom: 0.025
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Macro",
  15124. height: math.unit(150, "feet"),
  15125. default: true
  15126. },
  15127. {
  15128. name: "Macro+",
  15129. height: math.unit(200, "feet")
  15130. },
  15131. {
  15132. name: "Macro++",
  15133. height: math.unit(300, "feet")
  15134. },
  15135. {
  15136. name: "Macro+++",
  15137. height: math.unit(400, "feet")
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15143. {
  15144. side: {
  15145. height: math.unit(6, "feet"),
  15146. weight: math.unit(170, "lb"),
  15147. name: "Side",
  15148. image: {
  15149. source: "./media/characters/finn/side.svg",
  15150. extra: 1953 / 1807,
  15151. bottom: 0.057
  15152. }
  15153. },
  15154. },
  15155. [
  15156. {
  15157. name: "Megamacro",
  15158. height: math.unit(14445, "feet"),
  15159. default: true
  15160. },
  15161. ]
  15162. ))
  15163. characterMakers.push(() => makeCharacter(
  15164. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15165. {
  15166. front: {
  15167. height: math.unit(5 + 6 / 12, "feet"),
  15168. weight: math.unit(125, "lb"),
  15169. name: "Front",
  15170. image: {
  15171. source: "./media/characters/roy/front.svg",
  15172. extra: 1,
  15173. bottom: 0.11
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Micro",
  15180. height: math.unit(3, "inches"),
  15181. default: true
  15182. },
  15183. {
  15184. name: "Normal",
  15185. height: math.unit(5 + 6 / 12, "feet")
  15186. },
  15187. {
  15188. name: "Lesser Macro",
  15189. height: math.unit(60, "feet")
  15190. },
  15191. {
  15192. name: "Greater Macro",
  15193. height: math.unit(120, "feet")
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15199. {
  15200. front: {
  15201. height: math.unit(6, "feet"),
  15202. weight: math.unit(100, "lb"),
  15203. name: "Front",
  15204. image: {
  15205. source: "./media/characters/aevsivs/front.svg",
  15206. extra: 1,
  15207. bottom: 0.03
  15208. }
  15209. },
  15210. back: {
  15211. height: math.unit(6, "feet"),
  15212. weight: math.unit(100, "lb"),
  15213. name: "Back",
  15214. image: {
  15215. source: "./media/characters/aevsivs/back.svg"
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Micro",
  15222. height: math.unit(2, "inches"),
  15223. default: true
  15224. },
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(5, "feet")
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15233. {
  15234. front: {
  15235. height: math.unit(5 + 7 / 12, "feet"),
  15236. weight: math.unit(159, "lb"),
  15237. name: "Front",
  15238. image: {
  15239. source: "./media/characters/hildegard/front.svg",
  15240. extra: 289 / 269,
  15241. bottom: 7.63 / 297.8
  15242. }
  15243. },
  15244. back: {
  15245. height: math.unit(5 + 7 / 12, "feet"),
  15246. weight: math.unit(159, "lb"),
  15247. name: "Back",
  15248. image: {
  15249. source: "./media/characters/hildegard/back.svg",
  15250. extra: 280 / 260,
  15251. bottom: 2.3 / 282
  15252. }
  15253. },
  15254. },
  15255. [
  15256. {
  15257. name: "Normal",
  15258. height: math.unit(5 + 7 / 12, "feet"),
  15259. default: true
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15265. {
  15266. bernard: {
  15267. height: math.unit(2 + 7 / 12, "feet"),
  15268. weight: math.unit(66, "lb"),
  15269. name: "Bernard",
  15270. rename: true,
  15271. image: {
  15272. source: "./media/characters/bernard-wilder/bernard.svg",
  15273. extra: 192 / 128,
  15274. bottom: 0.05
  15275. }
  15276. },
  15277. wilder: {
  15278. height: math.unit(5 + 8 / 12, "feet"),
  15279. weight: math.unit(143, "lb"),
  15280. name: "Wilder",
  15281. rename: true,
  15282. image: {
  15283. source: "./media/characters/bernard-wilder/wilder.svg",
  15284. extra: 361 / 312,
  15285. bottom: 0.02
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(2 + 7 / 12, "feet"),
  15293. default: true
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15299. {
  15300. anthro: {
  15301. height: math.unit(6 + 1 / 12, "feet"),
  15302. weight: math.unit(155, "lb"),
  15303. name: "Anthro",
  15304. image: {
  15305. source: "./media/characters/hearth/anthro.svg",
  15306. extra: 1178/1136,
  15307. bottom: 28/1206
  15308. }
  15309. },
  15310. feral: {
  15311. height: math.unit(3.78, "feet"),
  15312. weight: math.unit(35, "kg"),
  15313. name: "Feral",
  15314. image: {
  15315. source: "./media/characters/hearth/feral.svg",
  15316. extra: 153 / 135,
  15317. bottom: 0.03
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Normal",
  15324. height: math.unit(6 + 1 / 12, "feet"),
  15325. default: true
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15331. {
  15332. front: {
  15333. height: math.unit(6, "feet"),
  15334. weight: math.unit(182, "lb"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/ingrid/front.svg",
  15338. extra: 294 / 268,
  15339. bottom: 0.027
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Normal",
  15346. height: math.unit(6, "feet"),
  15347. default: true
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15353. {
  15354. eevee: {
  15355. height: math.unit(2 + 10 / 12, "feet"),
  15356. weight: math.unit(86, "lb"),
  15357. name: "Malgam",
  15358. image: {
  15359. source: "./media/characters/malgam/eevee.svg",
  15360. extra: 952/784,
  15361. bottom: 38/990
  15362. }
  15363. },
  15364. sylveon: {
  15365. height: math.unit(4, "feet"),
  15366. weight: math.unit(101, "lb"),
  15367. name: "Future Malgam",
  15368. rename: true,
  15369. image: {
  15370. source: "./media/characters/malgam/sylveon.svg",
  15371. extra: 371 / 325,
  15372. bottom: 0.015
  15373. }
  15374. },
  15375. gigantamax: {
  15376. height: math.unit(50, "feet"),
  15377. name: "Gigantamax Malgam",
  15378. rename: true,
  15379. image: {
  15380. source: "./media/characters/malgam/gigantamax.svg"
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(2 + 10 / 12, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(5 + 11 / 12, "feet"),
  15397. weight: math.unit(188, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/fleur/front.svg",
  15401. extra: 309 / 283,
  15402. bottom: 0.007
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(5 + 11 / 12, "feet"),
  15410. default: true
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(5 + 4 / 12, "feet"),
  15419. weight: math.unit(122, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/jude/front.svg",
  15423. extra: 288 / 273,
  15424. bottom: 0.03
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(5 + 4 / 12, "feet"),
  15432. default: true
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(5 + 11 / 12, "feet"),
  15441. weight: math.unit(190, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/seara/front.svg",
  15445. extra: 1,
  15446. bottom: 0.05
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(5 + 11 / 12, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(16 + 5 / 12, "feet"),
  15463. weight: math.unit(524, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/caspian/front.svg",
  15467. extra: 1,
  15468. bottom: 0.04
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(16 + 5 / 12, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(5 + 7 / 12, "feet"),
  15485. weight: math.unit(170, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/mika/front.svg",
  15489. extra: 1,
  15490. bottom: 0.016
  15491. }
  15492. },
  15493. },
  15494. [
  15495. {
  15496. name: "Normal",
  15497. height: math.unit(5 + 7 / 12, "feet"),
  15498. default: true
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15504. {
  15505. front: {
  15506. height: math.unit(6 + 2 / 12, "feet"),
  15507. weight: math.unit(268, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/sol/front.svg",
  15511. extra: 247 / 231,
  15512. bottom: 0.05
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(6 + 2 / 12, "feet"),
  15520. default: true
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15526. {
  15527. buizel: {
  15528. height: math.unit(2 + 5 / 12, "feet"),
  15529. weight: math.unit(87, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/umiko/buizel.svg",
  15533. extra: 172 / 157,
  15534. bottom: 0.01
  15535. },
  15536. form: "buizel",
  15537. default: true
  15538. },
  15539. floatzel: {
  15540. height: math.unit(5 + 9 / 12, "feet"),
  15541. weight: math.unit(250, "lb"),
  15542. name: "Front",
  15543. image: {
  15544. source: "./media/characters/umiko/floatzel.svg",
  15545. extra: 1076/1006,
  15546. bottom: 15/1091
  15547. },
  15548. form: "floatzel",
  15549. default: true
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(2 + 5 / 12, "feet"),
  15556. form: "buizel",
  15557. default: true
  15558. },
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(5 + 9 / 12, "feet"),
  15562. form: "floatzel",
  15563. default: true
  15564. },
  15565. ],
  15566. {
  15567. "buizel": {
  15568. name: "Buizel"
  15569. },
  15570. "floatzel": {
  15571. name: "Floatzel",
  15572. default: true
  15573. }
  15574. }
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(6 + 2 / 12, "feet"),
  15581. weight: math.unit(146, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/iliac/front.svg",
  15585. extra: 389 / 365,
  15586. bottom: 0.035
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(6 + 2 / 12, "feet"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(6, "feet"),
  15603. weight: math.unit(170, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/topaz/front.svg",
  15607. extra: 317 / 303,
  15608. bottom: 0.055
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(6, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15622. {
  15623. front: {
  15624. height: math.unit(5 + 11 / 12, "feet"),
  15625. weight: math.unit(144, "lb"),
  15626. name: "Front",
  15627. image: {
  15628. source: "./media/characters/gabriel/front.svg",
  15629. extra: 285 / 262,
  15630. bottom: 0.004
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Normal",
  15637. height: math.unit(5 + 11 / 12, "feet"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15644. {
  15645. side: {
  15646. height: math.unit(6 + 5 / 12, "feet"),
  15647. weight: math.unit(300, "lb"),
  15648. name: "Side",
  15649. image: {
  15650. source: "./media/characters/tempest-suicune/side.svg",
  15651. extra: 195 / 154,
  15652. bottom: 0.04
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(6 + 5 / 12, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(7 + 2 / 12, "feet"),
  15669. weight: math.unit(322, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/vulcan/front.svg",
  15673. extra: 154 / 147,
  15674. bottom: 0.04
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(7 + 2 / 12, "feet"),
  15682. default: true
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15688. {
  15689. front: {
  15690. height: math.unit(5 + 10 / 12, "feet"),
  15691. weight: math.unit(264, "lb"),
  15692. name: "Front",
  15693. image: {
  15694. source: "./media/characters/gault/front.svg",
  15695. extra: 161 / 140,
  15696. bottom: 0.028
  15697. }
  15698. },
  15699. },
  15700. [
  15701. {
  15702. name: "Normal",
  15703. height: math.unit(5 + 10 / 12, "feet"),
  15704. default: true
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(6, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/shard/front.svg",
  15717. extra: 273 / 238,
  15718. bottom: 0.02
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(3 + 6 / 12, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(5 + 11 / 12, "feet"),
  15735. weight: math.unit(146, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/ashe/front.svg",
  15739. extra: 400 / 373,
  15740. bottom: 0.01
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(5 + 11 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(5 + 5 / 12, "feet"),
  15757. weight: math.unit(135, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/beatrix/front.svg",
  15761. extra: 392 / 379,
  15762. bottom: 0.01
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(6, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15776. {
  15777. front: {
  15778. height: math.unit(6 + 2/12, "feet"),
  15779. weight: math.unit(135, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/ignatius/front.svg",
  15783. extra: 1380/1259,
  15784. bottom: 27/1407
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(6 + 2/12, "feet"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15798. {
  15799. front: {
  15800. height: math.unit(6 + 2 / 12, "feet"),
  15801. weight: math.unit(138, "lb"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/mei-li/front.svg",
  15805. extra: 237 / 229,
  15806. bottom: 0.03
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(6 + 2 / 12, "feet"),
  15814. default: true
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15820. {
  15821. front: {
  15822. height: math.unit(2 + 4 / 12, "feet"),
  15823. weight: math.unit(62, "lb"),
  15824. name: "Front",
  15825. image: {
  15826. source: "./media/characters/puru/front.svg",
  15827. extra: 206 / 149,
  15828. bottom: 0.06
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Normal",
  15835. height: math.unit(2 + 4 / 12, "feet"),
  15836. default: true
  15837. },
  15838. ]
  15839. ))
  15840. characterMakers.push(() => makeCharacter(
  15841. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15842. {
  15843. anthro: {
  15844. height: math.unit(5 + 8/12, "feet"),
  15845. weight: math.unit(200, "lb"),
  15846. energyNeed: math.unit(2000, "kcal"),
  15847. name: "Anthro",
  15848. image: {
  15849. source: "./media/characters/kee/anthro.svg",
  15850. extra: 3251/3184,
  15851. bottom: 250/3501
  15852. }
  15853. },
  15854. taur: {
  15855. height: math.unit(11, "feet"),
  15856. weight: math.unit(500, "lb"),
  15857. energyNeed: math.unit(5000, "kcal"),
  15858. name: "Taur",
  15859. image: {
  15860. source: "./media/characters/kee/taur.svg",
  15861. extra: 1362/1320,
  15862. bottom: 83/1445
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(5 + 8/12, "feet"),
  15870. default: true
  15871. },
  15872. {
  15873. name: "Macro",
  15874. height: math.unit(35, "feet")
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15880. {
  15881. anthro: {
  15882. height: math.unit(7, "feet"),
  15883. weight: math.unit(190, "lb"),
  15884. name: "Anthro",
  15885. image: {
  15886. source: "./media/characters/cobalt-dracha/anthro.svg",
  15887. extra: 231 / 225,
  15888. bottom: 0.04
  15889. }
  15890. },
  15891. feral: {
  15892. height: math.unit(9 + 7 / 12, "feet"),
  15893. weight: math.unit(294, "lb"),
  15894. name: "Feral",
  15895. image: {
  15896. source: "./media/characters/cobalt-dracha/feral.svg",
  15897. extra: 692 / 633,
  15898. bottom: 0.05
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Normal",
  15905. height: math.unit(7, "feet"),
  15906. default: true
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15912. {
  15913. fallen: {
  15914. height: math.unit(11 + 8 / 12, "feet"),
  15915. weight: math.unit(485, "lb"),
  15916. name: "Java (Fallen)",
  15917. rename: true,
  15918. image: {
  15919. source: "./media/characters/java/fallen.svg",
  15920. extra: 226 / 208,
  15921. bottom: 0.005
  15922. }
  15923. },
  15924. godkin: {
  15925. height: math.unit(10 + 6 / 12, "feet"),
  15926. weight: math.unit(328, "lb"),
  15927. name: "Java (Godkin)",
  15928. rename: true,
  15929. image: {
  15930. source: "./media/characters/java/godkin.svg",
  15931. extra: 1104/1068,
  15932. bottom: 36/1140
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(11 + 8 / 12, "feet"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(5 + 9 / 12, "feet"),
  15949. weight: math.unit(170, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/purna/front.svg",
  15953. extra: 239 / 229,
  15954. bottom: 0.01
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(5 + 9 / 12, "feet"),
  15962. default: true
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15968. {
  15969. front: {
  15970. height: math.unit(5 + 9 / 12, "feet"),
  15971. weight: math.unit(142, "lb"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/kuva/front.svg",
  15975. extra: 281 / 271,
  15976. bottom: 0.006
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(5 + 9 / 12, "feet"),
  15984. default: true
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15990. {
  15991. anthro: {
  15992. height: math.unit(9 + 2 / 12, "feet"),
  15993. weight: math.unit(270, "lb"),
  15994. name: "Anthro",
  15995. image: {
  15996. source: "./media/characters/embra/anthro.svg",
  15997. extra: 200 / 187,
  15998. bottom: 0.02
  15999. }
  16000. },
  16001. feral: {
  16002. height: math.unit(18 + 8 / 12, "feet"),
  16003. weight: math.unit(576, "lb"),
  16004. name: "Feral",
  16005. image: {
  16006. source: "./media/characters/embra/feral.svg",
  16007. extra: 152 / 137,
  16008. bottom: 0.037
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Normal",
  16015. height: math.unit(9 + 2 / 12, "feet"),
  16016. default: true
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16022. {
  16023. anthro: {
  16024. height: math.unit(10 + 9 / 12, "feet"),
  16025. weight: math.unit(224, "lb"),
  16026. name: "Anthro",
  16027. image: {
  16028. source: "./media/characters/grottos/anthro.svg",
  16029. extra: 350 / 332,
  16030. bottom: 0.045
  16031. }
  16032. },
  16033. feral: {
  16034. height: math.unit(20 + 7 / 12, "feet"),
  16035. weight: math.unit(629, "lb"),
  16036. name: "Feral",
  16037. image: {
  16038. source: "./media/characters/grottos/feral.svg",
  16039. extra: 207 / 190,
  16040. bottom: 0.05
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(10 + 9 / 12, "feet"),
  16048. default: true
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16054. {
  16055. anthro: {
  16056. height: math.unit(9 + 6 / 12, "feet"),
  16057. weight: math.unit(298, "lb"),
  16058. name: "Anthro",
  16059. image: {
  16060. source: "./media/characters/frifna/anthro.svg",
  16061. extra: 282 / 269,
  16062. bottom: 0.015
  16063. }
  16064. },
  16065. feral: {
  16066. height: math.unit(16 + 2 / 12, "feet"),
  16067. weight: math.unit(624, "lb"),
  16068. name: "Feral",
  16069. image: {
  16070. source: "./media/characters/frifna/feral.svg"
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Normal",
  16077. height: math.unit(9 + 6 / 12, "feet"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(6 + 2 / 12, "feet"),
  16087. weight: math.unit(168, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/elise/front.svg",
  16091. extra: 276 / 271
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(6 + 2 / 12, "feet"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(5 + 10 / 12, "feet"),
  16108. weight: math.unit(210, "lb"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/glade/front.svg",
  16112. extra: 258 / 247,
  16113. bottom: 0.008
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(5 + 10 / 12, "feet"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(5 + 10 / 12, "feet"),
  16130. weight: math.unit(129, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/rina/front.svg",
  16134. extra: 266 / 255,
  16135. bottom: 0.005
  16136. }
  16137. },
  16138. },
  16139. [
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(5 + 10 / 12, "feet"),
  16143. default: true
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16149. {
  16150. front: {
  16151. height: math.unit(6 + 1 / 12, "feet"),
  16152. weight: math.unit(192, "lb"),
  16153. name: "Front",
  16154. image: {
  16155. source: "./media/characters/veronica/front.svg",
  16156. extra: 319 / 309,
  16157. bottom: 0.005
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(6 + 1 / 12, "feet"),
  16165. default: true
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16171. {
  16172. front: {
  16173. height: math.unit(9 + 3 / 12, "feet"),
  16174. weight: math.unit(1100, "lb"),
  16175. name: "Front",
  16176. image: {
  16177. source: "./media/characters/braxton/front.svg",
  16178. extra: 1057 / 984,
  16179. bottom: 0.05
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(9 + 3 / 12, "feet")
  16187. },
  16188. {
  16189. name: "Giant",
  16190. height: math.unit(300, "feet"),
  16191. default: true
  16192. },
  16193. {
  16194. name: "Macro",
  16195. height: math.unit(700, "feet")
  16196. },
  16197. {
  16198. name: "Megamacro",
  16199. height: math.unit(6000, "feet")
  16200. },
  16201. ]
  16202. ))
  16203. characterMakers.push(() => makeCharacter(
  16204. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16205. {
  16206. front: {
  16207. height: math.unit(6 + 7 / 12, "feet"),
  16208. weight: math.unit(150, "lb"),
  16209. name: "Front",
  16210. image: {
  16211. source: "./media/characters/blue-feyonics/front.svg",
  16212. extra: 1403 / 1306,
  16213. bottom: 0.047
  16214. }
  16215. },
  16216. },
  16217. [
  16218. {
  16219. name: "Normal",
  16220. height: math.unit(6 + 7 / 12, "feet"),
  16221. default: true
  16222. },
  16223. ]
  16224. ))
  16225. characterMakers.push(() => makeCharacter(
  16226. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16227. {
  16228. front: {
  16229. height: math.unit(1.8, "meters"),
  16230. weight: math.unit(60, "kg"),
  16231. name: "Front",
  16232. image: {
  16233. source: "./media/characters/maxwell/front.svg",
  16234. extra: 2060 / 1873
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Micro",
  16241. height: math.unit(1, "mm")
  16242. },
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(1.8, "meter"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "Macro",
  16250. height: math.unit(30, "meters")
  16251. },
  16252. {
  16253. name: "Megamacro",
  16254. height: math.unit(10, "km")
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(150, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/jack/front.svg",
  16267. extra: 1754 / 1640,
  16268. bottom: 0.01
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(80000, "feet"),
  16276. default: true
  16277. },
  16278. {
  16279. name: "Max size",
  16280. height: math.unit(10, "lightyears")
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16286. {
  16287. urban: {
  16288. height: math.unit(5, "feet"),
  16289. weight: math.unit(240, "lb"),
  16290. name: "Urban",
  16291. image: {
  16292. source: "./media/characters/cafat/urban.svg",
  16293. extra: 1223/1126,
  16294. bottom: 205/1428
  16295. }
  16296. },
  16297. summer: {
  16298. height: math.unit(5, "feet"),
  16299. weight: math.unit(240, "lb"),
  16300. name: "Summer",
  16301. image: {
  16302. source: "./media/characters/cafat/summer.svg",
  16303. extra: 1223/1126,
  16304. bottom: 205/1428
  16305. }
  16306. },
  16307. winter: {
  16308. height: math.unit(5, "feet"),
  16309. weight: math.unit(240, "lb"),
  16310. name: "Winter",
  16311. image: {
  16312. source: "./media/characters/cafat/winter.svg",
  16313. extra: 1223/1126,
  16314. bottom: 205/1428
  16315. }
  16316. },
  16317. lingerie: {
  16318. height: math.unit(5, "feet"),
  16319. weight: math.unit(240, "lb"),
  16320. name: "Lingerie",
  16321. image: {
  16322. source: "./media/characters/cafat/lingerie.svg",
  16323. extra: 1223/1126,
  16324. bottom: 205/1428
  16325. }
  16326. },
  16327. upright: {
  16328. height: math.unit(6.3, "feet"),
  16329. weight: math.unit(240, "lb"),
  16330. name: "Upright",
  16331. image: {
  16332. source: "./media/characters/cafat/upright.svg",
  16333. bottom: 0.01
  16334. }
  16335. },
  16336. uprightFull: {
  16337. height: math.unit(6.3, "feet"),
  16338. weight: math.unit(240, "lb"),
  16339. name: "Upright (Full)",
  16340. image: {
  16341. source: "./media/characters/cafat/upright-full.svg",
  16342. bottom: 0.01
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Small",
  16349. height: math.unit(5, "feet"),
  16350. default: true
  16351. },
  16352. {
  16353. name: "Large",
  16354. height: math.unit(13, "feet")
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16360. {
  16361. front: {
  16362. height: math.unit(6, "feet"),
  16363. weight: math.unit(150, "lb"),
  16364. name: "Front",
  16365. image: {
  16366. source: "./media/characters/verin-raharra/front.svg",
  16367. extra: 5019 / 4835,
  16368. bottom: 0.023
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(7 + 5 / 12, "feet"),
  16376. default: true
  16377. },
  16378. {
  16379. name: "Upsized",
  16380. height: math.unit(20, "feet")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(7, "feet"),
  16389. weight: math.unit(230, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/nakata/front.svg",
  16393. extra: 1.005,
  16394. bottom: 0.01
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(7, "feet"),
  16402. default: true
  16403. },
  16404. {
  16405. name: "Big",
  16406. height: math.unit(14, "feet")
  16407. },
  16408. {
  16409. name: "Macro",
  16410. height: math.unit(400, "feet")
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16416. {
  16417. front: {
  16418. height: math.unit(4.91, "feet"),
  16419. weight: math.unit(100, "lb"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/lily/front.svg",
  16423. extra: 1585 / 1415,
  16424. bottom: 0.02
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(4.91, "feet"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16438. {
  16439. laying: {
  16440. height: math.unit(4 + 4 / 12, "feet"),
  16441. weight: math.unit(600, "lb"),
  16442. name: "Laying",
  16443. image: {
  16444. source: "./media/characters/sheila/laying.svg",
  16445. extra: 1333 / 1265,
  16446. bottom: 0.16
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(4 + 4 / 12, "feet"),
  16454. default: true
  16455. },
  16456. ]
  16457. ))
  16458. characterMakers.push(() => makeCharacter(
  16459. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16460. {
  16461. front: {
  16462. height: math.unit(6, "feet"),
  16463. weight: math.unit(190, "lb"),
  16464. name: "Front",
  16465. image: {
  16466. source: "./media/characters/sax/front.svg",
  16467. extra: 1187 / 973,
  16468. bottom: 0.042
  16469. }
  16470. },
  16471. },
  16472. [
  16473. {
  16474. name: "Micro",
  16475. height: math.unit(4, "inches"),
  16476. default: true
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(6, "feet"),
  16485. weight: math.unit(150, "lb"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/pandora/front.svg",
  16489. extra: 2720 / 2556,
  16490. bottom: 0.015
  16491. }
  16492. },
  16493. back: {
  16494. height: math.unit(6, "feet"),
  16495. weight: math.unit(150, "lb"),
  16496. name: "Back",
  16497. image: {
  16498. source: "./media/characters/pandora/back.svg",
  16499. extra: 2720 / 2556,
  16500. bottom: 0.01
  16501. }
  16502. },
  16503. beans: {
  16504. height: math.unit(6 / 8, "feet"),
  16505. name: "Beans",
  16506. image: {
  16507. source: "./media/characters/pandora/beans.svg"
  16508. }
  16509. },
  16510. collar: {
  16511. height: math.unit(0.31, "feet"),
  16512. name: "Collar",
  16513. image: {
  16514. source: "./media/characters/pandora/collar.svg"
  16515. }
  16516. },
  16517. skirt: {
  16518. height: math.unit(6, "feet"),
  16519. weight: math.unit(150, "lb"),
  16520. name: "Skirt",
  16521. image: {
  16522. source: "./media/characters/pandora/skirt.svg",
  16523. extra: 1622 / 1525,
  16524. bottom: 0.015
  16525. }
  16526. },
  16527. hoodie: {
  16528. height: math.unit(6, "feet"),
  16529. weight: math.unit(150, "lb"),
  16530. name: "Hoodie",
  16531. image: {
  16532. source: "./media/characters/pandora/hoodie.svg",
  16533. extra: 1622 / 1525,
  16534. bottom: 0.015
  16535. }
  16536. },
  16537. casual: {
  16538. height: math.unit(6, "feet"),
  16539. weight: math.unit(150, "lb"),
  16540. name: "Casual",
  16541. image: {
  16542. source: "./media/characters/pandora/casual.svg",
  16543. extra: 1622 / 1525,
  16544. bottom: 0.015
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(6, "feet")
  16552. },
  16553. {
  16554. name: "Big Steppy",
  16555. height: math.unit(1, "km"),
  16556. default: true
  16557. },
  16558. {
  16559. name: "Galactic Steppy",
  16560. height: math.unit(2, "gigameters")
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16566. {
  16567. side: {
  16568. height: math.unit(10, "feet"),
  16569. weight: math.unit(800, "kg"),
  16570. name: "Side",
  16571. image: {
  16572. source: "./media/characters/venio-darcony/side.svg",
  16573. extra: 1373 / 1003,
  16574. bottom: 0.037
  16575. }
  16576. },
  16577. front: {
  16578. height: math.unit(19, "feet"),
  16579. weight: math.unit(800, "kg"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/venio-darcony/front.svg"
  16583. }
  16584. },
  16585. back: {
  16586. height: math.unit(19, "feet"),
  16587. weight: math.unit(800, "kg"),
  16588. name: "Back",
  16589. image: {
  16590. source: "./media/characters/venio-darcony/back.svg"
  16591. }
  16592. },
  16593. sideNsfw: {
  16594. height: math.unit(10, "feet"),
  16595. weight: math.unit(800, "kg"),
  16596. name: "Side (NSFW)",
  16597. image: {
  16598. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16599. extra: 1373 / 1003,
  16600. bottom: 0.037
  16601. }
  16602. },
  16603. frontNsfw: {
  16604. height: math.unit(19, "feet"),
  16605. weight: math.unit(800, "kg"),
  16606. name: "Front (NSFW)",
  16607. image: {
  16608. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16609. }
  16610. },
  16611. backNsfw: {
  16612. height: math.unit(19, "feet"),
  16613. weight: math.unit(800, "kg"),
  16614. name: "Back (NSFW)",
  16615. image: {
  16616. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16617. }
  16618. },
  16619. sideArmored: {
  16620. height: math.unit(10, "feet"),
  16621. weight: math.unit(800, "kg"),
  16622. name: "Side (Armored)",
  16623. image: {
  16624. source: "./media/characters/venio-darcony/side-armored.svg",
  16625. extra: 1373 / 1003,
  16626. bottom: 0.037
  16627. }
  16628. },
  16629. frontArmored: {
  16630. height: math.unit(19, "feet"),
  16631. weight: math.unit(900, "kg"),
  16632. name: "Front (Armored)",
  16633. image: {
  16634. source: "./media/characters/venio-darcony/front-armored.svg"
  16635. }
  16636. },
  16637. backArmored: {
  16638. height: math.unit(19, "feet"),
  16639. weight: math.unit(900, "kg"),
  16640. name: "Back (Armored)",
  16641. image: {
  16642. source: "./media/characters/venio-darcony/back-armored.svg"
  16643. }
  16644. },
  16645. sword: {
  16646. height: math.unit(10, "feet"),
  16647. weight: math.unit(50, "lb"),
  16648. name: "Sword",
  16649. image: {
  16650. source: "./media/characters/venio-darcony/sword.svg"
  16651. }
  16652. },
  16653. },
  16654. [
  16655. {
  16656. name: "Normal",
  16657. height: math.unit(10, "feet")
  16658. },
  16659. {
  16660. name: "Macro",
  16661. height: math.unit(130, "feet"),
  16662. default: true
  16663. },
  16664. {
  16665. name: "Macro+",
  16666. height: math.unit(240, "feet")
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(6, "feet"),
  16675. weight: math.unit(150, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/veski/front.svg",
  16679. extra: 1299 / 1225,
  16680. bottom: 0.04
  16681. }
  16682. },
  16683. back: {
  16684. height: math.unit(6, "feet"),
  16685. weight: math.unit(150, "lb"),
  16686. name: "Back",
  16687. image: {
  16688. source: "./media/characters/veski/back.svg",
  16689. extra: 1299 / 1225,
  16690. bottom: 0.008
  16691. }
  16692. },
  16693. maw: {
  16694. height: math.unit(1.5 * 1.21, "feet"),
  16695. name: "Maw",
  16696. image: {
  16697. source: "./media/characters/veski/maw.svg"
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Macro",
  16704. height: math.unit(2, "km"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16711. {
  16712. front: {
  16713. height: math.unit(5 + 7 / 12, "feet"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/isabelle/front.svg",
  16717. extra: 2130 / 1976,
  16718. bottom: 0.05
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Supermicro",
  16725. height: math.unit(10, "micrometers")
  16726. },
  16727. {
  16728. name: "Micro",
  16729. height: math.unit(1, "inch")
  16730. },
  16731. {
  16732. name: "Tiny",
  16733. height: math.unit(5, "inches")
  16734. },
  16735. {
  16736. name: "Standard",
  16737. height: math.unit(5 + 7 / 12, "inches")
  16738. },
  16739. {
  16740. name: "Macro",
  16741. height: math.unit(80, "meters"),
  16742. default: true
  16743. },
  16744. {
  16745. name: "Megamacro",
  16746. height: math.unit(250, "meters")
  16747. },
  16748. {
  16749. name: "Gigamacro",
  16750. height: math.unit(5, "km")
  16751. },
  16752. {
  16753. name: "Cosmic",
  16754. height: math.unit(2.5e6, "miles")
  16755. },
  16756. ]
  16757. ))
  16758. characterMakers.push(() => makeCharacter(
  16759. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16760. {
  16761. front: {
  16762. height: math.unit(6, "feet"),
  16763. weight: math.unit(150, "lb"),
  16764. name: "Front",
  16765. image: {
  16766. source: "./media/characters/hanzo/front.svg",
  16767. extra: 374 / 344,
  16768. bottom: 0.02
  16769. }
  16770. },
  16771. },
  16772. [
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(8, "feet"),
  16776. default: true
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16782. {
  16783. front: {
  16784. height: math.unit(7, "feet"),
  16785. weight: math.unit(130, "lb"),
  16786. name: "Front",
  16787. image: {
  16788. source: "./media/characters/anna/front.svg",
  16789. extra: 169 / 145,
  16790. bottom: 0.06
  16791. }
  16792. },
  16793. full: {
  16794. height: math.unit(4.96, "feet"),
  16795. weight: math.unit(220, "lb"),
  16796. name: "Full",
  16797. image: {
  16798. source: "./media/characters/anna/full.svg",
  16799. extra: 138 / 114,
  16800. bottom: 0.15
  16801. }
  16802. },
  16803. tongue: {
  16804. height: math.unit(2.53, "feet"),
  16805. name: "Tongue",
  16806. image: {
  16807. source: "./media/characters/anna/tongue.svg"
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(7, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(7, "feet"),
  16824. weight: math.unit(150, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/ian-corvid/front.svg",
  16828. extra: 150 / 142,
  16829. bottom: 0.02
  16830. }
  16831. },
  16832. back: {
  16833. height: math.unit(7, "feet"),
  16834. weight: math.unit(150, "lb"),
  16835. name: "Back",
  16836. image: {
  16837. source: "./media/characters/ian-corvid/back.svg",
  16838. extra: 150 / 143,
  16839. bottom: 0.01
  16840. }
  16841. },
  16842. stomping: {
  16843. height: math.unit(7, "feet"),
  16844. weight: math.unit(150, "lb"),
  16845. name: "Stomping",
  16846. image: {
  16847. source: "./media/characters/ian-corvid/stomping.svg",
  16848. extra: 76 / 72
  16849. }
  16850. },
  16851. sitting: {
  16852. height: math.unit(7 / 1.8, "feet"),
  16853. weight: math.unit(150, "lb"),
  16854. name: "Sitting",
  16855. image: {
  16856. source: "./media/characters/ian-corvid/sitting.svg",
  16857. extra: 1400 / 1269,
  16858. bottom: 0.15
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Tiny Microw",
  16865. height: math.unit(1, "inch")
  16866. },
  16867. {
  16868. name: "Microw",
  16869. height: math.unit(6, "inches")
  16870. },
  16871. {
  16872. name: "Crow",
  16873. height: math.unit(7 + 1 / 12, "feet"),
  16874. default: true
  16875. },
  16876. {
  16877. name: "Macrow",
  16878. height: math.unit(176, "feet")
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16884. {
  16885. front: {
  16886. height: math.unit(5 + 7 / 12, "feet"),
  16887. weight: math.unit(147, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/natalie-kellon/front.svg",
  16891. extra: 1214 / 1141,
  16892. bottom: 0.02
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Micro",
  16899. height: math.unit(1 / 16, "inch")
  16900. },
  16901. {
  16902. name: "Tiny",
  16903. height: math.unit(4, "inches")
  16904. },
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(5 + 7 / 12, "feet"),
  16908. default: true
  16909. },
  16910. {
  16911. name: "Amazon",
  16912. height: math.unit(12, "feet")
  16913. },
  16914. {
  16915. name: "Giantess",
  16916. height: math.unit(160, "meters")
  16917. },
  16918. {
  16919. name: "Titaness",
  16920. height: math.unit(800, "meters")
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16926. {
  16927. front: {
  16928. height: math.unit(6, "feet"),
  16929. weight: math.unit(150, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/alluria/front.svg",
  16933. extra: 806 / 738,
  16934. bottom: 0.01
  16935. }
  16936. },
  16937. side: {
  16938. height: math.unit(6, "feet"),
  16939. weight: math.unit(150, "lb"),
  16940. name: "Side",
  16941. image: {
  16942. source: "./media/characters/alluria/side.svg",
  16943. extra: 800 / 750,
  16944. }
  16945. },
  16946. back: {
  16947. height: math.unit(6, "feet"),
  16948. weight: math.unit(150, "lb"),
  16949. name: "Back",
  16950. image: {
  16951. source: "./media/characters/alluria/back.svg",
  16952. extra: 806 / 738,
  16953. }
  16954. },
  16955. frontMaid: {
  16956. height: math.unit(6, "feet"),
  16957. weight: math.unit(150, "lb"),
  16958. name: "Front (Maid)",
  16959. image: {
  16960. source: "./media/characters/alluria/front-maid.svg",
  16961. extra: 806 / 738,
  16962. bottom: 0.01
  16963. }
  16964. },
  16965. sideMaid: {
  16966. height: math.unit(6, "feet"),
  16967. weight: math.unit(150, "lb"),
  16968. name: "Side (Maid)",
  16969. image: {
  16970. source: "./media/characters/alluria/side-maid.svg",
  16971. extra: 800 / 750,
  16972. bottom: 0.005
  16973. }
  16974. },
  16975. backMaid: {
  16976. height: math.unit(6, "feet"),
  16977. weight: math.unit(150, "lb"),
  16978. name: "Back (Maid)",
  16979. image: {
  16980. source: "./media/characters/alluria/back-maid.svg",
  16981. extra: 806 / 738,
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Micro",
  16988. height: math.unit(6, "inches"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(6, "feet"),
  16998. weight: math.unit(150, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/kyle/front.svg",
  17002. extra: 1069 / 962,
  17003. bottom: 77.228 / 1727.45
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Macro",
  17010. height: math.unit(150, "feet"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(6, "feet"),
  17020. weight: math.unit(300, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/duncan/front.svg",
  17024. extra: 1650 / 1482,
  17025. bottom: 0.05
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Macro",
  17032. height: math.unit(100, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17039. {
  17040. front: {
  17041. height: math.unit(5 + 4 / 12, "feet"),
  17042. weight: math.unit(220, "lb"),
  17043. name: "Front",
  17044. image: {
  17045. source: "./media/characters/memory/front.svg",
  17046. extra: 3641 / 3545,
  17047. bottom: 0.03
  17048. }
  17049. },
  17050. back: {
  17051. height: math.unit(5 + 4 / 12, "feet"),
  17052. weight: math.unit(220, "lb"),
  17053. name: "Back",
  17054. image: {
  17055. source: "./media/characters/memory/back.svg",
  17056. extra: 3641 / 3545,
  17057. bottom: 0.025
  17058. }
  17059. },
  17060. frontSkirt: {
  17061. height: math.unit(5 + 4 / 12, "feet"),
  17062. weight: math.unit(220, "lb"),
  17063. name: "Front (Skirt)",
  17064. image: {
  17065. source: "./media/characters/memory/front-skirt.svg",
  17066. extra: 3641 / 3545,
  17067. bottom: 0.03
  17068. }
  17069. },
  17070. frontDress: {
  17071. height: math.unit(5 + 4 / 12, "feet"),
  17072. weight: math.unit(220, "lb"),
  17073. name: "Front (Dress)",
  17074. image: {
  17075. source: "./media/characters/memory/front-dress.svg",
  17076. extra: 3641 / 3545,
  17077. bottom: 0.03
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Micro",
  17084. height: math.unit(6, "inches"),
  17085. default: true
  17086. },
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(5 + 4 / 12, "feet")
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(4 + 11 / 12, "feet"),
  17098. weight: math.unit(100, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/luno/front.svg",
  17102. extra: 1535 / 1487,
  17103. bottom: 0.03
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Micro",
  17110. height: math.unit(3, "inches")
  17111. },
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(4 + 11 / 12, "feet"),
  17115. default: true
  17116. },
  17117. {
  17118. name: "Macro",
  17119. height: math.unit(300, "feet")
  17120. },
  17121. {
  17122. name: "Megamacro",
  17123. height: math.unit(700, "miles")
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17129. {
  17130. front: {
  17131. height: math.unit(6 + 2 / 12, "feet"),
  17132. weight: math.unit(170, "lb"),
  17133. name: "Front",
  17134. image: {
  17135. source: "./media/characters/jamesy/front.svg",
  17136. extra: 440 / 382,
  17137. bottom: 0.005
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Micro",
  17144. height: math.unit(3, "inches")
  17145. },
  17146. {
  17147. name: "Normal",
  17148. height: math.unit(6 + 2 / 12, "feet"),
  17149. default: true
  17150. },
  17151. {
  17152. name: "Macro",
  17153. height: math.unit(300, "feet")
  17154. },
  17155. {
  17156. name: "Megamacro",
  17157. height: math.unit(700, "miles")
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(6, "feet"),
  17166. weight: math.unit(160, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/mark/front.svg",
  17170. extra: 3300 / 3100,
  17171. bottom: 136.42 / 3440.47
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Macro",
  17178. height: math.unit(120, "meters")
  17179. },
  17180. {
  17181. name: "Bigger Macro",
  17182. height: math.unit(350, "meters")
  17183. },
  17184. {
  17185. name: "Megamacro",
  17186. height: math.unit(8, "km"),
  17187. default: true
  17188. },
  17189. {
  17190. name: "Continental",
  17191. height: math.unit(4550, "km")
  17192. },
  17193. {
  17194. name: "Planetary",
  17195. height: math.unit(65000, "km")
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(6, "feet"),
  17204. weight: math.unit(400, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/mac/front.svg",
  17208. extra: 1048 / 987.7,
  17209. bottom: 60 / 1107.6,
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Macro",
  17216. height: math.unit(500, "feet"),
  17217. default: true
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17223. {
  17224. front: {
  17225. height: math.unit(5 + 2 / 12, "feet"),
  17226. weight: math.unit(190, "lb"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/bari/front.svg",
  17230. extra: 3156 / 2880,
  17231. bottom: 0.03
  17232. }
  17233. },
  17234. back: {
  17235. height: math.unit(5 + 2 / 12, "feet"),
  17236. weight: math.unit(190, "lb"),
  17237. name: "Back",
  17238. image: {
  17239. source: "./media/characters/bari/back.svg",
  17240. extra: 3260 / 2834,
  17241. bottom: 0.025
  17242. }
  17243. },
  17244. frontPlush: {
  17245. height: math.unit(5 + 2 / 12, "feet"),
  17246. weight: math.unit(190, "lb"),
  17247. name: "Front (Plush)",
  17248. image: {
  17249. source: "./media/characters/bari/front-plush.svg",
  17250. extra: 1112 / 1061,
  17251. bottom: 0.002
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Micro",
  17258. height: math.unit(3, "inches")
  17259. },
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(5 + 2 / 12, "feet"),
  17263. default: true
  17264. },
  17265. {
  17266. name: "Macro",
  17267. height: math.unit(20, "feet")
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(6 + 1 / 12, "feet"),
  17276. weight: math.unit(275, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/hunter-misha-raven/front.svg"
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Mortal",
  17286. height: math.unit(6 + 1 / 12, "feet")
  17287. },
  17288. {
  17289. name: "Divine",
  17290. height: math.unit(1.12134e34, "parsecs"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(6 + 3 / 12, "feet"),
  17300. weight: math.unit(220, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/max-calore/front.svg",
  17304. extra: 1700 / 1648,
  17305. bottom: 0.01
  17306. }
  17307. },
  17308. back: {
  17309. height: math.unit(6 + 3 / 12, "feet"),
  17310. weight: math.unit(220, "lb"),
  17311. name: "Back",
  17312. image: {
  17313. source: "./media/characters/max-calore/back.svg",
  17314. extra: 1700 / 1648,
  17315. bottom: 0.01
  17316. }
  17317. },
  17318. },
  17319. [
  17320. {
  17321. name: "Normal",
  17322. height: math.unit(6 + 3 / 12, "feet"),
  17323. default: true
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17329. {
  17330. side: {
  17331. height: math.unit(2 + 8 / 12, "feet"),
  17332. weight: math.unit(99, "lb"),
  17333. name: "Side",
  17334. image: {
  17335. source: "./media/characters/aspen/side.svg",
  17336. extra: 152 / 138,
  17337. bottom: 0.032
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(2 + 8 / 12, "feet"),
  17345. default: true
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17351. {
  17352. side: {
  17353. height: math.unit(3 + 2 / 12, "feet"),
  17354. weight: math.unit(224, "lb"),
  17355. name: "Side",
  17356. image: {
  17357. source: "./media/characters/sheila-feral-wolf/side.svg",
  17358. extra: 179 / 166,
  17359. bottom: 0.03
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(3 + 2 / 12, "feet"),
  17367. default: true
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17373. {
  17374. side: {
  17375. height: math.unit(1 + 9 / 12, "feet"),
  17376. weight: math.unit(38, "lb"),
  17377. name: "Side",
  17378. image: {
  17379. source: "./media/characters/michelle/side.svg",
  17380. extra: 147 / 136.7,
  17381. bottom: 0.03
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(1 + 9 / 12, "feet"),
  17389. default: true
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(1.54, "feet"),
  17398. weight: math.unit(50, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/nino/front.svg"
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(1.54, "feet"),
  17409. default: true
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(1.49, "feet"),
  17418. weight: math.unit(45, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/viola/front.svg"
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(1.49, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(6 + 5 / 12, "feet"),
  17438. weight: math.unit(580, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/atlas/front.svg",
  17442. extra: 298.5 / 290,
  17443. bottom: 0.015
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(6 + 5 / 12, "feet"),
  17451. default: true
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17457. {
  17458. side: {
  17459. height: math.unit(15.6, "inches"),
  17460. weight: math.unit(10, "lb"),
  17461. name: "Side",
  17462. image: {
  17463. source: "./media/characters/davy/side.svg",
  17464. extra: 200 / 170,
  17465. bottom: 0.01
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(15.6, "inches"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17479. {
  17480. side: {
  17481. height: math.unit(4 + 8 / 12, "feet"),
  17482. weight: math.unit(166, "lb"),
  17483. name: "Side",
  17484. image: {
  17485. source: "./media/characters/fiona/side.svg",
  17486. extra: 232 / 220,
  17487. bottom: 0.03
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(4 + 8 / 12, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17501. {
  17502. front: {
  17503. height: math.unit(26, "inches"),
  17504. weight: math.unit(35, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/lyla/front.svg",
  17508. bottom: 0.1
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(3, "feet"),
  17516. default: true
  17517. },
  17518. ]
  17519. ))
  17520. characterMakers.push(() => makeCharacter(
  17521. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17522. {
  17523. side: {
  17524. height: math.unit(1.8, "feet"),
  17525. weight: math.unit(44, "lb"),
  17526. name: "Side",
  17527. image: {
  17528. source: "./media/characters/perseus/side.svg",
  17529. bottom: 0.21
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(1.8, "feet"),
  17537. default: true
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17543. {
  17544. side: {
  17545. height: math.unit(4 + 2 / 12, "feet"),
  17546. weight: math.unit(20, "lb"),
  17547. name: "Side",
  17548. image: {
  17549. source: "./media/characters/remus/side.svg"
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(4 + 2 / 12, "feet"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(4 + 11 / 12, "feet"),
  17566. weight: math.unit(114, "lb"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/raf/front.svg",
  17570. extra: 1504/1339,
  17571. bottom: 26/1530
  17572. }
  17573. },
  17574. side: {
  17575. height: math.unit(4 + 11 / 12, "feet"),
  17576. weight: math.unit(114, "lb"),
  17577. name: "Side",
  17578. image: {
  17579. source: "./media/characters/raf/side.svg",
  17580. extra: 1466/1316,
  17581. bottom: 29/1495
  17582. }
  17583. },
  17584. },
  17585. [
  17586. {
  17587. name: "Micro",
  17588. height: math.unit(2, "inches")
  17589. },
  17590. {
  17591. name: "Normal",
  17592. height: math.unit(4 + 11 / 12, "feet"),
  17593. default: true
  17594. },
  17595. {
  17596. name: "Macro",
  17597. height: math.unit(70, "feet")
  17598. },
  17599. ]
  17600. ))
  17601. characterMakers.push(() => makeCharacter(
  17602. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17603. {
  17604. front: {
  17605. height: math.unit(1.5, "meters"),
  17606. weight: math.unit(68, "kg"),
  17607. name: "Front",
  17608. image: {
  17609. source: "./media/characters/liam-einarr/front.svg",
  17610. extra: 2822 / 2666
  17611. }
  17612. },
  17613. back: {
  17614. height: math.unit(1.5, "meters"),
  17615. weight: math.unit(68, "kg"),
  17616. name: "Back",
  17617. image: {
  17618. source: "./media/characters/liam-einarr/back.svg",
  17619. extra: 2822 / 2666,
  17620. bottom: 0.015
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(1.5, "meters"),
  17628. default: true
  17629. },
  17630. {
  17631. name: "Macro",
  17632. height: math.unit(150, "meters")
  17633. },
  17634. {
  17635. name: "Megamacro",
  17636. height: math.unit(35, "km")
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17642. {
  17643. front: {
  17644. height: math.unit(6, "feet"),
  17645. weight: math.unit(75, "kg"),
  17646. name: "Front",
  17647. image: {
  17648. source: "./media/characters/linda/front.svg",
  17649. extra: 930 / 874,
  17650. bottom: 0.004
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(6, "feet"),
  17658. default: true
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17664. {
  17665. front: {
  17666. height: math.unit(6 + 8 / 12, "feet"),
  17667. weight: math.unit(220, "lb"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/caylex/front.svg",
  17671. extra: 821 / 772,
  17672. bottom: 0.07
  17673. }
  17674. },
  17675. back: {
  17676. height: math.unit(6 + 8 / 12, "feet"),
  17677. weight: math.unit(220, "lb"),
  17678. name: "Back",
  17679. image: {
  17680. source: "./media/characters/caylex/back.svg",
  17681. extra: 821 / 772,
  17682. bottom: 0.022
  17683. }
  17684. },
  17685. hand: {
  17686. height: math.unit(1.25, "feet"),
  17687. name: "Hand",
  17688. image: {
  17689. source: "./media/characters/caylex/hand.svg"
  17690. }
  17691. },
  17692. foot: {
  17693. height: math.unit(1.6, "feet"),
  17694. name: "Foot",
  17695. image: {
  17696. source: "./media/characters/caylex/foot.svg"
  17697. }
  17698. },
  17699. armored: {
  17700. height: math.unit(6 + 8 / 12, "feet"),
  17701. weight: math.unit(250, "lb"),
  17702. name: "Armored",
  17703. image: {
  17704. source: "./media/characters/caylex/armored.svg",
  17705. extra: 1420 / 1310,
  17706. bottom: 0.045
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Normal",
  17713. height: math.unit(6 + 8 / 12, "feet"),
  17714. default: true
  17715. },
  17716. {
  17717. name: "Normal+",
  17718. height: math.unit(12, "feet")
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17724. {
  17725. front: {
  17726. height: math.unit(7 + 6 / 12, "feet"),
  17727. weight: math.unit(288, "lb"),
  17728. name: "Front",
  17729. image: {
  17730. source: "./media/characters/alana/front.svg",
  17731. extra: 679 / 653,
  17732. bottom: 22.5 / 701
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(7 + 6 / 12, "feet")
  17740. },
  17741. {
  17742. name: "Large",
  17743. height: math.unit(50, "feet")
  17744. },
  17745. {
  17746. name: "Macro",
  17747. height: math.unit(100, "feet"),
  17748. default: true
  17749. },
  17750. {
  17751. name: "Macro+",
  17752. height: math.unit(200, "feet")
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(6 + 1 / 12, "feet"),
  17761. weight: math.unit(210, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/hasani/front.svg",
  17765. extra: 244 / 232,
  17766. bottom: 0.01
  17767. }
  17768. },
  17769. back: {
  17770. height: math.unit(6 + 1 / 12, "feet"),
  17771. weight: math.unit(210, "lb"),
  17772. name: "Back",
  17773. image: {
  17774. source: "./media/characters/hasani/back.svg",
  17775. extra: 244 / 232,
  17776. bottom: 0.01
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(6 + 1 / 12, "feet")
  17784. },
  17785. {
  17786. name: "Macro",
  17787. height: math.unit(175, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(1.82, "meters"),
  17797. weight: math.unit(140, "lb"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/nita/front.svg",
  17801. extra: 2473 / 2363,
  17802. bottom: 0.01
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(1.82, "m")
  17810. },
  17811. {
  17812. name: "Macro",
  17813. height: math.unit(300, "m")
  17814. },
  17815. {
  17816. name: "Mistake Canon",
  17817. height: math.unit(0.5, "miles"),
  17818. default: true
  17819. },
  17820. {
  17821. name: "Big Mistake",
  17822. height: math.unit(13, "miles")
  17823. },
  17824. {
  17825. name: "Playing God",
  17826. height: math.unit(2450, "miles")
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(4, "feet"),
  17835. weight: math.unit(120, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/shiriko/front.svg",
  17839. extra: 970/934,
  17840. bottom: 5/975
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(4, "feet"),
  17848. default: true
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17854. {
  17855. front: {
  17856. height: math.unit(6, "feet"),
  17857. name: "front",
  17858. image: {
  17859. source: "./media/characters/deja/front.svg",
  17860. extra: 926 / 840,
  17861. bottom: 0.07
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Planck Length",
  17868. height: math.unit(1.6e-35, "meters")
  17869. },
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(30.48, "meters"),
  17873. default: true
  17874. },
  17875. {
  17876. name: "Universal",
  17877. height: math.unit(8.8e26, "meters")
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17883. {
  17884. side: {
  17885. height: math.unit(8, "feet"),
  17886. weight: math.unit(6300, "lb"),
  17887. name: "Side",
  17888. image: {
  17889. source: "./media/characters/anima/side.svg",
  17890. bottom: 0.035
  17891. }
  17892. },
  17893. },
  17894. [
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(8, "feet"),
  17898. default: true
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(8, "feet"),
  17907. weight: math.unit(350, "lb"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/bianca/front.svg",
  17911. extra: 234 / 225,
  17912. bottom: 0.03
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(8, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(6, "feet"),
  17929. weight: math.unit(150, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/adinia/front.svg",
  17933. extra: 1845 / 1672,
  17934. bottom: 0.02
  17935. }
  17936. },
  17937. back: {
  17938. height: math.unit(6, "feet"),
  17939. weight: math.unit(150, "lb"),
  17940. name: "Back",
  17941. image: {
  17942. source: "./media/characters/adinia/back.svg",
  17943. extra: 1845 / 1672,
  17944. bottom: 0.002
  17945. }
  17946. },
  17947. },
  17948. [
  17949. {
  17950. name: "Normal",
  17951. height: math.unit(11 + 5 / 12, "feet"),
  17952. default: true
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17958. {
  17959. front: {
  17960. height: math.unit(3, "meters"),
  17961. weight: math.unit(200, "kg"),
  17962. name: "Front",
  17963. image: {
  17964. source: "./media/characters/lykasa/front.svg",
  17965. extra: 1076 / 976,
  17966. bottom: 0.06
  17967. }
  17968. },
  17969. },
  17970. [
  17971. {
  17972. name: "Normal",
  17973. height: math.unit(3, "meters")
  17974. },
  17975. {
  17976. name: "Kaiju",
  17977. height: math.unit(120, "meters"),
  17978. default: true
  17979. },
  17980. {
  17981. name: "Mega Kaiju",
  17982. height: math.unit(240, "km")
  17983. },
  17984. {
  17985. name: "Giga Kaiju",
  17986. height: math.unit(400, "megameters")
  17987. },
  17988. {
  17989. name: "Tera Kaiju",
  17990. height: math.unit(800, "gigameters")
  17991. },
  17992. {
  17993. name: "Kaiju Dragon Goddess",
  17994. height: math.unit(26, "zettaparsecs")
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18000. {
  18001. side: {
  18002. height: math.unit(283 / 124 * 6, "feet"),
  18003. weight: math.unit(35000, "lb"),
  18004. name: "Side",
  18005. image: {
  18006. source: "./media/characters/malfaren/side.svg",
  18007. extra: 1310/529,
  18008. bottom: 24/1334
  18009. }
  18010. },
  18011. front: {
  18012. height: math.unit(22.36, "feet"),
  18013. weight: math.unit(35000, "lb"),
  18014. name: "Front",
  18015. image: {
  18016. source: "./media/characters/malfaren/front.svg",
  18017. extra: 1237/1115,
  18018. bottom: 32/1269
  18019. }
  18020. },
  18021. maw: {
  18022. height: math.unit(6.9, "feet"),
  18023. name: "Maw",
  18024. image: {
  18025. source: "./media/characters/malfaren/maw.svg"
  18026. }
  18027. },
  18028. dick: {
  18029. height: math.unit(6.19, "feet"),
  18030. name: "Dick",
  18031. image: {
  18032. source: "./media/characters/malfaren/dick.svg"
  18033. }
  18034. },
  18035. eye: {
  18036. height: math.unit(0.69, "feet"),
  18037. name: "Eye",
  18038. image: {
  18039. source: "./media/characters/malfaren/eye.svg"
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Big",
  18046. height: math.unit(283 / 162 * 6, "feet"),
  18047. },
  18048. {
  18049. name: "Bigger",
  18050. height: math.unit(283 / 124 * 6, "feet")
  18051. },
  18052. {
  18053. name: "Massive",
  18054. height: math.unit(283 / 92 * 6, "feet"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "👀💦",
  18059. height: math.unit(283 / 73 * 6, "feet"),
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(1.7, "m"),
  18068. weight: math.unit(70, "kg"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/kernel/front.svg",
  18072. extra: 222 / 210,
  18073. bottom: 0.007
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Nano",
  18080. height: math.unit(17, "micrometers")
  18081. },
  18082. {
  18083. name: "Micro",
  18084. height: math.unit(1.7, "mm")
  18085. },
  18086. {
  18087. name: "Small",
  18088. height: math.unit(1.7, "cm")
  18089. },
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(1.7, "m"),
  18093. default: true
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(1.75, "meters"),
  18102. weight: math.unit(65, "kg"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/jayne-folest/front.svg",
  18106. extra: 2115 / 2007,
  18107. bottom: 0.02
  18108. }
  18109. },
  18110. back: {
  18111. height: math.unit(1.75, "meters"),
  18112. weight: math.unit(65, "kg"),
  18113. name: "Back",
  18114. image: {
  18115. source: "./media/characters/jayne-folest/back.svg",
  18116. extra: 2115 / 2007,
  18117. bottom: 0.005
  18118. }
  18119. },
  18120. frontClothed: {
  18121. height: math.unit(1.75, "meters"),
  18122. weight: math.unit(65, "kg"),
  18123. name: "Front (Clothed)",
  18124. image: {
  18125. source: "./media/characters/jayne-folest/front-clothed.svg",
  18126. extra: 2115 / 2007,
  18127. bottom: 0.035
  18128. }
  18129. },
  18130. hand: {
  18131. height: math.unit(1 / 1.260, "feet"),
  18132. name: "Hand",
  18133. image: {
  18134. source: "./media/characters/jayne-folest/hand.svg"
  18135. }
  18136. },
  18137. foot: {
  18138. height: math.unit(1 / 0.918, "feet"),
  18139. name: "Foot",
  18140. image: {
  18141. source: "./media/characters/jayne-folest/foot.svg"
  18142. }
  18143. },
  18144. },
  18145. [
  18146. {
  18147. name: "Micro",
  18148. height: math.unit(4, "cm")
  18149. },
  18150. {
  18151. name: "Normal",
  18152. height: math.unit(1.75, "meters")
  18153. },
  18154. {
  18155. name: "Macro",
  18156. height: math.unit(47.5, "meters"),
  18157. default: true
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(180, "cm"),
  18166. weight: math.unit(70, "kg"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/algier/front.svg",
  18170. extra: 596 / 572,
  18171. bottom: 0.04
  18172. }
  18173. },
  18174. back: {
  18175. height: math.unit(180, "cm"),
  18176. weight: math.unit(70, "kg"),
  18177. name: "Back",
  18178. image: {
  18179. source: "./media/characters/algier/back.svg",
  18180. extra: 596 / 572,
  18181. bottom: 0.025
  18182. }
  18183. },
  18184. frontdressed: {
  18185. height: math.unit(180, "cm"),
  18186. weight: math.unit(150, "kg"),
  18187. name: "Front-dressed",
  18188. image: {
  18189. source: "./media/characters/algier/front-dressed.svg",
  18190. extra: 596 / 572,
  18191. bottom: 0.038
  18192. }
  18193. },
  18194. },
  18195. [
  18196. {
  18197. name: "Micro",
  18198. height: math.unit(5, "cm")
  18199. },
  18200. {
  18201. name: "Normal",
  18202. height: math.unit(180, "cm"),
  18203. default: true
  18204. },
  18205. {
  18206. name: "Macro",
  18207. height: math.unit(64, "m")
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18213. {
  18214. upright: {
  18215. height: math.unit(7, "feet"),
  18216. weight: math.unit(300, "lb"),
  18217. name: "Upright",
  18218. image: {
  18219. source: "./media/characters/pretzel/upright.svg",
  18220. extra: 534 / 522,
  18221. bottom: 0.065
  18222. }
  18223. },
  18224. sprawling: {
  18225. height: math.unit(3.75, "feet"),
  18226. weight: math.unit(300, "lb"),
  18227. name: "Sprawling",
  18228. image: {
  18229. source: "./media/characters/pretzel/sprawling.svg",
  18230. extra: 314 / 281,
  18231. bottom: 0.1
  18232. }
  18233. },
  18234. tongue: {
  18235. height: math.unit(2, "feet"),
  18236. name: "Tongue",
  18237. image: {
  18238. source: "./media/characters/pretzel/tongue.svg"
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(7, "feet"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "Oversized",
  18250. height: math.unit(15, "feet")
  18251. },
  18252. {
  18253. name: "Huge",
  18254. height: math.unit(30, "feet")
  18255. },
  18256. {
  18257. name: "Macro",
  18258. height: math.unit(250, "feet")
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18264. {
  18265. sideFront: {
  18266. height: math.unit(5 + 2 / 12, "feet"),
  18267. weight: math.unit(120, "lb"),
  18268. name: "Front Side",
  18269. image: {
  18270. source: "./media/characters/roxi/side-front.svg",
  18271. extra: 2924 / 2717,
  18272. bottom: 0.08
  18273. }
  18274. },
  18275. sideBack: {
  18276. height: math.unit(5 + 2 / 12, "feet"),
  18277. weight: math.unit(120, "lb"),
  18278. name: "Back Side",
  18279. image: {
  18280. source: "./media/characters/roxi/side-back.svg",
  18281. extra: 2904 / 2693,
  18282. bottom: 0.06
  18283. }
  18284. },
  18285. front: {
  18286. height: math.unit(5 + 2 / 12, "feet"),
  18287. weight: math.unit(120, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/roxi/front.svg",
  18291. extra: 2028 / 1907,
  18292. bottom: 0.01
  18293. }
  18294. },
  18295. frontAlt: {
  18296. height: math.unit(5 + 2 / 12, "feet"),
  18297. weight: math.unit(120, "lb"),
  18298. name: "Front (Alt)",
  18299. image: {
  18300. source: "./media/characters/roxi/front-alt.svg",
  18301. extra: 1828 / 1798,
  18302. bottom: 0.01
  18303. }
  18304. },
  18305. sitting: {
  18306. height: math.unit(2.8, "feet"),
  18307. weight: math.unit(120, "lb"),
  18308. name: "Sitting",
  18309. image: {
  18310. source: "./media/characters/roxi/sitting.svg",
  18311. extra: 2660 / 2462,
  18312. bottom: 0.1
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Normal",
  18319. height: math.unit(5 + 2 / 12, "feet"),
  18320. default: true
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18326. {
  18327. side: {
  18328. height: math.unit(55, "feet"),
  18329. weight: math.unit(153, "tons"),
  18330. name: "Side",
  18331. image: {
  18332. source: "./media/characters/shadow/side.svg",
  18333. extra: 701 / 628,
  18334. bottom: 0.02
  18335. }
  18336. },
  18337. flying: {
  18338. height: math.unit(145, "feet"),
  18339. weight: math.unit(153, "tons"),
  18340. name: "Flying",
  18341. image: {
  18342. source: "./media/characters/shadow/flying.svg"
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(55, "feet"),
  18350. default: true
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18356. {
  18357. front: {
  18358. height: math.unit(6, "feet"),
  18359. weight: math.unit(200, "lb"),
  18360. name: "Front",
  18361. image: {
  18362. source: "./media/characters/marcie/front.svg",
  18363. extra: 960 / 876,
  18364. bottom: 58 / 1017.87
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Macro",
  18371. height: math.unit(1, "mile"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18378. {
  18379. front: {
  18380. height: math.unit(7, "feet"),
  18381. weight: math.unit(200, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/kachina/front.svg",
  18385. extra: 1290.68 / 1119,
  18386. bottom: 36.5 / 1327.18
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(7, "feet"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18400. {
  18401. looking: {
  18402. height: math.unit(2, "meters"),
  18403. weight: math.unit(300, "kg"),
  18404. name: "Looking",
  18405. image: {
  18406. source: "./media/characters/kash/looking.svg",
  18407. extra: 474 / 344,
  18408. bottom: 0.03
  18409. }
  18410. },
  18411. side: {
  18412. height: math.unit(2, "meters"),
  18413. weight: math.unit(300, "kg"),
  18414. name: "Side",
  18415. image: {
  18416. source: "./media/characters/kash/side.svg",
  18417. extra: 302 / 251,
  18418. bottom: 0.03
  18419. }
  18420. },
  18421. front: {
  18422. height: math.unit(2, "meters"),
  18423. weight: math.unit(300, "kg"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/kash/front.svg",
  18427. extra: 495 / 360,
  18428. bottom: 0.015
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(2, "meters"),
  18436. default: true
  18437. },
  18438. {
  18439. name: "Big",
  18440. height: math.unit(3, "meters")
  18441. },
  18442. {
  18443. name: "Large",
  18444. height: math.unit(5, "meters")
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18450. {
  18451. feeding: {
  18452. height: math.unit(6.7, "feet"),
  18453. weight: math.unit(350, "lb"),
  18454. name: "Feeding",
  18455. image: {
  18456. source: "./media/characters/lalim/feeding.svg",
  18457. }
  18458. },
  18459. },
  18460. [
  18461. {
  18462. name: "Normal",
  18463. height: math.unit(6.7, "feet"),
  18464. default: true
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(9.5, "feet"),
  18473. weight: math.unit(600, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/de'vout/front.svg",
  18477. extra: 1443 / 1328,
  18478. bottom: 0.025
  18479. }
  18480. },
  18481. back: {
  18482. height: math.unit(9.5, "feet"),
  18483. weight: math.unit(600, "lb"),
  18484. name: "Back",
  18485. image: {
  18486. source: "./media/characters/de'vout/back.svg",
  18487. extra: 1443 / 1328
  18488. }
  18489. },
  18490. frontDressed: {
  18491. height: math.unit(9.5, "feet"),
  18492. weight: math.unit(600, "lb"),
  18493. name: "Front (Dressed",
  18494. image: {
  18495. source: "./media/characters/de'vout/front-dressed.svg",
  18496. extra: 1443 / 1328,
  18497. bottom: 0.025
  18498. }
  18499. },
  18500. backDressed: {
  18501. height: math.unit(9.5, "feet"),
  18502. weight: math.unit(600, "lb"),
  18503. name: "Back (Dressed",
  18504. image: {
  18505. source: "./media/characters/de'vout/back-dressed.svg",
  18506. extra: 1443 / 1328
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(9.5, "feet"),
  18514. default: true
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18520. {
  18521. front: {
  18522. height: math.unit(8, "feet"),
  18523. weight: math.unit(225, "lb"),
  18524. name: "Front",
  18525. image: {
  18526. source: "./media/characters/talana/front.svg",
  18527. extra: 1410 / 1300,
  18528. bottom: 0.015
  18529. }
  18530. },
  18531. frontDressed: {
  18532. height: math.unit(8, "feet"),
  18533. weight: math.unit(225, "lb"),
  18534. name: "Front (Dressed",
  18535. image: {
  18536. source: "./media/characters/talana/front-dressed.svg",
  18537. extra: 1410 / 1300,
  18538. bottom: 0.015
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(8, "feet"),
  18546. default: true
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18552. {
  18553. side: {
  18554. height: math.unit(7.2, "feet"),
  18555. weight: math.unit(150, "lb"),
  18556. name: "Side",
  18557. image: {
  18558. source: "./media/characters/xeauvok/side.svg",
  18559. extra: 1975 / 1523,
  18560. bottom: 0.07
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(7.2, "feet"),
  18568. default: true
  18569. },
  18570. ]
  18571. ))
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18574. {
  18575. side: {
  18576. height: math.unit(10, "feet"),
  18577. weight: math.unit(900, "kg"),
  18578. name: "Side",
  18579. image: {
  18580. source: "./media/characters/zara/side.svg",
  18581. extra: 504 / 498
  18582. }
  18583. },
  18584. },
  18585. [
  18586. {
  18587. name: "Normal",
  18588. height: math.unit(10, "feet"),
  18589. default: true
  18590. },
  18591. ]
  18592. ))
  18593. characterMakers.push(() => makeCharacter(
  18594. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18595. {
  18596. side: {
  18597. height: math.unit(6, "feet"),
  18598. weight: math.unit(150, "lb"),
  18599. name: "Side",
  18600. image: {
  18601. source: "./media/characters/richard-dragon/side.svg",
  18602. extra: 845 / 340,
  18603. bottom: 0.017
  18604. }
  18605. },
  18606. maw: {
  18607. height: math.unit(2.97, "feet"),
  18608. name: "Maw",
  18609. image: {
  18610. source: "./media/characters/richard-dragon/maw.svg"
  18611. }
  18612. },
  18613. },
  18614. [
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18619. {
  18620. front: {
  18621. height: math.unit(4, "feet"),
  18622. weight: math.unit(100, "lb"),
  18623. name: "Front",
  18624. image: {
  18625. source: "./media/characters/richard-smeargle/front.svg",
  18626. extra: 2952 / 2820,
  18627. bottom: 0.028
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(4, "feet"),
  18635. default: true
  18636. },
  18637. {
  18638. name: "Dynamax",
  18639. height: math.unit(20, "meters")
  18640. },
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18645. {
  18646. front: {
  18647. height: math.unit(6, "feet"),
  18648. weight: math.unit(110, "lb"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/klay/front.svg",
  18652. extra: 962 / 883,
  18653. bottom: 0.04
  18654. }
  18655. },
  18656. back: {
  18657. height: math.unit(6, "feet"),
  18658. weight: math.unit(110, "lb"),
  18659. name: "Back",
  18660. image: {
  18661. source: "./media/characters/klay/back.svg",
  18662. extra: 962 / 883
  18663. }
  18664. },
  18665. beans: {
  18666. height: math.unit(1.15, "feet"),
  18667. name: "Beans",
  18668. image: {
  18669. source: "./media/characters/klay/beans.svg"
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Micro",
  18676. height: math.unit(6, "inches")
  18677. },
  18678. {
  18679. name: "Mini",
  18680. height: math.unit(3, "feet")
  18681. },
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(6, "feet"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Big",
  18689. height: math.unit(25, "feet")
  18690. },
  18691. {
  18692. name: "Macro",
  18693. height: math.unit(100, "feet")
  18694. },
  18695. {
  18696. name: "Megamacro",
  18697. height: math.unit(400, "feet")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(6, "feet"),
  18706. weight: math.unit(160, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/marcus/front.svg",
  18710. extra: 734 / 676,
  18711. bottom: 0.03
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Little",
  18718. height: math.unit(6, "feet")
  18719. },
  18720. {
  18721. name: "Normal",
  18722. height: math.unit(110, "feet"),
  18723. default: true
  18724. },
  18725. {
  18726. name: "Macro",
  18727. height: math.unit(250, "feet")
  18728. },
  18729. {
  18730. name: "Megamacro",
  18731. height: math.unit(1000, "feet")
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(7, "feet"),
  18740. weight: math.unit(275, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/claude-delroute/front.svg",
  18744. extra: 902/827,
  18745. bottom: 26/928
  18746. }
  18747. },
  18748. side: {
  18749. height: math.unit(7, "feet"),
  18750. weight: math.unit(275, "lb"),
  18751. name: "Side",
  18752. image: {
  18753. source: "./media/characters/claude-delroute/side.svg",
  18754. extra: 908/853,
  18755. bottom: 16/924
  18756. }
  18757. },
  18758. back: {
  18759. height: math.unit(7, "feet"),
  18760. weight: math.unit(275, "lb"),
  18761. name: "Back",
  18762. image: {
  18763. source: "./media/characters/claude-delroute/back.svg",
  18764. extra: 911/829,
  18765. bottom: 18/929
  18766. }
  18767. },
  18768. maw: {
  18769. height: math.unit(0.6407, "meters"),
  18770. name: "Maw",
  18771. image: {
  18772. source: "./media/characters/claude-delroute/maw.svg"
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(7, "feet"),
  18780. default: true
  18781. },
  18782. {
  18783. name: "Lorge",
  18784. height: math.unit(20, "feet")
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(8 + 4 / 12, "feet"),
  18793. weight: math.unit(600, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/dragonien/front.svg",
  18797. extra: 100 / 94,
  18798. bottom: 3.3 / 103.3445
  18799. }
  18800. },
  18801. back: {
  18802. height: math.unit(8 + 4 / 12, "feet"),
  18803. weight: math.unit(600, "lb"),
  18804. name: "Back",
  18805. image: {
  18806. source: "./media/characters/dragonien/back.svg",
  18807. extra: 776 / 746,
  18808. bottom: 6.4 / 782.0616
  18809. }
  18810. },
  18811. foot: {
  18812. height: math.unit(1.54, "feet"),
  18813. name: "Foot",
  18814. image: {
  18815. source: "./media/characters/dragonien/foot.svg",
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Normal",
  18822. height: math.unit(8 + 4 / 12, "feet"),
  18823. default: true
  18824. },
  18825. {
  18826. name: "Macro",
  18827. height: math.unit(200, "feet")
  18828. },
  18829. {
  18830. name: "Megamacro",
  18831. height: math.unit(1, "mile")
  18832. },
  18833. {
  18834. name: "Gigamacro",
  18835. height: math.unit(1000, "miles")
  18836. },
  18837. ]
  18838. ))
  18839. characterMakers.push(() => makeCharacter(
  18840. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18841. {
  18842. front: {
  18843. height: math.unit(5 + 2 / 12, "feet"),
  18844. weight: math.unit(110, "lb"),
  18845. name: "Front",
  18846. image: {
  18847. source: "./media/characters/desta/front.svg",
  18848. extra: 767 / 726,
  18849. bottom: 11.7 / 779
  18850. }
  18851. },
  18852. back: {
  18853. height: math.unit(5 + 2 / 12, "feet"),
  18854. weight: math.unit(110, "lb"),
  18855. name: "Back",
  18856. image: {
  18857. source: "./media/characters/desta/back.svg",
  18858. extra: 777 / 728,
  18859. bottom: 6 / 784
  18860. }
  18861. },
  18862. frontAlt: {
  18863. height: math.unit(5 + 2 / 12, "feet"),
  18864. weight: math.unit(110, "lb"),
  18865. name: "Front",
  18866. image: {
  18867. source: "./media/characters/desta/front-alt.svg",
  18868. extra: 1482 / 1417
  18869. }
  18870. },
  18871. side: {
  18872. height: math.unit(5 + 2 / 12, "feet"),
  18873. weight: math.unit(110, "lb"),
  18874. name: "Side",
  18875. image: {
  18876. source: "./media/characters/desta/side.svg",
  18877. extra: 2579 / 2491,
  18878. bottom: 0.053
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Micro",
  18885. height: math.unit(6, "inches")
  18886. },
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(5 + 2 / 12, "feet"),
  18890. default: true
  18891. },
  18892. {
  18893. name: "Macro",
  18894. height: math.unit(62, "feet")
  18895. },
  18896. {
  18897. name: "Megamacro",
  18898. height: math.unit(1800, "feet")
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18904. {
  18905. front: {
  18906. height: math.unit(10, "feet"),
  18907. weight: math.unit(700, "lb"),
  18908. name: "Front",
  18909. image: {
  18910. source: "./media/characters/storm-alystar/front.svg",
  18911. extra: 2112 / 1898,
  18912. bottom: 0.034
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Micro",
  18919. height: math.unit(3.5, "inches")
  18920. },
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(10, "feet"),
  18924. default: true
  18925. },
  18926. {
  18927. name: "Macro",
  18928. height: math.unit(400, "feet")
  18929. },
  18930. {
  18931. name: "Deific",
  18932. height: math.unit(60, "miles")
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(2.35, "meters"),
  18941. weight: math.unit(119, "kg"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/ilia/front.svg",
  18945. extra: 1285 / 1255,
  18946. bottom: 0.06
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(2.35, "meters")
  18954. },
  18955. {
  18956. name: "Macro",
  18957. height: math.unit(140, "meters"),
  18958. default: true
  18959. },
  18960. {
  18961. name: "Megamacro",
  18962. height: math.unit(100, "miles")
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18968. {
  18969. front: {
  18970. height: math.unit(6 + 5 / 12, "feet"),
  18971. weight: math.unit(190, "lb"),
  18972. name: "Front",
  18973. image: {
  18974. source: "./media/characters/kingdead/front.svg",
  18975. extra: 1228 / 1177
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Micro",
  18982. height: math.unit(7, "inches")
  18983. },
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(6 + 5 / 12, "feet")
  18987. },
  18988. {
  18989. name: "Macro",
  18990. height: math.unit(150, "feet"),
  18991. default: true
  18992. },
  18993. {
  18994. name: "Megamacro",
  18995. height: math.unit(200, "miles")
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(8, "feet"),
  19004. weight: math.unit(600, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/kyrehx/front.svg",
  19008. extra: 1195 / 1095,
  19009. bottom: 0.034
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Micro",
  19016. height: math.unit(2, "inches")
  19017. },
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(8, "feet"),
  19021. default: true
  19022. },
  19023. {
  19024. name: "Macro",
  19025. height: math.unit(255, "feet")
  19026. },
  19027. ]
  19028. ))
  19029. characterMakers.push(() => makeCharacter(
  19030. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19031. {
  19032. front: {
  19033. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19034. weight: math.unit(184, "lb"),
  19035. name: "Front",
  19036. image: {
  19037. source: "./media/characters/xang/front.svg",
  19038. extra: 845 / 755
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19046. default: true
  19047. },
  19048. {
  19049. name: "Macro",
  19050. height: math.unit(0.935 * 146, "feet")
  19051. },
  19052. {
  19053. name: "Megamacro",
  19054. height: math.unit(0.935 * 3, "miles")
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19060. {
  19061. frontDressed: {
  19062. height: math.unit(5 + 7 / 12, "feet"),
  19063. weight: math.unit(140, "lb"),
  19064. name: "Front (Dressed)",
  19065. image: {
  19066. source: "./media/characters/doc-weardno/front-dressed.svg",
  19067. extra: 263 / 234
  19068. }
  19069. },
  19070. backDressed: {
  19071. height: math.unit(5 + 7 / 12, "feet"),
  19072. weight: math.unit(140, "lb"),
  19073. name: "Back (Dressed)",
  19074. image: {
  19075. source: "./media/characters/doc-weardno/back-dressed.svg",
  19076. extra: 266 / 238
  19077. }
  19078. },
  19079. front: {
  19080. height: math.unit(5 + 7 / 12, "feet"),
  19081. weight: math.unit(140, "lb"),
  19082. name: "Front",
  19083. image: {
  19084. source: "./media/characters/doc-weardno/front.svg",
  19085. extra: 254 / 233
  19086. }
  19087. },
  19088. },
  19089. [
  19090. {
  19091. name: "Micro",
  19092. height: math.unit(3, "inches")
  19093. },
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(5 + 7 / 12, "feet"),
  19097. default: true
  19098. },
  19099. {
  19100. name: "Macro",
  19101. height: math.unit(25, "feet")
  19102. },
  19103. {
  19104. name: "Megamacro",
  19105. height: math.unit(2, "miles")
  19106. },
  19107. ]
  19108. ))
  19109. characterMakers.push(() => makeCharacter(
  19110. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19111. {
  19112. front: {
  19113. height: math.unit(6 + 2 / 12, "feet"),
  19114. weight: math.unit(153, "lb"),
  19115. name: "Front",
  19116. image: {
  19117. source: "./media/characters/seth-whilst/front.svg",
  19118. bottom: 0.07
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Micro",
  19125. height: math.unit(5, "inches")
  19126. },
  19127. {
  19128. name: "Normal",
  19129. height: math.unit(6 + 2 / 12, "feet"),
  19130. default: true
  19131. },
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19136. {
  19137. front: {
  19138. height: math.unit(3, "inches"),
  19139. weight: math.unit(8, "grams"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/pocket-jabari/front.svg",
  19143. extra: 1024 / 974,
  19144. bottom: 0.039
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Minimicro",
  19151. height: math.unit(8, "mm")
  19152. },
  19153. {
  19154. name: "Micro",
  19155. height: math.unit(3, "inches"),
  19156. default: true
  19157. },
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(3, "feet")
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(15, "feet"),
  19169. weight: math.unit(3280, "lb"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/sapphy/front.svg",
  19173. extra: 671 / 577,
  19174. bottom: 0.085
  19175. }
  19176. },
  19177. back: {
  19178. height: math.unit(15, "feet"),
  19179. weight: math.unit(3280, "lb"),
  19180. name: "Back",
  19181. image: {
  19182. source: "./media/characters/sapphy/back.svg",
  19183. extra: 631 / 607,
  19184. bottom: 0.045
  19185. }
  19186. },
  19187. },
  19188. [
  19189. {
  19190. name: "Normal",
  19191. height: math.unit(15, "feet")
  19192. },
  19193. {
  19194. name: "Casual Macro",
  19195. height: math.unit(120, "feet")
  19196. },
  19197. {
  19198. name: "Macro",
  19199. height: math.unit(2150, "feet"),
  19200. default: true
  19201. },
  19202. {
  19203. name: "Megamacro",
  19204. height: math.unit(8, "miles")
  19205. },
  19206. {
  19207. name: "Galaxy Mom",
  19208. height: math.unit(6, "megalightyears")
  19209. },
  19210. ]
  19211. ))
  19212. characterMakers.push(() => makeCharacter(
  19213. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19214. {
  19215. front: {
  19216. height: math.unit(6, "feet"),
  19217. weight: math.unit(170, "lb"),
  19218. name: "Front",
  19219. image: {
  19220. source: "./media/characters/kiro/front.svg",
  19221. extra: 1064 / 1012,
  19222. bottom: 0.052
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Micro",
  19229. height: math.unit(6, "inches")
  19230. },
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(6, "feet"),
  19234. default: true
  19235. },
  19236. {
  19237. name: "Macro",
  19238. height: math.unit(72, "feet")
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19244. {
  19245. front: {
  19246. height: math.unit(5 + 9 / 12, "feet"),
  19247. weight: math.unit(175, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/irishfox/front.svg",
  19251. extra: 1912 / 1680,
  19252. bottom: 0.02
  19253. }
  19254. },
  19255. },
  19256. [
  19257. {
  19258. name: "Nano",
  19259. height: math.unit(1, "mm")
  19260. },
  19261. {
  19262. name: "Micro",
  19263. height: math.unit(2, "inches")
  19264. },
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(5 + 9 / 12, "feet"),
  19268. default: true
  19269. },
  19270. {
  19271. name: "Macro",
  19272. height: math.unit(45, "feet")
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19278. {
  19279. front: {
  19280. height: math.unit(6 + 1 / 12, "feet"),
  19281. weight: math.unit(75, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/aronai-sieyes/front.svg",
  19285. extra: 1532/1450,
  19286. bottom: 42/1574
  19287. }
  19288. },
  19289. side: {
  19290. height: math.unit(6 + 1 / 12, "feet"),
  19291. weight: math.unit(75, "lb"),
  19292. name: "Side",
  19293. image: {
  19294. source: "./media/characters/aronai-sieyes/side.svg",
  19295. extra: 1422/1365,
  19296. bottom: 148/1570
  19297. }
  19298. },
  19299. back: {
  19300. height: math.unit(6 + 1 / 12, "feet"),
  19301. weight: math.unit(75, "lb"),
  19302. name: "Back",
  19303. image: {
  19304. source: "./media/characters/aronai-sieyes/back.svg",
  19305. extra: 1526/1464,
  19306. bottom: 51/1577
  19307. }
  19308. },
  19309. dressed: {
  19310. height: math.unit(6 + 1 / 12, "feet"),
  19311. weight: math.unit(75, "lb"),
  19312. name: "Dressed",
  19313. image: {
  19314. source: "./media/characters/aronai-sieyes/dressed.svg",
  19315. extra: 1559/1483,
  19316. bottom: 39/1598
  19317. }
  19318. },
  19319. slit: {
  19320. height: math.unit(1.3, "feet"),
  19321. name: "Slit",
  19322. image: {
  19323. source: "./media/characters/aronai-sieyes/slit.svg"
  19324. }
  19325. },
  19326. slitSpread: {
  19327. height: math.unit(0.9, "feet"),
  19328. name: "Slit (Spread)",
  19329. image: {
  19330. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19331. }
  19332. },
  19333. rump: {
  19334. height: math.unit(1.3, "feet"),
  19335. name: "Rump",
  19336. image: {
  19337. source: "./media/characters/aronai-sieyes/rump.svg"
  19338. }
  19339. },
  19340. maw: {
  19341. height: math.unit(1.25, "feet"),
  19342. name: "Maw",
  19343. image: {
  19344. source: "./media/characters/aronai-sieyes/maw.svg"
  19345. }
  19346. },
  19347. feral: {
  19348. height: math.unit(18, "feet"),
  19349. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19350. name: "Feral",
  19351. image: {
  19352. source: "./media/characters/aronai-sieyes/feral.svg",
  19353. extra: 1530 / 1240,
  19354. bottom: 0.035
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Micro",
  19361. height: math.unit(2, "inches")
  19362. },
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(6 + 1 / 12, "feet"),
  19366. default: true
  19367. }
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(12, "feet"),
  19375. weight: math.unit(410, "kg"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/xuna/front.svg",
  19379. extra: 2184 / 1980
  19380. }
  19381. },
  19382. side: {
  19383. height: math.unit(12, "feet"),
  19384. weight: math.unit(410, "kg"),
  19385. name: "Side",
  19386. image: {
  19387. source: "./media/characters/xuna/side.svg",
  19388. extra: 2184 / 1980
  19389. }
  19390. },
  19391. back: {
  19392. height: math.unit(12, "feet"),
  19393. weight: math.unit(410, "kg"),
  19394. name: "Back",
  19395. image: {
  19396. source: "./media/characters/xuna/back.svg",
  19397. extra: 2184 / 1980
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Nano glow",
  19404. height: math.unit(10, "nm")
  19405. },
  19406. {
  19407. name: "Micro floof",
  19408. height: math.unit(0.3, "m")
  19409. },
  19410. {
  19411. name: "Huggable softy boi",
  19412. height: math.unit(3.6576, "m"),
  19413. default: true
  19414. },
  19415. {
  19416. name: "Admirable floof",
  19417. height: math.unit(80, "meters")
  19418. },
  19419. {
  19420. name: "Gentle macro",
  19421. height: math.unit(300, "meters")
  19422. },
  19423. {
  19424. name: "Very careful floof",
  19425. height: math.unit(3200, "meters")
  19426. },
  19427. {
  19428. name: "The mega floof",
  19429. height: math.unit(36000, "meters")
  19430. },
  19431. {
  19432. name: "Giga-fur-Wicker",
  19433. height: math.unit(4800000, "meters")
  19434. },
  19435. {
  19436. name: "Licky world",
  19437. height: math.unit(20000000, "meters")
  19438. },
  19439. {
  19440. name: "Floofy cyan sun",
  19441. height: math.unit(1500000000, "meters")
  19442. },
  19443. {
  19444. name: "Milky Wicker",
  19445. height: math.unit(1000000000000000000000, "meters")
  19446. },
  19447. {
  19448. name: "The observing Wicker",
  19449. height: math.unit(999999999999999999999999999, "meters")
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(5 + 9 / 12, "feet"),
  19458. weight: math.unit(150, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/arokha-sieyes/front.svg",
  19462. extra: 1425 / 1284,
  19463. bottom: 0.05
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(5 + 9 / 12, "feet")
  19471. },
  19472. {
  19473. name: "Macro",
  19474. height: math.unit(30, "meters"),
  19475. default: true
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19481. {
  19482. front: {
  19483. height: math.unit(6, "feet"),
  19484. weight: math.unit(180, "lb"),
  19485. name: "Front",
  19486. image: {
  19487. source: "./media/characters/arokh-sieyes/front.svg",
  19488. extra: 1830 / 1769,
  19489. bottom: 0.01
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(6, "feet")
  19497. },
  19498. {
  19499. name: "Macro",
  19500. height: math.unit(30, "meters"),
  19501. default: true
  19502. },
  19503. ]
  19504. ))
  19505. characterMakers.push(() => makeCharacter(
  19506. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19507. {
  19508. side: {
  19509. height: math.unit(13 + 1 / 12, "feet"),
  19510. weight: math.unit(8.5, "tonnes"),
  19511. name: "Side",
  19512. image: {
  19513. source: "./media/characters/goldeneye/side.svg",
  19514. extra: 1182 / 778,
  19515. bottom: 0.067
  19516. }
  19517. },
  19518. paw: {
  19519. height: math.unit(3.4, "feet"),
  19520. name: "Paw",
  19521. image: {
  19522. source: "./media/characters/goldeneye/paw.svg"
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(13 + 1 / 12, "feet"),
  19530. default: true
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19536. {
  19537. front: {
  19538. height: math.unit(6 + 1 / 12, "feet"),
  19539. weight: math.unit(210, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/leonardo-lycheborne/front.svg",
  19543. extra: 776/723,
  19544. bottom: 34/810
  19545. }
  19546. },
  19547. side: {
  19548. height: math.unit(6 + 1 / 12, "feet"),
  19549. weight: math.unit(210, "lb"),
  19550. name: "Side",
  19551. image: {
  19552. source: "./media/characters/leonardo-lycheborne/side.svg",
  19553. extra: 780/728,
  19554. bottom: 12/792
  19555. }
  19556. },
  19557. back: {
  19558. height: math.unit(6 + 1 / 12, "feet"),
  19559. weight: math.unit(210, "lb"),
  19560. name: "Back",
  19561. image: {
  19562. source: "./media/characters/leonardo-lycheborne/back.svg",
  19563. extra: 775/721,
  19564. bottom: 17/792
  19565. }
  19566. },
  19567. hand: {
  19568. height: math.unit(1.08, "feet"),
  19569. name: "Hand",
  19570. image: {
  19571. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19572. }
  19573. },
  19574. foot: {
  19575. height: math.unit(1.32, "feet"),
  19576. name: "Foot",
  19577. image: {
  19578. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19579. }
  19580. },
  19581. maw: {
  19582. height: math.unit(1, "feet"),
  19583. name: "Maw",
  19584. image: {
  19585. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19586. }
  19587. },
  19588. were: {
  19589. height: math.unit(20, "feet"),
  19590. weight: math.unit(7800, "lb"),
  19591. name: "Were",
  19592. image: {
  19593. source: "./media/characters/leonardo-lycheborne/were.svg",
  19594. extra: 1224/1165,
  19595. bottom: 72/1296
  19596. }
  19597. },
  19598. feral: {
  19599. height: math.unit(7.5, "feet"),
  19600. weight: math.unit(600, "lb"),
  19601. name: "Feral",
  19602. image: {
  19603. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19604. extra: 797/702,
  19605. bottom: 139/936
  19606. }
  19607. },
  19608. taur: {
  19609. height: math.unit(11, "feet"),
  19610. weight: math.unit(3300, "lb"),
  19611. name: "Taur",
  19612. image: {
  19613. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19614. extra: 1271/1197,
  19615. bottom: 47/1318
  19616. }
  19617. },
  19618. barghest: {
  19619. height: math.unit(11, "feet"),
  19620. weight: math.unit(1300, "lb"),
  19621. name: "Barghest",
  19622. image: {
  19623. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19624. extra: 1291/1204,
  19625. bottom: 37/1328
  19626. }
  19627. },
  19628. dick: {
  19629. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19630. name: "Dick",
  19631. image: {
  19632. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19633. }
  19634. },
  19635. dickWere: {
  19636. height: math.unit((20) / 3.8, "feet"),
  19637. name: "Dick (Were)",
  19638. image: {
  19639. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(6 + 1 / 12, "feet"),
  19647. default: true
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19653. {
  19654. front: {
  19655. height: math.unit(10, "feet"),
  19656. weight: math.unit(350, "lb"),
  19657. name: "Front",
  19658. image: {
  19659. source: "./media/characters/jet/front.svg",
  19660. extra: 2050 / 1980,
  19661. bottom: 0.013
  19662. }
  19663. },
  19664. back: {
  19665. height: math.unit(10, "feet"),
  19666. weight: math.unit(350, "lb"),
  19667. name: "Back",
  19668. image: {
  19669. source: "./media/characters/jet/back.svg",
  19670. extra: 2050 / 1980,
  19671. bottom: 0.013
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Micro",
  19678. height: math.unit(6, "inches")
  19679. },
  19680. {
  19681. name: "Normal",
  19682. height: math.unit(10, "feet"),
  19683. default: true
  19684. },
  19685. {
  19686. name: "Macro",
  19687. height: math.unit(100, "feet")
  19688. },
  19689. ]
  19690. ))
  19691. characterMakers.push(() => makeCharacter(
  19692. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19693. {
  19694. front: {
  19695. height: math.unit(15, "feet"),
  19696. weight: math.unit(2800, "lb"),
  19697. name: "Front",
  19698. image: {
  19699. source: "./media/characters/tanarath/front.svg",
  19700. extra: 2392 / 2220,
  19701. bottom: 0.03
  19702. }
  19703. },
  19704. back: {
  19705. height: math.unit(15, "feet"),
  19706. weight: math.unit(2800, "lb"),
  19707. name: "Back",
  19708. image: {
  19709. source: "./media/characters/tanarath/back.svg",
  19710. extra: 2392 / 2220,
  19711. bottom: 0.03
  19712. }
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(15, "feet"),
  19719. default: true
  19720. },
  19721. ]
  19722. ))
  19723. characterMakers.push(() => makeCharacter(
  19724. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19725. {
  19726. front: {
  19727. height: math.unit(7 + 1 / 12, "feet"),
  19728. weight: math.unit(175, "lb"),
  19729. name: "Front",
  19730. image: {
  19731. source: "./media/characters/patty-cattybatty/front.svg",
  19732. extra: 908 / 874,
  19733. bottom: 0.025
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Micro",
  19740. height: math.unit(1, "inch")
  19741. },
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(7 + 1 / 12, "feet")
  19745. },
  19746. {
  19747. name: "Mini Macro",
  19748. height: math.unit(155, "feet")
  19749. },
  19750. {
  19751. name: "Macro",
  19752. height: math.unit(1077, "feet")
  19753. },
  19754. {
  19755. name: "Mega Macro",
  19756. height: math.unit(47650, "feet"),
  19757. default: true
  19758. },
  19759. {
  19760. name: "Giga Macro",
  19761. height: math.unit(440, "miles")
  19762. },
  19763. {
  19764. name: "Tera Macro",
  19765. height: math.unit(8700, "miles")
  19766. },
  19767. {
  19768. name: "Planetary Macro",
  19769. height: math.unit(32700, "miles")
  19770. },
  19771. {
  19772. name: "Solar Macro",
  19773. height: math.unit(550000, "miles")
  19774. },
  19775. {
  19776. name: "Celestial Macro",
  19777. height: math.unit(2.5, "AU")
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(4 + 5 / 12, "feet"),
  19786. weight: math.unit(90, "lb"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/cappu/front.svg",
  19790. extra: 1247 / 1152,
  19791. bottom: 0.012
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Normal",
  19798. height: math.unit(4 + 5 / 12, "feet"),
  19799. default: true
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19805. {
  19806. frontDressed: {
  19807. height: math.unit(70, "cm"),
  19808. weight: math.unit(6, "kg"),
  19809. name: "Front (Dressed)",
  19810. image: {
  19811. source: "./media/characters/sebi/front-dressed.svg",
  19812. extra: 713.5 / 686.5,
  19813. bottom: 0.003
  19814. }
  19815. },
  19816. front: {
  19817. height: math.unit(70, "cm"),
  19818. weight: math.unit(5, "kg"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/sebi/front.svg",
  19822. extra: 713.5 / 686.5,
  19823. bottom: 0.003
  19824. }
  19825. }
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(70, "cm"),
  19831. default: true
  19832. },
  19833. {
  19834. name: "Macro",
  19835. height: math.unit(8, "meters")
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19841. {
  19842. front: {
  19843. height: math.unit(6, "feet"),
  19844. weight: math.unit(150, "lb"),
  19845. name: "Front",
  19846. image: {
  19847. source: "./media/characters/typhek/front.svg",
  19848. extra: 1948 / 1929,
  19849. bottom: 0.025
  19850. }
  19851. },
  19852. side: {
  19853. height: math.unit(6, "feet"),
  19854. weight: math.unit(150, "lb"),
  19855. name: "Side",
  19856. image: {
  19857. source: "./media/characters/typhek/side.svg",
  19858. extra: 2034 / 2010,
  19859. bottom: 0.003
  19860. }
  19861. },
  19862. back: {
  19863. height: math.unit(6, "feet"),
  19864. weight: math.unit(150, "lb"),
  19865. name: "Back",
  19866. image: {
  19867. source: "./media/characters/typhek/back.svg",
  19868. extra: 2005 / 1978,
  19869. bottom: 0.004
  19870. }
  19871. },
  19872. palm: {
  19873. height: math.unit(1.2, "feet"),
  19874. name: "Palm",
  19875. image: {
  19876. source: "./media/characters/typhek/palm.svg"
  19877. }
  19878. },
  19879. fist: {
  19880. height: math.unit(1.1, "feet"),
  19881. name: "Fist",
  19882. image: {
  19883. source: "./media/characters/typhek/fist.svg"
  19884. }
  19885. },
  19886. foot: {
  19887. height: math.unit(1.57, "feet"),
  19888. name: "Foot",
  19889. image: {
  19890. source: "./media/characters/typhek/foot.svg"
  19891. }
  19892. },
  19893. sole: {
  19894. height: math.unit(2.05, "feet"),
  19895. name: "Sole",
  19896. image: {
  19897. source: "./media/characters/typhek/sole.svg"
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Macro",
  19904. height: math.unit(40, "stories"),
  19905. default: true
  19906. },
  19907. {
  19908. name: "Megamacro",
  19909. height: math.unit(1, "mile")
  19910. },
  19911. {
  19912. name: "Gigamacro",
  19913. height: math.unit(4000, "solarradii")
  19914. },
  19915. {
  19916. name: "Universal",
  19917. height: math.unit(1.1, "universes")
  19918. }
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19923. {
  19924. side: {
  19925. height: math.unit(5 + 7 / 12, "feet"),
  19926. weight: math.unit(150, "lb"),
  19927. name: "Side",
  19928. image: {
  19929. source: "./media/characters/kassy/side.svg",
  19930. extra: 1280 / 1225,
  19931. bottom: 0.002
  19932. }
  19933. },
  19934. front: {
  19935. height: math.unit(5 + 7 / 12, "feet"),
  19936. weight: math.unit(150, "lb"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/kassy/front.svg",
  19940. extra: 1280 / 1225,
  19941. bottom: 0.025
  19942. }
  19943. },
  19944. back: {
  19945. height: math.unit(5 + 7 / 12, "feet"),
  19946. weight: math.unit(150, "lb"),
  19947. name: "Back",
  19948. image: {
  19949. source: "./media/characters/kassy/back.svg",
  19950. extra: 1280 / 1225,
  19951. bottom: 0.002
  19952. }
  19953. },
  19954. foot: {
  19955. height: math.unit(1.266, "feet"),
  19956. name: "Foot",
  19957. image: {
  19958. source: "./media/characters/kassy/foot.svg"
  19959. }
  19960. },
  19961. },
  19962. [
  19963. {
  19964. name: "Normal",
  19965. height: math.unit(5 + 7 / 12, "feet")
  19966. },
  19967. {
  19968. name: "Macro",
  19969. height: math.unit(137, "feet"),
  19970. default: true
  19971. },
  19972. {
  19973. name: "Megamacro",
  19974. height: math.unit(1, "mile")
  19975. },
  19976. ]
  19977. ))
  19978. characterMakers.push(() => makeCharacter(
  19979. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19980. {
  19981. front: {
  19982. height: math.unit(6 + 1 / 12, "feet"),
  19983. weight: math.unit(200, "lb"),
  19984. name: "Front",
  19985. image: {
  19986. source: "./media/characters/neil/front.svg",
  19987. extra: 1326 / 1250,
  19988. bottom: 0.023
  19989. }
  19990. },
  19991. },
  19992. [
  19993. {
  19994. name: "Normal",
  19995. height: math.unit(6 + 1 / 12, "feet"),
  19996. default: true
  19997. },
  19998. {
  19999. name: "Macro",
  20000. height: math.unit(200, "feet")
  20001. },
  20002. ]
  20003. ))
  20004. characterMakers.push(() => makeCharacter(
  20005. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20006. {
  20007. front: {
  20008. height: math.unit(5 + 9 / 12, "feet"),
  20009. weight: math.unit(190, "lb"),
  20010. name: "Front",
  20011. image: {
  20012. source: "./media/characters/atticus/front.svg",
  20013. extra: 2934 / 2785,
  20014. bottom: 0.025
  20015. }
  20016. },
  20017. },
  20018. [
  20019. {
  20020. name: "Normal",
  20021. height: math.unit(5 + 9 / 12, "feet"),
  20022. default: true
  20023. },
  20024. {
  20025. name: "Macro",
  20026. height: math.unit(180, "feet")
  20027. },
  20028. ]
  20029. ))
  20030. characterMakers.push(() => makeCharacter(
  20031. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20032. {
  20033. side: {
  20034. height: math.unit(9, "feet"),
  20035. weight: math.unit(650, "lb"),
  20036. name: "Side",
  20037. image: {
  20038. source: "./media/characters/milo/side.svg",
  20039. extra: 2644 / 2310,
  20040. bottom: 0.032
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(9, "feet"),
  20048. default: true
  20049. },
  20050. {
  20051. name: "Macro",
  20052. height: math.unit(300, "feet")
  20053. },
  20054. ]
  20055. ))
  20056. characterMakers.push(() => makeCharacter(
  20057. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20058. {
  20059. side: {
  20060. height: math.unit(8, "meters"),
  20061. weight: math.unit(90000, "kg"),
  20062. name: "Side",
  20063. image: {
  20064. source: "./media/characters/ijzer/side.svg",
  20065. extra: 2756 / 1600,
  20066. bottom: 0.01
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Small",
  20073. height: math.unit(3, "meters")
  20074. },
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(8, "meters"),
  20078. default: true
  20079. },
  20080. {
  20081. name: "Normal+",
  20082. height: math.unit(10, "meters")
  20083. },
  20084. {
  20085. name: "Bigger",
  20086. height: math.unit(24, "meters")
  20087. },
  20088. {
  20089. name: "Huge",
  20090. height: math.unit(80, "meters")
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20096. {
  20097. front: {
  20098. height: math.unit(6 + 2 / 12, "feet"),
  20099. weight: math.unit(153, "lb"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/luca-cervicum/front.svg",
  20103. extra: 370 / 327,
  20104. bottom: 0.015
  20105. }
  20106. },
  20107. back: {
  20108. height: math.unit(6 + 2 / 12, "feet"),
  20109. weight: math.unit(153, "lb"),
  20110. name: "Back",
  20111. image: {
  20112. source: "./media/characters/luca-cervicum/back.svg",
  20113. extra: 367 / 333,
  20114. bottom: 0.005
  20115. }
  20116. },
  20117. frontGear: {
  20118. height: math.unit(6 + 2 / 12, "feet"),
  20119. weight: math.unit(173, "lb"),
  20120. name: "Front (Gear)",
  20121. image: {
  20122. source: "./media/characters/luca-cervicum/front-gear.svg",
  20123. extra: 377 / 333,
  20124. bottom: 0.006
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(6 + 2 / 12, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(6 + 1 / 12, "feet"),
  20141. weight: math.unit(304, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/oliver/front.svg",
  20145. extra: 157 / 143,
  20146. bottom: 0.08
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(6 + 1 / 12, "feet"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20160. {
  20161. front: {
  20162. height: math.unit(5 + 7 / 12, "feet"),
  20163. weight: math.unit(140, "lb"),
  20164. name: "Front",
  20165. image: {
  20166. source: "./media/characters/shane/front.svg",
  20167. extra: 304 / 289,
  20168. bottom: 0.005
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(5 + 7 / 12, "feet"),
  20176. default: true
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20182. {
  20183. front: {
  20184. height: math.unit(5 + 9 / 12, "feet"),
  20185. weight: math.unit(178, "lb"),
  20186. name: "Front",
  20187. image: {
  20188. source: "./media/characters/shin/front.svg",
  20189. extra: 159 / 151,
  20190. bottom: 0.015
  20191. }
  20192. },
  20193. },
  20194. [
  20195. {
  20196. name: "Normal",
  20197. height: math.unit(5 + 9 / 12, "feet"),
  20198. default: true
  20199. },
  20200. ]
  20201. ))
  20202. characterMakers.push(() => makeCharacter(
  20203. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20204. {
  20205. front: {
  20206. height: math.unit(5 + 10 / 12, "feet"),
  20207. weight: math.unit(168, "lb"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/xerxes/front.svg",
  20211. extra: 282 / 260,
  20212. bottom: 0.045
  20213. }
  20214. },
  20215. },
  20216. [
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(5 + 10 / 12, "feet"),
  20220. default: true
  20221. },
  20222. ]
  20223. ))
  20224. characterMakers.push(() => makeCharacter(
  20225. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20226. {
  20227. front: {
  20228. height: math.unit(6 + 7 / 12, "feet"),
  20229. weight: math.unit(208, "lb"),
  20230. name: "Front",
  20231. image: {
  20232. source: "./media/characters/chaska/front.svg",
  20233. extra: 332 / 319,
  20234. bottom: 0.015
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Normal",
  20241. height: math.unit(6 + 7 / 12, "feet"),
  20242. default: true
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20248. {
  20249. front: {
  20250. height: math.unit(5 + 8 / 12, "feet"),
  20251. weight: math.unit(208, "lb"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/enuk/front.svg",
  20255. extra: 437 / 406,
  20256. bottom: 0.02
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(5 + 8 / 12, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20270. {
  20271. front: {
  20272. height: math.unit(5 + 10 / 12, "feet"),
  20273. weight: math.unit(252, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/bruun/front.svg",
  20277. extra: 197 / 187,
  20278. bottom: 0.012
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(5 + 10 / 12, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20292. {
  20293. front: {
  20294. height: math.unit(6 + 10 / 12, "feet"),
  20295. weight: math.unit(255, "lb"),
  20296. name: "Front",
  20297. image: {
  20298. source: "./media/characters/alexeev/front.svg",
  20299. extra: 213 / 200,
  20300. bottom: 0.05
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(6 + 10 / 12, "feet"),
  20308. default: true
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20314. {
  20315. front: {
  20316. height: math.unit(2 + 8 / 12, "feet"),
  20317. weight: math.unit(22, "lb"),
  20318. name: "Front",
  20319. image: {
  20320. source: "./media/characters/evelyn/front.svg",
  20321. extra: 208 / 180
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(2 + 8 / 12, "feet"),
  20329. default: true
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(5 + 9 / 12, "feet"),
  20338. weight: math.unit(139, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/inca/front.svg",
  20342. extra: 294 / 291,
  20343. bottom: 0.03
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(5 + 9 / 12, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(6 + 3 / 12, "feet"),
  20360. weight: math.unit(185, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/mera/front.svg",
  20364. extra: 291 / 277,
  20365. bottom: 0.03
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(6 + 3 / 12, "feet"),
  20373. default: true
  20374. },
  20375. ]
  20376. ))
  20377. characterMakers.push(() => makeCharacter(
  20378. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20379. {
  20380. front: {
  20381. height: math.unit(6 + 7 / 12, "feet"),
  20382. weight: math.unit(160, "lb"),
  20383. name: "Front",
  20384. image: {
  20385. source: "./media/characters/ceres/front.svg",
  20386. extra: 1023 / 950,
  20387. bottom: 0.027
  20388. }
  20389. },
  20390. back: {
  20391. height: math.unit(6 + 7 / 12, "feet"),
  20392. weight: math.unit(160, "lb"),
  20393. name: "Back",
  20394. image: {
  20395. source: "./media/characters/ceres/back.svg",
  20396. extra: 1023 / 950
  20397. }
  20398. },
  20399. },
  20400. [
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(6 + 7 / 12, "feet"),
  20404. default: true
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20410. {
  20411. front: {
  20412. height: math.unit(5 + 10 / 12, "feet"),
  20413. weight: math.unit(150, "lb"),
  20414. name: "Front",
  20415. image: {
  20416. source: "./media/characters/kris/front.svg",
  20417. extra: 885 / 803,
  20418. bottom: 0.03
  20419. }
  20420. },
  20421. },
  20422. [
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(5 + 10 / 12, "feet"),
  20426. default: true
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(7, "feet"),
  20435. weight: math.unit(120, "kg"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/taluthus/front.svg",
  20439. extra: 903 / 833,
  20440. bottom: 0.015
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(7, "feet"),
  20448. default: true
  20449. },
  20450. {
  20451. name: "Macro",
  20452. height: math.unit(300, "feet")
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20458. {
  20459. front: {
  20460. height: math.unit(5 + 9 / 12, "feet"),
  20461. weight: math.unit(145, "lb"),
  20462. name: "Front",
  20463. image: {
  20464. source: "./media/characters/dawn/front.svg",
  20465. extra: 2094 / 2016,
  20466. bottom: 0.025
  20467. }
  20468. },
  20469. back: {
  20470. height: math.unit(5 + 9 / 12, "feet"),
  20471. weight: math.unit(160, "lb"),
  20472. name: "Back",
  20473. image: {
  20474. source: "./media/characters/dawn/back.svg",
  20475. extra: 2112 / 2080,
  20476. bottom: 0.005
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(6 + 7 / 12, "feet"),
  20484. default: true
  20485. },
  20486. ]
  20487. ))
  20488. characterMakers.push(() => makeCharacter(
  20489. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20490. {
  20491. anthro: {
  20492. height: math.unit(8 + 3 / 12, "feet"),
  20493. weight: math.unit(450, "lb"),
  20494. name: "Anthro",
  20495. image: {
  20496. source: "./media/characters/arador/anthro.svg",
  20497. extra: 1835 / 1718,
  20498. bottom: 0.025
  20499. }
  20500. },
  20501. feral: {
  20502. height: math.unit(4, "feet"),
  20503. weight: math.unit(200, "lb"),
  20504. name: "Feral",
  20505. image: {
  20506. source: "./media/characters/arador/feral.svg",
  20507. extra: 1683 / 1514,
  20508. bottom: 0.07
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(8 + 3 / 12, "feet")
  20516. },
  20517. {
  20518. name: "Macro",
  20519. height: math.unit(82.5, "feet"),
  20520. default: true
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20526. {
  20527. front: {
  20528. height: math.unit(5 + 10 / 12, "feet"),
  20529. weight: math.unit(125, "lb"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/dharsi/front.svg",
  20533. extra: 716 / 630,
  20534. bottom: 0.035
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Nano",
  20541. height: math.unit(100, "nm")
  20542. },
  20543. {
  20544. name: "Micro",
  20545. height: math.unit(2, "inches")
  20546. },
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(5 + 10 / 12, "feet"),
  20550. default: true
  20551. },
  20552. {
  20553. name: "Macro",
  20554. height: math.unit(1000, "feet")
  20555. },
  20556. {
  20557. name: "Megamacro",
  20558. height: math.unit(10, "miles")
  20559. },
  20560. {
  20561. name: "Gigamacro",
  20562. height: math.unit(3000, "miles")
  20563. },
  20564. {
  20565. name: "Teramacro",
  20566. height: math.unit(500000, "miles")
  20567. },
  20568. {
  20569. name: "Teramacro+",
  20570. height: math.unit(30, "galaxies")
  20571. },
  20572. ]
  20573. ))
  20574. characterMakers.push(() => makeCharacter(
  20575. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20576. {
  20577. front: {
  20578. height: math.unit(6, "feet"),
  20579. weight: math.unit(150, "lb"),
  20580. name: "Front",
  20581. image: {
  20582. source: "./media/characters/deathy/front.svg",
  20583. extra: 1552 / 1463,
  20584. bottom: 0.025
  20585. }
  20586. },
  20587. side: {
  20588. height: math.unit(6, "feet"),
  20589. weight: math.unit(150, "lb"),
  20590. name: "Side",
  20591. image: {
  20592. source: "./media/characters/deathy/side.svg",
  20593. extra: 1604 / 1455,
  20594. bottom: 0.025
  20595. }
  20596. },
  20597. back: {
  20598. height: math.unit(6, "feet"),
  20599. weight: math.unit(150, "lb"),
  20600. name: "Back",
  20601. image: {
  20602. source: "./media/characters/deathy/back.svg",
  20603. extra: 1580 / 1463,
  20604. bottom: 0.005
  20605. }
  20606. },
  20607. },
  20608. [
  20609. {
  20610. name: "Micro",
  20611. height: math.unit(5, "millimeters")
  20612. },
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(6 + 5 / 12, "feet"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20622. {
  20623. front: {
  20624. height: math.unit(16, "feet"),
  20625. weight: math.unit(4000, "lb"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/juniper/front.svg",
  20629. bottom: 0.04
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(16, "feet"),
  20637. default: true
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20643. {
  20644. front: {
  20645. height: math.unit(6, "feet"),
  20646. weight: math.unit(150, "lb"),
  20647. name: "Front",
  20648. image: {
  20649. source: "./media/characters/hipster/front.svg",
  20650. extra: 1312 / 1209,
  20651. bottom: 0.025
  20652. }
  20653. },
  20654. back: {
  20655. height: math.unit(6, "feet"),
  20656. weight: math.unit(150, "lb"),
  20657. name: "Back",
  20658. image: {
  20659. source: "./media/characters/hipster/back.svg",
  20660. extra: 1281 / 1196,
  20661. bottom: 0.01
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Micro",
  20668. height: math.unit(1, "mm")
  20669. },
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(4, "inches"),
  20673. default: true
  20674. },
  20675. {
  20676. name: "Macro",
  20677. height: math.unit(500, "feet")
  20678. },
  20679. {
  20680. name: "Megamacro",
  20681. height: math.unit(1000, "miles")
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(6, "feet"),
  20690. weight: math.unit(150, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/tendirmuldr/front.svg",
  20694. extra: 1878 / 1772,
  20695. bottom: 0.015
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Megamacro",
  20702. height: math.unit(1500, "miles"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20709. {
  20710. front: {
  20711. height: math.unit(14, "feet"),
  20712. weight: math.unit(12000, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/mort/front.svg",
  20716. extra: 365 / 318,
  20717. bottom: 0.01
  20718. }
  20719. },
  20720. side: {
  20721. height: math.unit(14, "feet"),
  20722. weight: math.unit(12000, "lb"),
  20723. name: "Side",
  20724. image: {
  20725. source: "./media/characters/mort/side.svg",
  20726. extra: 365 / 318,
  20727. bottom: 0.052
  20728. },
  20729. default: true
  20730. },
  20731. back: {
  20732. height: math.unit(14, "feet"),
  20733. weight: math.unit(12000, "lb"),
  20734. name: "Back",
  20735. image: {
  20736. source: "./media/characters/mort/back.svg",
  20737. extra: 371 / 332,
  20738. bottom: 0.18
  20739. }
  20740. },
  20741. },
  20742. [
  20743. {
  20744. name: "Normal",
  20745. height: math.unit(14, "feet"),
  20746. default: true
  20747. },
  20748. ]
  20749. ))
  20750. characterMakers.push(() => makeCharacter(
  20751. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20752. {
  20753. front: {
  20754. height: math.unit(8, "feet"),
  20755. weight: math.unit(1, "ton"),
  20756. name: "Front",
  20757. image: {
  20758. source: "./media/characters/lycoa/front.svg",
  20759. extra: 1836/1728,
  20760. bottom: 81/1917
  20761. }
  20762. },
  20763. back: {
  20764. height: math.unit(8, "feet"),
  20765. weight: math.unit(1, "ton"),
  20766. name: "Back",
  20767. image: {
  20768. source: "./media/characters/lycoa/back.svg",
  20769. extra: 1785/1720,
  20770. bottom: 91/1876
  20771. }
  20772. },
  20773. head: {
  20774. height: math.unit(1.6243, "feet"),
  20775. name: "Head",
  20776. image: {
  20777. source: "./media/characters/lycoa/head.svg",
  20778. extra: 1011/782,
  20779. bottom: 0/1011
  20780. }
  20781. },
  20782. tailmaw: {
  20783. height: math.unit(1.9, "feet"),
  20784. name: "Tailmaw",
  20785. image: {
  20786. source: "./media/characters/lycoa/tailmaw.svg"
  20787. }
  20788. },
  20789. tentacles: {
  20790. height: math.unit(2.1, "feet"),
  20791. name: "Tentacles",
  20792. image: {
  20793. source: "./media/characters/lycoa/tentacles.svg"
  20794. }
  20795. },
  20796. dick: {
  20797. height: math.unit(1.73, "feet"),
  20798. name: "Dick",
  20799. image: {
  20800. source: "./media/characters/lycoa/dick.svg"
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Normal",
  20807. height: math.unit(8, "feet"),
  20808. default: true
  20809. },
  20810. {
  20811. name: "Macro",
  20812. height: math.unit(30, "feet")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20818. {
  20819. front: {
  20820. height: math.unit(4 + 2 / 12, "feet"),
  20821. weight: math.unit(70, "lb"),
  20822. name: "Front",
  20823. image: {
  20824. source: "./media/characters/naldara/front.svg",
  20825. extra: 1664/1387,
  20826. bottom: 81/1745
  20827. },
  20828. form: "anthro",
  20829. default: true
  20830. },
  20831. naga: {
  20832. height: math.unit(20, "feet"),
  20833. weight: math.unit(15000, "kg"),
  20834. name: "Front",
  20835. image: {
  20836. source: "./media/characters/naldara/naga.svg",
  20837. extra: 1590/1396,
  20838. bottom: 285/1875
  20839. },
  20840. form: "naga",
  20841. default: true
  20842. },
  20843. },
  20844. [
  20845. {
  20846. name: "Normal",
  20847. height: math.unit(4 + 2 / 12, "feet"),
  20848. form: "anthro",
  20849. default: true
  20850. },
  20851. {
  20852. name: "Normal",
  20853. height: math.unit(20, "feet"),
  20854. form: "naga",
  20855. default: true
  20856. },
  20857. ],
  20858. {
  20859. "anthro": {
  20860. name: "Anthro",
  20861. default: true
  20862. },
  20863. "naga": {
  20864. name: "Naga"
  20865. }
  20866. }
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20870. {
  20871. front: {
  20872. height: math.unit(13 + 7 / 12, "feet"),
  20873. weight: math.unit(1500, "lb"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/briar/front.svg",
  20877. extra: 1223/1157,
  20878. bottom: 123/1346
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(13 + 7 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20892. {
  20893. side: {
  20894. height: math.unit(16, "feet"),
  20895. weight: math.unit(500, "lb"),
  20896. name: "Side",
  20897. image: {
  20898. source: "./media/characters/vanguard/side.svg",
  20899. extra: 1022/914,
  20900. bottom: 30/1052
  20901. }
  20902. },
  20903. sideAlt: {
  20904. height: math.unit(10, "feet"),
  20905. weight: math.unit(500, "lb"),
  20906. name: "Side (Alt)",
  20907. image: {
  20908. source: "./media/characters/vanguard/side-alt.svg",
  20909. extra: 502 / 425,
  20910. bottom: 0.087
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(17.71, "feet"),
  20918. default: true
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20924. {
  20925. front: {
  20926. height: math.unit(7.5, "feet"),
  20927. weight: math.unit(2, "lb"),
  20928. name: "Front",
  20929. image: {
  20930. source: "./media/characters/artemis/work-safe-front.svg",
  20931. extra: 1192 / 1075,
  20932. bottom: 0.07
  20933. },
  20934. form: "work-safe",
  20935. default: true
  20936. },
  20937. frontNsfw: {
  20938. height: math.unit(7.5, "feet"),
  20939. weight: math.unit(2, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/artemis/calibrating-front.svg",
  20943. extra: 1192 / 1075,
  20944. bottom: 0.07
  20945. },
  20946. form: "calibrating",
  20947. default: true
  20948. },
  20949. frontNsfwer: {
  20950. height: math.unit(7.5, "feet"),
  20951. weight: math.unit(2, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/artemis/oversize-load-front.svg",
  20955. extra: 1192 / 1075,
  20956. bottom: 0.07
  20957. },
  20958. form: "oversize-load",
  20959. default: true
  20960. },
  20961. side: {
  20962. height: math.unit(7.5, "feet"),
  20963. weight: math.unit(2, "lb"),
  20964. name: "Side",
  20965. image: {
  20966. source: "./media/characters/artemis/work-safe-side.svg",
  20967. extra: 1192 / 1075,
  20968. bottom: 0.07
  20969. },
  20970. form: "work-safe"
  20971. },
  20972. sideNsfw: {
  20973. height: math.unit(7.5, "feet"),
  20974. weight: math.unit(2, "lb"),
  20975. name: "Side",
  20976. image: {
  20977. source: "./media/characters/artemis/calibrating-side.svg",
  20978. extra: 1192 / 1075,
  20979. bottom: 0.07
  20980. },
  20981. form: "calibrating"
  20982. },
  20983. sideNsfwer: {
  20984. height: math.unit(7.5, "feet"),
  20985. weight: math.unit(2, "lb"),
  20986. name: "Side",
  20987. image: {
  20988. source: "./media/characters/artemis/oversize-load-side.svg",
  20989. extra: 1192 / 1075,
  20990. bottom: 0.07
  20991. },
  20992. form: "oversize-load"
  20993. },
  20994. maw: {
  20995. height: math.unit(1.1, "feet"),
  20996. name: "Maw",
  20997. image: {
  20998. source: "./media/characters/artemis/maw.svg"
  20999. },
  21000. form: "work-safe"
  21001. },
  21002. stomach: {
  21003. height: math.unit(0.95, "feet"),
  21004. name: "Stomach",
  21005. image: {
  21006. source: "./media/characters/artemis/stomach.svg"
  21007. },
  21008. form: "work-safe"
  21009. },
  21010. dickCanine: {
  21011. height: math.unit(1, "feet"),
  21012. name: "Dick (Canine)",
  21013. image: {
  21014. source: "./media/characters/artemis/dick-canine.svg"
  21015. },
  21016. form: "calibrating"
  21017. },
  21018. dickEquine: {
  21019. height: math.unit(0.85, "feet"),
  21020. name: "Dick (Equine)",
  21021. image: {
  21022. source: "./media/characters/artemis/dick-equine.svg"
  21023. },
  21024. form: "calibrating"
  21025. },
  21026. dickExotic: {
  21027. height: math.unit(0.85, "feet"),
  21028. name: "Dick (Exotic)",
  21029. image: {
  21030. source: "./media/characters/artemis/dick-exotic.svg"
  21031. },
  21032. form: "calibrating"
  21033. },
  21034. dickCanineBigger: {
  21035. height: math.unit(1 * 1.33, "feet"),
  21036. name: "Dick (Canine)",
  21037. image: {
  21038. source: "./media/characters/artemis/dick-canine.svg"
  21039. },
  21040. form: "oversize-load"
  21041. },
  21042. dickEquineBigger: {
  21043. height: math.unit(0.85 * 1.33, "feet"),
  21044. name: "Dick (Equine)",
  21045. image: {
  21046. source: "./media/characters/artemis/dick-equine.svg"
  21047. },
  21048. form: "oversize-load"
  21049. },
  21050. dickExoticBigger: {
  21051. height: math.unit(0.85 * 1.33, "feet"),
  21052. name: "Dick (Exotic)",
  21053. image: {
  21054. source: "./media/characters/artemis/dick-exotic.svg"
  21055. },
  21056. form: "oversize-load"
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(7.5, "feet"),
  21063. form: "work-safe",
  21064. default: true
  21065. },
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(7.5, "feet"),
  21069. form: "calibrating",
  21070. default: true
  21071. },
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(7.5, "feet"),
  21075. form: "oversize-load",
  21076. default: true
  21077. },
  21078. {
  21079. name: "Enlarged",
  21080. height: math.unit(12, "feet"),
  21081. form: "work-safe",
  21082. },
  21083. {
  21084. name: "Enlarged",
  21085. height: math.unit(12, "feet"),
  21086. form: "calibrating",
  21087. },
  21088. {
  21089. name: "Enlarged",
  21090. height: math.unit(12, "feet"),
  21091. form: "oversize-load",
  21092. },
  21093. ],
  21094. {
  21095. "work-safe": {
  21096. name: "Work-Safe",
  21097. default: true
  21098. },
  21099. "calibrating": {
  21100. name: "Calibrating"
  21101. },
  21102. "oversize-load": {
  21103. name: "Oversize Load"
  21104. }
  21105. }
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21109. {
  21110. front: {
  21111. height: math.unit(5 + 3 / 12, "feet"),
  21112. weight: math.unit(160, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/kira/front.svg",
  21116. extra: 906 / 786,
  21117. bottom: 0.01
  21118. }
  21119. },
  21120. back: {
  21121. height: math.unit(5 + 3 / 12, "feet"),
  21122. weight: math.unit(160, "lb"),
  21123. name: "Back",
  21124. image: {
  21125. source: "./media/characters/kira/back.svg",
  21126. extra: 882 / 757,
  21127. bottom: 0.005
  21128. }
  21129. },
  21130. frontDressed: {
  21131. height: math.unit(5 + 3 / 12, "feet"),
  21132. weight: math.unit(160, "lb"),
  21133. name: "Front (Dressed)",
  21134. image: {
  21135. source: "./media/characters/kira/front-dressed.svg",
  21136. extra: 906 / 786,
  21137. bottom: 0.01
  21138. }
  21139. },
  21140. beans: {
  21141. height: math.unit(0.92, "feet"),
  21142. name: "Beans",
  21143. image: {
  21144. source: "./media/characters/kira/beans.svg"
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(5 + 3 / 12, "feet"),
  21152. default: true
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(5 + 4 / 12, "feet"),
  21161. weight: math.unit(145, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/scramble/front.svg",
  21165. extra: 763 / 727,
  21166. bottom: 0.05
  21167. }
  21168. },
  21169. back: {
  21170. height: math.unit(5 + 4 / 12, "feet"),
  21171. weight: math.unit(145, "lb"),
  21172. name: "Back",
  21173. image: {
  21174. source: "./media/characters/scramble/back.svg",
  21175. extra: 826 / 737,
  21176. bottom: 0.002
  21177. }
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Normal",
  21183. height: math.unit(5 + 4 / 12, "feet"),
  21184. default: true
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21190. {
  21191. side: {
  21192. height: math.unit(6 + 2 / 12, "feet"),
  21193. weight: math.unit(190, "lb"),
  21194. name: "Side",
  21195. image: {
  21196. source: "./media/characters/biscuit/side.svg",
  21197. extra: 858 / 791,
  21198. bottom: 0.044
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(6 + 2 / 12, "feet"),
  21206. default: true
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21212. {
  21213. front: {
  21214. height: math.unit(5 + 2 / 12, "feet"),
  21215. weight: math.unit(120, "lb"),
  21216. name: "Front",
  21217. image: {
  21218. source: "./media/characters/poffin/front.svg",
  21219. extra: 786 / 680,
  21220. bottom: 0.005
  21221. }
  21222. },
  21223. },
  21224. [
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(5 + 2 / 12, "feet"),
  21228. default: true
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(6 + 3 / 12, "feet"),
  21237. weight: math.unit(519, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/dhari/front.svg",
  21241. extra: 1048 / 946,
  21242. bottom: 0.015
  21243. }
  21244. },
  21245. back: {
  21246. height: math.unit(6 + 3 / 12, "feet"),
  21247. weight: math.unit(519, "lb"),
  21248. name: "Back",
  21249. image: {
  21250. source: "./media/characters/dhari/back.svg",
  21251. extra: 1048 / 931,
  21252. bottom: 0.005
  21253. }
  21254. },
  21255. frontDressed: {
  21256. height: math.unit(6 + 3 / 12, "feet"),
  21257. weight: math.unit(519, "lb"),
  21258. name: "Front (Dressed)",
  21259. image: {
  21260. source: "./media/characters/dhari/front-dressed.svg",
  21261. extra: 1713 / 1546,
  21262. bottom: 0.02
  21263. }
  21264. },
  21265. backDressed: {
  21266. height: math.unit(6 + 3 / 12, "feet"),
  21267. weight: math.unit(519, "lb"),
  21268. name: "Back (Dressed)",
  21269. image: {
  21270. source: "./media/characters/dhari/back-dressed.svg",
  21271. extra: 1699 / 1537,
  21272. bottom: 0.01
  21273. }
  21274. },
  21275. maw: {
  21276. height: math.unit(0.95, "feet"),
  21277. name: "Maw",
  21278. image: {
  21279. source: "./media/characters/dhari/maw.svg"
  21280. }
  21281. },
  21282. wereFront: {
  21283. height: math.unit(12 + 8 / 12, "feet"),
  21284. weight: math.unit(4000, "lb"),
  21285. name: "Front (Were)",
  21286. image: {
  21287. source: "./media/characters/dhari/were-front.svg",
  21288. extra: 1065 / 969,
  21289. bottom: 0.015
  21290. }
  21291. },
  21292. wereBack: {
  21293. height: math.unit(12 + 8 / 12, "feet"),
  21294. weight: math.unit(4000, "lb"),
  21295. name: "Back (Were)",
  21296. image: {
  21297. source: "./media/characters/dhari/were-back.svg",
  21298. extra: 1065 / 969,
  21299. bottom: 0.012
  21300. }
  21301. },
  21302. wereMaw: {
  21303. height: math.unit(0.625, "meters"),
  21304. name: "Maw (Were)",
  21305. image: {
  21306. source: "./media/characters/dhari/were-maw.svg"
  21307. }
  21308. },
  21309. },
  21310. [
  21311. {
  21312. name: "Normal",
  21313. height: math.unit(6 + 3 / 12, "feet"),
  21314. default: true
  21315. },
  21316. ]
  21317. ))
  21318. characterMakers.push(() => makeCharacter(
  21319. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21320. {
  21321. anthro: {
  21322. height: math.unit(5 + 7 / 12, "feet"),
  21323. weight: math.unit(175, "lb"),
  21324. name: "Anthro",
  21325. image: {
  21326. source: "./media/characters/rena-dyne/anthro.svg",
  21327. extra: 1849 / 1785,
  21328. bottom: 0.005
  21329. }
  21330. },
  21331. taur: {
  21332. height: math.unit(15 + 6 / 12, "feet"),
  21333. weight: math.unit(8000, "lb"),
  21334. name: "Taur",
  21335. image: {
  21336. source: "./media/characters/rena-dyne/taur.svg",
  21337. extra: 2315 / 2234,
  21338. bottom: 0.033
  21339. }
  21340. },
  21341. },
  21342. [
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(5 + 7 / 12, "feet"),
  21346. default: true
  21347. },
  21348. ]
  21349. ))
  21350. characterMakers.push(() => makeCharacter(
  21351. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21352. {
  21353. front: {
  21354. height: math.unit(8, "feet"),
  21355. weight: math.unit(600, "lb"),
  21356. name: "Front",
  21357. image: {
  21358. source: "./media/characters/weremeep/front.svg",
  21359. extra: 967 / 862,
  21360. bottom: 0.01
  21361. }
  21362. },
  21363. },
  21364. [
  21365. {
  21366. name: "Normal",
  21367. height: math.unit(8, "feet"),
  21368. default: true
  21369. },
  21370. {
  21371. name: "Lorg",
  21372. height: math.unit(12, "feet")
  21373. },
  21374. {
  21375. name: "Oh Lawd She Comin'",
  21376. height: math.unit(20, "feet")
  21377. },
  21378. ]
  21379. ))
  21380. characterMakers.push(() => makeCharacter(
  21381. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21382. {
  21383. front: {
  21384. height: math.unit(4, "feet"),
  21385. weight: math.unit(90, "lb"),
  21386. name: "Front",
  21387. image: {
  21388. source: "./media/characters/reza/front.svg",
  21389. extra: 1183 / 1111,
  21390. bottom: 0.017
  21391. }
  21392. },
  21393. back: {
  21394. height: math.unit(4, "feet"),
  21395. weight: math.unit(90, "lb"),
  21396. name: "Back",
  21397. image: {
  21398. source: "./media/characters/reza/back.svg",
  21399. extra: 1183 / 1111,
  21400. bottom: 0.01
  21401. }
  21402. },
  21403. drake: {
  21404. height: math.unit(30, "feet"),
  21405. weight: math.unit(246960, "lb"),
  21406. name: "Drake",
  21407. image: {
  21408. source: "./media/characters/reza/drake.svg",
  21409. extra: 2350 / 2024,
  21410. bottom: 60.7 / 2403
  21411. }
  21412. },
  21413. },
  21414. [
  21415. {
  21416. name: "Normal",
  21417. height: math.unit(4, "feet"),
  21418. default: true
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21424. {
  21425. side: {
  21426. height: math.unit(15, "feet"),
  21427. weight: math.unit(14, "tons"),
  21428. name: "Side",
  21429. image: {
  21430. source: "./media/characters/athea/side.svg",
  21431. extra: 960 / 540,
  21432. bottom: 0.003
  21433. }
  21434. },
  21435. sitting: {
  21436. height: math.unit(6 * 2.85, "feet"),
  21437. weight: math.unit(14, "tons"),
  21438. name: "Sitting",
  21439. image: {
  21440. source: "./media/characters/athea/sitting.svg",
  21441. extra: 621 / 581,
  21442. bottom: 0.075
  21443. }
  21444. },
  21445. maw: {
  21446. height: math.unit(7.59498031496063, "feet"),
  21447. name: "Maw",
  21448. image: {
  21449. source: "./media/characters/athea/maw.svg"
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Lap Cat",
  21456. height: math.unit(2.5, "feet")
  21457. },
  21458. {
  21459. name: "Minimacro",
  21460. height: math.unit(15, "feet"),
  21461. default: true
  21462. },
  21463. {
  21464. name: "Macro",
  21465. height: math.unit(120, "feet")
  21466. },
  21467. {
  21468. name: "Macro+",
  21469. height: math.unit(640, "feet")
  21470. },
  21471. {
  21472. name: "Colossus",
  21473. height: math.unit(2.2, "miles")
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21479. {
  21480. front: {
  21481. height: math.unit(8 + 8 / 12, "feet"),
  21482. weight: math.unit(130, "kg"),
  21483. name: "Front",
  21484. image: {
  21485. source: "./media/characters/seroko/front.svg",
  21486. extra: 1385 / 1280,
  21487. bottom: 0.025
  21488. }
  21489. },
  21490. back: {
  21491. height: math.unit(8 + 8 / 12, "feet"),
  21492. weight: math.unit(130, "kg"),
  21493. name: "Back",
  21494. image: {
  21495. source: "./media/characters/seroko/back.svg",
  21496. extra: 1369 / 1238,
  21497. bottom: 0.018
  21498. }
  21499. },
  21500. frontDressed: {
  21501. height: math.unit(8 + 8 / 12, "feet"),
  21502. weight: math.unit(130, "kg"),
  21503. name: "Front (Dressed)",
  21504. image: {
  21505. source: "./media/characters/seroko/front-dressed.svg",
  21506. extra: 1366 / 1275,
  21507. bottom: 0.03
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(8 + 8 / 12, "feet"),
  21515. default: true
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21521. {
  21522. front: {
  21523. height: math.unit(5.5, "feet"),
  21524. weight: math.unit(160, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/quatzi/front.svg",
  21528. extra: 2346 / 2242,
  21529. bottom: 0.015
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(5.5, "feet"),
  21537. default: true
  21538. },
  21539. {
  21540. name: "Big",
  21541. height: math.unit(7.7, "feet")
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(5 + 11 / 12, "feet"),
  21550. weight: math.unit(180, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/sen/front.svg",
  21554. extra: 1321 / 1254,
  21555. bottom: 0.015
  21556. }
  21557. },
  21558. side: {
  21559. height: math.unit(5 + 11 / 12, "feet"),
  21560. weight: math.unit(180, "lb"),
  21561. name: "Side",
  21562. image: {
  21563. source: "./media/characters/sen/side.svg",
  21564. extra: 1321 / 1254,
  21565. bottom: 0.007
  21566. }
  21567. },
  21568. back: {
  21569. height: math.unit(5 + 11 / 12, "feet"),
  21570. weight: math.unit(180, "lb"),
  21571. name: "Back",
  21572. image: {
  21573. source: "./media/characters/sen/back.svg",
  21574. extra: 1321 / 1254
  21575. }
  21576. },
  21577. },
  21578. [
  21579. {
  21580. name: "Normal",
  21581. height: math.unit(5 + 11 / 12, "feet"),
  21582. default: true
  21583. },
  21584. ]
  21585. ))
  21586. characterMakers.push(() => makeCharacter(
  21587. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21588. {
  21589. front: {
  21590. height: math.unit(166.6, "cm"),
  21591. weight: math.unit(66.6, "kg"),
  21592. name: "Front",
  21593. image: {
  21594. source: "./media/characters/fruity/front.svg",
  21595. extra: 1510 / 1386,
  21596. bottom: 0.04
  21597. }
  21598. },
  21599. back: {
  21600. height: math.unit(166.6, "cm"),
  21601. weight: math.unit(66.6, "lb"),
  21602. name: "Back",
  21603. image: {
  21604. source: "./media/characters/fruity/back.svg",
  21605. extra: 1563 / 1435,
  21606. bottom: 0.005
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(166.6, "cm"),
  21614. default: true
  21615. },
  21616. {
  21617. name: "Demonic",
  21618. height: math.unit(166.6, "feet")
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21624. {
  21625. side: {
  21626. height: math.unit(10, "feet"),
  21627. weight: math.unit(500, "lb"),
  21628. name: "Side",
  21629. image: {
  21630. source: "./media/characters/zost/side.svg",
  21631. extra: 2870/2533,
  21632. bottom: 252/3122
  21633. }
  21634. },
  21635. mawFront: {
  21636. height: math.unit(1.08, "meters"),
  21637. name: "Maw (Front)",
  21638. image: {
  21639. source: "./media/characters/zost/maw-front.svg"
  21640. }
  21641. },
  21642. mawSide: {
  21643. height: math.unit(2.66, "feet"),
  21644. name: "Maw (Side)",
  21645. image: {
  21646. source: "./media/characters/zost/maw-side.svg"
  21647. }
  21648. },
  21649. wingspan: {
  21650. height: math.unit(7.4, "feet"),
  21651. name: "Wingspan",
  21652. image: {
  21653. source: "./media/characters/zost/wingspan.svg"
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(10, "feet"),
  21661. default: true
  21662. },
  21663. ]
  21664. ))
  21665. characterMakers.push(() => makeCharacter(
  21666. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21667. {
  21668. front: {
  21669. height: math.unit(5 + 4 / 12, "feet"),
  21670. weight: math.unit(120, "lb"),
  21671. name: "Front",
  21672. image: {
  21673. source: "./media/characters/luci/front.svg",
  21674. extra: 1985 / 1884,
  21675. bottom: 0.04
  21676. }
  21677. },
  21678. back: {
  21679. height: math.unit(5 + 4 / 12, "feet"),
  21680. weight: math.unit(120, "lb"),
  21681. name: "Back",
  21682. image: {
  21683. source: "./media/characters/luci/back.svg",
  21684. extra: 1892 / 1791,
  21685. bottom: 0.002
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Normal",
  21692. height: math.unit(5 + 4 / 12, "feet"),
  21693. default: true
  21694. },
  21695. ]
  21696. ))
  21697. characterMakers.push(() => makeCharacter(
  21698. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21699. {
  21700. front: {
  21701. height: math.unit(1500, "feet"),
  21702. weight: math.unit(3.8e6, "tons"),
  21703. name: "Front",
  21704. image: {
  21705. source: "./media/characters/2th/front.svg",
  21706. extra: 3489 / 3350,
  21707. bottom: 0.1
  21708. }
  21709. },
  21710. foot: {
  21711. height: math.unit(461, "feet"),
  21712. name: "Foot",
  21713. image: {
  21714. source: "./media/characters/2th/foot.svg"
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "\"Micro\"",
  21721. height: math.unit(15 + 7 / 12, "feet")
  21722. },
  21723. {
  21724. name: "Normal",
  21725. height: math.unit(1500, "feet"),
  21726. default: true
  21727. },
  21728. {
  21729. name: "Macro",
  21730. height: math.unit(5000, "feet")
  21731. },
  21732. {
  21733. name: "Megamacro",
  21734. height: math.unit(15, "miles")
  21735. },
  21736. {
  21737. name: "Gigamacro",
  21738. height: math.unit(4000, "miles")
  21739. },
  21740. {
  21741. name: "Galactic",
  21742. height: math.unit(50, "AU")
  21743. },
  21744. ]
  21745. ))
  21746. characterMakers.push(() => makeCharacter(
  21747. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21748. {
  21749. front: {
  21750. height: math.unit(5 + 6 / 12, "feet"),
  21751. weight: math.unit(220, "lb"),
  21752. name: "Front",
  21753. image: {
  21754. source: "./media/characters/amethyst/front.svg",
  21755. extra: 2078 / 2040,
  21756. bottom: 0.045
  21757. }
  21758. },
  21759. back: {
  21760. height: math.unit(5 + 6 / 12, "feet"),
  21761. weight: math.unit(220, "lb"),
  21762. name: "Back",
  21763. image: {
  21764. source: "./media/characters/amethyst/back.svg",
  21765. extra: 2021 / 1989,
  21766. bottom: 0.02
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Normal",
  21773. height: math.unit(5 + 6 / 12, "feet"),
  21774. default: true
  21775. },
  21776. ]
  21777. ))
  21778. characterMakers.push(() => makeCharacter(
  21779. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21780. {
  21781. front: {
  21782. height: math.unit(4 + 11 / 12, "feet"),
  21783. weight: math.unit(120, "lb"),
  21784. name: "Front",
  21785. image: {
  21786. source: "./media/characters/yumi-akiyama/front.svg",
  21787. extra: 1327 / 1235,
  21788. bottom: 0.02
  21789. }
  21790. },
  21791. back: {
  21792. height: math.unit(4 + 11 / 12, "feet"),
  21793. weight: math.unit(120, "lb"),
  21794. name: "Back",
  21795. image: {
  21796. source: "./media/characters/yumi-akiyama/back.svg",
  21797. extra: 1287 / 1245,
  21798. bottom: 0.002
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Galactic",
  21805. height: math.unit(50, "galaxies"),
  21806. default: true
  21807. },
  21808. {
  21809. name: "Universal",
  21810. height: math.unit(100, "universes")
  21811. },
  21812. ]
  21813. ))
  21814. characterMakers.push(() => makeCharacter(
  21815. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21816. {
  21817. front: {
  21818. height: math.unit(8, "feet"),
  21819. weight: math.unit(500, "lb"),
  21820. name: "Front",
  21821. image: {
  21822. source: "./media/characters/rifter-yrmori/front.svg",
  21823. extra: 1180 / 1125,
  21824. bottom: 0.02
  21825. }
  21826. },
  21827. back: {
  21828. height: math.unit(8, "feet"),
  21829. weight: math.unit(500, "lb"),
  21830. name: "Back",
  21831. image: {
  21832. source: "./media/characters/rifter-yrmori/back.svg",
  21833. extra: 1190 / 1145,
  21834. bottom: 0.001
  21835. }
  21836. },
  21837. wings: {
  21838. height: math.unit(7.75, "feet"),
  21839. weight: math.unit(500, "lb"),
  21840. name: "Wings",
  21841. image: {
  21842. source: "./media/characters/rifter-yrmori/wings.svg",
  21843. extra: 1357 / 1285
  21844. }
  21845. },
  21846. maw: {
  21847. height: math.unit(0.8, "feet"),
  21848. name: "Maw",
  21849. image: {
  21850. source: "./media/characters/rifter-yrmori/maw.svg"
  21851. }
  21852. },
  21853. mawfront: {
  21854. height: math.unit(1.45, "feet"),
  21855. name: "Maw (Front)",
  21856. image: {
  21857. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21858. }
  21859. },
  21860. },
  21861. [
  21862. {
  21863. name: "Normal",
  21864. height: math.unit(8, "feet"),
  21865. default: true
  21866. },
  21867. {
  21868. name: "Macro",
  21869. height: math.unit(42, "meters")
  21870. },
  21871. ]
  21872. ))
  21873. characterMakers.push(() => makeCharacter(
  21874. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21875. {
  21876. were: {
  21877. height: math.unit(25 + 6 / 12, "feet"),
  21878. weight: math.unit(10000, "lb"),
  21879. name: "Were",
  21880. image: {
  21881. source: "./media/characters/tahajin/were.svg",
  21882. extra: 801 / 770,
  21883. bottom: 0.042
  21884. }
  21885. },
  21886. aquatic: {
  21887. height: math.unit(6 + 4 / 12, "feet"),
  21888. weight: math.unit(160, "lb"),
  21889. name: "Aquatic",
  21890. image: {
  21891. source: "./media/characters/tahajin/aquatic.svg",
  21892. extra: 572 / 542,
  21893. bottom: 0.04
  21894. }
  21895. },
  21896. chow: {
  21897. height: math.unit(8 + 11 / 12, "feet"),
  21898. weight: math.unit(450, "lb"),
  21899. name: "Chow",
  21900. image: {
  21901. source: "./media/characters/tahajin/chow.svg",
  21902. extra: 660 / 640,
  21903. bottom: 0.015
  21904. }
  21905. },
  21906. demiNaga: {
  21907. height: math.unit(6 + 8 / 12, "feet"),
  21908. weight: math.unit(300, "lb"),
  21909. name: "Demi Naga",
  21910. image: {
  21911. source: "./media/characters/tahajin/demi-naga.svg",
  21912. extra: 643 / 615,
  21913. bottom: 0.1
  21914. }
  21915. },
  21916. data: {
  21917. height: math.unit(5, "inches"),
  21918. weight: math.unit(0.1, "lb"),
  21919. name: "Data",
  21920. image: {
  21921. source: "./media/characters/tahajin/data.svg"
  21922. }
  21923. },
  21924. fluu: {
  21925. height: math.unit(5 + 7 / 12, "feet"),
  21926. weight: math.unit(140, "lb"),
  21927. name: "Fluu",
  21928. image: {
  21929. source: "./media/characters/tahajin/fluu.svg",
  21930. extra: 628 / 592,
  21931. bottom: 0.02
  21932. }
  21933. },
  21934. starWarrior: {
  21935. height: math.unit(4 + 5 / 12, "feet"),
  21936. weight: math.unit(50, "lb"),
  21937. name: "Star Warrior",
  21938. image: {
  21939. source: "./media/characters/tahajin/star-warrior.svg"
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(25 + 6 / 12, "feet"),
  21947. default: true
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(8, "feet"),
  21956. weight: math.unit(350, "lb"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/gabira/front.svg",
  21960. extra: 608 / 580,
  21961. bottom: 0.03
  21962. }
  21963. },
  21964. back: {
  21965. height: math.unit(8, "feet"),
  21966. weight: math.unit(350, "lb"),
  21967. name: "Back",
  21968. image: {
  21969. source: "./media/characters/gabira/back.svg",
  21970. extra: 608 / 580,
  21971. bottom: 0.03
  21972. }
  21973. },
  21974. },
  21975. [
  21976. {
  21977. name: "Normal",
  21978. height: math.unit(8, "feet"),
  21979. default: true
  21980. },
  21981. ]
  21982. ))
  21983. characterMakers.push(() => makeCharacter(
  21984. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21985. {
  21986. front: {
  21987. height: math.unit(5 + 3 / 12, "feet"),
  21988. weight: math.unit(137, "lb"),
  21989. name: "Front",
  21990. image: {
  21991. source: "./media/characters/sasha-katraine/front.svg",
  21992. extra: 1745/1694,
  21993. bottom: 37/1782
  21994. }
  21995. },
  21996. back: {
  21997. height: math.unit(5 + 3 / 12, "feet"),
  21998. weight: math.unit(137, "lb"),
  21999. name: "Back",
  22000. image: {
  22001. source: "./media/characters/sasha-katraine/back.svg",
  22002. extra: 1776/1699,
  22003. bottom: 26/1802
  22004. }
  22005. },
  22006. },
  22007. [
  22008. {
  22009. name: "Micro",
  22010. height: math.unit(5, "inches")
  22011. },
  22012. {
  22013. name: "Normal",
  22014. height: math.unit(5 + 3 / 12, "feet"),
  22015. default: true
  22016. },
  22017. ]
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22021. {
  22022. side: {
  22023. height: math.unit(4, "inches"),
  22024. weight: math.unit(200, "grams"),
  22025. name: "Side",
  22026. image: {
  22027. source: "./media/characters/der/side.svg",
  22028. extra: 719 / 400,
  22029. bottom: 30.6 / 749.9187
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Micro",
  22036. height: math.unit(4, "inches"),
  22037. default: true
  22038. },
  22039. ]
  22040. ))
  22041. characterMakers.push(() => makeCharacter(
  22042. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22043. {
  22044. side: {
  22045. height: math.unit(30, "meters"),
  22046. weight: math.unit(700, "tonnes"),
  22047. name: "Side",
  22048. image: {
  22049. source: "./media/characters/fixerdragon/side.svg",
  22050. extra: (1293.0514 - 116.03) / 1106.86,
  22051. bottom: 116.03 / 1293.0514
  22052. }
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Planck",
  22058. height: math.unit(1.6e-35, "meters")
  22059. },
  22060. {
  22061. name: "Micro",
  22062. height: math.unit(0.4, "meters")
  22063. },
  22064. {
  22065. name: "Normal",
  22066. height: math.unit(30, "meters"),
  22067. default: true
  22068. },
  22069. {
  22070. name: "Megamacro",
  22071. height: math.unit(1.2, "megameters")
  22072. },
  22073. {
  22074. name: "Teramacro",
  22075. height: math.unit(130, "terameters")
  22076. },
  22077. {
  22078. name: "Yottamacro",
  22079. height: math.unit(6200, "yottameters")
  22080. },
  22081. ]
  22082. ));
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(8, "feet"),
  22088. weight: math.unit(250, "lb"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/kite/front.svg",
  22092. extra: 2796 / 2659,
  22093. bottom: 0.002
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(8, "feet"),
  22101. default: true
  22102. },
  22103. {
  22104. name: "Macro",
  22105. height: math.unit(360, "feet")
  22106. },
  22107. {
  22108. name: "Megamacro",
  22109. height: math.unit(1500, "feet")
  22110. },
  22111. ]
  22112. ))
  22113. characterMakers.push(() => makeCharacter(
  22114. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  22115. {
  22116. front: {
  22117. height: math.unit(5 + 11/12, "feet"),
  22118. weight: math.unit(170, "lb"),
  22119. name: "Front",
  22120. image: {
  22121. source: "./media/characters/poojawa-vynar/front.svg",
  22122. extra: 1735/1585,
  22123. bottom: 96/1831
  22124. }
  22125. },
  22126. back: {
  22127. height: math.unit(5 + 11/12, "feet"),
  22128. weight: math.unit(170, "lb"),
  22129. name: "Back",
  22130. image: {
  22131. source: "./media/characters/poojawa-vynar/back.svg",
  22132. extra: 1749/1607,
  22133. bottom: 28/1777
  22134. }
  22135. },
  22136. male: {
  22137. height: math.unit(5 + 11/12, "feet"),
  22138. weight: math.unit(170, "lb"),
  22139. name: "Male",
  22140. image: {
  22141. source: "./media/characters/poojawa-vynar/male.svg",
  22142. extra: 1855/1713,
  22143. bottom: 63/1918
  22144. }
  22145. },
  22146. taur: {
  22147. height: math.unit(5 + 11/12, "feet"),
  22148. weight: math.unit(170, "lb"),
  22149. name: "Taur",
  22150. image: {
  22151. source: "./media/characters/poojawa-vynar/taur.svg",
  22152. extra: 1151/1059,
  22153. bottom: 356/1507
  22154. }
  22155. },
  22156. frontDressed: {
  22157. height: math.unit(5 + 11/12, "feet"),
  22158. weight: math.unit(170, "lb"),
  22159. name: "Front (Dressed)",
  22160. image: {
  22161. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22162. extra: 1735/1585,
  22163. bottom: 96/1831
  22164. }
  22165. },
  22166. backDressed: {
  22167. height: math.unit(5 + 11/12, "feet"),
  22168. weight: math.unit(170, "lb"),
  22169. name: "Back (Dressed)",
  22170. image: {
  22171. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22172. extra: 1749/1607,
  22173. bottom: 28/1777
  22174. }
  22175. },
  22176. maleDressed: {
  22177. height: math.unit(5 + 11/12, "feet"),
  22178. weight: math.unit(170, "lb"),
  22179. name: "Male (Dressed)",
  22180. image: {
  22181. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22182. extra: 1855/1713,
  22183. bottom: 63/1918
  22184. }
  22185. },
  22186. taurDressed: {
  22187. height: math.unit(5 + 11/12, "feet"),
  22188. weight: math.unit(170, "lb"),
  22189. name: "Taur (Dressed)",
  22190. image: {
  22191. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22192. extra: 1151/1059,
  22193. bottom: 356/1507
  22194. }
  22195. },
  22196. maw: {
  22197. height: math.unit(1.46, "feet"),
  22198. name: "Maw",
  22199. image: {
  22200. source: "./media/characters/poojawa-vynar/maw.svg"
  22201. }
  22202. },
  22203. head: {
  22204. height: math.unit(2.34, "feet"),
  22205. name: "Head",
  22206. image: {
  22207. source: "./media/characters/poojawa-vynar/head.svg"
  22208. }
  22209. },
  22210. paw: {
  22211. height: math.unit(1.61, "feet"),
  22212. name: "Paw",
  22213. image: {
  22214. source: "./media/characters/poojawa-vynar/paw.svg"
  22215. }
  22216. },
  22217. pawToering: {
  22218. height: math.unit(1.72, "feet"),
  22219. name: "Paw (Toering)",
  22220. image: {
  22221. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22222. }
  22223. },
  22224. toering: {
  22225. height: math.unit(2.9, "inches"),
  22226. name: "Toering",
  22227. image: {
  22228. source: "./media/characters/poojawa-vynar/toering.svg"
  22229. }
  22230. },
  22231. shaft: {
  22232. height: math.unit(0.625, "feet"),
  22233. name: "Shaft",
  22234. image: {
  22235. source: "./media/characters/poojawa-vynar/shaft.svg"
  22236. }
  22237. },
  22238. spade: {
  22239. height: math.unit(0.42, "feet"),
  22240. name: "Spade",
  22241. image: {
  22242. source: "./media/characters/poojawa-vynar/spade.svg"
  22243. }
  22244. },
  22245. },
  22246. [
  22247. {
  22248. name: "Shortstack",
  22249. height: math.unit(4, "feet")
  22250. },
  22251. {
  22252. name: "Normal",
  22253. height: math.unit(5 + 11 / 12, "feet"),
  22254. default: true
  22255. },
  22256. {
  22257. name: "Tauric",
  22258. height: math.unit(4, "meters")
  22259. },
  22260. ]
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22264. {
  22265. front: {
  22266. height: math.unit(293, "meters"),
  22267. weight: math.unit(70400, "tons"),
  22268. name: "Front",
  22269. image: {
  22270. source: "./media/characters/violette/front.svg",
  22271. extra: 1227 / 1180,
  22272. bottom: 0.005
  22273. }
  22274. },
  22275. back: {
  22276. height: math.unit(293, "meters"),
  22277. weight: math.unit(70400, "tons"),
  22278. name: "Back",
  22279. image: {
  22280. source: "./media/characters/violette/back.svg",
  22281. extra: 1227 / 1180,
  22282. bottom: 0.005
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Macro",
  22289. height: math.unit(293, "meters"),
  22290. default: true
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22296. {
  22297. front: {
  22298. height: math.unit(1050, "feet"),
  22299. weight: math.unit(200000, "tons"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/alessandra/front.svg",
  22303. extra: 960 / 912,
  22304. bottom: 0.06
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Macro",
  22311. height: math.unit(1050, "feet")
  22312. },
  22313. {
  22314. name: "Macro+",
  22315. height: math.unit(900, "meters"),
  22316. default: true
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22322. {
  22323. front: {
  22324. height: math.unit(5, "feet"),
  22325. weight: math.unit(187, "lb"),
  22326. name: "Front",
  22327. image: {
  22328. source: "./media/characters/person/front.svg",
  22329. extra: 3087 / 2945,
  22330. bottom: 91 / 3181
  22331. }
  22332. },
  22333. },
  22334. [
  22335. {
  22336. name: "Micro",
  22337. height: math.unit(3, "inches")
  22338. },
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(5, "feet"),
  22342. default: true
  22343. },
  22344. {
  22345. name: "Macro",
  22346. height: math.unit(90, "feet")
  22347. },
  22348. {
  22349. name: "Max Size",
  22350. height: math.unit(280, "feet")
  22351. },
  22352. ]
  22353. ))
  22354. characterMakers.push(() => makeCharacter(
  22355. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22356. {
  22357. front: {
  22358. height: math.unit(4.5, "meters"),
  22359. weight: math.unit(3200, "lb"),
  22360. name: "Front",
  22361. image: {
  22362. source: "./media/characters/ty/front.svg",
  22363. extra: 1038 / 960,
  22364. bottom: 31.156 / 1068
  22365. }
  22366. },
  22367. back: {
  22368. height: math.unit(4.5, "meters"),
  22369. weight: math.unit(3200, "lb"),
  22370. name: "Back",
  22371. image: {
  22372. source: "./media/characters/ty/back.svg",
  22373. extra: 1044 / 966,
  22374. bottom: 7.48 / 1049
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(4.5, "meters"),
  22382. default: true
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22388. {
  22389. front: {
  22390. height: math.unit(5 + 4 / 12, "feet"),
  22391. weight: math.unit(115, "lb"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/rocky/front.svg",
  22395. extra: 1012 / 975,
  22396. bottom: 54 / 1066
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(5 + 4 / 12, "feet"),
  22404. default: true
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22410. {
  22411. upright: {
  22412. height: math.unit(6, "meters"),
  22413. weight: math.unit(4000, "kg"),
  22414. name: "Upright",
  22415. image: {
  22416. source: "./media/characters/ruin/upright.svg",
  22417. extra: 668 / 661,
  22418. bottom: 42 / 799.8396
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Normal",
  22425. height: math.unit(6, "meters"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(5, "feet"),
  22435. weight: math.unit(106, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/robin/front.svg",
  22439. extra: 862 / 799,
  22440. bottom: 42.4 / 914.8856
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Normal",
  22447. height: math.unit(5, "feet"),
  22448. default: true
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22454. {
  22455. side: {
  22456. height: math.unit(3, "feet"),
  22457. weight: math.unit(225, "lb"),
  22458. name: "Side",
  22459. image: {
  22460. source: "./media/characters/saian/side.svg",
  22461. extra: 566 / 356,
  22462. bottom: 79.7 / 643
  22463. }
  22464. },
  22465. maw: {
  22466. height: math.unit(2.85, "feet"),
  22467. name: "Maw",
  22468. image: {
  22469. source: "./media/characters/saian/maw.svg"
  22470. }
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Normal",
  22476. height: math.unit(3, "feet"),
  22477. default: true
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22483. {
  22484. side: {
  22485. height: math.unit(8, "feet"),
  22486. weight: math.unit(300, "lb"),
  22487. name: "Side",
  22488. image: {
  22489. source: "./media/characters/equus-silvermane/side.svg",
  22490. extra: 2176 / 2050,
  22491. bottom: 65.7 / 2245
  22492. }
  22493. },
  22494. front: {
  22495. height: math.unit(8, "feet"),
  22496. weight: math.unit(300, "lb"),
  22497. name: "Front",
  22498. image: {
  22499. source: "./media/characters/equus-silvermane/front.svg",
  22500. extra: 4633 / 4400,
  22501. bottom: 71.3 / 4706.915
  22502. }
  22503. },
  22504. sideStepping: {
  22505. height: math.unit(8, "feet"),
  22506. weight: math.unit(300, "lb"),
  22507. name: "Side (Stepping)",
  22508. image: {
  22509. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22510. extra: 1968 / 1860,
  22511. bottom: 16.4 / 1989
  22512. }
  22513. },
  22514. },
  22515. [
  22516. {
  22517. name: "Normal",
  22518. height: math.unit(8, "feet")
  22519. },
  22520. {
  22521. name: "Minimacro",
  22522. height: math.unit(75, "feet"),
  22523. default: true
  22524. },
  22525. {
  22526. name: "Macro",
  22527. height: math.unit(150, "feet")
  22528. },
  22529. {
  22530. name: "Macro+",
  22531. height: math.unit(1000, "feet")
  22532. },
  22533. {
  22534. name: "Megamacro",
  22535. height: math.unit(1, "mile")
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22541. {
  22542. side: {
  22543. height: math.unit(20, "feet"),
  22544. weight: math.unit(30000, "kg"),
  22545. name: "Side",
  22546. image: {
  22547. source: "./media/characters/windar/side.svg",
  22548. extra: 1491 / 1248,
  22549. bottom: 82.56 / 1568
  22550. }
  22551. },
  22552. },
  22553. [
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(20, "feet"),
  22557. default: true
  22558. },
  22559. ]
  22560. ))
  22561. characterMakers.push(() => makeCharacter(
  22562. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22563. {
  22564. side: {
  22565. height: math.unit(15.66, "feet"),
  22566. weight: math.unit(150, "lb"),
  22567. name: "Side",
  22568. image: {
  22569. source: "./media/characters/melody/side.svg",
  22570. extra: 1097 / 944,
  22571. bottom: 11.8 / 1109
  22572. }
  22573. },
  22574. sideOutfit: {
  22575. height: math.unit(15.66, "feet"),
  22576. weight: math.unit(150, "lb"),
  22577. name: "Side (Outfit)",
  22578. image: {
  22579. source: "./media/characters/melody/side-outfit.svg",
  22580. extra: 1097 / 944,
  22581. bottom: 11.8 / 1109
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Normal",
  22588. height: math.unit(15.66, "feet"),
  22589. default: true
  22590. },
  22591. ]
  22592. ))
  22593. characterMakers.push(() => makeCharacter(
  22594. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22595. {
  22596. front: {
  22597. height: math.unit(8, "feet"),
  22598. weight: math.unit(325, "lb"),
  22599. name: "Front",
  22600. image: {
  22601. source: "./media/characters/windera/front.svg",
  22602. extra: 3180 / 2845,
  22603. bottom: 178 / 3365
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Normal",
  22610. height: math.unit(8, "feet"),
  22611. default: true
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22617. {
  22618. front: {
  22619. height: math.unit(28.75, "feet"),
  22620. weight: math.unit(2000, "kg"),
  22621. name: "Front",
  22622. image: {
  22623. source: "./media/characters/sonear/front.svg",
  22624. extra: 1041.1 / 964.9,
  22625. bottom: 53.7 / 1096.6
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Normal",
  22632. height: math.unit(28.75, "feet"),
  22633. default: true
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22639. {
  22640. side: {
  22641. height: math.unit(25.5, "feet"),
  22642. weight: math.unit(23000, "kg"),
  22643. name: "Side",
  22644. image: {
  22645. source: "./media/characters/kanara/side.svg"
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(25.5, "feet"),
  22653. default: true
  22654. },
  22655. ]
  22656. ))
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22659. {
  22660. side: {
  22661. height: math.unit(10, "feet"),
  22662. weight: math.unit(1000, "kg"),
  22663. name: "Side",
  22664. image: {
  22665. source: "./media/characters/ereus/side.svg",
  22666. extra: 1157 / 959,
  22667. bottom: 153 / 1312.5
  22668. }
  22669. },
  22670. },
  22671. [
  22672. {
  22673. name: "Normal",
  22674. height: math.unit(10, "feet"),
  22675. default: true
  22676. },
  22677. ]
  22678. ))
  22679. characterMakers.push(() => makeCharacter(
  22680. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22681. {
  22682. side: {
  22683. height: math.unit(4.5, "feet"),
  22684. weight: math.unit(500, "lb"),
  22685. name: "Side",
  22686. image: {
  22687. source: "./media/characters/e-ter/side.svg",
  22688. extra: 1550 / 1248,
  22689. bottom: 146 / 1694
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(4.5, "feet"),
  22697. default: true
  22698. },
  22699. ]
  22700. ))
  22701. characterMakers.push(() => makeCharacter(
  22702. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22703. {
  22704. side: {
  22705. height: math.unit(9.7, "feet"),
  22706. weight: math.unit(4000, "kg"),
  22707. name: "Side",
  22708. image: {
  22709. source: "./media/characters/yamie/side.svg"
  22710. }
  22711. },
  22712. },
  22713. [
  22714. {
  22715. name: "Normal",
  22716. height: math.unit(9.7, "feet"),
  22717. default: true
  22718. },
  22719. ]
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22723. {
  22724. front: {
  22725. height: math.unit(50, "feet"),
  22726. weight: math.unit(50000, "kg"),
  22727. name: "Front",
  22728. image: {
  22729. source: "./media/characters/anders/front.svg",
  22730. extra: 570 / 539,
  22731. bottom: 14.7 / 586.7
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Large",
  22738. height: math.unit(50, "feet")
  22739. },
  22740. {
  22741. name: "Macro",
  22742. height: math.unit(2000, "feet"),
  22743. default: true
  22744. },
  22745. {
  22746. name: "Megamacro",
  22747. height: math.unit(12, "miles")
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22753. {
  22754. front: {
  22755. height: math.unit(7 + 2 / 12, "feet"),
  22756. weight: math.unit(300, "lb"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/reban/front.svg",
  22760. extra: 1287/1212,
  22761. bottom: 148/1435
  22762. }
  22763. },
  22764. head: {
  22765. height: math.unit(1.95, "feet"),
  22766. name: "Head",
  22767. image: {
  22768. source: "./media/characters/reban/head.svg"
  22769. }
  22770. },
  22771. maw: {
  22772. height: math.unit(0.95, "feet"),
  22773. name: "Maw",
  22774. image: {
  22775. source: "./media/characters/reban/maw.svg"
  22776. }
  22777. },
  22778. foot: {
  22779. height: math.unit(1.65, "feet"),
  22780. name: "Foot",
  22781. image: {
  22782. source: "./media/characters/reban/foot.svg"
  22783. }
  22784. },
  22785. dick: {
  22786. height: math.unit(7 / 5, "feet"),
  22787. name: "Dick",
  22788. image: {
  22789. source: "./media/characters/reban/dick.svg"
  22790. }
  22791. },
  22792. },
  22793. [
  22794. {
  22795. name: "Natural Height",
  22796. height: math.unit(7 + 2 / 12, "feet")
  22797. },
  22798. {
  22799. name: "Macro",
  22800. height: math.unit(500, "feet"),
  22801. default: true
  22802. },
  22803. {
  22804. name: "Canon Height",
  22805. height: math.unit(50, "AU")
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22811. {
  22812. front: {
  22813. height: math.unit(6, "feet"),
  22814. weight: math.unit(150, "lb"),
  22815. name: "Front",
  22816. image: {
  22817. source: "./media/characters/terrance-keayes/front.svg",
  22818. extra: 1.005,
  22819. bottom: 151 / 1615
  22820. }
  22821. },
  22822. side: {
  22823. height: math.unit(6, "feet"),
  22824. weight: math.unit(150, "lb"),
  22825. name: "Side",
  22826. image: {
  22827. source: "./media/characters/terrance-keayes/side.svg",
  22828. extra: 1.005,
  22829. bottom: 129.4 / 1544
  22830. }
  22831. },
  22832. back: {
  22833. height: math.unit(6, "feet"),
  22834. weight: math.unit(150, "lb"),
  22835. name: "Back",
  22836. image: {
  22837. source: "./media/characters/terrance-keayes/back.svg",
  22838. extra: 1.005,
  22839. bottom: 58.4 / 1557.3
  22840. }
  22841. },
  22842. dick: {
  22843. height: math.unit(6 * 0.208, "feet"),
  22844. name: "Dick",
  22845. image: {
  22846. source: "./media/characters/terrance-keayes/dick.svg"
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Canon Height",
  22853. height: math.unit(35, "miles"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(6, "feet"),
  22863. weight: math.unit(150, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/ofelia/front.svg",
  22867. extra: 1130/1117,
  22868. bottom: 91/1221
  22869. }
  22870. },
  22871. back: {
  22872. height: math.unit(6, "feet"),
  22873. weight: math.unit(150, "lb"),
  22874. name: "Back",
  22875. image: {
  22876. source: "./media/characters/ofelia/back.svg",
  22877. extra: 1172/1159,
  22878. bottom: 28/1200
  22879. }
  22880. },
  22881. maw: {
  22882. height: math.unit(1, "feet"),
  22883. name: "Maw",
  22884. image: {
  22885. source: "./media/characters/ofelia/maw.svg"
  22886. }
  22887. },
  22888. foot: {
  22889. height: math.unit(1.949, "feet"),
  22890. name: "Foot",
  22891. image: {
  22892. source: "./media/characters/ofelia/foot.svg"
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Canon Height",
  22899. height: math.unit(2000, "miles"),
  22900. default: true
  22901. },
  22902. ]
  22903. ))
  22904. characterMakers.push(() => makeCharacter(
  22905. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22906. {
  22907. front: {
  22908. height: math.unit(6, "feet"),
  22909. weight: math.unit(150, "lb"),
  22910. name: "Front",
  22911. image: {
  22912. source: "./media/characters/samuel/front.svg",
  22913. extra: 265 / 258,
  22914. bottom: 2 / 266.1566
  22915. }
  22916. },
  22917. },
  22918. [
  22919. {
  22920. name: "Macro",
  22921. height: math.unit(100, "feet"),
  22922. default: true
  22923. },
  22924. {
  22925. name: "Full Size",
  22926. height: math.unit(1000, "miles")
  22927. },
  22928. ]
  22929. ))
  22930. characterMakers.push(() => makeCharacter(
  22931. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22932. {
  22933. front: {
  22934. height: math.unit(6, "feet"),
  22935. weight: math.unit(300, "lb"),
  22936. name: "Front",
  22937. image: {
  22938. source: "./media/characters/beishir-kiel/front.svg",
  22939. extra: 569 / 547,
  22940. bottom: 41.9 / 609
  22941. }
  22942. },
  22943. maw: {
  22944. height: math.unit(6 * 0.202, "feet"),
  22945. name: "Maw",
  22946. image: {
  22947. source: "./media/characters/beishir-kiel/maw.svg"
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Macro",
  22954. height: math.unit(300, "feet"),
  22955. default: true
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(5 + 7/12, "feet"),
  22964. weight: math.unit(120, "lb"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/logan-grey/front.svg",
  22968. extra: 1836/1738,
  22969. bottom: 108/1944
  22970. }
  22971. },
  22972. back: {
  22973. height: math.unit(5 + 7/12, "feet"),
  22974. weight: math.unit(120, "lb"),
  22975. name: "Back",
  22976. image: {
  22977. source: "./media/characters/logan-grey/back.svg",
  22978. extra: 1880/1794,
  22979. bottom: 24/1904
  22980. }
  22981. },
  22982. frontSfw: {
  22983. height: math.unit(5 + 7/12, "feet"),
  22984. weight: math.unit(120, "lb"),
  22985. name: "Front (SFW)",
  22986. image: {
  22987. source: "./media/characters/logan-grey/front-sfw.svg",
  22988. extra: 1836/1738,
  22989. bottom: 108/1944
  22990. }
  22991. },
  22992. backSfw: {
  22993. height: math.unit(5 + 7/12, "feet"),
  22994. weight: math.unit(120, "lb"),
  22995. name: "Back (SFW)",
  22996. image: {
  22997. source: "./media/characters/logan-grey/back-sfw.svg",
  22998. extra: 1880/1794,
  22999. bottom: 24/1904
  23000. }
  23001. },
  23002. hands: {
  23003. height: math.unit(0.84, "feet"),
  23004. name: "Hands",
  23005. image: {
  23006. source: "./media/characters/logan-grey/hands.svg"
  23007. }
  23008. },
  23009. paws: {
  23010. height: math.unit(0.72, "feet"),
  23011. name: "Paws",
  23012. image: {
  23013. source: "./media/characters/logan-grey/paws.svg"
  23014. }
  23015. },
  23016. cock: {
  23017. height: math.unit(1.45, "feet"),
  23018. name: "Cock",
  23019. image: {
  23020. source: "./media/characters/logan-grey/cock.svg"
  23021. }
  23022. },
  23023. cockAlt: {
  23024. height: math.unit(1.437, "feet"),
  23025. name: "Cock (alt)",
  23026. image: {
  23027. source: "./media/characters/logan-grey/cock-alt.svg"
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(5 + 8 / 12, "feet")
  23035. },
  23036. {
  23037. name: "The 500 Foot Femboy",
  23038. height: math.unit(500, "feet"),
  23039. default: true
  23040. },
  23041. {
  23042. name: "Megmacro",
  23043. height: math.unit(20, "miles")
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23049. {
  23050. front: {
  23051. height: math.unit(8 + 2 / 12, "feet"),
  23052. weight: math.unit(275, "lb"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/draganta/front.svg",
  23056. extra: 1177 / 1135,
  23057. bottom: 33.46 / 1212.1
  23058. }
  23059. },
  23060. },
  23061. [
  23062. {
  23063. name: "Normal",
  23064. height: math.unit(8 + 6 / 12, "feet"),
  23065. default: true
  23066. },
  23067. {
  23068. name: "Macro",
  23069. height: math.unit(150, "feet")
  23070. },
  23071. {
  23072. name: "Megamacro",
  23073. height: math.unit(1000, "miles")
  23074. },
  23075. ]
  23076. ))
  23077. characterMakers.push(() => makeCharacter(
  23078. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23079. {
  23080. front: {
  23081. height: math.unit(1.72, "m"),
  23082. weight: math.unit(80, "lb"),
  23083. name: "Front",
  23084. image: {
  23085. source: "./media/characters/voski/front.svg",
  23086. extra: 2076.22 / 2022.4,
  23087. bottom: 102.7 / 2177.3866
  23088. }
  23089. },
  23090. frontNsfw: {
  23091. height: math.unit(1.72, "m"),
  23092. weight: math.unit(80, "lb"),
  23093. name: "Front (NSFW)",
  23094. image: {
  23095. source: "./media/characters/voski/front-nsfw.svg",
  23096. extra: 2076.22 / 2022.4,
  23097. bottom: 102.7 / 2177.3866
  23098. }
  23099. },
  23100. back: {
  23101. height: math.unit(1.72, "m"),
  23102. weight: math.unit(80, "lb"),
  23103. name: "Back",
  23104. image: {
  23105. source: "./media/characters/voski/back.svg",
  23106. extra: 2104 / 2051,
  23107. bottom: 10.45 / 2113.63
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(1.72, "m")
  23115. },
  23116. {
  23117. name: "Macro",
  23118. height: math.unit(55, "m"),
  23119. default: true
  23120. },
  23121. {
  23122. name: "Macro+",
  23123. height: math.unit(300, "m")
  23124. },
  23125. {
  23126. name: "Macro++",
  23127. height: math.unit(700, "m")
  23128. },
  23129. {
  23130. name: "Macro+++",
  23131. height: math.unit(4500, "m")
  23132. },
  23133. {
  23134. name: "Macro++++",
  23135. height: math.unit(45, "km")
  23136. },
  23137. {
  23138. name: "Macro+++++",
  23139. height: math.unit(1220, "km")
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23145. {
  23146. front: {
  23147. height: math.unit(2.3, "m"),
  23148. weight: math.unit(304, "kg"),
  23149. name: "Front",
  23150. image: {
  23151. source: "./media/characters/icowom-lee/front.svg",
  23152. extra: 985 / 955,
  23153. bottom: 25.4 / 1012
  23154. }
  23155. },
  23156. fronttentacles: {
  23157. height: math.unit(2.3, "m"),
  23158. weight: math.unit(304, "kg"),
  23159. name: "Front-tentacles",
  23160. image: {
  23161. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23162. extra: 985 / 955,
  23163. bottom: 25.4 / 1012
  23164. }
  23165. },
  23166. back: {
  23167. height: math.unit(2.3, "m"),
  23168. weight: math.unit(304, "kg"),
  23169. name: "Back",
  23170. image: {
  23171. source: "./media/characters/icowom-lee/back.svg",
  23172. extra: 975 / 954,
  23173. bottom: 9.5 / 985
  23174. }
  23175. },
  23176. backtentacles: {
  23177. height: math.unit(2.3, "m"),
  23178. weight: math.unit(304, "kg"),
  23179. name: "Back-tentacles",
  23180. image: {
  23181. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23182. extra: 975 / 954,
  23183. bottom: 9.5 / 985
  23184. }
  23185. },
  23186. frontDressed: {
  23187. height: math.unit(2.3, "m"),
  23188. weight: math.unit(304, "kg"),
  23189. name: "Front (Dressed)",
  23190. image: {
  23191. source: "./media/characters/icowom-lee/front-dressed.svg",
  23192. extra: 3076 / 2933,
  23193. bottom: 51.4 / 3125.1889
  23194. }
  23195. },
  23196. rump: {
  23197. height: math.unit(0.776, "meters"),
  23198. name: "Rump",
  23199. image: {
  23200. source: "./media/characters/icowom-lee/rump.svg"
  23201. }
  23202. },
  23203. genitals: {
  23204. height: math.unit(0.78, "meters"),
  23205. name: "Genitals",
  23206. image: {
  23207. source: "./media/characters/icowom-lee/genitals.svg"
  23208. }
  23209. },
  23210. },
  23211. [
  23212. {
  23213. name: "Normal",
  23214. height: math.unit(2.3, "meters"),
  23215. default: true
  23216. },
  23217. {
  23218. name: "Macro",
  23219. height: math.unit(94, "meters"),
  23220. default: true
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23226. {
  23227. front: {
  23228. height: math.unit(22, "meters"),
  23229. weight: math.unit(21000, "kg"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/shock-diamond/front.svg",
  23233. extra: 2204 / 2053,
  23234. bottom: 65 / 2239.47
  23235. }
  23236. },
  23237. frontNude: {
  23238. height: math.unit(22, "meters"),
  23239. weight: math.unit(21000, "kg"),
  23240. name: "Front (Nude)",
  23241. image: {
  23242. source: "./media/characters/shock-diamond/front-nude.svg",
  23243. extra: 2514 / 2285,
  23244. bottom: 13 / 2527.56
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(3, "meters")
  23252. },
  23253. {
  23254. name: "Macro",
  23255. height: math.unit(22, "meters"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(5 + 4 / 12, "feet"),
  23265. weight: math.unit(120, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/rory/front.svg",
  23269. extra: 1318/1241,
  23270. bottom: 42/1360
  23271. }
  23272. },
  23273. back: {
  23274. height: math.unit(5 + 4 / 12, "feet"),
  23275. weight: math.unit(120, "lb"),
  23276. name: "Back",
  23277. image: {
  23278. source: "./media/characters/rory/back.svg",
  23279. extra: 1318/1241,
  23280. bottom: 42/1360
  23281. }
  23282. },
  23283. butt: {
  23284. height: math.unit(1.74, "feet"),
  23285. name: "Butt",
  23286. image: {
  23287. source: "./media/characters/rory/butt.svg"
  23288. }
  23289. },
  23290. dick: {
  23291. height: math.unit(1.02, "feet"),
  23292. name: "Dick",
  23293. image: {
  23294. source: "./media/characters/rory/dick.svg"
  23295. }
  23296. },
  23297. paws: {
  23298. height: math.unit(1, "feet"),
  23299. name: "Paws",
  23300. image: {
  23301. source: "./media/characters/rory/paws.svg"
  23302. }
  23303. },
  23304. frontAlt: {
  23305. height: math.unit(5 + 4 / 12, "feet"),
  23306. weight: math.unit(120, "lb"),
  23307. name: "Front (Alt)",
  23308. image: {
  23309. source: "./media/characters/rory/front-alt.svg",
  23310. extra: 589 / 556,
  23311. bottom: 45.7 / 635.76
  23312. }
  23313. },
  23314. frontAltNude: {
  23315. height: math.unit(5 + 4 / 12, "feet"),
  23316. weight: math.unit(120, "lb"),
  23317. name: "Front (Alt, Nude)",
  23318. image: {
  23319. source: "./media/characters/rory/front-alt-nude.svg",
  23320. extra: 589 / 556,
  23321. bottom: 45.7 / 635.76
  23322. }
  23323. },
  23324. side: {
  23325. height: math.unit(5 + 4 / 12, "feet"),
  23326. weight: math.unit(120, "lb"),
  23327. name: "Side",
  23328. image: {
  23329. source: "./media/characters/rory/side.svg",
  23330. extra: 597 / 564,
  23331. bottom: 55 / 653
  23332. }
  23333. },
  23334. backAlt: {
  23335. height: math.unit(5 + 4 / 12, "feet"),
  23336. weight: math.unit(120, "lb"),
  23337. name: "Back (Alt)",
  23338. image: {
  23339. source: "./media/characters/rory/back-alt.svg",
  23340. extra: 620 / 585,
  23341. bottom: 8.86 / 630.43
  23342. }
  23343. },
  23344. dickAlt: {
  23345. height: math.unit(0.86, "feet"),
  23346. name: "Dick (Alt)",
  23347. image: {
  23348. source: "./media/characters/rory/dick-alt.svg"
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(5 + 4 / 12, "feet"),
  23356. default: true
  23357. },
  23358. {
  23359. name: "Macro",
  23360. height: math.unit(100, "feet")
  23361. },
  23362. {
  23363. name: "Macro+",
  23364. height: math.unit(140, "feet")
  23365. },
  23366. {
  23367. name: "Macro++",
  23368. height: math.unit(300, "feet")
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(5 + 9 / 12, "feet"),
  23377. weight: math.unit(190, "lb"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/sprisk/front.svg",
  23381. extra: 1225 / 1180,
  23382. bottom: 42.7 / 1266.4
  23383. }
  23384. },
  23385. frontNsfw: {
  23386. height: math.unit(5 + 9 / 12, "feet"),
  23387. weight: math.unit(190, "lb"),
  23388. name: "Front (NSFW)",
  23389. image: {
  23390. source: "./media/characters/sprisk/front-nsfw.svg",
  23391. extra: 1225 / 1180,
  23392. bottom: 42.7 / 1266.4
  23393. }
  23394. },
  23395. back: {
  23396. height: math.unit(5 + 9 / 12, "feet"),
  23397. weight: math.unit(190, "lb"),
  23398. name: "Back",
  23399. image: {
  23400. source: "./media/characters/sprisk/back.svg",
  23401. extra: 1247 / 1200,
  23402. bottom: 5.6 / 1253.04
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Tiny",
  23409. height: math.unit(2, "inches")
  23410. },
  23411. {
  23412. name: "Normal",
  23413. height: math.unit(5 + 9 / 12, "feet"),
  23414. default: true
  23415. },
  23416. {
  23417. name: "Mini Macro",
  23418. height: math.unit(18, "feet")
  23419. },
  23420. {
  23421. name: "Macro",
  23422. height: math.unit(100, "feet")
  23423. },
  23424. {
  23425. name: "MACRO",
  23426. height: math.unit(50, "miles")
  23427. },
  23428. {
  23429. name: "M A C R O",
  23430. height: math.unit(300, "miles")
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23436. {
  23437. side: {
  23438. height: math.unit(15.6, "meters"),
  23439. weight: math.unit(700000, "kg"),
  23440. name: "Side",
  23441. image: {
  23442. source: "./media/characters/bunsen/side.svg",
  23443. extra: 1644 / 358
  23444. }
  23445. },
  23446. foot: {
  23447. height: math.unit(1.611 * 1644 / 358, "meter"),
  23448. name: "Foot",
  23449. image: {
  23450. source: "./media/characters/bunsen/foot.svg"
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Small",
  23457. height: math.unit(10, "feet")
  23458. },
  23459. {
  23460. name: "Normal",
  23461. height: math.unit(15.6, "meters"),
  23462. default: true
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23468. {
  23469. front: {
  23470. height: math.unit(4 + 11 / 12, "feet"),
  23471. weight: math.unit(140, "lb"),
  23472. name: "Front",
  23473. image: {
  23474. source: "./media/characters/sesh/front.svg",
  23475. extra: 3420 / 3231,
  23476. bottom: 72 / 3949.5
  23477. }
  23478. },
  23479. },
  23480. [
  23481. {
  23482. name: "Normal",
  23483. height: math.unit(4 + 11 / 12, "feet")
  23484. },
  23485. {
  23486. name: "Grown",
  23487. height: math.unit(15, "feet"),
  23488. default: true
  23489. },
  23490. {
  23491. name: "Macro",
  23492. height: math.unit(1500, "feet")
  23493. },
  23494. {
  23495. name: "Megamacro",
  23496. height: math.unit(30, "miles")
  23497. },
  23498. {
  23499. name: "Continental",
  23500. height: math.unit(3000, "miles")
  23501. },
  23502. {
  23503. name: "Gravity Mass",
  23504. height: math.unit(300000, "miles")
  23505. },
  23506. {
  23507. name: "Planet Buster",
  23508. height: math.unit(30000000, "miles")
  23509. },
  23510. {
  23511. name: "Big",
  23512. height: math.unit(3000000000, "miles")
  23513. },
  23514. ]
  23515. ))
  23516. characterMakers.push(() => makeCharacter(
  23517. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23518. {
  23519. front: {
  23520. height: math.unit(9, "feet"),
  23521. weight: math.unit(350, "lb"),
  23522. name: "Front",
  23523. image: {
  23524. source: "./media/characters/pepper/front.svg",
  23525. extra: 1448 / 1312,
  23526. bottom: 9.4 / 1457.88
  23527. }
  23528. },
  23529. back: {
  23530. height: math.unit(9, "feet"),
  23531. weight: math.unit(350, "lb"),
  23532. name: "Back",
  23533. image: {
  23534. source: "./media/characters/pepper/back.svg",
  23535. extra: 1423 / 1300,
  23536. bottom: 4.6 / 1429
  23537. }
  23538. },
  23539. maw: {
  23540. height: math.unit(0.932, "feet"),
  23541. name: "Maw",
  23542. image: {
  23543. source: "./media/characters/pepper/maw.svg"
  23544. }
  23545. },
  23546. },
  23547. [
  23548. {
  23549. name: "Normal",
  23550. height: math.unit(9, "feet"),
  23551. default: true
  23552. },
  23553. ]
  23554. ))
  23555. characterMakers.push(() => makeCharacter(
  23556. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23557. {
  23558. front: {
  23559. height: math.unit(6, "feet"),
  23560. weight: math.unit(150, "lb"),
  23561. name: "Front",
  23562. image: {
  23563. source: "./media/characters/maelstrom/front.svg",
  23564. extra: 2100 / 1883,
  23565. bottom: 94 / 2196.7
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Less Kaiju",
  23572. height: math.unit(200, "feet")
  23573. },
  23574. {
  23575. name: "Kaiju",
  23576. height: math.unit(400, "feet"),
  23577. default: true
  23578. },
  23579. {
  23580. name: "Kaiju-er",
  23581. height: math.unit(600, "feet")
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23587. {
  23588. front: {
  23589. height: math.unit(6 + 5 / 12, "feet"),
  23590. weight: math.unit(180, "lb"),
  23591. name: "Front",
  23592. image: {
  23593. source: "./media/characters/lexir/front.svg",
  23594. extra: 180 / 172,
  23595. bottom: 12 / 192
  23596. }
  23597. },
  23598. back: {
  23599. height: math.unit(6 + 5 / 12, "feet"),
  23600. weight: math.unit(180, "lb"),
  23601. name: "Back",
  23602. image: {
  23603. source: "./media/characters/lexir/back.svg",
  23604. extra: 1273/1201,
  23605. bottom: 39/1312
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Very Smal",
  23612. height: math.unit(1, "nm")
  23613. },
  23614. {
  23615. name: "Normal",
  23616. height: math.unit(6 + 5 / 12, "feet"),
  23617. default: true
  23618. },
  23619. {
  23620. name: "Macro",
  23621. height: math.unit(1, "mile")
  23622. },
  23623. {
  23624. name: "Megamacro",
  23625. height: math.unit(50, "miles")
  23626. },
  23627. ]
  23628. ))
  23629. characterMakers.push(() => makeCharacter(
  23630. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23631. {
  23632. front: {
  23633. height: math.unit(1.5, "meters"),
  23634. weight: math.unit(100, "lb"),
  23635. name: "Front",
  23636. image: {
  23637. source: "./media/characters/maksio/front.svg",
  23638. extra: 1549 / 1531,
  23639. bottom: 123.7 / 1674.5429
  23640. }
  23641. },
  23642. back: {
  23643. height: math.unit(1.5, "meters"),
  23644. weight: math.unit(100, "lb"),
  23645. name: "Back",
  23646. image: {
  23647. source: "./media/characters/maksio/back.svg",
  23648. extra: 1541 / 1509,
  23649. bottom: 97 / 1639
  23650. }
  23651. },
  23652. hand: {
  23653. height: math.unit(0.621, "feet"),
  23654. name: "Hand",
  23655. image: {
  23656. source: "./media/characters/maksio/hand.svg"
  23657. }
  23658. },
  23659. foot: {
  23660. height: math.unit(1.611, "feet"),
  23661. name: "Foot",
  23662. image: {
  23663. source: "./media/characters/maksio/foot.svg"
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Shrunken",
  23670. height: math.unit(10, "cm")
  23671. },
  23672. {
  23673. name: "Normal",
  23674. height: math.unit(150, "cm"),
  23675. default: true
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(100, "feet"),
  23684. name: "Front",
  23685. image: {
  23686. source: "./media/characters/erza-bear/front.svg",
  23687. extra: 2449 / 2390,
  23688. bottom: 46 / 2494
  23689. }
  23690. },
  23691. back: {
  23692. height: math.unit(100, "feet"),
  23693. name: "Back",
  23694. image: {
  23695. source: "./media/characters/erza-bear/back.svg",
  23696. extra: 2489 / 2430,
  23697. bottom: 85.4 / 2480
  23698. }
  23699. },
  23700. tail: {
  23701. height: math.unit(42, "feet"),
  23702. name: "Tail",
  23703. image: {
  23704. source: "./media/characters/erza-bear/tail.svg"
  23705. }
  23706. },
  23707. tongue: {
  23708. height: math.unit(8, "feet"),
  23709. name: "Tongue",
  23710. image: {
  23711. source: "./media/characters/erza-bear/tongue.svg"
  23712. }
  23713. },
  23714. dick: {
  23715. height: math.unit(10.5, "feet"),
  23716. name: "Dick",
  23717. image: {
  23718. source: "./media/characters/erza-bear/dick.svg"
  23719. }
  23720. },
  23721. dickVertical: {
  23722. height: math.unit(16.9, "feet"),
  23723. name: "Dick (Vertical)",
  23724. image: {
  23725. source: "./media/characters/erza-bear/dick-vertical.svg"
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(100, "feet"),
  23733. default: true
  23734. },
  23735. ]
  23736. ))
  23737. characterMakers.push(() => makeCharacter(
  23738. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23739. {
  23740. front: {
  23741. height: math.unit(172, "cm"),
  23742. weight: math.unit(73, "kg"),
  23743. name: "Front",
  23744. image: {
  23745. source: "./media/characters/violet-flor/front.svg",
  23746. extra: 1530 / 1442,
  23747. bottom: 61.9 / 1588.8
  23748. }
  23749. },
  23750. back: {
  23751. height: math.unit(180, "cm"),
  23752. weight: math.unit(73, "kg"),
  23753. name: "Back",
  23754. image: {
  23755. source: "./media/characters/violet-flor/back.svg",
  23756. extra: 1692 / 1630,
  23757. bottom: 20 / 1712
  23758. }
  23759. },
  23760. },
  23761. [
  23762. {
  23763. name: "Normal",
  23764. height: math.unit(172, "cm"),
  23765. default: true
  23766. },
  23767. ]
  23768. ))
  23769. characterMakers.push(() => makeCharacter(
  23770. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23771. {
  23772. front: {
  23773. height: math.unit(6, "feet"),
  23774. weight: math.unit(220, "lb"),
  23775. name: "Front",
  23776. image: {
  23777. source: "./media/characters/lynn-rhea/front.svg",
  23778. extra: 310 / 273
  23779. }
  23780. },
  23781. back: {
  23782. height: math.unit(6, "feet"),
  23783. weight: math.unit(220, "lb"),
  23784. name: "Back",
  23785. image: {
  23786. source: "./media/characters/lynn-rhea/back.svg",
  23787. extra: 310 / 273
  23788. }
  23789. },
  23790. dicks: {
  23791. height: math.unit(0.9, "feet"),
  23792. name: "Dicks",
  23793. image: {
  23794. source: "./media/characters/lynn-rhea/dicks.svg"
  23795. }
  23796. },
  23797. slit: {
  23798. height: math.unit(0.4, "feet"),
  23799. name: "Slit",
  23800. image: {
  23801. source: "./media/characters/lynn-rhea/slit.svg"
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Micro",
  23808. height: math.unit(1, "inch")
  23809. },
  23810. {
  23811. name: "Macro",
  23812. height: math.unit(60, "feet"),
  23813. default: true
  23814. },
  23815. {
  23816. name: "Megamacro",
  23817. height: math.unit(2, "miles")
  23818. },
  23819. {
  23820. name: "Gigamacro",
  23821. height: math.unit(3, "earths")
  23822. },
  23823. {
  23824. name: "Galactic",
  23825. height: math.unit(0.8, "galaxies")
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23831. {
  23832. front: {
  23833. height: math.unit(1600, "feet"),
  23834. weight: math.unit(85758785169, "kg"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/valathos/front.svg",
  23838. extra: 1451 / 1339
  23839. }
  23840. },
  23841. },
  23842. [
  23843. {
  23844. name: "Macro",
  23845. height: math.unit(1600, "feet"),
  23846. default: true
  23847. },
  23848. ]
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23852. {
  23853. front: {
  23854. height: math.unit(7 + 5 / 12, "feet"),
  23855. weight: math.unit(300, "lb"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/azula/front.svg",
  23859. extra: 3208 / 2880,
  23860. bottom: 80.2 / 3277
  23861. }
  23862. },
  23863. back: {
  23864. height: math.unit(7 + 5 / 12, "feet"),
  23865. weight: math.unit(300, "lb"),
  23866. name: "Back",
  23867. image: {
  23868. source: "./media/characters/azula/back.svg",
  23869. extra: 3169 / 2822,
  23870. bottom: 150.6 / 3321
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "Normal",
  23877. height: math.unit(7 + 5 / 12, "feet"),
  23878. default: true
  23879. },
  23880. {
  23881. name: "Big",
  23882. height: math.unit(20, "feet")
  23883. },
  23884. ]
  23885. ))
  23886. characterMakers.push(() => makeCharacter(
  23887. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23888. {
  23889. front: {
  23890. height: math.unit(5 + 1 / 12, "feet"),
  23891. weight: math.unit(110, "lb"),
  23892. name: "Front",
  23893. image: {
  23894. source: "./media/characters/rupert/front.svg",
  23895. extra: 1549 / 1495,
  23896. bottom: 54.2 / 1604.4
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(5 + 1 / 12, "feet"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23910. {
  23911. front: {
  23912. height: math.unit(8 + 4 / 12, "feet"),
  23913. weight: math.unit(350, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/sheera-castellar/front.svg",
  23917. extra: 1957 / 1894,
  23918. bottom: 26.97 / 1975.017
  23919. }
  23920. },
  23921. side: {
  23922. height: math.unit(8 + 4 / 12, "feet"),
  23923. weight: math.unit(350, "lb"),
  23924. name: "Side",
  23925. image: {
  23926. source: "./media/characters/sheera-castellar/side.svg",
  23927. extra: 1957 / 1894
  23928. }
  23929. },
  23930. back: {
  23931. height: math.unit(8 + 4 / 12, "feet"),
  23932. weight: math.unit(350, "lb"),
  23933. name: "Back",
  23934. image: {
  23935. source: "./media/characters/sheera-castellar/back.svg",
  23936. extra: 1957 / 1894
  23937. }
  23938. },
  23939. angled: {
  23940. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23941. weight: math.unit(350, "lb"),
  23942. name: "Angled",
  23943. image: {
  23944. source: "./media/characters/sheera-castellar/angled.svg",
  23945. extra: 1807 / 1707,
  23946. bottom: 68 / 1875
  23947. }
  23948. },
  23949. genitals: {
  23950. height: math.unit(2.2, "feet"),
  23951. name: "Genitals",
  23952. image: {
  23953. source: "./media/characters/sheera-castellar/genitals.svg"
  23954. }
  23955. },
  23956. taur: {
  23957. height: math.unit(10 + 6/12, "feet"),
  23958. name: "Taur",
  23959. image: {
  23960. source: "./media/characters/sheera-castellar/taur.svg",
  23961. extra: 2017/1909,
  23962. bottom: 185/2202
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "Normal",
  23969. height: math.unit(8 + 4 / 12, "feet")
  23970. },
  23971. {
  23972. name: "Macro",
  23973. height: math.unit(150, "feet"),
  23974. default: true
  23975. },
  23976. {
  23977. name: "Macro+",
  23978. height: math.unit(800, "feet")
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23984. {
  23985. front: {
  23986. height: math.unit(6, "feet"),
  23987. weight: math.unit(150, "lb"),
  23988. name: "Front",
  23989. image: {
  23990. source: "./media/characters/jaipur/front.svg",
  23991. extra: 3860 / 3731,
  23992. bottom: 287 / 4140
  23993. }
  23994. },
  23995. back: {
  23996. height: math.unit(6, "feet"),
  23997. weight: math.unit(150, "lb"),
  23998. name: "Back",
  23999. image: {
  24000. source: "./media/characters/jaipur/back.svg",
  24001. extra: 4060 / 3930,
  24002. bottom: 151 / 4200
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Normal",
  24009. height: math.unit(1.85, "meters"),
  24010. default: true
  24011. },
  24012. {
  24013. name: "Macro",
  24014. height: math.unit(150, "meters")
  24015. },
  24016. {
  24017. name: "Macro+",
  24018. height: math.unit(0.5, "miles")
  24019. },
  24020. {
  24021. name: "Macro++",
  24022. height: math.unit(2.5, "miles")
  24023. },
  24024. {
  24025. name: "Macro+++",
  24026. height: math.unit(12, "miles")
  24027. },
  24028. {
  24029. name: "Macro++++",
  24030. height: math.unit(120, "miles")
  24031. },
  24032. {
  24033. name: "Macro+++++",
  24034. height: math.unit(1200, "miles")
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(6, "feet"),
  24043. weight: math.unit(150, "lb"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/sheila-wolf/front.svg",
  24047. extra: 1931 / 1808,
  24048. bottom: 29.5 / 1960
  24049. }
  24050. },
  24051. dick: {
  24052. height: math.unit(1.464, "feet"),
  24053. name: "Dick",
  24054. image: {
  24055. source: "./media/characters/sheila-wolf/dick.svg"
  24056. }
  24057. },
  24058. muzzle: {
  24059. height: math.unit(0.513, "feet"),
  24060. name: "Muzzle",
  24061. image: {
  24062. source: "./media/characters/sheila-wolf/muzzle.svg"
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Macro",
  24069. height: math.unit(70, "feet"),
  24070. default: true
  24071. },
  24072. ]
  24073. ))
  24074. characterMakers.push(() => makeCharacter(
  24075. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24076. {
  24077. front: {
  24078. height: math.unit(32, "meters"),
  24079. weight: math.unit(300000, "kg"),
  24080. name: "Front",
  24081. image: {
  24082. source: "./media/characters/almor/front.svg",
  24083. extra: 1408 / 1322,
  24084. bottom: 94.6 / 1506.5
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Macro",
  24091. height: math.unit(32, "meters"),
  24092. default: true
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24098. {
  24099. front: {
  24100. height: math.unit(7, "feet"),
  24101. weight: math.unit(200, "lb"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/silver/front.svg",
  24105. extra: 472.1 / 450.5,
  24106. bottom: 26.5 / 499.424
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Normal",
  24113. height: math.unit(7, "feet"),
  24114. default: true
  24115. },
  24116. {
  24117. name: "Macro",
  24118. height: math.unit(800, "feet")
  24119. },
  24120. {
  24121. name: "Megamacro",
  24122. height: math.unit(250, "miles")
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(6, "feet"),
  24131. weight: math.unit(150, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/pliskin/front.svg",
  24135. extra: 1469 / 1359,
  24136. bottom: 70 / 1540
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Micro",
  24143. height: math.unit(3, "inches")
  24144. },
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(5 + 11 / 12, "feet"),
  24148. default: true
  24149. },
  24150. {
  24151. name: "Macro",
  24152. height: math.unit(120, "feet")
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24158. {
  24159. front: {
  24160. height: math.unit(6, "feet"),
  24161. weight: math.unit(150, "lb"),
  24162. name: "Front",
  24163. image: {
  24164. source: "./media/characters/sammy/front.svg",
  24165. extra: 1193 / 1089,
  24166. bottom: 30.5 / 1226
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(1700, "feet"),
  24174. default: true
  24175. },
  24176. {
  24177. name: "Examacro",
  24178. height: math.unit(2.5e9, "lightyears")
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24184. {
  24185. front: {
  24186. height: math.unit(21, "meters"),
  24187. weight: math.unit(12, "tonnes"),
  24188. name: "Front",
  24189. image: {
  24190. source: "./media/characters/kuru/front.svg",
  24191. extra: 4301 / 3785,
  24192. bottom: 371.3 / 4691
  24193. }
  24194. },
  24195. },
  24196. [
  24197. {
  24198. name: "Macro",
  24199. height: math.unit(21, "meters"),
  24200. default: true
  24201. },
  24202. ]
  24203. ))
  24204. characterMakers.push(() => makeCharacter(
  24205. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24206. {
  24207. front: {
  24208. height: math.unit(23, "meters"),
  24209. weight: math.unit(12.2, "tonnes"),
  24210. name: "Front",
  24211. image: {
  24212. source: "./media/characters/rakka/front.svg",
  24213. extra: 4670 / 4169,
  24214. bottom: 301 / 4968.7
  24215. }
  24216. },
  24217. },
  24218. [
  24219. {
  24220. name: "Macro",
  24221. height: math.unit(23, "meters"),
  24222. default: true
  24223. },
  24224. ]
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24228. {
  24229. front: {
  24230. height: math.unit(6, "feet"),
  24231. weight: math.unit(150, "lb"),
  24232. name: "Front",
  24233. image: {
  24234. source: "./media/characters/rhys-feline/front.svg",
  24235. extra: 2488 / 2308,
  24236. bottom: 35.67 / 2519.19
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Really Small",
  24243. height: math.unit(1, "nm")
  24244. },
  24245. {
  24246. name: "Micro",
  24247. height: math.unit(4, "inches")
  24248. },
  24249. {
  24250. name: "Normal",
  24251. height: math.unit(4 + 10 / 12, "feet"),
  24252. default: true
  24253. },
  24254. {
  24255. name: "Macro",
  24256. height: math.unit(100, "feet")
  24257. },
  24258. {
  24259. name: "Megamacto",
  24260. height: math.unit(50, "miles")
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24266. {
  24267. side: {
  24268. height: math.unit(30, "feet"),
  24269. weight: math.unit(35000, "kg"),
  24270. name: "Side",
  24271. image: {
  24272. source: "./media/characters/alydar/side.svg",
  24273. extra: 234 / 222,
  24274. bottom: 6.5 / 241
  24275. }
  24276. },
  24277. front: {
  24278. height: math.unit(30, "feet"),
  24279. weight: math.unit(35000, "kg"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/alydar/front.svg",
  24283. extra: 223.37 / 210.2,
  24284. bottom: 22.3 / 246.76
  24285. }
  24286. },
  24287. top: {
  24288. height: math.unit(64.54, "feet"),
  24289. weight: math.unit(35000, "kg"),
  24290. name: "Top",
  24291. image: {
  24292. source: "./media/characters/alydar/top.svg"
  24293. }
  24294. },
  24295. anthro: {
  24296. height: math.unit(30, "feet"),
  24297. weight: math.unit(9000, "kg"),
  24298. name: "Anthro",
  24299. image: {
  24300. source: "./media/characters/alydar/anthro.svg",
  24301. extra: 432 / 421,
  24302. bottom: 7.18 / 440
  24303. }
  24304. },
  24305. maw: {
  24306. height: math.unit(11.693, "feet"),
  24307. name: "Maw",
  24308. image: {
  24309. source: "./media/characters/alydar/maw.svg"
  24310. }
  24311. },
  24312. head: {
  24313. height: math.unit(11.693, "feet"),
  24314. name: "Head",
  24315. image: {
  24316. source: "./media/characters/alydar/head.svg"
  24317. }
  24318. },
  24319. headAlt: {
  24320. height: math.unit(12.861, "feet"),
  24321. name: "Head (Alt)",
  24322. image: {
  24323. source: "./media/characters/alydar/head-alt.svg"
  24324. }
  24325. },
  24326. wing: {
  24327. height: math.unit(20.712, "feet"),
  24328. name: "Wing",
  24329. image: {
  24330. source: "./media/characters/alydar/wing.svg"
  24331. }
  24332. },
  24333. wingFeather: {
  24334. height: math.unit(9.662, "feet"),
  24335. name: "Wing Feather",
  24336. image: {
  24337. source: "./media/characters/alydar/wing-feather.svg"
  24338. }
  24339. },
  24340. countourFeather: {
  24341. height: math.unit(4.154, "feet"),
  24342. name: "Contour Feather",
  24343. image: {
  24344. source: "./media/characters/alydar/contour-feather.svg"
  24345. }
  24346. },
  24347. },
  24348. [
  24349. {
  24350. name: "Diplomatic",
  24351. height: math.unit(13, "feet"),
  24352. default: true
  24353. },
  24354. {
  24355. name: "Small",
  24356. height: math.unit(30, "feet")
  24357. },
  24358. {
  24359. name: "Normal",
  24360. height: math.unit(95, "feet"),
  24361. default: true
  24362. },
  24363. {
  24364. name: "Large",
  24365. height: math.unit(285, "feet")
  24366. },
  24367. {
  24368. name: "Incomprehensible",
  24369. height: math.unit(450, "megameters")
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24375. {
  24376. side: {
  24377. height: math.unit(11, "feet"),
  24378. weight: math.unit(1750, "kg"),
  24379. name: "Side",
  24380. image: {
  24381. source: "./media/characters/selicia/side.svg",
  24382. extra: 440 / 396,
  24383. bottom: 24.8 / 465.979
  24384. }
  24385. },
  24386. maw: {
  24387. height: math.unit(4.665, "feet"),
  24388. name: "Maw",
  24389. image: {
  24390. source: "./media/characters/selicia/maw.svg"
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Normal",
  24397. height: math.unit(11, "feet"),
  24398. default: true
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24404. {
  24405. side: {
  24406. height: math.unit(2 + 6 / 12, "feet"),
  24407. weight: math.unit(30, "lb"),
  24408. name: "Side",
  24409. image: {
  24410. source: "./media/characters/layla/side.svg",
  24411. extra: 244 / 188,
  24412. bottom: 18.2 / 262.1
  24413. }
  24414. },
  24415. back: {
  24416. height: math.unit(2 + 6 / 12, "feet"),
  24417. weight: math.unit(30, "lb"),
  24418. name: "Back",
  24419. image: {
  24420. source: "./media/characters/layla/back.svg",
  24421. extra: 308 / 241.5,
  24422. bottom: 8.9 / 316.8
  24423. }
  24424. },
  24425. cumming: {
  24426. height: math.unit(2 + 6 / 12, "feet"),
  24427. weight: math.unit(30, "lb"),
  24428. name: "Cumming",
  24429. image: {
  24430. source: "./media/characters/layla/cumming.svg",
  24431. extra: 342 / 279,
  24432. bottom: 595 / 938
  24433. }
  24434. },
  24435. dickFlaccid: {
  24436. height: math.unit(2.595, "feet"),
  24437. name: "Flaccid Genitals",
  24438. image: {
  24439. source: "./media/characters/layla/dick-flaccid.svg"
  24440. }
  24441. },
  24442. dickErect: {
  24443. height: math.unit(2.359, "feet"),
  24444. name: "Erect Genitals",
  24445. image: {
  24446. source: "./media/characters/layla/dick-erect.svg"
  24447. }
  24448. },
  24449. dragon: {
  24450. height: math.unit(40, "feet"),
  24451. name: "Dragon",
  24452. image: {
  24453. source: "./media/characters/layla/dragon.svg",
  24454. extra: 610/535,
  24455. bottom: 367/977
  24456. }
  24457. },
  24458. taur: {
  24459. height: math.unit(30, "feet"),
  24460. name: "Taur",
  24461. image: {
  24462. source: "./media/characters/layla/taur.svg",
  24463. extra: 1268/1199,
  24464. bottom: 112/1380
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Micro",
  24471. height: math.unit(1, "inch")
  24472. },
  24473. {
  24474. name: "Small",
  24475. height: math.unit(1, "foot")
  24476. },
  24477. {
  24478. name: "Normal",
  24479. height: math.unit(2 + 6 / 12, "feet"),
  24480. default: true
  24481. },
  24482. {
  24483. name: "Macro",
  24484. height: math.unit(200, "feet")
  24485. },
  24486. {
  24487. name: "Megamacro",
  24488. height: math.unit(1000, "miles")
  24489. },
  24490. {
  24491. name: "Planetary",
  24492. height: math.unit(8000, "miles")
  24493. },
  24494. {
  24495. name: "True Layla",
  24496. height: math.unit(200000 * 7, "multiverses")
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24502. {
  24503. back: {
  24504. height: math.unit(10.5, "feet"),
  24505. weight: math.unit(800, "lb"),
  24506. name: "Back",
  24507. image: {
  24508. source: "./media/characters/knox/back.svg",
  24509. extra: 1486 / 1089,
  24510. bottom: 107 / 1601.4
  24511. }
  24512. },
  24513. side: {
  24514. height: math.unit(10.5, "feet"),
  24515. weight: math.unit(800, "lb"),
  24516. name: "Side",
  24517. image: {
  24518. source: "./media/characters/knox/side.svg",
  24519. extra: 244 / 218,
  24520. bottom: 14 / 260
  24521. }
  24522. },
  24523. },
  24524. [
  24525. {
  24526. name: "Compact",
  24527. height: math.unit(10.5, "feet"),
  24528. default: true
  24529. },
  24530. {
  24531. name: "Dynamax",
  24532. height: math.unit(210, "feet")
  24533. },
  24534. {
  24535. name: "Full Macro",
  24536. height: math.unit(850, "feet")
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24542. {
  24543. front: {
  24544. height: math.unit(28, "feet"),
  24545. weight: math.unit(10500, "lb"),
  24546. name: "Front",
  24547. image: {
  24548. source: "./media/characters/kayda/front.svg",
  24549. extra: 1536 / 1428,
  24550. bottom: 68.7 / 1603
  24551. }
  24552. },
  24553. back: {
  24554. height: math.unit(28, "feet"),
  24555. weight: math.unit(10500, "lb"),
  24556. name: "Back",
  24557. image: {
  24558. source: "./media/characters/kayda/back.svg",
  24559. extra: 1557 / 1464,
  24560. bottom: 39.5 / 1597.49
  24561. }
  24562. },
  24563. dick: {
  24564. height: math.unit(3.858, "feet"),
  24565. name: "Dick",
  24566. image: {
  24567. source: "./media/characters/kayda/dick.svg"
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Macro",
  24574. height: math.unit(28, "feet"),
  24575. default: true
  24576. },
  24577. ]
  24578. ))
  24579. characterMakers.push(() => makeCharacter(
  24580. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24581. {
  24582. front: {
  24583. height: math.unit(10 + 11 / 12, "feet"),
  24584. weight: math.unit(1400, "lb"),
  24585. name: "Front",
  24586. image: {
  24587. source: "./media/characters/brian/front.svg",
  24588. extra: 737 / 692,
  24589. bottom: 55.4 / 785
  24590. }
  24591. },
  24592. },
  24593. [
  24594. {
  24595. name: "Normal",
  24596. height: math.unit(10 + 11 / 12, "feet"),
  24597. default: true
  24598. },
  24599. ]
  24600. ))
  24601. characterMakers.push(() => makeCharacter(
  24602. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24603. {
  24604. front: {
  24605. height: math.unit(5 + 8 / 12, "feet"),
  24606. weight: math.unit(140, "lb"),
  24607. name: "Front",
  24608. image: {
  24609. source: "./media/characters/khemri/front.svg",
  24610. extra: 4780 / 4059,
  24611. bottom: 80.1 / 4859.25
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Micro",
  24618. height: math.unit(6, "inches")
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(5 + 8 / 12, "feet"),
  24623. default: true
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24629. {
  24630. front: {
  24631. height: math.unit(13, "feet"),
  24632. weight: math.unit(1700, "lb"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/felix-braveheart/front.svg",
  24636. extra: 1222 / 1157,
  24637. bottom: 53.2 / 1280
  24638. }
  24639. },
  24640. back: {
  24641. height: math.unit(13, "feet"),
  24642. weight: math.unit(1700, "lb"),
  24643. name: "Back",
  24644. image: {
  24645. source: "./media/characters/felix-braveheart/back.svg",
  24646. extra: 1277 / 1203,
  24647. bottom: 50.2 / 1327
  24648. }
  24649. },
  24650. feral: {
  24651. height: math.unit(6, "feet"),
  24652. weight: math.unit(400, "lb"),
  24653. name: "Feral",
  24654. image: {
  24655. source: "./media/characters/felix-braveheart/feral.svg",
  24656. extra: 682 / 625,
  24657. bottom: 6.9 / 688
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Normal",
  24664. height: math.unit(13, "feet"),
  24665. default: true
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24671. {
  24672. side: {
  24673. height: math.unit(5 + 11 / 12, "feet"),
  24674. weight: math.unit(1400, "lb"),
  24675. name: "Side",
  24676. image: {
  24677. source: "./media/characters/shadow-blade/side.svg",
  24678. extra: 1726 / 1267,
  24679. bottom: 58.4 / 1785
  24680. }
  24681. },
  24682. },
  24683. [
  24684. {
  24685. name: "Normal",
  24686. height: math.unit(5 + 11 / 12, "feet"),
  24687. default: true
  24688. },
  24689. ]
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24693. {
  24694. front: {
  24695. height: math.unit(1 + 6 / 12, "feet"),
  24696. weight: math.unit(25, "lb"),
  24697. name: "Front",
  24698. image: {
  24699. source: "./media/characters/karla-halldor/front.svg",
  24700. extra: 1459 / 1383,
  24701. bottom: 12 / 1472
  24702. }
  24703. },
  24704. },
  24705. [
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(1 + 6 / 12, "feet"),
  24709. default: true
  24710. },
  24711. ]
  24712. ))
  24713. characterMakers.push(() => makeCharacter(
  24714. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24715. {
  24716. front: {
  24717. height: math.unit(6 + 2 / 12, "feet"),
  24718. weight: math.unit(160, "lb"),
  24719. name: "Front",
  24720. image: {
  24721. source: "./media/characters/ariam/front.svg",
  24722. extra: 1073/976,
  24723. bottom: 52/1125
  24724. }
  24725. },
  24726. back: {
  24727. height: math.unit(6 + 2/12, "feet"),
  24728. weight: math.unit(160, "lb"),
  24729. name: "Back",
  24730. image: {
  24731. source: "./media/characters/ariam/back.svg",
  24732. extra: 1103/1023,
  24733. bottom: 9/1112
  24734. }
  24735. },
  24736. dressed: {
  24737. height: math.unit(6 + 2/12, "feet"),
  24738. weight: math.unit(160, "lb"),
  24739. name: "Dressed",
  24740. image: {
  24741. source: "./media/characters/ariam/dressed.svg",
  24742. extra: 1099/1009,
  24743. bottom: 25/1124
  24744. }
  24745. },
  24746. squatting: {
  24747. height: math.unit(4.1, "feet"),
  24748. weight: math.unit(160, "lb"),
  24749. name: "Squatting",
  24750. image: {
  24751. source: "./media/characters/ariam/squatting.svg",
  24752. extra: 2617 / 2112,
  24753. bottom: 61.2 / 2681,
  24754. }
  24755. },
  24756. },
  24757. [
  24758. {
  24759. name: "Normal",
  24760. height: math.unit(6 + 2 / 12, "feet"),
  24761. default: true
  24762. },
  24763. {
  24764. name: "Normal+",
  24765. height: math.unit(4, "meters")
  24766. },
  24767. {
  24768. name: "Macro",
  24769. height: math.unit(50, "meters")
  24770. },
  24771. {
  24772. name: "Macro+",
  24773. height: math.unit(100, "meters")
  24774. },
  24775. {
  24776. name: "Megamacro",
  24777. height: math.unit(20, "km")
  24778. },
  24779. {
  24780. name: "Caretaker",
  24781. height: math.unit(444, "megameters")
  24782. },
  24783. ]
  24784. ))
  24785. characterMakers.push(() => makeCharacter(
  24786. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24787. {
  24788. front: {
  24789. height: math.unit(1.67, "meters"),
  24790. weight: math.unit(140, "lb"),
  24791. name: "Front",
  24792. image: {
  24793. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24794. extra: 438 / 410,
  24795. bottom: 0.75 / 439
  24796. }
  24797. },
  24798. },
  24799. [
  24800. {
  24801. name: "Shrunken",
  24802. height: math.unit(7.6, "cm")
  24803. },
  24804. {
  24805. name: "Human Scale",
  24806. height: math.unit(1.67, "meters")
  24807. },
  24808. {
  24809. name: "Wolxi Scale",
  24810. height: math.unit(36.7, "meters"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(1.73, "meters"),
  24820. weight: math.unit(240, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/izue-two-mothers/front.svg",
  24824. extra: 469 / 437,
  24825. bottom: 1.24 / 470.6
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Shrunken",
  24832. height: math.unit(7.86, "cm")
  24833. },
  24834. {
  24835. name: "Human Scale",
  24836. height: math.unit(1.73, "meters")
  24837. },
  24838. {
  24839. name: "Wolxi Scale",
  24840. height: math.unit(38, "meters"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(1.55, "meters"),
  24850. weight: math.unit(120, "lb"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/teeku-love-shack/front.svg",
  24854. extra: 387 / 362,
  24855. bottom: 1.51 / 388
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Shrunken",
  24862. height: math.unit(7, "cm")
  24863. },
  24864. {
  24865. name: "Human Scale",
  24866. height: math.unit(1.55, "meters")
  24867. },
  24868. {
  24869. name: "Wolxi Scale",
  24870. height: math.unit(34.1, "meters"),
  24871. default: true
  24872. },
  24873. ]
  24874. ))
  24875. characterMakers.push(() => makeCharacter(
  24876. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24877. {
  24878. front: {
  24879. height: math.unit(1.83, "meters"),
  24880. weight: math.unit(135, "lb"),
  24881. name: "Front",
  24882. image: {
  24883. source: "./media/characters/dejma-the-red/front.svg",
  24884. extra: 480 / 458,
  24885. bottom: 1.8 / 482
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Shrunken",
  24892. height: math.unit(8.3, "cm")
  24893. },
  24894. {
  24895. name: "Human Scale",
  24896. height: math.unit(1.83, "meters")
  24897. },
  24898. {
  24899. name: "Wolxi Scale",
  24900. height: math.unit(40, "meters"),
  24901. default: true
  24902. },
  24903. ]
  24904. ))
  24905. characterMakers.push(() => makeCharacter(
  24906. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24907. {
  24908. front: {
  24909. height: math.unit(1.78, "meters"),
  24910. weight: math.unit(65, "kg"),
  24911. name: "Front",
  24912. image: {
  24913. source: "./media/characters/aki/front.svg",
  24914. extra: 452 / 415
  24915. }
  24916. },
  24917. frontNsfw: {
  24918. height: math.unit(1.78, "meters"),
  24919. weight: math.unit(65, "kg"),
  24920. name: "Front (NSFW)",
  24921. image: {
  24922. source: "./media/characters/aki/front-nsfw.svg",
  24923. extra: 452 / 415
  24924. }
  24925. },
  24926. back: {
  24927. height: math.unit(1.78, "meters"),
  24928. weight: math.unit(65, "kg"),
  24929. name: "Back",
  24930. image: {
  24931. source: "./media/characters/aki/back.svg",
  24932. extra: 452 / 415
  24933. }
  24934. },
  24935. rump: {
  24936. height: math.unit(2.05, "feet"),
  24937. name: "Rump",
  24938. image: {
  24939. source: "./media/characters/aki/rump.svg"
  24940. }
  24941. },
  24942. dick: {
  24943. height: math.unit(0.95, "feet"),
  24944. name: "Dick",
  24945. image: {
  24946. source: "./media/characters/aki/dick.svg"
  24947. }
  24948. },
  24949. },
  24950. [
  24951. {
  24952. name: "Micro",
  24953. height: math.unit(15, "cm")
  24954. },
  24955. {
  24956. name: "Normal",
  24957. height: math.unit(178, "cm"),
  24958. default: true
  24959. },
  24960. {
  24961. name: "Macro",
  24962. height: math.unit(214, "m")
  24963. },
  24964. {
  24965. name: "Macro+",
  24966. height: math.unit(534, "m")
  24967. },
  24968. ]
  24969. ))
  24970. characterMakers.push(() => makeCharacter(
  24971. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24972. {
  24973. front: {
  24974. height: math.unit(5 + 5 / 12, "feet"),
  24975. weight: math.unit(120, "lb"),
  24976. name: "Front",
  24977. image: {
  24978. source: "./media/characters/ari/front.svg",
  24979. extra: 714.5 / 682,
  24980. bottom: 8 / 722.5
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Normal",
  24987. height: math.unit(5 + 5 / 12, "feet")
  24988. },
  24989. {
  24990. name: "Macro",
  24991. height: math.unit(100, "feet"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Megamacro",
  24996. height: math.unit(100, "miles")
  24997. },
  24998. {
  24999. name: "Gigamacro",
  25000. height: math.unit(80000, "miles")
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25006. {
  25007. side: {
  25008. height: math.unit(9, "feet"),
  25009. weight: math.unit(400, "kg"),
  25010. name: "Side",
  25011. image: {
  25012. source: "./media/characters/bolt/side.svg",
  25013. extra: 1126 / 896,
  25014. bottom: 60 / 1187.3,
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Micro",
  25021. height: math.unit(5, "inches")
  25022. },
  25023. {
  25024. name: "Normal",
  25025. height: math.unit(9, "feet"),
  25026. default: true
  25027. },
  25028. {
  25029. name: "Macro",
  25030. height: math.unit(700, "feet")
  25031. },
  25032. {
  25033. name: "Max Size",
  25034. height: math.unit(1.52e22, "yottameters")
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25040. {
  25041. front: {
  25042. height: math.unit(4.3, "meters"),
  25043. weight: math.unit(3, "tons"),
  25044. name: "Front",
  25045. image: {
  25046. source: "./media/characters/draekon-sylviar/front.svg",
  25047. extra: 2072/1512,
  25048. bottom: 74/2146
  25049. }
  25050. },
  25051. back: {
  25052. height: math.unit(4.3, "meters"),
  25053. weight: math.unit(3, "tons"),
  25054. name: "Back",
  25055. image: {
  25056. source: "./media/characters/draekon-sylviar/back.svg",
  25057. extra: 1639/1483,
  25058. bottom: 41/1680
  25059. }
  25060. },
  25061. feral: {
  25062. height: math.unit(1.15, "meters"),
  25063. weight: math.unit(3, "tons"),
  25064. name: "Feral",
  25065. image: {
  25066. source: "./media/characters/draekon-sylviar/feral.svg",
  25067. extra: 1033/395,
  25068. bottom: 130/1163
  25069. }
  25070. },
  25071. maw: {
  25072. height: math.unit(1.3, "meters"),
  25073. name: "Maw",
  25074. image: {
  25075. source: "./media/characters/draekon-sylviar/maw.svg"
  25076. }
  25077. },
  25078. mawSeparated: {
  25079. height: math.unit(1.53, "meters"),
  25080. name: "Separated Maw",
  25081. image: {
  25082. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25083. }
  25084. },
  25085. tail: {
  25086. height: math.unit(1.15, "meters"),
  25087. name: "Tail",
  25088. image: {
  25089. source: "./media/characters/draekon-sylviar/tail.svg"
  25090. }
  25091. },
  25092. tailDick: {
  25093. height: math.unit(1.15, "meters"),
  25094. name: "Tail (Dick)",
  25095. image: {
  25096. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25097. }
  25098. },
  25099. tailDickSeparated: {
  25100. height: math.unit(1.19, "meters"),
  25101. name: "Tail (Separated Dick)",
  25102. image: {
  25103. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25104. }
  25105. },
  25106. slit: {
  25107. height: math.unit(1, "meters"),
  25108. name: "Slit",
  25109. image: {
  25110. source: "./media/characters/draekon-sylviar/slit.svg"
  25111. }
  25112. },
  25113. dick: {
  25114. height: math.unit(1.15, "meters"),
  25115. name: "Dick",
  25116. image: {
  25117. source: "./media/characters/draekon-sylviar/dick.svg"
  25118. }
  25119. },
  25120. dickSeparated: {
  25121. height: math.unit(1.1, "meters"),
  25122. name: "Separated Dick",
  25123. image: {
  25124. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25125. }
  25126. },
  25127. sheath: {
  25128. height: math.unit(1.15, "meters"),
  25129. name: "Sheath",
  25130. image: {
  25131. source: "./media/characters/draekon-sylviar/sheath.svg"
  25132. }
  25133. },
  25134. },
  25135. [
  25136. {
  25137. name: "Small",
  25138. height: math.unit(4.53 / 2, "meters"),
  25139. default: true
  25140. },
  25141. {
  25142. name: "Normal",
  25143. height: math.unit(4.53, "meters"),
  25144. default: true
  25145. },
  25146. {
  25147. name: "Large",
  25148. height: math.unit(4.53 * 2, "meters"),
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(6 + 2 / 12, "feet"),
  25157. weight: math.unit(180, "lb"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/brawler/front.svg",
  25161. extra: 3301 / 3027,
  25162. bottom: 138 / 3439
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Normal",
  25169. height: math.unit(6 + 2 / 12, "feet"),
  25170. default: true
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(11, "feet"),
  25179. weight: math.unit(1000, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/alex/front.svg",
  25183. bottom: 44.5 / 620
  25184. }
  25185. },
  25186. },
  25187. [
  25188. {
  25189. name: "Micro",
  25190. height: math.unit(5, "inches")
  25191. },
  25192. {
  25193. name: "Normal",
  25194. height: math.unit(11, "feet"),
  25195. default: true
  25196. },
  25197. {
  25198. name: "Macro",
  25199. height: math.unit(9.5e9, "feet")
  25200. },
  25201. {
  25202. name: "Max Size",
  25203. height: math.unit(1.4e283, "yottameters")
  25204. },
  25205. ]
  25206. ))
  25207. characterMakers.push(() => makeCharacter(
  25208. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25209. {
  25210. female: {
  25211. height: math.unit(29.9, "m"),
  25212. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25213. name: "Female",
  25214. image: {
  25215. source: "./media/characters/zenari/female.svg",
  25216. extra: 3281.6 / 3217,
  25217. bottom: 72.2 / 3353
  25218. }
  25219. },
  25220. male: {
  25221. height: math.unit(27.7, "m"),
  25222. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25223. name: "Male",
  25224. image: {
  25225. source: "./media/characters/zenari/male.svg",
  25226. extra: 3008 / 2991,
  25227. bottom: 54.6 / 3069
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Macro",
  25234. height: math.unit(29.7, "meters"),
  25235. default: true
  25236. },
  25237. ]
  25238. ))
  25239. characterMakers.push(() => makeCharacter(
  25240. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25241. {
  25242. female: {
  25243. height: math.unit(23.8, "m"),
  25244. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25245. name: "Female",
  25246. image: {
  25247. source: "./media/characters/mactarian/female.svg",
  25248. extra: 2662 / 2569,
  25249. bottom: 73 / 2736
  25250. }
  25251. },
  25252. male: {
  25253. height: math.unit(23.8, "m"),
  25254. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25255. name: "Male",
  25256. image: {
  25257. source: "./media/characters/mactarian/male.svg",
  25258. extra: 2673 / 2600,
  25259. bottom: 76 / 2750
  25260. }
  25261. },
  25262. },
  25263. [
  25264. {
  25265. name: "Macro",
  25266. height: math.unit(23.8, "meters"),
  25267. default: true
  25268. },
  25269. ]
  25270. ))
  25271. characterMakers.push(() => makeCharacter(
  25272. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25273. {
  25274. female: {
  25275. height: math.unit(19.3, "m"),
  25276. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25277. name: "Female",
  25278. image: {
  25279. source: "./media/characters/umok/female.svg",
  25280. extra: 2186 / 2078,
  25281. bottom: 87 / 2277
  25282. }
  25283. },
  25284. male: {
  25285. height: math.unit(19.5, "m"),
  25286. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25287. name: "Male",
  25288. image: {
  25289. source: "./media/characters/umok/male.svg",
  25290. extra: 2233 / 2140,
  25291. bottom: 24.4 / 2258
  25292. }
  25293. },
  25294. },
  25295. [
  25296. {
  25297. name: "Macro",
  25298. height: math.unit(19.3, "meters"),
  25299. default: true
  25300. },
  25301. ]
  25302. ))
  25303. characterMakers.push(() => makeCharacter(
  25304. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25305. {
  25306. female: {
  25307. height: math.unit(26.15, "m"),
  25308. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25309. name: "Female",
  25310. image: {
  25311. source: "./media/characters/joraxian/female.svg",
  25312. extra: 2912 / 2824,
  25313. bottom: 36 / 2956
  25314. }
  25315. },
  25316. male: {
  25317. height: math.unit(25.4, "m"),
  25318. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25319. name: "Male",
  25320. image: {
  25321. source: "./media/characters/joraxian/male.svg",
  25322. extra: 2877 / 2721,
  25323. bottom: 82 / 2967
  25324. }
  25325. },
  25326. },
  25327. [
  25328. {
  25329. name: "Macro",
  25330. height: math.unit(26.15, "meters"),
  25331. default: true
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25337. {
  25338. female: {
  25339. height: math.unit(21.6, "m"),
  25340. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25341. name: "Female",
  25342. image: {
  25343. source: "./media/characters/sthara/female.svg",
  25344. extra: 2516 / 2347,
  25345. bottom: 21.5 / 2537
  25346. }
  25347. },
  25348. male: {
  25349. height: math.unit(24, "m"),
  25350. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25351. name: "Male",
  25352. image: {
  25353. source: "./media/characters/sthara/male.svg",
  25354. extra: 2732 / 2607,
  25355. bottom: 23 / 2732
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Macro",
  25362. height: math.unit(21.6, "meters"),
  25363. default: true
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25369. {
  25370. front: {
  25371. height: math.unit(6 + 4 / 12, "feet"),
  25372. weight: math.unit(175, "lb"),
  25373. name: "Front",
  25374. image: {
  25375. source: "./media/characters/luka-bryzant/front.svg",
  25376. extra: 311 / 289,
  25377. bottom: 4 / 315
  25378. }
  25379. },
  25380. back: {
  25381. height: math.unit(6 + 4 / 12, "feet"),
  25382. weight: math.unit(175, "lb"),
  25383. name: "Back",
  25384. image: {
  25385. source: "./media/characters/luka-bryzant/back.svg",
  25386. extra: 311 / 289,
  25387. bottom: 3.8 / 313.7
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Micro",
  25394. height: math.unit(10, "inches")
  25395. },
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(6 + 4 / 12, "feet"),
  25399. default: true
  25400. },
  25401. {
  25402. name: "Large",
  25403. height: math.unit(12, "feet")
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25409. {
  25410. front: {
  25411. height: math.unit(5 + 7 / 12, "feet"),
  25412. weight: math.unit(185, "lb"),
  25413. name: "Front",
  25414. image: {
  25415. source: "./media/characters/aman-aquila/front.svg",
  25416. extra: 1013 / 976,
  25417. bottom: 45.6 / 1057
  25418. }
  25419. },
  25420. side: {
  25421. height: math.unit(5 + 7 / 12, "feet"),
  25422. weight: math.unit(185, "lb"),
  25423. name: "Side",
  25424. image: {
  25425. source: "./media/characters/aman-aquila/side.svg",
  25426. extra: 1054 / 1011,
  25427. bottom: 15 / 1070
  25428. }
  25429. },
  25430. back: {
  25431. height: math.unit(5 + 7 / 12, "feet"),
  25432. weight: math.unit(185, "lb"),
  25433. name: "Back",
  25434. image: {
  25435. source: "./media/characters/aman-aquila/back.svg",
  25436. extra: 1026 / 970,
  25437. bottom: 12 / 1039
  25438. }
  25439. },
  25440. head: {
  25441. height: math.unit(1.211, "feet"),
  25442. name: "Head",
  25443. image: {
  25444. source: "./media/characters/aman-aquila/head.svg",
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Minimicro",
  25451. height: math.unit(0.057, "inches")
  25452. },
  25453. {
  25454. name: "Micro",
  25455. height: math.unit(7, "inches")
  25456. },
  25457. {
  25458. name: "Mini",
  25459. height: math.unit(3 + 7 / 12, "feet")
  25460. },
  25461. {
  25462. name: "Normal",
  25463. height: math.unit(5 + 7 / 12, "feet"),
  25464. default: true
  25465. },
  25466. {
  25467. name: "Macro",
  25468. height: math.unit(157 + 7 / 12, "feet")
  25469. },
  25470. {
  25471. name: "Megamacro",
  25472. height: math.unit(1557 + 7 / 12, "feet")
  25473. },
  25474. {
  25475. name: "Gigamacro",
  25476. height: math.unit(15557 + 7 / 12, "feet")
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(3 + 2 / 12, "inches"),
  25485. weight: math.unit(0.3, "ounces"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/hiphae/front.svg",
  25489. extra: 1931 / 1683,
  25490. bottom: 24 / 1955
  25491. }
  25492. },
  25493. },
  25494. [
  25495. {
  25496. name: "Normal",
  25497. height: math.unit(3 + 1 / 2, "inches"),
  25498. default: true
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25504. {
  25505. front: {
  25506. height: math.unit(5 + 10 / 12, "feet"),
  25507. weight: math.unit(165, "lb"),
  25508. name: "Front",
  25509. image: {
  25510. source: "./media/characters/nicky/front.svg",
  25511. extra: 3144 / 2886,
  25512. bottom: 45.6 / 3192
  25513. }
  25514. },
  25515. back: {
  25516. height: math.unit(5 + 10 / 12, "feet"),
  25517. weight: math.unit(165, "lb"),
  25518. name: "Back",
  25519. image: {
  25520. source: "./media/characters/nicky/back.svg",
  25521. extra: 3055 / 2804,
  25522. bottom: 28.4 / 3087
  25523. }
  25524. },
  25525. frontclothed: {
  25526. height: math.unit(5 + 10 / 12, "feet"),
  25527. weight: math.unit(165, "lb"),
  25528. name: "Front-clothed",
  25529. image: {
  25530. source: "./media/characters/nicky/front-clothed.svg",
  25531. extra: 3184.9 / 2926.9,
  25532. bottom: 86.5 / 3239.9
  25533. }
  25534. },
  25535. foot: {
  25536. height: math.unit(1.16, "feet"),
  25537. name: "Foot",
  25538. image: {
  25539. source: "./media/characters/nicky/foot.svg"
  25540. }
  25541. },
  25542. feet: {
  25543. height: math.unit(1.34, "feet"),
  25544. name: "Feet",
  25545. image: {
  25546. source: "./media/characters/nicky/feet.svg"
  25547. }
  25548. },
  25549. maw: {
  25550. height: math.unit(0.9, "feet"),
  25551. name: "Maw",
  25552. image: {
  25553. source: "./media/characters/nicky/maw.svg"
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(5 + 10 / 12, "feet"),
  25561. default: true
  25562. },
  25563. {
  25564. name: "Macro",
  25565. height: math.unit(60, "feet")
  25566. },
  25567. {
  25568. name: "Megamacro",
  25569. height: math.unit(1, "mile")
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25575. {
  25576. side: {
  25577. height: math.unit(10, "feet"),
  25578. weight: math.unit(600, "lb"),
  25579. name: "Side",
  25580. image: {
  25581. source: "./media/characters/blair/side.svg",
  25582. bottom: 16.6 / 475,
  25583. extra: 458 / 431
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Micro",
  25590. height: math.unit(8, "inches")
  25591. },
  25592. {
  25593. name: "Normal",
  25594. height: math.unit(10, "feet"),
  25595. default: true
  25596. },
  25597. {
  25598. name: "Macro",
  25599. height: math.unit(180, "feet")
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25605. {
  25606. front: {
  25607. height: math.unit(5 + 4 / 12, "feet"),
  25608. weight: math.unit(125, "lb"),
  25609. name: "Front",
  25610. image: {
  25611. source: "./media/characters/fisher/front.svg",
  25612. extra: 444 / 390,
  25613. bottom: 2 / 444.8
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Micro",
  25620. height: math.unit(4, "inches")
  25621. },
  25622. {
  25623. name: "Normal",
  25624. height: math.unit(5 + 4 / 12, "feet"),
  25625. default: true
  25626. },
  25627. {
  25628. name: "Macro",
  25629. height: math.unit(100, "feet")
  25630. },
  25631. ]
  25632. ))
  25633. characterMakers.push(() => makeCharacter(
  25634. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25635. {
  25636. front: {
  25637. height: math.unit(6.71, "feet"),
  25638. weight: math.unit(200, "lb"),
  25639. capacity: math.unit(1000000, "people"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/gliss/front.svg",
  25643. extra: 2347 / 2231,
  25644. bottom: 113 / 2462
  25645. }
  25646. },
  25647. hammerspaceSize: {
  25648. height: math.unit(6.71 * 717, "feet"),
  25649. weight: math.unit(200, "lb"),
  25650. capacity: math.unit(1000000, "people"),
  25651. name: "Hammerspace Size",
  25652. image: {
  25653. source: "./media/characters/gliss/front.svg",
  25654. extra: 2347 / 2231,
  25655. bottom: 113 / 2462
  25656. }
  25657. },
  25658. },
  25659. [
  25660. {
  25661. name: "Normal",
  25662. height: math.unit(6.71, "feet"),
  25663. default: true
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25669. {
  25670. side: {
  25671. height: math.unit(1.44, "m"),
  25672. weight: math.unit(80, "kg"),
  25673. name: "Side",
  25674. image: {
  25675. source: "./media/characters/dune-anderson/side.svg",
  25676. bottom: 49 / 1426
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Wolf-sized",
  25683. height: math.unit(1.44, "meters")
  25684. },
  25685. {
  25686. name: "Normal",
  25687. height: math.unit(5.05, "meters"),
  25688. default: true
  25689. },
  25690. {
  25691. name: "Big",
  25692. height: math.unit(14.4, "meters")
  25693. },
  25694. {
  25695. name: "Huge",
  25696. height: math.unit(144, "meters")
  25697. },
  25698. ]
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25702. {
  25703. front: {
  25704. height: math.unit(7, "feet"),
  25705. weight: math.unit(425, "lb"),
  25706. name: "Front",
  25707. image: {
  25708. source: "./media/characters/hind/front.svg",
  25709. extra: 2091 / 1860,
  25710. bottom: 129 / 2220
  25711. }
  25712. },
  25713. back: {
  25714. height: math.unit(7, "feet"),
  25715. weight: math.unit(425, "lb"),
  25716. name: "Back",
  25717. image: {
  25718. source: "./media/characters/hind/back.svg",
  25719. extra: 2091 / 1860,
  25720. bottom: 24.6 / 2309
  25721. }
  25722. },
  25723. tail: {
  25724. height: math.unit(2.8, "feet"),
  25725. name: "Tail",
  25726. image: {
  25727. source: "./media/characters/hind/tail.svg"
  25728. }
  25729. },
  25730. head: {
  25731. height: math.unit(2.55, "feet"),
  25732. name: "Head",
  25733. image: {
  25734. source: "./media/characters/hind/head.svg"
  25735. }
  25736. },
  25737. },
  25738. [
  25739. {
  25740. name: "XS",
  25741. height: math.unit(0.7, "feet")
  25742. },
  25743. {
  25744. name: "Normal",
  25745. height: math.unit(7, "feet"),
  25746. default: true
  25747. },
  25748. {
  25749. name: "XL",
  25750. height: math.unit(70, "feet")
  25751. },
  25752. ]
  25753. ))
  25754. characterMakers.push(() => makeCharacter(
  25755. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25756. {
  25757. front: {
  25758. height: math.unit(2.1, "meters"),
  25759. weight: math.unit(150, "lb"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/tharquench-sizestealer/front.svg",
  25763. extra: 1605/1470,
  25764. bottom: 36/1641
  25765. }
  25766. },
  25767. frontAlt: {
  25768. height: math.unit(2.1, "meters"),
  25769. weight: math.unit(150, "lb"),
  25770. name: "Front (Alt)",
  25771. image: {
  25772. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25773. extra: 2318 / 2063,
  25774. bottom: 93.4 / 2410
  25775. }
  25776. },
  25777. },
  25778. [
  25779. {
  25780. name: "Nano",
  25781. height: math.unit(1, "mm")
  25782. },
  25783. {
  25784. name: "Micro",
  25785. height: math.unit(1, "cm")
  25786. },
  25787. {
  25788. name: "Normal",
  25789. height: math.unit(2.1, "meters"),
  25790. default: true
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(7 + 5 / 12, "feet"),
  25799. weight: math.unit(357, "lb"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/solex-draconov/front.svg",
  25803. extra: 1993 / 1865,
  25804. bottom: 117 / 2111
  25805. }
  25806. },
  25807. },
  25808. [
  25809. {
  25810. name: "Natural Height",
  25811. height: math.unit(7 + 5 / 12, "feet"),
  25812. default: true
  25813. },
  25814. {
  25815. name: "Macro",
  25816. height: math.unit(350, "feet")
  25817. },
  25818. {
  25819. name: "Macro+",
  25820. height: math.unit(1000, "feet")
  25821. },
  25822. {
  25823. name: "Megamacro",
  25824. height: math.unit(20, "km")
  25825. },
  25826. {
  25827. name: "Megamacro+",
  25828. height: math.unit(1000, "km")
  25829. },
  25830. {
  25831. name: "Gigamacro",
  25832. height: math.unit(2.5, "Gm")
  25833. },
  25834. {
  25835. name: "Teramacro",
  25836. height: math.unit(15, "Tm")
  25837. },
  25838. {
  25839. name: "Galactic",
  25840. height: math.unit(30, "Zm")
  25841. },
  25842. {
  25843. name: "Universal",
  25844. height: math.unit(21000, "Ym")
  25845. },
  25846. {
  25847. name: "Omniversal",
  25848. height: math.unit(9.861e50, "Ym")
  25849. },
  25850. {
  25851. name: "Existential",
  25852. height: math.unit(1e300, "meters")
  25853. },
  25854. ]
  25855. ))
  25856. characterMakers.push(() => makeCharacter(
  25857. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25858. {
  25859. side: {
  25860. height: math.unit(25, "feet"),
  25861. weight: math.unit(90000, "lb"),
  25862. name: "Side",
  25863. image: {
  25864. source: "./media/characters/mandarax/side.svg",
  25865. extra: 614 / 332,
  25866. bottom: 55 / 630
  25867. }
  25868. },
  25869. head: {
  25870. height: math.unit(11.4, "feet"),
  25871. name: "Head",
  25872. image: {
  25873. source: "./media/characters/mandarax/head.svg"
  25874. }
  25875. },
  25876. belly: {
  25877. height: math.unit(33, "feet"),
  25878. name: "Belly",
  25879. capacity: math.unit(500, "people"),
  25880. image: {
  25881. source: "./media/characters/mandarax/belly.svg"
  25882. }
  25883. },
  25884. dick: {
  25885. height: math.unit(8.46, "feet"),
  25886. name: "Dick",
  25887. image: {
  25888. source: "./media/characters/mandarax/dick.svg"
  25889. }
  25890. },
  25891. top: {
  25892. height: math.unit(28, "meters"),
  25893. name: "Top",
  25894. image: {
  25895. source: "./media/characters/mandarax/top.svg"
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Normal",
  25902. height: math.unit(25, "feet"),
  25903. default: true
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(5, "feet"),
  25912. weight: math.unit(90, "lb"),
  25913. name: "Front",
  25914. image: {
  25915. source: "./media/characters/pixil/front.svg",
  25916. extra: 2000 / 1618,
  25917. bottom: 12.3 / 2011
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Normal",
  25924. height: math.unit(5, "feet"),
  25925. default: true
  25926. },
  25927. {
  25928. name: "Megamacro",
  25929. height: math.unit(10, "miles"),
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25935. {
  25936. front: {
  25937. height: math.unit(7 + 2 / 12, "feet"),
  25938. weight: math.unit(200, "lb"),
  25939. name: "Front",
  25940. image: {
  25941. source: "./media/characters/angel/front.svg",
  25942. extra: 1830 / 1737,
  25943. bottom: 22.6 / 1854,
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(7 + 2 / 12, "feet"),
  25951. default: true
  25952. },
  25953. {
  25954. name: "Macro",
  25955. height: math.unit(1000, "feet")
  25956. },
  25957. {
  25958. name: "Megamacro",
  25959. height: math.unit(2, "miles")
  25960. },
  25961. {
  25962. name: "Gigamacro",
  25963. height: math.unit(20, "earths")
  25964. },
  25965. ]
  25966. ))
  25967. characterMakers.push(() => makeCharacter(
  25968. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25969. {
  25970. front: {
  25971. height: math.unit(5, "feet"),
  25972. weight: math.unit(180, "lb"),
  25973. name: "Front",
  25974. image: {
  25975. source: "./media/characters/mekana/front.svg",
  25976. extra: 1671 / 1605,
  25977. bottom: 3.5 / 1691
  25978. }
  25979. },
  25980. side: {
  25981. height: math.unit(5, "feet"),
  25982. weight: math.unit(180, "lb"),
  25983. name: "Side",
  25984. image: {
  25985. source: "./media/characters/mekana/side.svg",
  25986. extra: 1671 / 1605,
  25987. bottom: 3.5 / 1691
  25988. }
  25989. },
  25990. back: {
  25991. height: math.unit(5, "feet"),
  25992. weight: math.unit(180, "lb"),
  25993. name: "Back",
  25994. image: {
  25995. source: "./media/characters/mekana/back.svg",
  25996. extra: 1671 / 1605,
  25997. bottom: 3.5 / 1691
  25998. }
  25999. },
  26000. },
  26001. [
  26002. {
  26003. name: "Normal",
  26004. height: math.unit(5, "feet"),
  26005. default: true
  26006. },
  26007. ]
  26008. ))
  26009. characterMakers.push(() => makeCharacter(
  26010. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26011. {
  26012. front: {
  26013. height: math.unit(4 + 6 / 12, "feet"),
  26014. weight: math.unit(80, "lb"),
  26015. name: "Front",
  26016. image: {
  26017. source: "./media/characters/pixie/front.svg",
  26018. extra: 1924 / 1825,
  26019. bottom: 22.4 / 1946
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Normal",
  26026. height: math.unit(4 + 6 / 12, "feet"),
  26027. default: true
  26028. },
  26029. {
  26030. name: "Macro",
  26031. height: math.unit(40, "feet")
  26032. },
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26037. {
  26038. front: {
  26039. height: math.unit(2.1, "meters"),
  26040. weight: math.unit(200, "lb"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/the-lascivious/front.svg",
  26044. extra: 1 / 0.893,
  26045. bottom: 3.5 / 573.7
  26046. }
  26047. },
  26048. },
  26049. [
  26050. {
  26051. name: "Human Scale",
  26052. height: math.unit(2.1, "meters")
  26053. },
  26054. {
  26055. name: "Wolxi Scale",
  26056. height: math.unit(46.2, "m"),
  26057. default: true
  26058. },
  26059. {
  26060. name: "Boinker of Buildings",
  26061. height: math.unit(10, "km")
  26062. },
  26063. {
  26064. name: "Shagger of Skyscrapers",
  26065. height: math.unit(40, "km")
  26066. },
  26067. {
  26068. name: "Banger of Boroughs",
  26069. height: math.unit(4000, "km")
  26070. },
  26071. {
  26072. name: "Screwer of States",
  26073. height: math.unit(100000, "km")
  26074. },
  26075. {
  26076. name: "Pounder of Planets",
  26077. height: math.unit(2000000, "km")
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(6, "feet"),
  26086. weight: math.unit(150, "lb"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/aj/front.svg",
  26090. extra: 2039 / 1562,
  26091. bottom: 40 / 2079
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Normal",
  26098. height: math.unit(11 + 6 / 12, "feet"),
  26099. default: true
  26100. },
  26101. {
  26102. name: "Megamacro",
  26103. height: math.unit(60, "megameters")
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26109. {
  26110. side: {
  26111. height: math.unit(31 + 8 / 12, "feet"),
  26112. weight: math.unit(75000, "kg"),
  26113. name: "Side",
  26114. image: {
  26115. source: "./media/characters/koros/side.svg",
  26116. extra: 1442 / 1297,
  26117. bottom: 122.7 / 1562
  26118. }
  26119. },
  26120. dicksKingsCrown: {
  26121. height: math.unit(6, "feet"),
  26122. name: "Dicks (King's Crown)",
  26123. image: {
  26124. source: "./media/characters/koros/dicks-kings-crown.svg"
  26125. }
  26126. },
  26127. dicksTailSet: {
  26128. height: math.unit(3, "feet"),
  26129. name: "Dicks (Tail Set)",
  26130. image: {
  26131. source: "./media/characters/koros/dicks-tail-set.svg"
  26132. }
  26133. },
  26134. dickCumming: {
  26135. height: math.unit(7.98, "feet"),
  26136. name: "Dick (Cumming)",
  26137. image: {
  26138. source: "./media/characters/koros/dick-cumming.svg"
  26139. }
  26140. },
  26141. dicksBack: {
  26142. height: math.unit(5.9, "feet"),
  26143. name: "Dicks (Back)",
  26144. image: {
  26145. source: "./media/characters/koros/dicks-back.svg"
  26146. }
  26147. },
  26148. dicksFront: {
  26149. height: math.unit(3.72, "feet"),
  26150. name: "Dicks (Front)",
  26151. image: {
  26152. source: "./media/characters/koros/dicks-front.svg"
  26153. }
  26154. },
  26155. dicksPeeking: {
  26156. height: math.unit(3.0, "feet"),
  26157. name: "Dicks (Peeking)",
  26158. image: {
  26159. source: "./media/characters/koros/dicks-peeking.svg"
  26160. }
  26161. },
  26162. eye: {
  26163. height: math.unit(1.7, "feet"),
  26164. name: "Eye",
  26165. image: {
  26166. source: "./media/characters/koros/eye.svg"
  26167. }
  26168. },
  26169. headFront: {
  26170. height: math.unit(11.69, "feet"),
  26171. name: "Head (Front)",
  26172. image: {
  26173. source: "./media/characters/koros/head-front.svg"
  26174. }
  26175. },
  26176. headSide: {
  26177. height: math.unit(14, "feet"),
  26178. name: "Head (Side)",
  26179. image: {
  26180. source: "./media/characters/koros/head-side.svg"
  26181. }
  26182. },
  26183. leg: {
  26184. height: math.unit(17, "feet"),
  26185. name: "Leg",
  26186. image: {
  26187. source: "./media/characters/koros/leg.svg"
  26188. }
  26189. },
  26190. mawSide: {
  26191. height: math.unit(12.8, "feet"),
  26192. name: "Maw (Side)",
  26193. image: {
  26194. source: "./media/characters/koros/maw-side.svg"
  26195. }
  26196. },
  26197. mawSpitting: {
  26198. height: math.unit(17, "feet"),
  26199. name: "Maw (Spitting)",
  26200. image: {
  26201. source: "./media/characters/koros/maw-spitting.svg"
  26202. }
  26203. },
  26204. slit: {
  26205. height: math.unit(2.8, "feet"),
  26206. name: "Slit",
  26207. image: {
  26208. source: "./media/characters/koros/slit.svg"
  26209. }
  26210. },
  26211. stomach: {
  26212. height: math.unit(6.8, "feet"),
  26213. capacity: math.unit(20, "people"),
  26214. name: "Stomach",
  26215. image: {
  26216. source: "./media/characters/koros/stomach.svg"
  26217. }
  26218. },
  26219. wingspanBottom: {
  26220. height: math.unit(114, "feet"),
  26221. name: "Wingspan (Bottom)",
  26222. image: {
  26223. source: "./media/characters/koros/wingspan-bottom.svg"
  26224. }
  26225. },
  26226. wingspanTop: {
  26227. height: math.unit(104, "feet"),
  26228. name: "Wingspan (Top)",
  26229. image: {
  26230. source: "./media/characters/koros/wingspan-top.svg"
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(31 + 8 / 12, "feet"),
  26238. default: true
  26239. },
  26240. ]
  26241. ))
  26242. characterMakers.push(() => makeCharacter(
  26243. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26244. {
  26245. front: {
  26246. height: math.unit(18 + 5 / 12, "feet"),
  26247. weight: math.unit(3750, "kg"),
  26248. name: "Front",
  26249. image: {
  26250. source: "./media/characters/vexx/front.svg",
  26251. extra: 426 / 396,
  26252. bottom: 31.5 / 458
  26253. }
  26254. },
  26255. maw: {
  26256. height: math.unit(6, "feet"),
  26257. name: "Maw",
  26258. image: {
  26259. source: "./media/characters/vexx/maw.svg"
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(18 + 5 / 12, "feet"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(17 + 6 / 12, "feet"),
  26276. weight: math.unit(150, "lb"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/baadra/front.svg",
  26280. extra: 1694/1553,
  26281. bottom: 179/1873
  26282. }
  26283. },
  26284. frontAlt: {
  26285. height: math.unit(17 + 6 / 12, "feet"),
  26286. weight: math.unit(150, "lb"),
  26287. name: "Front (Alt)",
  26288. image: {
  26289. source: "./media/characters/baadra/front-alt.svg",
  26290. extra: 3137 / 2890,
  26291. bottom: 168.4 / 3305
  26292. }
  26293. },
  26294. back: {
  26295. height: math.unit(17 + 6 / 12, "feet"),
  26296. weight: math.unit(150, "lb"),
  26297. name: "Back",
  26298. image: {
  26299. source: "./media/characters/baadra/back.svg",
  26300. extra: 3142 / 2890,
  26301. bottom: 220 / 3371
  26302. }
  26303. },
  26304. head: {
  26305. height: math.unit(5.45, "feet"),
  26306. name: "Head",
  26307. image: {
  26308. source: "./media/characters/baadra/head.svg"
  26309. }
  26310. },
  26311. headAngry: {
  26312. height: math.unit(4.95, "feet"),
  26313. name: "Head (Angry)",
  26314. image: {
  26315. source: "./media/characters/baadra/head-angry.svg"
  26316. }
  26317. },
  26318. headOpen: {
  26319. height: math.unit(6, "feet"),
  26320. name: "Head (Open)",
  26321. image: {
  26322. source: "./media/characters/baadra/head-open.svg"
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(17 + 6 / 12, "feet"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(7 + 3 / 12, "feet"),
  26339. weight: math.unit(180, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/juri/front.svg",
  26343. extra: 1401 / 1237,
  26344. bottom: 18.5 / 1418
  26345. }
  26346. },
  26347. side: {
  26348. height: math.unit(7 + 3 / 12, "feet"),
  26349. weight: math.unit(180, "lb"),
  26350. name: "Side",
  26351. image: {
  26352. source: "./media/characters/juri/side.svg",
  26353. extra: 1424 / 1242,
  26354. bottom: 18.5 / 1447
  26355. }
  26356. },
  26357. sitting: {
  26358. height: math.unit(6, "feet"),
  26359. weight: math.unit(180, "lb"),
  26360. name: "Sitting",
  26361. image: {
  26362. source: "./media/characters/juri/sitting.svg",
  26363. extra: 1270 / 1143,
  26364. bottom: 100 / 1343
  26365. }
  26366. },
  26367. back: {
  26368. height: math.unit(7 + 3 / 12, "feet"),
  26369. weight: math.unit(180, "lb"),
  26370. name: "Back",
  26371. image: {
  26372. source: "./media/characters/juri/back.svg",
  26373. extra: 1377 / 1240,
  26374. bottom: 23.7 / 1405
  26375. }
  26376. },
  26377. maw: {
  26378. height: math.unit(2.8, "feet"),
  26379. name: "Maw",
  26380. image: {
  26381. source: "./media/characters/juri/maw.svg"
  26382. }
  26383. },
  26384. stomach: {
  26385. height: math.unit(0.89, "feet"),
  26386. capacity: math.unit(4, "liters"),
  26387. name: "Stomach",
  26388. image: {
  26389. source: "./media/characters/juri/stomach.svg"
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(7 + 3 / 12, "feet"),
  26397. default: true
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26403. {
  26404. fox: {
  26405. height: math.unit(5 + 6 / 12, "feet"),
  26406. weight: math.unit(140, "lb"),
  26407. name: "Fox",
  26408. image: {
  26409. source: "./media/characters/maxene-sita/fox.svg",
  26410. extra: 146 / 138,
  26411. bottom: 2.1 / 148.19
  26412. }
  26413. },
  26414. foxLaying: {
  26415. height: math.unit(1.70, "feet"),
  26416. weight: math.unit(140, "lb"),
  26417. name: "Fox (Laying)",
  26418. image: {
  26419. source: "./media/characters/maxene-sita/fox-laying.svg",
  26420. extra: 910 / 572,
  26421. bottom: 71 / 981
  26422. }
  26423. },
  26424. kitsune: {
  26425. height: math.unit(10, "feet"),
  26426. weight: math.unit(800, "lb"),
  26427. name: "Kitsune",
  26428. image: {
  26429. source: "./media/characters/maxene-sita/kitsune.svg",
  26430. extra: 185 / 176,
  26431. bottom: 4.7 / 189.9
  26432. }
  26433. },
  26434. hellhound: {
  26435. height: math.unit(10, "feet"),
  26436. weight: math.unit(700, "lb"),
  26437. name: "Hellhound",
  26438. image: {
  26439. source: "./media/characters/maxene-sita/hellhound.svg",
  26440. extra: 1600 / 1545,
  26441. bottom: 81 / 1681
  26442. }
  26443. },
  26444. },
  26445. [
  26446. {
  26447. name: "Normal",
  26448. height: math.unit(5 + 6 / 12, "feet"),
  26449. default: true
  26450. },
  26451. ]
  26452. ))
  26453. characterMakers.push(() => makeCharacter(
  26454. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26455. {
  26456. front: {
  26457. height: math.unit(3 + 4 / 12, "feet"),
  26458. weight: math.unit(70, "lb"),
  26459. name: "Front",
  26460. image: {
  26461. source: "./media/characters/maia/front.svg",
  26462. extra: 227 / 219.5,
  26463. bottom: 40 / 267
  26464. }
  26465. },
  26466. back: {
  26467. height: math.unit(3 + 4 / 12, "feet"),
  26468. weight: math.unit(70, "lb"),
  26469. name: "Back",
  26470. image: {
  26471. source: "./media/characters/maia/back.svg",
  26472. extra: 237 / 225
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Normal",
  26479. height: math.unit(3 + 4 / 12, "feet"),
  26480. default: true
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26486. {
  26487. front: {
  26488. height: math.unit(5 + 10 / 12, "feet"),
  26489. weight: math.unit(197, "lb"),
  26490. name: "Front",
  26491. image: {
  26492. source: "./media/characters/jabaro/front.svg",
  26493. extra: 225 / 216,
  26494. bottom: 5.06 / 230
  26495. }
  26496. },
  26497. back: {
  26498. height: math.unit(5 + 10 / 12, "feet"),
  26499. weight: math.unit(197, "lb"),
  26500. name: "Back",
  26501. image: {
  26502. source: "./media/characters/jabaro/back.svg",
  26503. extra: 225 / 219,
  26504. bottom: 1.9 / 227
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Normal",
  26511. height: math.unit(5 + 10 / 12, "feet"),
  26512. default: true
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26518. {
  26519. front: {
  26520. height: math.unit(5 + 8 / 12, "feet"),
  26521. weight: math.unit(139, "lb"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/risa/front.svg",
  26525. extra: 270 / 260,
  26526. bottom: 11.2 / 282
  26527. }
  26528. },
  26529. back: {
  26530. height: math.unit(5 + 8 / 12, "feet"),
  26531. weight: math.unit(139, "lb"),
  26532. name: "Back",
  26533. image: {
  26534. source: "./media/characters/risa/back.svg",
  26535. extra: 264 / 255,
  26536. bottom: 4 / 268
  26537. }
  26538. },
  26539. },
  26540. [
  26541. {
  26542. name: "Normal",
  26543. height: math.unit(5 + 8 / 12, "feet"),
  26544. default: true
  26545. },
  26546. ]
  26547. ))
  26548. characterMakers.push(() => makeCharacter(
  26549. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26550. {
  26551. front: {
  26552. height: math.unit(2 + 11 / 12, "feet"),
  26553. weight: math.unit(30, "lb"),
  26554. name: "Front",
  26555. image: {
  26556. source: "./media/characters/weatley/front.svg",
  26557. bottom: 10.7 / 414,
  26558. extra: 403.5 / 362
  26559. }
  26560. },
  26561. back: {
  26562. height: math.unit(2 + 11 / 12, "feet"),
  26563. weight: math.unit(30, "lb"),
  26564. name: "Back",
  26565. image: {
  26566. source: "./media/characters/weatley/back.svg",
  26567. bottom: 10.7 / 414,
  26568. extra: 403.5 / 362
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Normal",
  26575. height: math.unit(2 + 11 / 12, "feet"),
  26576. default: true
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(5 + 2 / 12, "feet"),
  26585. weight: math.unit(50, "kg"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/mercury-crescent/front.svg",
  26589. extra: 1088 / 1033,
  26590. bottom: 18.9 / 1109
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(5 + 2 / 12, "feet"),
  26598. default: true
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(2, "feet"),
  26607. weight: math.unit(15, "kg"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/diamond-jones/front.svg",
  26611. extra: 727/723,
  26612. bottom: 46/773
  26613. }
  26614. },
  26615. },
  26616. [
  26617. {
  26618. name: "Normal",
  26619. height: math.unit(2, "feet"),
  26620. default: true
  26621. },
  26622. ]
  26623. ))
  26624. characterMakers.push(() => makeCharacter(
  26625. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26626. {
  26627. front: {
  26628. height: math.unit(3, "feet"),
  26629. weight: math.unit(30, "kg"),
  26630. name: "Front",
  26631. image: {
  26632. source: "./media/characters/sweet-bit/front.svg",
  26633. extra: 675 / 567,
  26634. bottom: 27.7 / 703
  26635. }
  26636. },
  26637. },
  26638. [
  26639. {
  26640. name: "Normal",
  26641. height: math.unit(3, "feet"),
  26642. default: true
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26648. {
  26649. side: {
  26650. height: math.unit(9.178, "feet"),
  26651. weight: math.unit(500, "lb"),
  26652. name: "Side",
  26653. image: {
  26654. source: "./media/characters/umbrazen/side.svg",
  26655. extra: 1730 / 1473,
  26656. bottom: 34.6 / 1765
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Normal",
  26663. height: math.unit(9.178, "feet"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(10, "feet"),
  26673. weight: math.unit(750, "lb"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/arlist/front.svg",
  26677. extra: 961 / 778,
  26678. bottom: 6.2 / 986
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(10, "feet"),
  26686. default: true
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26692. {
  26693. front: {
  26694. height: math.unit(5 + 1 / 12, "feet"),
  26695. weight: math.unit(110, "lb"),
  26696. name: "Front",
  26697. image: {
  26698. source: "./media/characters/aradel/front.svg",
  26699. extra: 324 / 303,
  26700. bottom: 3.6 / 329.4
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Normal",
  26707. height: math.unit(5 + 1 / 12, "feet"),
  26708. default: true
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26714. {
  26715. dressed: {
  26716. height: math.unit(3 + 8 / 12, "feet"),
  26717. weight: math.unit(50, "lb"),
  26718. name: "Dressed",
  26719. image: {
  26720. source: "./media/characters/serryn/dressed.svg",
  26721. extra: 1792 / 1656,
  26722. bottom: 43.5 / 1840
  26723. }
  26724. },
  26725. nude: {
  26726. height: math.unit(3 + 8 / 12, "feet"),
  26727. weight: math.unit(50, "lb"),
  26728. name: "Nude",
  26729. image: {
  26730. source: "./media/characters/serryn/nude.svg",
  26731. extra: 1792 / 1656,
  26732. bottom: 43.5 / 1840
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Normal",
  26739. height: math.unit(3 + 8 / 12, "feet"),
  26740. default: true
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(7 + 10 / 12, "feet"),
  26749. weight: math.unit(255, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/xavier-thyme/front.svg",
  26753. extra: 3733 / 3642,
  26754. bottom: 131 / 3869
  26755. }
  26756. },
  26757. frontRaven: {
  26758. height: math.unit(7 + 10 / 12, "feet"),
  26759. weight: math.unit(255, "lb"),
  26760. name: "Front (Raven)",
  26761. image: {
  26762. source: "./media/characters/xavier-thyme/front-raven.svg",
  26763. extra: 4385 / 3642,
  26764. bottom: 131 / 4517
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Normal",
  26771. height: math.unit(7 + 10 / 12, "feet"),
  26772. default: true
  26773. },
  26774. ]
  26775. ))
  26776. characterMakers.push(() => makeCharacter(
  26777. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26778. {
  26779. front: {
  26780. height: math.unit(1.6, "m"),
  26781. weight: math.unit(50, "kg"),
  26782. name: "Front",
  26783. image: {
  26784. source: "./media/characters/kiki/front.svg",
  26785. extra: 4682 / 3610,
  26786. bottom: 115 / 4777
  26787. }
  26788. },
  26789. },
  26790. [
  26791. {
  26792. name: "Normal",
  26793. height: math.unit(1.6, "meters"),
  26794. default: true
  26795. },
  26796. ]
  26797. ))
  26798. characterMakers.push(() => makeCharacter(
  26799. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26800. {
  26801. front: {
  26802. height: math.unit(50, "m"),
  26803. weight: math.unit(500, "tonnes"),
  26804. name: "Front",
  26805. image: {
  26806. source: "./media/characters/ryoko/front.svg",
  26807. extra: 4632 / 3926,
  26808. bottom: 193 / 4823
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(50, "meters"),
  26816. default: true
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26822. {
  26823. front: {
  26824. height: math.unit(30, "m"),
  26825. weight: math.unit(22, "tonnes"),
  26826. name: "Front",
  26827. image: {
  26828. source: "./media/characters/elio/front.svg",
  26829. extra: 4582 / 3720,
  26830. bottom: 236 / 4828
  26831. }
  26832. },
  26833. },
  26834. [
  26835. {
  26836. name: "Normal",
  26837. height: math.unit(30, "meters"),
  26838. default: true
  26839. },
  26840. ]
  26841. ))
  26842. characterMakers.push(() => makeCharacter(
  26843. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26844. {
  26845. front: {
  26846. height: math.unit(6 + 3 / 12, "feet"),
  26847. weight: math.unit(120, "lb"),
  26848. name: "Front",
  26849. image: {
  26850. source: "./media/characters/azura/front.svg",
  26851. extra: 1149 / 1135,
  26852. bottom: 45 / 1194
  26853. }
  26854. },
  26855. frontClothed: {
  26856. height: math.unit(6 + 3 / 12, "feet"),
  26857. weight: math.unit(120, "lb"),
  26858. name: "Front (Clothed)",
  26859. image: {
  26860. source: "./media/characters/azura/front-clothed.svg",
  26861. extra: 1149 / 1135,
  26862. bottom: 45 / 1194
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(6 + 3 / 12, "feet"),
  26870. default: true
  26871. },
  26872. {
  26873. name: "Macro",
  26874. height: math.unit(20 + 6 / 12, "feet")
  26875. },
  26876. {
  26877. name: "Megamacro",
  26878. height: math.unit(12, "miles")
  26879. },
  26880. {
  26881. name: "Gigamacro",
  26882. height: math.unit(10000, "miles")
  26883. },
  26884. {
  26885. name: "Teramacro",
  26886. height: math.unit(900000, "miles")
  26887. },
  26888. ]
  26889. ))
  26890. characterMakers.push(() => makeCharacter(
  26891. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26892. {
  26893. front: {
  26894. height: math.unit(12, "feet"),
  26895. weight: math.unit(1, "ton"),
  26896. capacity: math.unit(660000, "gallons"),
  26897. name: "Front",
  26898. image: {
  26899. source: "./media/characters/zeus/front.svg",
  26900. extra: 5005 / 4717,
  26901. bottom: 363 / 5388
  26902. }
  26903. },
  26904. },
  26905. [
  26906. {
  26907. name: "Normal",
  26908. height: math.unit(12, "feet")
  26909. },
  26910. {
  26911. name: "Preferred Size",
  26912. height: math.unit(0.5, "miles"),
  26913. default: true
  26914. },
  26915. {
  26916. name: "Giga Horse",
  26917. height: math.unit(300, "miles")
  26918. },
  26919. {
  26920. name: "Riding Planets",
  26921. height: math.unit(30, "megameters")
  26922. },
  26923. {
  26924. name: "Cosmic Giant",
  26925. height: math.unit(3, "zettameters")
  26926. },
  26927. {
  26928. name: "Breeding God",
  26929. height: math.unit(9.92e22, "yottameters")
  26930. },
  26931. ]
  26932. ))
  26933. characterMakers.push(() => makeCharacter(
  26934. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26935. {
  26936. side: {
  26937. height: math.unit(9, "feet"),
  26938. weight: math.unit(1500, "kg"),
  26939. name: "Side",
  26940. image: {
  26941. source: "./media/characters/fang/side.svg",
  26942. extra: 924 / 866,
  26943. bottom: 47.5 / 972.3
  26944. }
  26945. },
  26946. },
  26947. [
  26948. {
  26949. name: "Normal",
  26950. height: math.unit(9, "feet"),
  26951. default: true
  26952. },
  26953. {
  26954. name: "Macro",
  26955. height: math.unit(75 + 6 / 12, "feet")
  26956. },
  26957. {
  26958. name: "Teramacro",
  26959. height: math.unit(50000, "miles")
  26960. },
  26961. ]
  26962. ))
  26963. characterMakers.push(() => makeCharacter(
  26964. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26965. {
  26966. front: {
  26967. height: math.unit(10, "feet"),
  26968. weight: math.unit(2, "tons"),
  26969. name: "Front",
  26970. image: {
  26971. source: "./media/characters/rekhit/front.svg",
  26972. extra: 2796 / 2590,
  26973. bottom: 225 / 3022
  26974. }
  26975. },
  26976. },
  26977. [
  26978. {
  26979. name: "Normal",
  26980. height: math.unit(10, "feet"),
  26981. default: true
  26982. },
  26983. {
  26984. name: "Macro",
  26985. height: math.unit(500, "feet")
  26986. },
  26987. ]
  26988. ))
  26989. characterMakers.push(() => makeCharacter(
  26990. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26991. {
  26992. front: {
  26993. height: math.unit(7 + 6.451 / 12, "feet"),
  26994. weight: math.unit(310, "lb"),
  26995. name: "Front",
  26996. image: {
  26997. source: "./media/characters/dahlia-verrick/front.svg",
  26998. extra: 1488 / 1365,
  26999. bottom: 6.2 / 1495
  27000. }
  27001. },
  27002. back: {
  27003. height: math.unit(7 + 6.451 / 12, "feet"),
  27004. weight: math.unit(310, "lb"),
  27005. name: "Back",
  27006. image: {
  27007. source: "./media/characters/dahlia-verrick/back.svg",
  27008. extra: 1472 / 1351,
  27009. bottom: 5.28 / 1477
  27010. }
  27011. },
  27012. frontBusiness: {
  27013. height: math.unit(7 + 6.451 / 12, "feet"),
  27014. weight: math.unit(200, "lb"),
  27015. name: "Front (Business)",
  27016. image: {
  27017. source: "./media/characters/dahlia-verrick/front-business.svg",
  27018. extra: 1478 / 1381,
  27019. bottom: 5.5 / 1484
  27020. }
  27021. },
  27022. frontCasual: {
  27023. height: math.unit(7 + 6.451 / 12, "feet"),
  27024. weight: math.unit(200, "lb"),
  27025. name: "Front (Casual)",
  27026. image: {
  27027. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27028. extra: 1478 / 1381,
  27029. bottom: 5.5 / 1484
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Travel-Sized",
  27036. height: math.unit(7.45, "inches")
  27037. },
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(7 + 6.451 / 12, "feet"),
  27041. default: true
  27042. },
  27043. {
  27044. name: "Hitting the Town",
  27045. height: math.unit(37 + 8 / 12, "feet")
  27046. },
  27047. {
  27048. name: "Stomp in the Suburbs",
  27049. height: math.unit(964 + 9.728 / 12, "feet")
  27050. },
  27051. {
  27052. name: "Sit on the City",
  27053. height: math.unit(61747 + 10.592 / 12, "feet")
  27054. },
  27055. {
  27056. name: "Glomp the Globe",
  27057. height: math.unit(252919327 + 4.832 / 12, "feet")
  27058. },
  27059. ]
  27060. ))
  27061. characterMakers.push(() => makeCharacter(
  27062. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27063. {
  27064. front: {
  27065. height: math.unit(6 + 4 / 12, "feet"),
  27066. weight: math.unit(320, "lb"),
  27067. name: "Front",
  27068. image: {
  27069. source: "./media/characters/balina-mahigan/front.svg",
  27070. extra: 447 / 428,
  27071. bottom: 18 / 466
  27072. }
  27073. },
  27074. back: {
  27075. height: math.unit(6 + 4 / 12, "feet"),
  27076. weight: math.unit(320, "lb"),
  27077. name: "Back",
  27078. image: {
  27079. source: "./media/characters/balina-mahigan/back.svg",
  27080. extra: 445 / 428,
  27081. bottom: 4.07 / 448
  27082. }
  27083. },
  27084. arm: {
  27085. height: math.unit(1.88, "feet"),
  27086. name: "Arm",
  27087. image: {
  27088. source: "./media/characters/balina-mahigan/arm.svg"
  27089. }
  27090. },
  27091. backPort: {
  27092. height: math.unit(0.685, "feet"),
  27093. name: "Back Port",
  27094. image: {
  27095. source: "./media/characters/balina-mahigan/back-port.svg"
  27096. }
  27097. },
  27098. hoofpaw: {
  27099. height: math.unit(1.41, "feet"),
  27100. name: "Hoofpaw",
  27101. image: {
  27102. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27103. }
  27104. },
  27105. leftHandBack: {
  27106. height: math.unit(0.938, "feet"),
  27107. name: "Left Hand (Back)",
  27108. image: {
  27109. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27110. }
  27111. },
  27112. leftHandFront: {
  27113. height: math.unit(0.938, "feet"),
  27114. name: "Left Hand (Front)",
  27115. image: {
  27116. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27117. }
  27118. },
  27119. rightHandBack: {
  27120. height: math.unit(0.95, "feet"),
  27121. name: "Right Hand (Back)",
  27122. image: {
  27123. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27124. }
  27125. },
  27126. rightHandFront: {
  27127. height: math.unit(0.95, "feet"),
  27128. name: "Right Hand (Front)",
  27129. image: {
  27130. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(6 + 4 / 12, "feet"),
  27138. default: true
  27139. },
  27140. ]
  27141. ))
  27142. characterMakers.push(() => makeCharacter(
  27143. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27144. {
  27145. front: {
  27146. height: math.unit(6, "feet"),
  27147. weight: math.unit(320, "lb"),
  27148. name: "Front",
  27149. image: {
  27150. source: "./media/characters/balina-mejeri/front.svg",
  27151. extra: 517 / 488,
  27152. bottom: 44.2 / 561
  27153. }
  27154. },
  27155. },
  27156. [
  27157. {
  27158. name: "Normal",
  27159. height: math.unit(6 + 4 / 12, "feet")
  27160. },
  27161. {
  27162. name: "Business",
  27163. height: math.unit(155, "feet"),
  27164. default: true
  27165. },
  27166. ]
  27167. ))
  27168. characterMakers.push(() => makeCharacter(
  27169. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27170. {
  27171. kneeling: {
  27172. height: math.unit(6 + 4 / 12, "feet"),
  27173. weight: math.unit(300 * 20, "lb"),
  27174. name: "Kneeling",
  27175. image: {
  27176. source: "./media/characters/balbarian/kneeling.svg",
  27177. extra: 922 / 862,
  27178. bottom: 42.4 / 965
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(6 + 4 / 12, "feet")
  27186. },
  27187. {
  27188. name: "Treasured",
  27189. height: math.unit(18 + 9 / 12, "feet"),
  27190. default: true
  27191. },
  27192. {
  27193. name: "Macro",
  27194. height: math.unit(900, "feet")
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(6 + 4 / 12, "feet"),
  27203. weight: math.unit(325, "lb"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/balina-amarini/front.svg",
  27207. extra: 415 / 403,
  27208. bottom: 19 / 433.4
  27209. }
  27210. },
  27211. back: {
  27212. height: math.unit(6 + 4 / 12, "feet"),
  27213. weight: math.unit(325, "lb"),
  27214. name: "Back",
  27215. image: {
  27216. source: "./media/characters/balina-amarini/back.svg",
  27217. extra: 415 / 403,
  27218. bottom: 13.5 / 432
  27219. }
  27220. },
  27221. overdrive: {
  27222. height: math.unit(6 + 4 / 12, "feet"),
  27223. weight: math.unit(400, "lb"),
  27224. name: "Overdrive",
  27225. image: {
  27226. source: "./media/characters/balina-amarini/overdrive.svg",
  27227. extra: 269 / 259,
  27228. bottom: 12 / 282
  27229. }
  27230. },
  27231. },
  27232. [
  27233. {
  27234. name: "Boom",
  27235. height: math.unit(9 + 10 / 12, "feet"),
  27236. default: true
  27237. },
  27238. {
  27239. name: "Macro",
  27240. height: math.unit(280, "feet")
  27241. },
  27242. ]
  27243. ))
  27244. characterMakers.push(() => makeCharacter(
  27245. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27246. {
  27247. goddess: {
  27248. height: math.unit(600, "feet"),
  27249. weight: math.unit(2000000, "tons"),
  27250. name: "Goddess",
  27251. image: {
  27252. source: "./media/characters/lady-kubwa/goddess.svg",
  27253. extra: 1240.5 / 1223,
  27254. bottom: 22 / 1263
  27255. }
  27256. },
  27257. goddesser: {
  27258. height: math.unit(900, "feet"),
  27259. weight: math.unit(20000000, "lb"),
  27260. name: "Goddess-er",
  27261. image: {
  27262. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27263. extra: 899 / 888,
  27264. bottom: 12.6 / 912
  27265. }
  27266. },
  27267. },
  27268. [
  27269. {
  27270. name: "Macro",
  27271. height: math.unit(600, "feet"),
  27272. default: true
  27273. },
  27274. {
  27275. name: "Megamacro",
  27276. height: math.unit(250, "miles")
  27277. },
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27282. {
  27283. front: {
  27284. height: math.unit(7 + 7 / 12, "feet"),
  27285. weight: math.unit(250, "lb"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/tala-grovehorn/front.svg",
  27289. extra: 2636 / 2525,
  27290. bottom: 147 / 2781
  27291. }
  27292. },
  27293. back: {
  27294. height: math.unit(7 + 7 / 12, "feet"),
  27295. weight: math.unit(250, "lb"),
  27296. name: "Back",
  27297. image: {
  27298. source: "./media/characters/tala-grovehorn/back.svg",
  27299. extra: 2635 / 2539,
  27300. bottom: 100 / 2732.8
  27301. }
  27302. },
  27303. mouth: {
  27304. height: math.unit(1.15, "feet"),
  27305. name: "Mouth",
  27306. image: {
  27307. source: "./media/characters/tala-grovehorn/mouth.svg"
  27308. }
  27309. },
  27310. dick: {
  27311. height: math.unit(2.36, "feet"),
  27312. name: "Dick",
  27313. image: {
  27314. source: "./media/characters/tala-grovehorn/dick.svg"
  27315. }
  27316. },
  27317. slit: {
  27318. height: math.unit(0.61, "feet"),
  27319. name: "Slit",
  27320. image: {
  27321. source: "./media/characters/tala-grovehorn/slit.svg"
  27322. }
  27323. },
  27324. },
  27325. [
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(7 + 7 / 12, "feet"),
  27333. weight: math.unit(225, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/epona/front.svg",
  27337. extra: 2445 / 2290,
  27338. bottom: 251 / 2696
  27339. }
  27340. },
  27341. back: {
  27342. height: math.unit(7 + 7 / 12, "feet"),
  27343. weight: math.unit(225, "lb"),
  27344. name: "Back",
  27345. image: {
  27346. source: "./media/characters/epona/back.svg",
  27347. extra: 2546 / 2408,
  27348. bottom: 44 / 2589
  27349. }
  27350. },
  27351. genitals: {
  27352. height: math.unit(1.5, "feet"),
  27353. name: "Genitals",
  27354. image: {
  27355. source: "./media/characters/epona/genitals.svg"
  27356. }
  27357. },
  27358. },
  27359. [
  27360. {
  27361. name: "Normal",
  27362. height: math.unit(7 + 7 / 12, "feet"),
  27363. default: true
  27364. },
  27365. ]
  27366. ))
  27367. characterMakers.push(() => makeCharacter(
  27368. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27369. {
  27370. front: {
  27371. height: math.unit(7, "feet"),
  27372. weight: math.unit(518, "lb"),
  27373. name: "Front",
  27374. image: {
  27375. source: "./media/characters/avia-bloodbourn/front.svg",
  27376. extra: 1466 / 1350,
  27377. bottom: 65 / 1527
  27378. }
  27379. },
  27380. },
  27381. [
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27386. {
  27387. front: {
  27388. height: math.unit(9.35, "feet"),
  27389. weight: math.unit(600, "lb"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/amera/front.svg",
  27393. extra: 891 / 818,
  27394. bottom: 30 / 922.7
  27395. }
  27396. },
  27397. back: {
  27398. height: math.unit(9.35, "feet"),
  27399. weight: math.unit(600, "lb"),
  27400. name: "Back",
  27401. image: {
  27402. source: "./media/characters/amera/back.svg",
  27403. extra: 876 / 824,
  27404. bottom: 6.8 / 884
  27405. }
  27406. },
  27407. dick: {
  27408. height: math.unit(2.14, "feet"),
  27409. name: "Dick",
  27410. image: {
  27411. source: "./media/characters/amera/dick.svg"
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Normal",
  27418. height: math.unit(9.35, "feet"),
  27419. default: true
  27420. },
  27421. ]
  27422. ))
  27423. characterMakers.push(() => makeCharacter(
  27424. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27425. {
  27426. kneeling: {
  27427. height: math.unit(3 + 4 / 12, "feet"),
  27428. weight: math.unit(90, "lb"),
  27429. name: "Kneeling",
  27430. image: {
  27431. source: "./media/characters/rosewen/kneeling.svg",
  27432. extra: 1835 / 1571,
  27433. bottom: 27.7 / 1862
  27434. }
  27435. },
  27436. },
  27437. [
  27438. {
  27439. name: "Normal",
  27440. height: math.unit(3 + 4 / 12, "feet"),
  27441. default: true
  27442. },
  27443. ]
  27444. ))
  27445. characterMakers.push(() => makeCharacter(
  27446. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27447. {
  27448. front: {
  27449. height: math.unit(5 + 10 / 12, "feet"),
  27450. weight: math.unit(200, "lb"),
  27451. name: "Front",
  27452. image: {
  27453. source: "./media/characters/sabah/front.svg",
  27454. extra: 849 / 763,
  27455. bottom: 33.9 / 881
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Normal",
  27462. height: math.unit(5 + 10 / 12, "feet"),
  27463. default: true
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27469. {
  27470. front: {
  27471. height: math.unit(3 + 5 / 12, "feet"),
  27472. weight: math.unit(40, "kg"),
  27473. name: "Front",
  27474. image: {
  27475. source: "./media/characters/purple-flame/front.svg",
  27476. extra: 1577 / 1412,
  27477. bottom: 97 / 1694
  27478. }
  27479. },
  27480. frontDressed: {
  27481. height: math.unit(3 + 5 / 12, "feet"),
  27482. weight: math.unit(40, "kg"),
  27483. name: "Front (Dressed)",
  27484. image: {
  27485. source: "./media/characters/purple-flame/front-dressed.svg",
  27486. extra: 1577 / 1412,
  27487. bottom: 97 / 1694
  27488. }
  27489. },
  27490. headphones: {
  27491. height: math.unit(0.85, "feet"),
  27492. name: "Headphones",
  27493. image: {
  27494. source: "./media/characters/purple-flame/headphones.svg"
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Really Small",
  27501. height: math.unit(5, "cm")
  27502. },
  27503. {
  27504. name: "Micro",
  27505. height: math.unit(1 + 5 / 12, "feet")
  27506. },
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(3 + 5 / 12, "feet"),
  27510. default: true
  27511. },
  27512. {
  27513. name: "Minimacro",
  27514. height: math.unit(125, "feet")
  27515. },
  27516. {
  27517. name: "Macro",
  27518. height: math.unit(0.5, "miles")
  27519. },
  27520. {
  27521. name: "Megamacro",
  27522. height: math.unit(50, "miles")
  27523. },
  27524. {
  27525. name: "Gigantic",
  27526. height: math.unit(750, "miles")
  27527. },
  27528. {
  27529. name: "Planetary",
  27530. height: math.unit(15000, "miles")
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(14, "feet"),
  27539. weight: math.unit(959, "lb"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/arsenal/front.svg",
  27543. extra: 2357 / 2157,
  27544. bottom: 93 / 2458
  27545. }
  27546. },
  27547. },
  27548. [
  27549. {
  27550. name: "Normal",
  27551. height: math.unit(14, "feet"),
  27552. default: true
  27553. },
  27554. ]
  27555. ))
  27556. characterMakers.push(() => makeCharacter(
  27557. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27558. {
  27559. front: {
  27560. height: math.unit(6, "feet"),
  27561. weight: math.unit(150, "lb"),
  27562. name: "Front",
  27563. image: {
  27564. source: "./media/characters/adira/front.svg",
  27565. extra: 1078 / 1029,
  27566. bottom: 87 / 1166
  27567. }
  27568. },
  27569. },
  27570. [
  27571. {
  27572. name: "Micro",
  27573. height: math.unit(4, "inches"),
  27574. default: true
  27575. },
  27576. {
  27577. name: "Macro",
  27578. height: math.unit(50, "feet")
  27579. },
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27584. {
  27585. front: {
  27586. height: math.unit(16, "feet"),
  27587. weight: math.unit(1000, "lb"),
  27588. name: "Front",
  27589. image: {
  27590. source: "./media/characters/grim/front.svg",
  27591. extra: 622 / 614,
  27592. bottom: 18.1 / 642
  27593. }
  27594. },
  27595. back: {
  27596. height: math.unit(16, "feet"),
  27597. weight: math.unit(1000, "lb"),
  27598. name: "Back",
  27599. image: {
  27600. source: "./media/characters/grim/back.svg",
  27601. extra: 610.6 / 602,
  27602. bottom: 40.8 / 652
  27603. }
  27604. },
  27605. hunched: {
  27606. height: math.unit(9.75, "feet"),
  27607. weight: math.unit(1000, "lb"),
  27608. name: "Hunched",
  27609. image: {
  27610. source: "./media/characters/grim/hunched.svg",
  27611. extra: 304 / 297,
  27612. bottom: 35.4 / 394
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Normal",
  27619. height: math.unit(16, "feet"),
  27620. default: true
  27621. },
  27622. ]
  27623. ))
  27624. characterMakers.push(() => makeCharacter(
  27625. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27626. {
  27627. front: {
  27628. height: math.unit(2.3, "meters"),
  27629. weight: math.unit(300, "lb"),
  27630. name: "Front",
  27631. image: {
  27632. source: "./media/characters/sinja/front-sfw.svg",
  27633. extra: 1393 / 1294,
  27634. bottom: 70 / 1463
  27635. }
  27636. },
  27637. frontNsfw: {
  27638. height: math.unit(2.3, "meters"),
  27639. weight: math.unit(300, "lb"),
  27640. name: "Front (NSFW)",
  27641. image: {
  27642. source: "./media/characters/sinja/front-nsfw.svg",
  27643. extra: 1393 / 1294,
  27644. bottom: 70 / 1463
  27645. }
  27646. },
  27647. back: {
  27648. height: math.unit(2.3, "meters"),
  27649. weight: math.unit(300, "lb"),
  27650. name: "Back",
  27651. image: {
  27652. source: "./media/characters/sinja/back.svg",
  27653. extra: 1393 / 1294,
  27654. bottom: 70 / 1463
  27655. }
  27656. },
  27657. head: {
  27658. height: math.unit(1.771, "feet"),
  27659. name: "Head",
  27660. image: {
  27661. source: "./media/characters/sinja/head.svg"
  27662. }
  27663. },
  27664. slit: {
  27665. height: math.unit(0.8, "feet"),
  27666. name: "Slit",
  27667. image: {
  27668. source: "./media/characters/sinja/slit.svg"
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Normal",
  27675. height: math.unit(2.3, "meters")
  27676. },
  27677. {
  27678. name: "Macro",
  27679. height: math.unit(91, "meters"),
  27680. default: true
  27681. },
  27682. {
  27683. name: "Megamacro",
  27684. height: math.unit(91440, "meters")
  27685. },
  27686. {
  27687. name: "Gigamacro",
  27688. height: math.unit(60960000, "meters")
  27689. },
  27690. {
  27691. name: "Teramacro",
  27692. height: math.unit(9144000000, "meters")
  27693. },
  27694. ]
  27695. ))
  27696. characterMakers.push(() => makeCharacter(
  27697. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27698. {
  27699. front: {
  27700. height: math.unit(1.7, "meters"),
  27701. weight: math.unit(130, "lb"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/kyu/front.svg",
  27705. extra: 415 / 395,
  27706. bottom: 5 / 420
  27707. }
  27708. },
  27709. head: {
  27710. height: math.unit(1.75, "feet"),
  27711. name: "Head",
  27712. image: {
  27713. source: "./media/characters/kyu/head.svg"
  27714. }
  27715. },
  27716. foot: {
  27717. height: math.unit(0.81, "feet"),
  27718. name: "Foot",
  27719. image: {
  27720. source: "./media/characters/kyu/foot.svg"
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(1.7, "meters")
  27728. },
  27729. {
  27730. name: "Macro",
  27731. height: math.unit(131, "feet"),
  27732. default: true
  27733. },
  27734. {
  27735. name: "Megamacro",
  27736. height: math.unit(91440, "meters")
  27737. },
  27738. {
  27739. name: "Gigamacro",
  27740. height: math.unit(60960000, "meters")
  27741. },
  27742. {
  27743. name: "Teramacro",
  27744. height: math.unit(9144000000, "meters")
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27750. {
  27751. front: {
  27752. height: math.unit(7 + 1 / 12, "feet"),
  27753. weight: math.unit(250, "lb"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/joey/front.svg",
  27757. extra: 1791 / 1537,
  27758. bottom: 28 / 1816
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Micro",
  27765. height: math.unit(3, "inches")
  27766. },
  27767. {
  27768. name: "Normal",
  27769. height: math.unit(7 + 1 / 12, "feet"),
  27770. default: true
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27776. {
  27777. front: {
  27778. height: math.unit(165, "cm"),
  27779. weight: math.unit(140, "lb"),
  27780. name: "Front",
  27781. image: {
  27782. source: "./media/characters/sam-evans/front.svg",
  27783. extra: 3417 / 3230,
  27784. bottom: 41.3 / 3417
  27785. }
  27786. },
  27787. frontSixTails: {
  27788. height: math.unit(165, "cm"),
  27789. weight: math.unit(140, "lb"),
  27790. name: "Front-six-tails",
  27791. image: {
  27792. source: "./media/characters/sam-evans/front-six-tails.svg",
  27793. extra: 3417 / 3230,
  27794. bottom: 41.3 / 3417
  27795. }
  27796. },
  27797. back: {
  27798. height: math.unit(165, "cm"),
  27799. weight: math.unit(140, "lb"),
  27800. name: "Back",
  27801. image: {
  27802. source: "./media/characters/sam-evans/back.svg",
  27803. extra: 3227 / 3032,
  27804. bottom: 6.8 / 3234
  27805. }
  27806. },
  27807. face: {
  27808. height: math.unit(0.68, "feet"),
  27809. name: "Face",
  27810. image: {
  27811. source: "./media/characters/sam-evans/face.svg"
  27812. }
  27813. },
  27814. },
  27815. [
  27816. {
  27817. name: "Normal",
  27818. height: math.unit(165, "cm"),
  27819. default: true
  27820. },
  27821. {
  27822. name: "Macro",
  27823. height: math.unit(100, "meters")
  27824. },
  27825. {
  27826. name: "Macro+",
  27827. height: math.unit(800, "meters")
  27828. },
  27829. {
  27830. name: "Macro++",
  27831. height: math.unit(3, "km")
  27832. },
  27833. {
  27834. name: "Macro+++",
  27835. height: math.unit(30, "km")
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(10, "feet"),
  27844. weight: math.unit(750, "lb"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/juliet-a/front.svg",
  27848. extra: 1766 / 1720,
  27849. bottom: 43 / 1809
  27850. }
  27851. },
  27852. back: {
  27853. height: math.unit(10, "feet"),
  27854. weight: math.unit(750, "lb"),
  27855. name: "Back",
  27856. image: {
  27857. source: "./media/characters/juliet-a/back.svg",
  27858. extra: 1781 / 1734,
  27859. bottom: 35 / 1810,
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(10, "feet"),
  27867. default: true
  27868. },
  27869. {
  27870. name: "Dragon Form",
  27871. height: math.unit(250, "feet")
  27872. },
  27873. {
  27874. name: "Macro",
  27875. height: math.unit(1000, "feet")
  27876. },
  27877. {
  27878. name: "Megamacro",
  27879. height: math.unit(10000, "feet")
  27880. }
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27885. {
  27886. regular: {
  27887. height: math.unit(7 + 3 / 12, "feet"),
  27888. weight: math.unit(260, "lb"),
  27889. name: "Regular",
  27890. image: {
  27891. source: "./media/characters/wild/regular.svg",
  27892. extra: 97.45 / 92,
  27893. bottom: 6.8 / 104.3
  27894. }
  27895. },
  27896. biggums: {
  27897. height: math.unit(8 + 6 / 12, "feet"),
  27898. weight: math.unit(425, "lb"),
  27899. name: "Biggums",
  27900. image: {
  27901. source: "./media/characters/wild/biggums.svg",
  27902. extra: 97.45 / 92,
  27903. bottom: 7.5 / 132.34
  27904. }
  27905. },
  27906. mawRegular: {
  27907. height: math.unit(1.24, "feet"),
  27908. name: "Maw (Regular)",
  27909. image: {
  27910. source: "./media/characters/wild/maw.svg"
  27911. }
  27912. },
  27913. mawBiggums: {
  27914. height: math.unit(1.47, "feet"),
  27915. name: "Maw (Biggums)",
  27916. image: {
  27917. source: "./media/characters/wild/maw.svg"
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(7 + 3 / 12, "feet"),
  27925. default: true
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27931. {
  27932. front: {
  27933. height: math.unit(2.5, "meters"),
  27934. weight: math.unit(200, "kg"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/vidar/front.svg",
  27938. extra: 2994 / 2795,
  27939. bottom: 56 / 3061
  27940. }
  27941. },
  27942. back: {
  27943. height: math.unit(2.5, "meters"),
  27944. weight: math.unit(200, "kg"),
  27945. name: "Back",
  27946. image: {
  27947. source: "./media/characters/vidar/back.svg",
  27948. extra: 3131 / 2928,
  27949. bottom: 13.5 / 3141.5
  27950. }
  27951. },
  27952. feral: {
  27953. height: math.unit(2.5, "meters"),
  27954. weight: math.unit(2000, "kg"),
  27955. name: "Feral",
  27956. image: {
  27957. source: "./media/characters/vidar/feral.svg",
  27958. extra: 2790 / 1765,
  27959. bottom: 6 / 2796
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(2.5, "meters"),
  27967. default: true
  27968. },
  27969. {
  27970. name: "Macro",
  27971. height: math.unit(100, "meters")
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27977. {
  27978. front: {
  27979. height: math.unit(5 + 9 / 12, "feet"),
  27980. weight: math.unit(120, "lb"),
  27981. name: "Front",
  27982. image: {
  27983. source: "./media/characters/ash/front.svg",
  27984. extra: 2189 / 1961,
  27985. bottom: 5.2 / 2194
  27986. }
  27987. },
  27988. },
  27989. [
  27990. {
  27991. name: "Normal",
  27992. height: math.unit(5 + 9 / 12, "feet"),
  27993. default: true
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(9, "feet"),
  28002. weight: math.unit(10000, "lb"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/gygabite/front.svg",
  28006. bottom: 31.7 / 537.8,
  28007. extra: 505 / 370
  28008. }
  28009. },
  28010. },
  28011. [
  28012. {
  28013. name: "Normal",
  28014. height: math.unit(9, "feet"),
  28015. default: true
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28021. {
  28022. front: {
  28023. height: math.unit(12, "feet"),
  28024. weight: math.unit(35000, "lb"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/p0tat0/front.svg",
  28028. extra: 1065 / 921,
  28029. bottom: 55.7 / 1121.25
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(12, "feet"),
  28037. default: true
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28043. {
  28044. side: {
  28045. height: math.unit(6.5, "feet"),
  28046. weight: math.unit(800, "lb"),
  28047. name: "Side",
  28048. image: {
  28049. source: "./media/characters/dusk/side.svg",
  28050. extra: 615 / 373,
  28051. bottom: 53 / 664
  28052. }
  28053. },
  28054. sitting: {
  28055. height: math.unit(7, "feet"),
  28056. weight: math.unit(800, "lb"),
  28057. name: "Sitting",
  28058. image: {
  28059. source: "./media/characters/dusk/sitting.svg",
  28060. extra: 753 / 425,
  28061. bottom: 33 / 774
  28062. }
  28063. },
  28064. head: {
  28065. height: math.unit(6.1, "feet"),
  28066. name: "Head",
  28067. image: {
  28068. source: "./media/characters/dusk/head.svg"
  28069. }
  28070. },
  28071. },
  28072. [
  28073. {
  28074. name: "Normal",
  28075. height: math.unit(7, "feet"),
  28076. default: true
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(15, "feet"),
  28085. weight: math.unit(7000, "lb"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/jay-direwolf/front.svg",
  28089. extra: 1810 / 1732,
  28090. bottom: 66 / 1892
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Normal",
  28097. height: math.unit(15, "feet"),
  28098. default: true
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(4 + 9 / 12, "feet"),
  28107. weight: math.unit(130, "lb"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/anchovie/front.svg",
  28111. extra: 382 / 350,
  28112. bottom: 25 / 409
  28113. }
  28114. },
  28115. back: {
  28116. height: math.unit(4 + 9 / 12, "feet"),
  28117. weight: math.unit(130, "lb"),
  28118. name: "Back",
  28119. image: {
  28120. source: "./media/characters/anchovie/back.svg",
  28121. extra: 385 / 352,
  28122. bottom: 16.6 / 402
  28123. }
  28124. },
  28125. frontDressed: {
  28126. height: math.unit(4 + 9 / 12, "feet"),
  28127. weight: math.unit(130, "lb"),
  28128. name: "Front (Dressed)",
  28129. image: {
  28130. source: "./media/characters/anchovie/front-dressed.svg",
  28131. extra: 382 / 350,
  28132. bottom: 25 / 409
  28133. }
  28134. },
  28135. backDressed: {
  28136. height: math.unit(4 + 9 / 12, "feet"),
  28137. weight: math.unit(130, "lb"),
  28138. name: "Back (Dressed)",
  28139. image: {
  28140. source: "./media/characters/anchovie/back-dressed.svg",
  28141. extra: 385 / 352,
  28142. bottom: 16.6 / 402
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Micro",
  28149. height: math.unit(6.4, "inches")
  28150. },
  28151. {
  28152. name: "Normal",
  28153. height: math.unit(4 + 9 / 12, "feet"),
  28154. default: true
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(2, "meters"),
  28163. weight: math.unit(180, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/acidrenamon/front.svg",
  28167. extra: 987 / 890,
  28168. bottom: 22.8 / 1009
  28169. }
  28170. },
  28171. back: {
  28172. height: math.unit(2, "meters"),
  28173. weight: math.unit(180, "lb"),
  28174. name: "Back",
  28175. image: {
  28176. source: "./media/characters/acidrenamon/back.svg",
  28177. extra: 983 / 891,
  28178. bottom: 8.4 / 992
  28179. }
  28180. },
  28181. head: {
  28182. height: math.unit(1.92, "feet"),
  28183. name: "Head",
  28184. image: {
  28185. source: "./media/characters/acidrenamon/head.svg"
  28186. }
  28187. },
  28188. rump: {
  28189. height: math.unit(1.72, "feet"),
  28190. name: "Rump",
  28191. image: {
  28192. source: "./media/characters/acidrenamon/rump.svg"
  28193. }
  28194. },
  28195. tail: {
  28196. height: math.unit(4.2, "feet"),
  28197. name: "Tail",
  28198. image: {
  28199. source: "./media/characters/acidrenamon/tail.svg"
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(2, "meters"),
  28207. default: true
  28208. },
  28209. {
  28210. name: "Minimacro",
  28211. height: math.unit(7, "meters")
  28212. },
  28213. {
  28214. name: "Macro",
  28215. height: math.unit(200, "meters")
  28216. },
  28217. {
  28218. name: "Gigamacro",
  28219. height: math.unit(0.2, "earths")
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(152, "feet"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/kenzie-lee/front.svg",
  28231. extra: 1869/1774,
  28232. bottom: 128/1997
  28233. }
  28234. },
  28235. side: {
  28236. height: math.unit(86, "feet"),
  28237. name: "Side",
  28238. image: {
  28239. source: "./media/characters/kenzie-lee/side.svg",
  28240. extra: 930/815,
  28241. bottom: 177/1107
  28242. }
  28243. },
  28244. paw: {
  28245. height: math.unit(15, "feet"),
  28246. name: "Paw",
  28247. image: {
  28248. source: "./media/characters/kenzie-lee/paw.svg"
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Micro",
  28255. height: math.unit(1.5, "inches")
  28256. },
  28257. {
  28258. name: "Normal",
  28259. height: math.unit(152, "feet"),
  28260. default: true
  28261. },
  28262. {
  28263. name: "Megamacro",
  28264. height: math.unit(7, "miles")
  28265. },
  28266. {
  28267. name: "Gigamacro",
  28268. height: math.unit(8000, "miles")
  28269. },
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28274. {
  28275. side: {
  28276. height: math.unit(6, "feet"),
  28277. weight: math.unit(150, "lb"),
  28278. name: "Side",
  28279. image: {
  28280. source: "./media/characters/withers/side.svg",
  28281. extra: 1830 / 1728,
  28282. bottom: 96 / 1927
  28283. }
  28284. },
  28285. front: {
  28286. height: math.unit(6, "feet"),
  28287. weight: math.unit(150, "lb"),
  28288. name: "Front",
  28289. image: {
  28290. source: "./media/characters/withers/front.svg",
  28291. extra: 1514 / 1438,
  28292. bottom: 118 / 1632
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Macro",
  28299. height: math.unit(168, "feet"),
  28300. default: true
  28301. },
  28302. {
  28303. name: "Megamacro",
  28304. height: math.unit(15, "miles")
  28305. }
  28306. ]
  28307. ))
  28308. characterMakers.push(() => makeCharacter(
  28309. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28310. {
  28311. front: {
  28312. height: math.unit(6 + 7 / 12, "feet"),
  28313. weight: math.unit(250, "lb"),
  28314. name: "Front",
  28315. image: {
  28316. source: "./media/characters/nemoskii/front.svg",
  28317. extra: 2270 / 1734,
  28318. bottom: 86 / 2354
  28319. }
  28320. },
  28321. back: {
  28322. height: math.unit(6 + 7 / 12, "feet"),
  28323. weight: math.unit(250, "lb"),
  28324. name: "Back",
  28325. image: {
  28326. source: "./media/characters/nemoskii/back.svg",
  28327. extra: 1845 / 1788,
  28328. bottom: 10.5 / 1852
  28329. }
  28330. },
  28331. head: {
  28332. height: math.unit(1.31, "feet"),
  28333. name: "Head",
  28334. image: {
  28335. source: "./media/characters/nemoskii/head.svg"
  28336. }
  28337. },
  28338. },
  28339. [
  28340. {
  28341. name: "Micro",
  28342. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28343. },
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(6 + 7 / 12, "feet"),
  28347. default: true
  28348. },
  28349. {
  28350. name: "Macro",
  28351. height: math.unit((6 + 7 / 12) * 150, "feet")
  28352. },
  28353. {
  28354. name: "Macro+",
  28355. height: math.unit((6 + 7 / 12) * 500, "feet")
  28356. },
  28357. {
  28358. name: "Megamacro",
  28359. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28360. },
  28361. ]
  28362. ))
  28363. characterMakers.push(() => makeCharacter(
  28364. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28365. {
  28366. front: {
  28367. height: math.unit(1, "mile"),
  28368. weight: math.unit(265261.9, "lb"),
  28369. name: "Front",
  28370. image: {
  28371. source: "./media/characters/shui/front.svg",
  28372. extra: 1633 / 1564,
  28373. bottom: 91.5 / 1726
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Macro",
  28380. height: math.unit(1, "mile"),
  28381. default: true
  28382. },
  28383. ]
  28384. ))
  28385. characterMakers.push(() => makeCharacter(
  28386. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28387. {
  28388. front: {
  28389. height: math.unit(12 + 6 / 12, "feet"),
  28390. weight: math.unit(1342, "lb"),
  28391. name: "Front",
  28392. image: {
  28393. source: "./media/characters/arokh-takakura/front.svg",
  28394. extra: 1089 / 1043,
  28395. bottom: 77.4 / 1176.7
  28396. }
  28397. },
  28398. back: {
  28399. height: math.unit(12 + 6 / 12, "feet"),
  28400. weight: math.unit(1342, "lb"),
  28401. name: "Back",
  28402. image: {
  28403. source: "./media/characters/arokh-takakura/back.svg",
  28404. extra: 1046 / 1019,
  28405. bottom: 102 / 1150
  28406. }
  28407. },
  28408. },
  28409. [
  28410. {
  28411. name: "Big",
  28412. height: math.unit(12 + 6 / 12, "feet"),
  28413. default: true
  28414. },
  28415. ]
  28416. ))
  28417. characterMakers.push(() => makeCharacter(
  28418. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28419. {
  28420. front: {
  28421. height: math.unit(5 + 6 / 12, "feet"),
  28422. weight: math.unit(150, "lb"),
  28423. name: "Front",
  28424. image: {
  28425. source: "./media/characters/theo/front.svg",
  28426. extra: 1184 / 1131,
  28427. bottom: 7.4 / 1191
  28428. }
  28429. },
  28430. },
  28431. [
  28432. {
  28433. name: "Micro",
  28434. height: math.unit(5, "inches")
  28435. },
  28436. {
  28437. name: "Normal",
  28438. height: math.unit(5 + 6 / 12, "feet"),
  28439. default: true
  28440. },
  28441. ]
  28442. ))
  28443. characterMakers.push(() => makeCharacter(
  28444. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28445. {
  28446. front: {
  28447. height: math.unit(5 + 9 / 12, "feet"),
  28448. weight: math.unit(130, "lb"),
  28449. name: "Front",
  28450. image: {
  28451. source: "./media/characters/cecelia-swift/front.svg",
  28452. extra: 502 / 484,
  28453. bottom: 23 / 523
  28454. }
  28455. },
  28456. back: {
  28457. height: math.unit(5 + 9 / 12, "feet"),
  28458. weight: math.unit(130, "lb"),
  28459. name: "Back",
  28460. image: {
  28461. source: "./media/characters/cecelia-swift/back.svg",
  28462. extra: 499 / 485,
  28463. bottom: 12 / 511
  28464. }
  28465. },
  28466. head: {
  28467. height: math.unit(0.90, "feet"),
  28468. name: "Head",
  28469. image: {
  28470. source: "./media/characters/cecelia-swift/head.svg"
  28471. }
  28472. },
  28473. rump: {
  28474. height: math.unit(1.75, "feet"),
  28475. name: "Rump",
  28476. image: {
  28477. source: "./media/characters/cecelia-swift/rump.svg"
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(5 + 9 / 12, "feet"),
  28485. default: true
  28486. },
  28487. {
  28488. name: "Big",
  28489. height: math.unit(50, "feet")
  28490. },
  28491. {
  28492. name: "Macro",
  28493. height: math.unit(100, "feet")
  28494. },
  28495. {
  28496. name: "Macro+",
  28497. height: math.unit(500, "feet")
  28498. },
  28499. {
  28500. name: "Macro++",
  28501. height: math.unit(1000, "feet")
  28502. },
  28503. ]
  28504. ))
  28505. characterMakers.push(() => makeCharacter(
  28506. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28507. {
  28508. front: {
  28509. height: math.unit(6, "feet"),
  28510. weight: math.unit(150, "lb"),
  28511. name: "Front",
  28512. image: {
  28513. source: "./media/characters/kaunan/front.svg",
  28514. extra: 2890 / 2523,
  28515. bottom: 49 / 2939
  28516. }
  28517. },
  28518. },
  28519. [
  28520. {
  28521. name: "Macro",
  28522. height: math.unit(150, "feet"),
  28523. default: true
  28524. },
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28529. {
  28530. front: {
  28531. height: math.unit(175, "cm"),
  28532. weight: math.unit(60, "kg"),
  28533. name: "Front",
  28534. image: {
  28535. source: "./media/characters/fei/front.svg",
  28536. extra: 1873/1723,
  28537. bottom: 53/1926
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Mortal",
  28544. height: math.unit(175, "cm")
  28545. },
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(3500, "m"),
  28549. default: true
  28550. },
  28551. {
  28552. name: "Stroll",
  28553. height: math.unit(17.5, "km")
  28554. },
  28555. {
  28556. name: "Showoff",
  28557. height: math.unit(175, "km")
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28563. {
  28564. front: {
  28565. height: math.unit(7, "feet"),
  28566. weight: math.unit(1000, "kg"),
  28567. name: "Front",
  28568. image: {
  28569. source: "./media/characters/edrax/front.svg",
  28570. extra: 2838 / 2550,
  28571. bottom: 130 / 2968
  28572. }
  28573. },
  28574. },
  28575. [
  28576. {
  28577. name: "Small",
  28578. height: math.unit(7, "feet")
  28579. },
  28580. {
  28581. name: "Normal",
  28582. height: math.unit(1500, "meters")
  28583. },
  28584. {
  28585. name: "Mega",
  28586. height: math.unit(12000000, "km"),
  28587. default: true
  28588. },
  28589. {
  28590. name: "Megamacro",
  28591. height: math.unit(10600000, "lightyears")
  28592. },
  28593. {
  28594. name: "Hypermacro",
  28595. height: math.unit(256, "yottameters")
  28596. },
  28597. ]
  28598. ))
  28599. characterMakers.push(() => makeCharacter(
  28600. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28601. {
  28602. front: {
  28603. height: math.unit(10, "feet"),
  28604. weight: math.unit(750, "lb"),
  28605. name: "Front",
  28606. image: {
  28607. source: "./media/characters/clove/front.svg",
  28608. extra: 1918/1751,
  28609. bottom: 52/1970
  28610. }
  28611. },
  28612. back: {
  28613. height: math.unit(10, "feet"),
  28614. weight: math.unit(750, "lb"),
  28615. name: "Back",
  28616. image: {
  28617. source: "./media/characters/clove/back.svg",
  28618. extra: 1912/1747,
  28619. bottom: 50/1962
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(10, "feet"),
  28627. default: true
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(4, "feet"),
  28636. weight: math.unit(50, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/alex-rabbit/front.svg",
  28640. extra: 507 / 458,
  28641. bottom: 18.5 / 527
  28642. }
  28643. },
  28644. back: {
  28645. height: math.unit(4, "feet"),
  28646. weight: math.unit(50, "lb"),
  28647. name: "Back",
  28648. image: {
  28649. source: "./media/characters/alex-rabbit/back.svg",
  28650. extra: 502 / 460,
  28651. bottom: 18.9 / 521
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Normal",
  28658. height: math.unit(4, "feet"),
  28659. default: true
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28665. {
  28666. front: {
  28667. height: math.unit(1 + 3 / 12, "feet"),
  28668. weight: math.unit(80, "lb"),
  28669. name: "Front",
  28670. image: {
  28671. source: "./media/characters/zander-rose/front.svg",
  28672. extra: 916 / 797,
  28673. bottom: 17 / 933
  28674. }
  28675. },
  28676. back: {
  28677. height: math.unit(1 + 3 / 12, "feet"),
  28678. weight: math.unit(80, "lb"),
  28679. name: "Back",
  28680. image: {
  28681. source: "./media/characters/zander-rose/back.svg",
  28682. extra: 903 / 779,
  28683. bottom: 31 / 934
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Normal",
  28690. height: math.unit(1 + 3 / 12, "feet"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28697. {
  28698. anthro: {
  28699. height: math.unit(6, "feet"),
  28700. weight: math.unit(150, "lb"),
  28701. name: "Anthro",
  28702. image: {
  28703. source: "./media/characters/razz/anthro.svg",
  28704. extra: 1437 / 1343,
  28705. bottom: 48 / 1485
  28706. }
  28707. },
  28708. feral: {
  28709. height: math.unit(6, "feet"),
  28710. weight: math.unit(150, "lb"),
  28711. name: "Feral",
  28712. image: {
  28713. source: "./media/characters/razz/feral.svg",
  28714. extra: 2569 / 1385,
  28715. bottom: 95 / 2664
  28716. }
  28717. },
  28718. },
  28719. [
  28720. {
  28721. name: "Normal",
  28722. height: math.unit(6, "feet"),
  28723. default: true
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(9 + 4 / 12, "feet"),
  28732. weight: math.unit(500, "lb"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/morrigan/front.svg",
  28736. extra: 2707 / 2579,
  28737. bottom: 156 / 2863
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Normal",
  28744. height: math.unit(9 + 4 / 12, "feet"),
  28745. default: true
  28746. },
  28747. ]
  28748. ))
  28749. characterMakers.push(() => makeCharacter(
  28750. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28751. {
  28752. front: {
  28753. height: math.unit(5, "stories"),
  28754. weight: math.unit(4000, "lb"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/jenene/front.svg",
  28758. extra: 1780 / 1710,
  28759. bottom: 57 / 1837
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Normal",
  28766. height: math.unit(5, "stories"),
  28767. default: true
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28773. {
  28774. taurSfw: {
  28775. height: math.unit(10, "meters"),
  28776. weight: math.unit(17500, "kg"),
  28777. name: "Taur",
  28778. image: {
  28779. source: "./media/characters/faey/taur-sfw.svg",
  28780. extra: 1200 / 968,
  28781. bottom: 41 / 1241
  28782. }
  28783. },
  28784. chestmaw: {
  28785. height: math.unit(2.01, "meters"),
  28786. name: "Chestmaw",
  28787. image: {
  28788. source: "./media/characters/faey/chestmaw.svg"
  28789. }
  28790. },
  28791. foot: {
  28792. height: math.unit(2.43, "meters"),
  28793. name: "Foot",
  28794. image: {
  28795. source: "./media/characters/faey/foot.svg"
  28796. }
  28797. },
  28798. jaws: {
  28799. height: math.unit(1.66, "meters"),
  28800. name: "Jaws",
  28801. image: {
  28802. source: "./media/characters/faey/jaws.svg"
  28803. }
  28804. },
  28805. tongues: {
  28806. height: math.unit(2.01, "meters"),
  28807. name: "Tongues",
  28808. image: {
  28809. source: "./media/characters/faey/tongues.svg"
  28810. }
  28811. },
  28812. },
  28813. [
  28814. {
  28815. name: "Small",
  28816. height: math.unit(10, "meters"),
  28817. default: true
  28818. },
  28819. {
  28820. name: "Big",
  28821. height: math.unit(500000, "km")
  28822. },
  28823. ]
  28824. ))
  28825. characterMakers.push(() => makeCharacter(
  28826. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28827. {
  28828. front: {
  28829. height: math.unit(7, "feet"),
  28830. weight: math.unit(275, "lb"),
  28831. name: "Front",
  28832. image: {
  28833. source: "./media/characters/roku/front.svg",
  28834. extra: 903 / 878,
  28835. bottom: 37 / 940
  28836. }
  28837. },
  28838. },
  28839. [
  28840. {
  28841. name: "Normal",
  28842. height: math.unit(7, "feet"),
  28843. default: true
  28844. },
  28845. {
  28846. name: "Macro",
  28847. height: math.unit(500, "feet")
  28848. },
  28849. {
  28850. name: "Megamacro",
  28851. height: math.unit(200, "miles")
  28852. },
  28853. ]
  28854. ))
  28855. characterMakers.push(() => makeCharacter(
  28856. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28857. {
  28858. front: {
  28859. height: math.unit(6 + 2 / 12, "feet"),
  28860. weight: math.unit(150, "lb"),
  28861. name: "Front",
  28862. image: {
  28863. source: "./media/characters/lira/front.svg",
  28864. extra: 1727 / 1605,
  28865. bottom: 26 / 1753
  28866. }
  28867. },
  28868. back: {
  28869. height: math.unit(6 + 2 / 12, "feet"),
  28870. weight: math.unit(150, "lb"),
  28871. name: "Back",
  28872. image: {
  28873. source: "./media/characters/lira/back.svg",
  28874. extra: 1713/1621,
  28875. bottom: 20/1733
  28876. }
  28877. },
  28878. hand: {
  28879. height: math.unit(0.75, "feet"),
  28880. name: "Hand",
  28881. image: {
  28882. source: "./media/characters/lira/hand.svg"
  28883. }
  28884. },
  28885. maw: {
  28886. height: math.unit(0.65, "feet"),
  28887. name: "Maw",
  28888. image: {
  28889. source: "./media/characters/lira/maw.svg"
  28890. }
  28891. },
  28892. pawDigi: {
  28893. height: math.unit(1.6, "feet"),
  28894. name: "Paw Digi",
  28895. image: {
  28896. source: "./media/characters/lira/paw-digi.svg"
  28897. }
  28898. },
  28899. pawPlanti: {
  28900. height: math.unit(1.4, "feet"),
  28901. name: "Paw Planti",
  28902. image: {
  28903. source: "./media/characters/lira/paw-planti.svg"
  28904. }
  28905. },
  28906. },
  28907. [
  28908. {
  28909. name: "Normal",
  28910. height: math.unit(6 + 2 / 12, "feet"),
  28911. default: true
  28912. },
  28913. {
  28914. name: "Macro",
  28915. height: math.unit(100, "feet")
  28916. },
  28917. {
  28918. name: "Macro²",
  28919. height: math.unit(1600, "feet")
  28920. },
  28921. {
  28922. name: "Planetary",
  28923. height: math.unit(20, "earths")
  28924. },
  28925. ]
  28926. ))
  28927. characterMakers.push(() => makeCharacter(
  28928. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28929. {
  28930. front: {
  28931. height: math.unit(6, "feet"),
  28932. weight: math.unit(150, "lb"),
  28933. name: "Front",
  28934. image: {
  28935. source: "./media/characters/hadjet/front.svg",
  28936. extra: 1480 / 1346,
  28937. bottom: 26 / 1506
  28938. }
  28939. },
  28940. frontNsfw: {
  28941. height: math.unit(6, "feet"),
  28942. weight: math.unit(150, "lb"),
  28943. name: "Front (NSFW)",
  28944. image: {
  28945. source: "./media/characters/hadjet/front-nsfw.svg",
  28946. extra: 1440 / 1358,
  28947. bottom: 52 / 1492
  28948. }
  28949. },
  28950. },
  28951. [
  28952. {
  28953. name: "Macro",
  28954. height: math.unit(10, "stories"),
  28955. default: true
  28956. },
  28957. {
  28958. name: "Megamacro",
  28959. height: math.unit(1.5, "miles")
  28960. },
  28961. {
  28962. name: "Megamacro+",
  28963. height: math.unit(5, "miles")
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28969. {
  28970. side: {
  28971. height: math.unit(106, "feet"),
  28972. weight: math.unit(500, "tonnes"),
  28973. name: "Side",
  28974. image: {
  28975. source: "./media/characters/kodran/side.svg",
  28976. extra: 553 / 480,
  28977. bottom: 33 / 586
  28978. }
  28979. },
  28980. front: {
  28981. height: math.unit(132, "feet"),
  28982. weight: math.unit(500, "tonnes"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/kodran/front.svg",
  28986. extra: 667 / 643,
  28987. bottom: 42 / 709
  28988. }
  28989. },
  28990. flying: {
  28991. height: math.unit(350, "feet"),
  28992. weight: math.unit(500, "tonnes"),
  28993. name: "Flying",
  28994. image: {
  28995. source: "./media/characters/kodran/flying.svg"
  28996. }
  28997. },
  28998. foot: {
  28999. height: math.unit(33, "feet"),
  29000. name: "Foot",
  29001. image: {
  29002. source: "./media/characters/kodran/foot.svg"
  29003. }
  29004. },
  29005. footFront: {
  29006. height: math.unit(19, "feet"),
  29007. name: "Foot (Front)",
  29008. image: {
  29009. source: "./media/characters/kodran/foot-front.svg",
  29010. extra: 261 / 261,
  29011. bottom: 91 / 352
  29012. }
  29013. },
  29014. headFront: {
  29015. height: math.unit(53, "feet"),
  29016. name: "Head (Front)",
  29017. image: {
  29018. source: "./media/characters/kodran/head-front.svg"
  29019. }
  29020. },
  29021. headSide: {
  29022. height: math.unit(65, "feet"),
  29023. name: "Head (Side)",
  29024. image: {
  29025. source: "./media/characters/kodran/head-side.svg"
  29026. }
  29027. },
  29028. throat: {
  29029. height: math.unit(79, "feet"),
  29030. name: "Throat",
  29031. image: {
  29032. source: "./media/characters/kodran/throat.svg"
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Large",
  29039. height: math.unit(106, "feet"),
  29040. default: true
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29046. {
  29047. side: {
  29048. height: math.unit(11, "feet"),
  29049. weight: math.unit(150, "lb"),
  29050. name: "Side",
  29051. image: {
  29052. source: "./media/characters/pyxaron/side.svg",
  29053. extra: 305 / 195,
  29054. bottom: 17 / 322
  29055. }
  29056. },
  29057. },
  29058. [
  29059. {
  29060. name: "Normal",
  29061. height: math.unit(11, "feet"),
  29062. default: true
  29063. },
  29064. ]
  29065. ))
  29066. characterMakers.push(() => makeCharacter(
  29067. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29068. {
  29069. front: {
  29070. height: math.unit(6, "feet"),
  29071. weight: math.unit(150, "lb"),
  29072. name: "Front",
  29073. image: {
  29074. source: "./media/characters/meep/front.svg",
  29075. extra: 88 / 80,
  29076. bottom: 6 / 94
  29077. }
  29078. },
  29079. },
  29080. [
  29081. {
  29082. name: "Fun Sized",
  29083. height: math.unit(2, "inches"),
  29084. default: true
  29085. },
  29086. {
  29087. name: "Friend Sized",
  29088. height: math.unit(8, "inches")
  29089. },
  29090. ]
  29091. ))
  29092. characterMakers.push(() => makeCharacter(
  29093. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29094. {
  29095. front: {
  29096. height: math.unit(15, "feet"),
  29097. weight: math.unit(2500, "lb"),
  29098. name: "Front",
  29099. image: {
  29100. source: "./media/characters/holly-rabbit/front.svg",
  29101. extra: 1433 / 1233,
  29102. bottom: 125 / 1558
  29103. }
  29104. },
  29105. dick: {
  29106. height: math.unit(4.6, "feet"),
  29107. name: "Dick",
  29108. image: {
  29109. source: "./media/characters/holly-rabbit/dick.svg"
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Normal",
  29116. height: math.unit(15, "feet"),
  29117. default: true
  29118. },
  29119. {
  29120. name: "Macro",
  29121. height: math.unit(250, "feet")
  29122. },
  29123. {
  29124. name: "Macro+",
  29125. height: math.unit(2500, "feet")
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(3.02, "meters"),
  29134. weight: math.unit(500, "kg"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/drena/front.svg",
  29138. extra: 282 / 243,
  29139. bottom: 8 / 290
  29140. }
  29141. },
  29142. side: {
  29143. height: math.unit(3.02, "meters"),
  29144. weight: math.unit(500, "kg"),
  29145. name: "Side",
  29146. image: {
  29147. source: "./media/characters/drena/side.svg",
  29148. extra: 280 / 245,
  29149. bottom: 10 / 290
  29150. }
  29151. },
  29152. back: {
  29153. height: math.unit(3.02, "meters"),
  29154. weight: math.unit(500, "kg"),
  29155. name: "Back",
  29156. image: {
  29157. source: "./media/characters/drena/back.svg",
  29158. extra: 278 / 243,
  29159. bottom: 2 / 280
  29160. }
  29161. },
  29162. foot: {
  29163. height: math.unit(0.75, "meters"),
  29164. name: "Foot",
  29165. image: {
  29166. source: "./media/characters/drena/foot.svg"
  29167. }
  29168. },
  29169. maw: {
  29170. height: math.unit(0.82, "meters"),
  29171. name: "Maw",
  29172. image: {
  29173. source: "./media/characters/drena/maw.svg"
  29174. }
  29175. },
  29176. eating: {
  29177. height: math.unit(0.75, "meters"),
  29178. name: "Eating",
  29179. image: {
  29180. source: "./media/characters/drena/eating.svg"
  29181. }
  29182. },
  29183. rump: {
  29184. height: math.unit(0.93, "meters"),
  29185. name: "Rump",
  29186. image: {
  29187. source: "./media/characters/drena/rump.svg"
  29188. }
  29189. },
  29190. },
  29191. [
  29192. {
  29193. name: "Normal",
  29194. height: math.unit(3.02, "meters"),
  29195. default: true
  29196. },
  29197. ]
  29198. ))
  29199. characterMakers.push(() => makeCharacter(
  29200. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29201. {
  29202. front: {
  29203. height: math.unit(6 + 4 / 12, "feet"),
  29204. weight: math.unit(250, "lb"),
  29205. name: "Front",
  29206. image: {
  29207. source: "./media/characters/remmyzilla/front.svg",
  29208. extra: 4033 / 3588,
  29209. bottom: 123 / 4156
  29210. }
  29211. },
  29212. back: {
  29213. height: math.unit(6 + 4 / 12, "feet"),
  29214. weight: math.unit(250, "lb"),
  29215. name: "Back",
  29216. image: {
  29217. source: "./media/characters/remmyzilla/back.svg",
  29218. extra: 2687 / 2555,
  29219. bottom: 48 / 2735
  29220. }
  29221. },
  29222. paw: {
  29223. height: math.unit(1.73, "feet"),
  29224. name: "Paw",
  29225. image: {
  29226. source: "./media/characters/remmyzilla/paw.svg"
  29227. }
  29228. },
  29229. maw: {
  29230. height: math.unit(1.73, "feet"),
  29231. name: "Maw",
  29232. image: {
  29233. source: "./media/characters/remmyzilla/maw.svg"
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(6 + 4 / 12, "feet")
  29241. },
  29242. {
  29243. name: "Minimacro",
  29244. height: math.unit(12 + 8 / 12, "feet")
  29245. },
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(640, "feet"),
  29249. default: true
  29250. },
  29251. {
  29252. name: "Megamacro",
  29253. height: math.unit(6400, "feet")
  29254. },
  29255. {
  29256. name: "Gigamacro",
  29257. height: math.unit(64000, "miles")
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(2.5, "meters"),
  29266. weight: math.unit(300, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/lawrence/front.svg",
  29270. extra: 357 / 335,
  29271. bottom: 30 / 387
  29272. }
  29273. },
  29274. back: {
  29275. height: math.unit(2.5, "meters"),
  29276. weight: math.unit(300, "lb"),
  29277. name: "Back",
  29278. image: {
  29279. source: "./media/characters/lawrence/back.svg",
  29280. extra: 357 / 338,
  29281. bottom: 16 / 373
  29282. }
  29283. },
  29284. head: {
  29285. height: math.unit(0.9, "meter"),
  29286. name: "Head",
  29287. image: {
  29288. source: "./media/characters/lawrence/head.svg"
  29289. }
  29290. },
  29291. maw: {
  29292. height: math.unit(0.7, "meter"),
  29293. name: "Maw",
  29294. image: {
  29295. source: "./media/characters/lawrence/maw.svg"
  29296. }
  29297. },
  29298. footBottom: {
  29299. height: math.unit(0.5, "meter"),
  29300. name: "Foot (Bottom)",
  29301. image: {
  29302. source: "./media/characters/lawrence/foot-bottom.svg"
  29303. }
  29304. },
  29305. footTop: {
  29306. height: math.unit(0.5, "meter"),
  29307. name: "Foot (Top)",
  29308. image: {
  29309. source: "./media/characters/lawrence/foot-top.svg"
  29310. }
  29311. },
  29312. },
  29313. [
  29314. {
  29315. name: "Normal",
  29316. height: math.unit(2.5, "meters"),
  29317. default: true
  29318. },
  29319. {
  29320. name: "Macro",
  29321. height: math.unit(95, "meters")
  29322. },
  29323. {
  29324. name: "Megamacro",
  29325. height: math.unit(150, "km")
  29326. },
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29331. {
  29332. front: {
  29333. height: math.unit(4.2, "meters"),
  29334. name: "Front",
  29335. image: {
  29336. source: "./media/characters/sydney/front.svg",
  29337. extra: 1323 / 1277,
  29338. bottom: 111 / 1434
  29339. }
  29340. },
  29341. },
  29342. [
  29343. {
  29344. name: "Normal",
  29345. height: math.unit(4.2, "meters"),
  29346. default: true
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29352. {
  29353. back: {
  29354. height: math.unit(201, "feet"),
  29355. name: "Back",
  29356. image: {
  29357. source: "./media/characters/jessica/back.svg",
  29358. extra: 273 / 259,
  29359. bottom: 7 / 280
  29360. }
  29361. },
  29362. },
  29363. [
  29364. {
  29365. name: "Normal",
  29366. height: math.unit(201, "feet"),
  29367. default: true
  29368. },
  29369. {
  29370. name: "Megamacro",
  29371. height: math.unit(8, "miles")
  29372. },
  29373. ]
  29374. ))
  29375. characterMakers.push(() => makeCharacter(
  29376. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29377. {
  29378. side: {
  29379. height: math.unit(5.6, "m"),
  29380. weight: math.unit(8000, "kg"),
  29381. name: "Side",
  29382. image: {
  29383. source: "./media/characters/victoria/side.svg",
  29384. extra: 1542/1229,
  29385. bottom: 124/1666
  29386. }
  29387. },
  29388. maw: {
  29389. height: math.unit(7.14, "feet"),
  29390. name: "Maw",
  29391. image: {
  29392. source: "./media/characters/victoria/maw.svg"
  29393. }
  29394. },
  29395. },
  29396. [
  29397. {
  29398. name: "Normal",
  29399. height: math.unit(5.6, "m"),
  29400. default: true
  29401. },
  29402. ]
  29403. ))
  29404. characterMakers.push(() => makeCharacter(
  29405. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29406. {
  29407. front: {
  29408. height: math.unit(5 + 6 / 12, "feet"),
  29409. name: "Front",
  29410. image: {
  29411. source: "./media/characters/cat/front.svg",
  29412. extra: 1449/1295,
  29413. bottom: 34/1483
  29414. },
  29415. form: "cat",
  29416. default: true
  29417. },
  29418. back: {
  29419. height: math.unit(5 + 6 / 12, "feet"),
  29420. name: "Back",
  29421. image: {
  29422. source: "./media/characters/cat/back.svg",
  29423. extra: 1466/1301,
  29424. bottom: 19/1485
  29425. },
  29426. form: "cat"
  29427. },
  29428. taur: {
  29429. height: math.unit(7, "feet"),
  29430. name: "Taur",
  29431. image: {
  29432. source: "./media/characters/cat/taur.svg",
  29433. extra: 1389/1233,
  29434. bottom: 83/1472
  29435. },
  29436. form: "taur",
  29437. default: true
  29438. },
  29439. lucarioFront: {
  29440. height: math.unit(4, "feet"),
  29441. name: "Lucario (Front)",
  29442. image: {
  29443. source: "./media/characters/cat/lucario-front.svg",
  29444. extra: 1149/1019,
  29445. bottom: 84/1233
  29446. },
  29447. form: "lucario",
  29448. default: true
  29449. },
  29450. lucarioBack: {
  29451. height: math.unit(4, "feet"),
  29452. name: "Lucario (Back)",
  29453. image: {
  29454. source: "./media/characters/cat/lucario-back.svg",
  29455. extra: 1190/1059,
  29456. bottom: 33/1223
  29457. },
  29458. form: "lucario"
  29459. },
  29460. megaLucario: {
  29461. height: math.unit(4, "feet"),
  29462. name: "Mega Lucario",
  29463. image: {
  29464. source: "./media/characters/cat/mega-lucario.svg",
  29465. extra: 1515 / 1319,
  29466. bottom: 63 / 1578
  29467. },
  29468. form: "lucario"
  29469. },
  29470. nickit: {
  29471. height: math.unit(2, "feet"),
  29472. name: "Nickit",
  29473. image: {
  29474. source: "./media/characters/cat/nickit.svg",
  29475. extra: 1980 / 1585,
  29476. bottom: 102 / 2082
  29477. },
  29478. form: "nickit",
  29479. default: true
  29480. },
  29481. lopunnyFront: {
  29482. height: math.unit(5, "feet"),
  29483. name: "Lopunny (Front)",
  29484. image: {
  29485. source: "./media/characters/cat/lopunny-front.svg",
  29486. extra: 1782 / 1469,
  29487. bottom: 38 / 1820
  29488. },
  29489. form: "lopunny",
  29490. default: true
  29491. },
  29492. lopunnyBack: {
  29493. height: math.unit(5, "feet"),
  29494. name: "Lopunny (Back)",
  29495. image: {
  29496. source: "./media/characters/cat/lopunny-back.svg",
  29497. extra: 1660 / 1490,
  29498. bottom: 25 / 1685
  29499. },
  29500. form: "lopunny"
  29501. },
  29502. },
  29503. [
  29504. {
  29505. name: "Really small",
  29506. height: math.unit(1, "nm")
  29507. },
  29508. {
  29509. name: "Micro",
  29510. height: math.unit(5, "inches")
  29511. },
  29512. {
  29513. name: "Normal",
  29514. height: math.unit(5 + 6 / 12, "feet"),
  29515. default: true
  29516. },
  29517. {
  29518. name: "Macro",
  29519. height: math.unit(50, "feet")
  29520. },
  29521. {
  29522. name: "Macro+",
  29523. height: math.unit(150, "feet")
  29524. },
  29525. {
  29526. name: "Megamacro",
  29527. height: math.unit(100, "miles")
  29528. },
  29529. ]
  29530. ))
  29531. characterMakers.push(() => makeCharacter(
  29532. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29533. {
  29534. front: {
  29535. height: math.unit(63.4, "meters"),
  29536. weight: math.unit(3.28349e+6, "kilograms"),
  29537. name: "Front",
  29538. image: {
  29539. source: "./media/characters/kirina-violet/front.svg",
  29540. extra: 2812 / 2725,
  29541. bottom: 0 / 2812
  29542. }
  29543. },
  29544. back: {
  29545. height: math.unit(63.4, "meters"),
  29546. weight: math.unit(3.28349e+6, "kilograms"),
  29547. name: "Back",
  29548. image: {
  29549. source: "./media/characters/kirina-violet/back.svg",
  29550. extra: 2812 / 2725,
  29551. bottom: 0 / 2812
  29552. }
  29553. },
  29554. mouth: {
  29555. height: math.unit(4.35, "meters"),
  29556. name: "Mouth",
  29557. image: {
  29558. source: "./media/characters/kirina-violet/mouth.svg"
  29559. }
  29560. },
  29561. paw: {
  29562. height: math.unit(5.6, "meters"),
  29563. name: "Paw",
  29564. image: {
  29565. source: "./media/characters/kirina-violet/paw.svg"
  29566. }
  29567. },
  29568. tail: {
  29569. height: math.unit(18, "meters"),
  29570. name: "Tail",
  29571. image: {
  29572. source: "./media/characters/kirina-violet/tail.svg"
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Macro",
  29579. height: math.unit(63.4, "meters"),
  29580. default: true
  29581. },
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29586. {
  29587. front: {
  29588. height: math.unit(75, "feet"),
  29589. name: "Front",
  29590. image: {
  29591. source: "./media/characters/cat-gigachu/front.svg",
  29592. extra: 1239/1027,
  29593. bottom: 32/1271
  29594. }
  29595. },
  29596. back: {
  29597. height: math.unit(75, "feet"),
  29598. name: "Back",
  29599. image: {
  29600. source: "./media/characters/cat-gigachu/back.svg",
  29601. extra: 1229/1030,
  29602. bottom: 9/1238
  29603. }
  29604. },
  29605. },
  29606. [
  29607. {
  29608. name: "Dynamax",
  29609. height: math.unit(75, "feet"),
  29610. default: true
  29611. },
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29616. {
  29617. front: {
  29618. height: math.unit(6, "feet"),
  29619. weight: math.unit(150, "lb"),
  29620. name: "Front",
  29621. image: {
  29622. source: "./media/characters/sfaiyan/front.svg",
  29623. extra: 999 / 978,
  29624. bottom: 5 / 1004
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Normal",
  29631. height: math.unit(1.82, "meters")
  29632. },
  29633. {
  29634. name: "Giant",
  29635. height: math.unit(2.27, "km"),
  29636. default: true
  29637. },
  29638. ]
  29639. ))
  29640. characterMakers.push(() => makeCharacter(
  29641. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29642. {
  29643. front: {
  29644. height: math.unit(179, "cm"),
  29645. weight: math.unit(100, "kg"),
  29646. name: "Front",
  29647. image: {
  29648. source: "./media/characters/raunehkeli/front.svg",
  29649. extra: 1934 / 1926,
  29650. bottom: 0 / 1934
  29651. }
  29652. },
  29653. },
  29654. [
  29655. {
  29656. name: "Normal",
  29657. height: math.unit(179, "cm")
  29658. },
  29659. {
  29660. name: "Maximum",
  29661. height: math.unit(575, "meters"),
  29662. default: true
  29663. },
  29664. ]
  29665. ))
  29666. characterMakers.push(() => makeCharacter(
  29667. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29668. {
  29669. front: {
  29670. height: math.unit(6, "feet"),
  29671. weight: math.unit(150, "lb"),
  29672. name: "Front",
  29673. image: {
  29674. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29675. extra: 2625 / 2518,
  29676. bottom: 60 / 2685
  29677. }
  29678. },
  29679. },
  29680. [
  29681. {
  29682. name: "Normal",
  29683. height: math.unit(6 + 2 / 12, "feet")
  29684. },
  29685. {
  29686. name: "Macro",
  29687. height: math.unit(1180, "feet"),
  29688. default: true
  29689. },
  29690. ]
  29691. ))
  29692. characterMakers.push(() => makeCharacter(
  29693. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29694. {
  29695. front: {
  29696. height: math.unit(5 + 6 / 12, "feet"),
  29697. weight: math.unit(108, "lb"),
  29698. name: "Front",
  29699. image: {
  29700. source: "./media/characters/lilith-zott/front.svg",
  29701. extra: 2510 / 2238,
  29702. bottom: 100 / 2610
  29703. }
  29704. },
  29705. frontDressed: {
  29706. height: math.unit(5 + 6 / 12, "feet"),
  29707. weight: math.unit(108, "lb"),
  29708. name: "Front (Dressed)",
  29709. image: {
  29710. source: "./media/characters/lilith-zott/front-dressed.svg",
  29711. extra: 2510 / 2238,
  29712. bottom: 100 / 2610
  29713. }
  29714. },
  29715. },
  29716. [
  29717. {
  29718. name: "Normal",
  29719. height: math.unit(5 + 6 / 12, "feet")
  29720. },
  29721. {
  29722. name: "Macro",
  29723. height: math.unit(1030, "feet"),
  29724. default: true
  29725. },
  29726. ]
  29727. ))
  29728. characterMakers.push(() => makeCharacter(
  29729. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29730. {
  29731. front: {
  29732. height: math.unit(6, "feet"),
  29733. weight: math.unit(150, "lb"),
  29734. name: "Front",
  29735. image: {
  29736. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29737. extra: 2567 / 2435,
  29738. bottom: 39 / 2606
  29739. }
  29740. },
  29741. frontSuper: {
  29742. height: math.unit(6, "feet"),
  29743. name: "Front (Super)",
  29744. image: {
  29745. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29746. extra: 2567 / 2435,
  29747. bottom: 39 / 2606
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Normal",
  29754. height: math.unit(5 + 10 / 12, "feet")
  29755. },
  29756. {
  29757. name: "Macro",
  29758. height: math.unit(1100, "feet"),
  29759. default: true
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(100, "miles"),
  29768. name: "Front",
  29769. image: {
  29770. source: "./media/characters/sona/front.svg",
  29771. extra: 2433 / 2201,
  29772. bottom: 53 / 2486
  29773. }
  29774. },
  29775. foot: {
  29776. height: math.unit(16.1, "miles"),
  29777. name: "Foot",
  29778. image: {
  29779. source: "./media/characters/sona/foot.svg"
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Macro",
  29786. height: math.unit(100, "miles"),
  29787. default: true
  29788. },
  29789. ]
  29790. ))
  29791. characterMakers.push(() => makeCharacter(
  29792. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29793. {
  29794. front: {
  29795. height: math.unit(6, "feet"),
  29796. weight: math.unit(150, "lb"),
  29797. name: "Front",
  29798. image: {
  29799. source: "./media/characters/bailey/front.svg",
  29800. extra: 1778 / 1724,
  29801. bottom: 30 / 1808
  29802. }
  29803. },
  29804. },
  29805. [
  29806. {
  29807. name: "Micro",
  29808. height: math.unit(4, "inches")
  29809. },
  29810. {
  29811. name: "Normal",
  29812. height: math.unit(5 + 5 / 12, "feet"),
  29813. default: true
  29814. },
  29815. {
  29816. name: "Macro",
  29817. height: math.unit(250, "feet")
  29818. },
  29819. {
  29820. name: "Megamacro",
  29821. height: math.unit(100, "miles")
  29822. },
  29823. ]
  29824. ))
  29825. characterMakers.push(() => makeCharacter(
  29826. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29827. {
  29828. front: {
  29829. height: math.unit(5 + 2 / 12, "feet"),
  29830. weight: math.unit(120, "lb"),
  29831. name: "Front",
  29832. image: {
  29833. source: "./media/characters/snaps/front.svg",
  29834. extra: 2370 / 2177,
  29835. bottom: 48 / 2418
  29836. }
  29837. },
  29838. back: {
  29839. height: math.unit(5 + 2 / 12, "feet"),
  29840. weight: math.unit(120, "lb"),
  29841. name: "Back",
  29842. image: {
  29843. source: "./media/characters/snaps/back.svg",
  29844. extra: 2408 / 2258,
  29845. bottom: 15 / 2423
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "Micro",
  29852. height: math.unit(9, "inches")
  29853. },
  29854. {
  29855. name: "Normal",
  29856. height: math.unit(5 + 2 / 12, "feet"),
  29857. default: true
  29858. },
  29859. {
  29860. name: "Mini Macro",
  29861. height: math.unit(10, "feet")
  29862. },
  29863. ]
  29864. ))
  29865. characterMakers.push(() => makeCharacter(
  29866. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29867. {
  29868. front: {
  29869. height: math.unit(1.8, "meters"),
  29870. weight: math.unit(85, "kg"),
  29871. name: "Front",
  29872. image: {
  29873. source: "./media/characters/azteck/front.svg",
  29874. extra: 2815 / 2625,
  29875. bottom: 89 / 2904
  29876. }
  29877. },
  29878. back: {
  29879. height: math.unit(1.8, "meters"),
  29880. weight: math.unit(85, "kg"),
  29881. name: "Back",
  29882. image: {
  29883. source: "./media/characters/azteck/back.svg",
  29884. extra: 2856 / 2648,
  29885. bottom: 85 / 2941
  29886. }
  29887. },
  29888. frontDressed: {
  29889. height: math.unit(1.8, "meters"),
  29890. weight: math.unit(85, "kg"),
  29891. name: "Front (Dressed)",
  29892. image: {
  29893. source: "./media/characters/azteck/front-dressed.svg",
  29894. extra: 2147 / 2003,
  29895. bottom: 68 / 2215
  29896. }
  29897. },
  29898. head: {
  29899. height: math.unit(0.47, "meters"),
  29900. weight: math.unit(85, "kg"),
  29901. name: "Head",
  29902. image: {
  29903. source: "./media/characters/azteck/head.svg"
  29904. }
  29905. },
  29906. },
  29907. [
  29908. {
  29909. name: "Bite sized",
  29910. height: math.unit(16, "cm")
  29911. },
  29912. {
  29913. name: "Normal",
  29914. height: math.unit(1.8, "meters"),
  29915. default: true
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(6, "feet"),
  29924. weight: math.unit(150, "lb"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/pidge/front.svg",
  29928. extra: 620 / 588,
  29929. bottom: 9 / 629
  29930. }
  29931. },
  29932. back: {
  29933. height: math.unit(6, "feet"),
  29934. weight: math.unit(150, "lb"),
  29935. name: "Back",
  29936. image: {
  29937. source: "./media/characters/pidge/back.svg",
  29938. extra: 620 / 588,
  29939. bottom: 9 / 629
  29940. }
  29941. },
  29942. },
  29943. [
  29944. {
  29945. name: "Macro",
  29946. height: math.unit(1, "mile"),
  29947. default: true
  29948. },
  29949. ]
  29950. ))
  29951. characterMakers.push(() => makeCharacter(
  29952. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29953. {
  29954. front: {
  29955. height: math.unit(6, "feet"),
  29956. weight: math.unit(150, "lb"),
  29957. name: "Front",
  29958. image: {
  29959. source: "./media/characters/en/front.svg",
  29960. extra: 1697 / 1563,
  29961. bottom: 103 / 1800
  29962. }
  29963. },
  29964. back: {
  29965. height: math.unit(6, "feet"),
  29966. weight: math.unit(150, "lb"),
  29967. name: "Back",
  29968. image: {
  29969. source: "./media/characters/en/back.svg",
  29970. extra: 1700 / 1570,
  29971. bottom: 51 / 1751
  29972. }
  29973. },
  29974. frontDressed: {
  29975. height: math.unit(6, "feet"),
  29976. weight: math.unit(150, "lb"),
  29977. name: "Front (Dressed)",
  29978. image: {
  29979. source: "./media/characters/en/front-dressed.svg",
  29980. extra: 1697 / 1563,
  29981. bottom: 103 / 1800
  29982. }
  29983. },
  29984. backDressed: {
  29985. height: math.unit(6, "feet"),
  29986. weight: math.unit(150, "lb"),
  29987. name: "Back (Dressed)",
  29988. image: {
  29989. source: "./media/characters/en/back-dressed.svg",
  29990. extra: 1700 / 1570,
  29991. bottom: 51 / 1751
  29992. }
  29993. },
  29994. },
  29995. [
  29996. {
  29997. name: "Macro",
  29998. height: math.unit(210, "feet"),
  29999. default: true
  30000. },
  30001. ]
  30002. ))
  30003. characterMakers.push(() => makeCharacter(
  30004. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30005. {
  30006. front: {
  30007. height: math.unit(6, "feet"),
  30008. weight: math.unit(150, "lb"),
  30009. name: "Front",
  30010. image: {
  30011. source: "./media/characters/haze-orris/front.svg",
  30012. extra: 3975 / 3525,
  30013. bottom: 137 / 4112
  30014. }
  30015. },
  30016. },
  30017. [
  30018. {
  30019. name: "Micro",
  30020. height: math.unit(150, "mm"),
  30021. default: true
  30022. },
  30023. ]
  30024. ))
  30025. characterMakers.push(() => makeCharacter(
  30026. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30027. {
  30028. front: {
  30029. height: math.unit(6, "feet"),
  30030. weight: math.unit(150, "lb"),
  30031. name: "Front",
  30032. image: {
  30033. source: "./media/characters/casselene-yaro/front.svg",
  30034. extra: 4721 / 4541,
  30035. bottom: 82 / 4803
  30036. }
  30037. },
  30038. back: {
  30039. height: math.unit(6, "feet"),
  30040. weight: math.unit(150, "lb"),
  30041. name: "Back",
  30042. image: {
  30043. source: "./media/characters/casselene-yaro/back.svg",
  30044. extra: 4569 / 4377,
  30045. bottom: 69 / 4638
  30046. }
  30047. },
  30048. frontDressed: {
  30049. height: math.unit(6, "feet"),
  30050. weight: math.unit(150, "lb"),
  30051. name: "Front-dressed",
  30052. image: {
  30053. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30054. extra: 4721 / 4541,
  30055. bottom: 82 / 4803
  30056. }
  30057. },
  30058. },
  30059. [
  30060. {
  30061. name: "Macro",
  30062. height: math.unit(190, "feet"),
  30063. default: true
  30064. },
  30065. ]
  30066. ))
  30067. characterMakers.push(() => makeCharacter(
  30068. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30069. {
  30070. front: {
  30071. height: math.unit(6, "feet"),
  30072. weight: math.unit(150, "lb"),
  30073. name: "Front",
  30074. image: {
  30075. source: "./media/characters/myra-rue-delore/front.svg",
  30076. extra: 1340 / 1308,
  30077. bottom: 67 / 1407
  30078. }
  30079. },
  30080. back: {
  30081. height: math.unit(6, "feet"),
  30082. weight: math.unit(150, "lb"),
  30083. name: "Back",
  30084. image: {
  30085. source: "./media/characters/myra-rue-delore/back.svg",
  30086. extra: 1341 / 1310,
  30087. bottom: 40 / 1381
  30088. }
  30089. },
  30090. frontDressed: {
  30091. height: math.unit(6, "feet"),
  30092. weight: math.unit(150, "lb"),
  30093. name: "Front (Dressed)",
  30094. image: {
  30095. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30096. extra: 1340 / 1308,
  30097. bottom: 67 / 1407
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Macro",
  30104. height: math.unit(150, "feet"),
  30105. default: true
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30111. {
  30112. front: {
  30113. height: math.unit(10, "feet"),
  30114. weight: math.unit(15015, "lb"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/fem!plat/front.svg",
  30118. extra: 2799 / 2604,
  30119. bottom: 149 / 2948
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Normal",
  30126. height: math.unit(10, "feet"),
  30127. default: true
  30128. },
  30129. {
  30130. name: "Macro",
  30131. height: math.unit(100, "feet")
  30132. },
  30133. {
  30134. name: "Megamacro",
  30135. height: math.unit(1000, "feet")
  30136. },
  30137. ]
  30138. ))
  30139. characterMakers.push(() => makeCharacter(
  30140. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30141. {
  30142. front: {
  30143. height: math.unit(15 + 5 / 12, "feet"),
  30144. weight: math.unit(4600, "lb"),
  30145. name: "Front",
  30146. image: {
  30147. source: "./media/characters/neapolitan-ananassa/front.svg",
  30148. extra: 2903 / 2736,
  30149. bottom: 0 / 2903
  30150. }
  30151. },
  30152. side: {
  30153. height: math.unit(15 + 5 / 12, "feet"),
  30154. weight: math.unit(4600, "lb"),
  30155. name: "Side",
  30156. image: {
  30157. source: "./media/characters/neapolitan-ananassa/side.svg",
  30158. extra: 2925 / 2719,
  30159. bottom: 0 / 2925
  30160. }
  30161. },
  30162. back: {
  30163. height: math.unit(15 + 5 / 12, "feet"),
  30164. weight: math.unit(4600, "lb"),
  30165. name: "Back",
  30166. image: {
  30167. source: "./media/characters/neapolitan-ananassa/back.svg",
  30168. extra: 2903 / 2736,
  30169. bottom: 0 / 2903
  30170. }
  30171. },
  30172. },
  30173. [
  30174. {
  30175. name: "Normal",
  30176. height: math.unit(15 + 5 / 12, "feet"),
  30177. default: true
  30178. },
  30179. {
  30180. name: "Post-Millenium",
  30181. height: math.unit(35 + 5 / 12, "feet")
  30182. },
  30183. {
  30184. name: "Post-Era",
  30185. height: math.unit(450 + 5 / 12, "feet")
  30186. },
  30187. ]
  30188. ))
  30189. characterMakers.push(() => makeCharacter(
  30190. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30191. {
  30192. front: {
  30193. height: math.unit(300, "meters"),
  30194. weight: math.unit(125000, "tonnes"),
  30195. name: "Front",
  30196. image: {
  30197. source: "./media/characters/pazuzu/front.svg",
  30198. extra: 877 / 794,
  30199. bottom: 47 / 924
  30200. }
  30201. },
  30202. },
  30203. [
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(300, "meters"),
  30207. default: true
  30208. },
  30209. ]
  30210. ))
  30211. characterMakers.push(() => makeCharacter(
  30212. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30213. {
  30214. side: {
  30215. height: math.unit(10 + 7 / 12, "feet"),
  30216. weight: math.unit(2.5, "tons"),
  30217. name: "Side",
  30218. image: {
  30219. source: "./media/characters/aasha/side.svg",
  30220. extra: 1345 / 1245,
  30221. bottom: 111 / 1456
  30222. }
  30223. },
  30224. back: {
  30225. height: math.unit(10 + 7 / 12, "feet"),
  30226. weight: math.unit(2.5, "tons"),
  30227. name: "Back",
  30228. image: {
  30229. source: "./media/characters/aasha/back.svg",
  30230. extra: 1133 / 1057,
  30231. bottom: 257 / 1390
  30232. }
  30233. },
  30234. },
  30235. [
  30236. {
  30237. name: "Normal",
  30238. height: math.unit(10 + 7 / 12, "feet"),
  30239. default: true
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(6 + 3 / 12, "feet"),
  30248. name: "Front",
  30249. image: {
  30250. source: "./media/characters/nevan/front.svg",
  30251. extra: 704 / 704,
  30252. bottom: 28 / 732
  30253. }
  30254. },
  30255. back: {
  30256. height: math.unit(6 + 3 / 12, "feet"),
  30257. name: "Back",
  30258. image: {
  30259. source: "./media/characters/nevan/back.svg",
  30260. extra: 714 / 714,
  30261. bottom: 21 / 735
  30262. }
  30263. },
  30264. frontFlaccid: {
  30265. height: math.unit(6 + 3 / 12, "feet"),
  30266. name: "Front (Flaccid)",
  30267. image: {
  30268. source: "./media/characters/nevan/front-flaccid.svg",
  30269. extra: 704 / 704,
  30270. bottom: 28 / 732
  30271. }
  30272. },
  30273. frontErect: {
  30274. height: math.unit(6 + 3 / 12, "feet"),
  30275. name: "Front (Erect)",
  30276. image: {
  30277. source: "./media/characters/nevan/front-erect.svg",
  30278. extra: 704 / 704,
  30279. bottom: 28 / 732
  30280. }
  30281. },
  30282. backFlaccid: {
  30283. height: math.unit(6 + 3 / 12, "feet"),
  30284. name: "Back (Flaccid)",
  30285. image: {
  30286. source: "./media/characters/nevan/back-flaccid.svg",
  30287. extra: 714 / 714,
  30288. bottom: 21 / 735
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(6 + 3 / 12, "feet"),
  30296. default: true
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30302. {
  30303. front: {
  30304. height: math.unit(4, "feet"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/arhan/front.svg",
  30308. extra: 3368 / 3133,
  30309. bottom: 0 / 3368
  30310. }
  30311. },
  30312. side: {
  30313. height: math.unit(4, "feet"),
  30314. name: "Side",
  30315. image: {
  30316. source: "./media/characters/arhan/side.svg",
  30317. extra: 3347 / 3105,
  30318. bottom: 0 / 3347
  30319. }
  30320. },
  30321. tongue: {
  30322. height: math.unit(1.42, "feet"),
  30323. name: "Tongue",
  30324. image: {
  30325. source: "./media/characters/arhan/tongue.svg"
  30326. }
  30327. },
  30328. head: {
  30329. height: math.unit(0.85, "feet"),
  30330. name: "Head",
  30331. image: {
  30332. source: "./media/characters/arhan/head.svg"
  30333. }
  30334. },
  30335. },
  30336. [
  30337. {
  30338. name: "Normal",
  30339. height: math.unit(4, "feet"),
  30340. default: true
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30346. {
  30347. front: {
  30348. height: math.unit(5 + 7.5 / 12, "feet"),
  30349. weight: math.unit(120, "lb"),
  30350. name: "Front",
  30351. image: {
  30352. source: "./media/characters/digi-duncan/front.svg",
  30353. extra: 330 / 326,
  30354. bottom: 16 / 346
  30355. }
  30356. },
  30357. side: {
  30358. height: math.unit(5 + 7.5 / 12, "feet"),
  30359. weight: math.unit(120, "lb"),
  30360. name: "Side",
  30361. image: {
  30362. source: "./media/characters/digi-duncan/side.svg",
  30363. extra: 341 / 337,
  30364. bottom: 1 / 342
  30365. }
  30366. },
  30367. back: {
  30368. height: math.unit(5 + 7.5 / 12, "feet"),
  30369. weight: math.unit(120, "lb"),
  30370. name: "Back",
  30371. image: {
  30372. source: "./media/characters/digi-duncan/back.svg",
  30373. extra: 330 / 326,
  30374. bottom: 12 / 342
  30375. }
  30376. },
  30377. },
  30378. [
  30379. {
  30380. name: "Speck",
  30381. height: math.unit(0.25, "mm")
  30382. },
  30383. {
  30384. name: "Micro",
  30385. height: math.unit(5, "mm")
  30386. },
  30387. {
  30388. name: "Tiny",
  30389. height: math.unit(0.5, "inches"),
  30390. default: true
  30391. },
  30392. {
  30393. name: "Human",
  30394. height: math.unit(5 + 7.5 / 12, "feet")
  30395. },
  30396. {
  30397. name: "Minigiant",
  30398. height: math.unit(8 + 5.25, "feet")
  30399. },
  30400. {
  30401. name: "Giant",
  30402. height: math.unit(2000, "feet")
  30403. },
  30404. {
  30405. name: "Mega",
  30406. height: math.unit(371.1, "miles")
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30412. {
  30413. front: {
  30414. height: math.unit(2, "meters"),
  30415. weight: math.unit(350, "kg"),
  30416. name: "Front",
  30417. image: {
  30418. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30419. extra: 898 / 838,
  30420. bottom: 9 / 907
  30421. }
  30422. },
  30423. },
  30424. [
  30425. {
  30426. name: "Micro",
  30427. height: math.unit(8, "meters")
  30428. },
  30429. {
  30430. name: "Normal",
  30431. height: math.unit(50, "meters"),
  30432. default: true
  30433. },
  30434. {
  30435. name: "Macro",
  30436. height: math.unit(500, "meters")
  30437. },
  30438. ]
  30439. ))
  30440. characterMakers.push(() => makeCharacter(
  30441. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30442. {
  30443. front: {
  30444. height: math.unit(6 + 6 / 12, "feet"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/khardesh/front.svg",
  30448. extra: 1788/1596,
  30449. bottom: 66/1854
  30450. }
  30451. },
  30452. back: {
  30453. height: math.unit(6 + 6 / 12, "feet"),
  30454. name: "Back",
  30455. image: {
  30456. source: "./media/characters/khardesh/back.svg",
  30457. extra: 1781/1584,
  30458. bottom: 68/1849
  30459. }
  30460. },
  30461. },
  30462. [
  30463. {
  30464. name: "Normal",
  30465. height: math.unit(6 + 6 / 12, "feet"),
  30466. default: true
  30467. },
  30468. {
  30469. name: "Normal+",
  30470. height: math.unit(4, "meters")
  30471. },
  30472. {
  30473. name: "Macro",
  30474. height: math.unit(50, "meters")
  30475. },
  30476. {
  30477. name: "Macro+",
  30478. height: math.unit(100, "meters")
  30479. },
  30480. {
  30481. name: "Megamacro",
  30482. height: math.unit(20, "km")
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30488. {
  30489. front: {
  30490. height: math.unit(6, "feet"),
  30491. weight: math.unit(150, "lb"),
  30492. name: "Front",
  30493. image: {
  30494. source: "./media/characters/kosho/front.svg",
  30495. extra: 1847 / 1847,
  30496. bottom: 86 / 1933
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Second-stage micro",
  30503. height: math.unit(0.5, "inches")
  30504. },
  30505. {
  30506. name: "First-stage micro",
  30507. height: math.unit(6, "inches")
  30508. },
  30509. {
  30510. name: "Normal",
  30511. height: math.unit(6, "feet"),
  30512. default: true
  30513. },
  30514. {
  30515. name: "First-stage macro",
  30516. height: math.unit(72, "feet")
  30517. },
  30518. {
  30519. name: "Second-stage macro",
  30520. height: math.unit(864, "feet")
  30521. },
  30522. ]
  30523. ))
  30524. characterMakers.push(() => makeCharacter(
  30525. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30526. {
  30527. normal: {
  30528. height: math.unit(4 + 6 / 12, "feet"),
  30529. name: "Normal",
  30530. image: {
  30531. source: "./media/characters/hydra/normal.svg",
  30532. extra: 2833 / 2634,
  30533. bottom: 68 / 2901
  30534. }
  30535. },
  30536. smol: {
  30537. height: math.unit(0.705, "inches"),
  30538. name: "Smol",
  30539. image: {
  30540. source: "./media/characters/hydra/smol.svg",
  30541. extra: 2715 / 2540,
  30542. bottom: 0 / 2715
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Normal",
  30549. height: math.unit(4 + 6 / 12, "feet"),
  30550. default: true
  30551. }
  30552. ]
  30553. ))
  30554. characterMakers.push(() => makeCharacter(
  30555. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30556. {
  30557. front: {
  30558. height: math.unit(0.6, "cm"),
  30559. name: "Front",
  30560. image: {
  30561. source: "./media/characters/daz/front.svg",
  30562. extra: 1682 / 1164,
  30563. bottom: 42 / 1724
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Normal",
  30570. height: math.unit(0.6, "cm"),
  30571. default: true
  30572. },
  30573. ]
  30574. ))
  30575. characterMakers.push(() => makeCharacter(
  30576. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30577. {
  30578. front: {
  30579. height: math.unit(6, "feet"),
  30580. weight: math.unit(235, "lb"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/theo-pangolin/front.svg",
  30584. extra: 1996 / 1969,
  30585. bottom: 115 / 2111
  30586. }
  30587. },
  30588. back: {
  30589. height: math.unit(6, "feet"),
  30590. weight: math.unit(235, "lb"),
  30591. name: "Back",
  30592. image: {
  30593. source: "./media/characters/theo-pangolin/back.svg",
  30594. extra: 1979 / 1979,
  30595. bottom: 40 / 2019
  30596. }
  30597. },
  30598. feral: {
  30599. height: math.unit(2, "feet"),
  30600. weight: math.unit(30, "lb"),
  30601. name: "Feral",
  30602. image: {
  30603. source: "./media/characters/theo-pangolin/feral.svg",
  30604. extra: 803 / 791,
  30605. bottom: 181 / 984
  30606. }
  30607. },
  30608. footFive: {
  30609. height: math.unit(1.43, "feet"),
  30610. name: "Foot (Five Toes)",
  30611. image: {
  30612. source: "./media/characters/theo-pangolin/foot-five.svg"
  30613. }
  30614. },
  30615. footFour: {
  30616. height: math.unit(1.43, "feet"),
  30617. name: "Foot (Four Toes)",
  30618. image: {
  30619. source: "./media/characters/theo-pangolin/foot-four.svg"
  30620. }
  30621. },
  30622. handFour: {
  30623. height: math.unit(0.81, "feet"),
  30624. name: "Hand (Four Fingers)",
  30625. image: {
  30626. source: "./media/characters/theo-pangolin/hand-four.svg"
  30627. }
  30628. },
  30629. handThree: {
  30630. height: math.unit(0.81, "feet"),
  30631. name: "Hand (Three Fingers)",
  30632. image: {
  30633. source: "./media/characters/theo-pangolin/hand-three.svg"
  30634. }
  30635. },
  30636. headFront: {
  30637. height: math.unit(1.37, "feet"),
  30638. name: "Head (Front)",
  30639. image: {
  30640. source: "./media/characters/theo-pangolin/head-front.svg"
  30641. }
  30642. },
  30643. headSide: {
  30644. height: math.unit(1.43, "feet"),
  30645. name: "Head (Side)",
  30646. image: {
  30647. source: "./media/characters/theo-pangolin/head-side.svg"
  30648. }
  30649. },
  30650. tongue: {
  30651. height: math.unit(2.29, "feet"),
  30652. name: "Tongue",
  30653. image: {
  30654. source: "./media/characters/theo-pangolin/tongue.svg"
  30655. }
  30656. },
  30657. },
  30658. [
  30659. {
  30660. name: "Normal",
  30661. height: math.unit(6, "feet")
  30662. },
  30663. {
  30664. name: "Macro",
  30665. height: math.unit(400, "feet"),
  30666. default: true
  30667. },
  30668. ]
  30669. ))
  30670. characterMakers.push(() => makeCharacter(
  30671. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30672. {
  30673. front: {
  30674. height: math.unit(6, "inches"),
  30675. weight: math.unit(0.036, "kg"),
  30676. name: "Front",
  30677. image: {
  30678. source: "./media/characters/renée/front.svg",
  30679. extra: 900 / 886,
  30680. bottom: 8 / 908
  30681. }
  30682. },
  30683. },
  30684. [
  30685. {
  30686. name: "Nano",
  30687. height: math.unit(1, "nm")
  30688. },
  30689. {
  30690. name: "Micro",
  30691. height: math.unit(1, "mm")
  30692. },
  30693. {
  30694. name: "Normal",
  30695. height: math.unit(6, "inches")
  30696. },
  30697. {
  30698. name: "Macro",
  30699. height: math.unit(2000, "feet"),
  30700. default: true
  30701. },
  30702. {
  30703. name: "Megamacro",
  30704. height: math.unit(2, "km")
  30705. },
  30706. {
  30707. name: "Gigamacro",
  30708. height: math.unit(2000, "km")
  30709. },
  30710. {
  30711. name: "Teramacro",
  30712. height: math.unit(250000, "km")
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30718. {
  30719. front: {
  30720. height: math.unit(4, "meters"),
  30721. weight: math.unit(150, "kg"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/caledvwlch/front.svg",
  30725. extra: 1760 / 1551,
  30726. bottom: 28 / 1788
  30727. }
  30728. },
  30729. side: {
  30730. height: math.unit(4, "meters"),
  30731. weight: math.unit(150, "kg"),
  30732. name: "Side",
  30733. image: {
  30734. source: "./media/characters/caledvwlch/side.svg",
  30735. extra: 1605 / 1536,
  30736. bottom: 31 / 1636
  30737. }
  30738. },
  30739. back: {
  30740. height: math.unit(4, "meters"),
  30741. weight: math.unit(150, "kg"),
  30742. name: "Back",
  30743. image: {
  30744. source: "./media/characters/caledvwlch/back.svg",
  30745. extra: 1635 / 1565,
  30746. bottom: 27 / 1662
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "\"Incognito\"",
  30753. height: math.unit(4, "meters")
  30754. },
  30755. {
  30756. name: "Small rampage",
  30757. height: math.unit(600, "meters")
  30758. },
  30759. {
  30760. name: "Mega",
  30761. height: math.unit(30, "km")
  30762. },
  30763. {
  30764. name: "Home-size",
  30765. height: math.unit(50, "km"),
  30766. default: true
  30767. },
  30768. {
  30769. name: "Giga",
  30770. height: math.unit(300, "km")
  30771. },
  30772. {
  30773. name: "Lounging",
  30774. height: math.unit(11000, "km")
  30775. },
  30776. {
  30777. name: "Planet snacking",
  30778. height: math.unit(2000000, "km")
  30779. },
  30780. ]
  30781. ))
  30782. characterMakers.push(() => makeCharacter(
  30783. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30784. {
  30785. front: {
  30786. height: math.unit(6, "feet"),
  30787. weight: math.unit(215, "lb"),
  30788. name: "Front",
  30789. image: {
  30790. source: "./media/characters/sapphire-svell/front.svg",
  30791. extra: 495 / 455,
  30792. bottom: 20 / 515
  30793. }
  30794. },
  30795. back: {
  30796. height: math.unit(6, "feet"),
  30797. weight: math.unit(216, "lb"),
  30798. name: "Back",
  30799. image: {
  30800. source: "./media/characters/sapphire-svell/back.svg",
  30801. extra: 497 / 477,
  30802. bottom: 7 / 504
  30803. }
  30804. },
  30805. maw: {
  30806. height: math.unit(1.57, "feet"),
  30807. name: "Maw",
  30808. image: {
  30809. source: "./media/characters/sapphire-svell/maw.svg"
  30810. }
  30811. },
  30812. foot: {
  30813. height: math.unit(1.07, "feet"),
  30814. name: "Foot",
  30815. image: {
  30816. source: "./media/characters/sapphire-svell/foot.svg"
  30817. }
  30818. },
  30819. toering: {
  30820. height: math.unit(1.7, "inch"),
  30821. name: "Toering",
  30822. image: {
  30823. source: "./media/characters/sapphire-svell/toering.svg"
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Normal",
  30830. height: math.unit(300, "feet"),
  30831. default: true
  30832. },
  30833. {
  30834. name: "Augmented",
  30835. height: math.unit(1250, "feet")
  30836. },
  30837. {
  30838. name: "Unleashed",
  30839. height: math.unit(3000, "feet")
  30840. },
  30841. ]
  30842. ))
  30843. characterMakers.push(() => makeCharacter(
  30844. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30845. {
  30846. side: {
  30847. height: math.unit(2 + 3 / 12, "feet"),
  30848. weight: math.unit(110, "lb"),
  30849. name: "Side",
  30850. image: {
  30851. source: "./media/characters/glitch-flux/side.svg",
  30852. extra: 997 / 805,
  30853. bottom: 20 / 1017
  30854. }
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Normal",
  30860. height: math.unit(2 + 3 / 12, "feet"),
  30861. default: true
  30862. },
  30863. ]
  30864. ))
  30865. characterMakers.push(() => makeCharacter(
  30866. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30867. {
  30868. front: {
  30869. height: math.unit(4, "meters"),
  30870. name: "Front",
  30871. image: {
  30872. source: "./media/characters/mid/front.svg",
  30873. extra: 507 / 476,
  30874. bottom: 17 / 524
  30875. }
  30876. },
  30877. back: {
  30878. height: math.unit(4, "meters"),
  30879. name: "Back",
  30880. image: {
  30881. source: "./media/characters/mid/back.svg",
  30882. extra: 519 / 487,
  30883. bottom: 7 / 526
  30884. }
  30885. },
  30886. stuck: {
  30887. height: math.unit(2.2, "meters"),
  30888. name: "Stuck",
  30889. image: {
  30890. source: "./media/characters/mid/stuck.svg",
  30891. extra: 1951 / 1869,
  30892. bottom: 88 / 2039
  30893. }
  30894. }
  30895. },
  30896. [
  30897. {
  30898. name: "Normal",
  30899. height: math.unit(4, "meters"),
  30900. default: true
  30901. },
  30902. {
  30903. name: "Big",
  30904. height: math.unit(10, "meters")
  30905. },
  30906. {
  30907. name: "Macro",
  30908. height: math.unit(800, "meters")
  30909. },
  30910. {
  30911. name: "Megamacro",
  30912. height: math.unit(100, "km")
  30913. },
  30914. {
  30915. name: "Overgrown",
  30916. height: math.unit(1, "parsec")
  30917. },
  30918. ]
  30919. ))
  30920. characterMakers.push(() => makeCharacter(
  30921. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30922. {
  30923. front: {
  30924. height: math.unit(2.5, "meters"),
  30925. weight: math.unit(225, "kg"),
  30926. name: "Front",
  30927. image: {
  30928. source: "./media/characters/iris/front.svg",
  30929. extra: 3348 / 3251,
  30930. bottom: 205 / 3553
  30931. }
  30932. },
  30933. maw: {
  30934. height: math.unit(0.56, "meter"),
  30935. name: "Maw",
  30936. image: {
  30937. source: "./media/characters/iris/maw.svg"
  30938. }
  30939. },
  30940. },
  30941. [
  30942. {
  30943. name: "Mewter cat",
  30944. height: math.unit(1.2, "meters")
  30945. },
  30946. {
  30947. name: "Minimacro",
  30948. height: math.unit(2.5, "meters"),
  30949. default: true
  30950. },
  30951. {
  30952. name: "Macro",
  30953. height: math.unit(180, "meters")
  30954. },
  30955. {
  30956. name: "Megamacro",
  30957. height: math.unit(2746, "meters")
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30963. {
  30964. front: {
  30965. height: math.unit(6, "feet"),
  30966. weight: math.unit(135, "lb"),
  30967. name: "Front",
  30968. image: {
  30969. source: "./media/characters/axel/front.svg",
  30970. extra: 908 / 908,
  30971. bottom: 58 / 966
  30972. }
  30973. },
  30974. side: {
  30975. height: math.unit(6, "feet"),
  30976. weight: math.unit(135, "lb"),
  30977. name: "Side",
  30978. image: {
  30979. source: "./media/characters/axel/side.svg",
  30980. extra: 958 / 958,
  30981. bottom: 11 / 969
  30982. }
  30983. },
  30984. back: {
  30985. height: math.unit(6, "feet"),
  30986. weight: math.unit(135, "lb"),
  30987. name: "Back",
  30988. image: {
  30989. source: "./media/characters/axel/back.svg",
  30990. extra: 887 / 887,
  30991. bottom: 34 / 921
  30992. }
  30993. },
  30994. head: {
  30995. height: math.unit(1.07, "feet"),
  30996. name: "Head",
  30997. image: {
  30998. source: "./media/characters/axel/head.svg"
  30999. }
  31000. },
  31001. beak: {
  31002. height: math.unit(1.4, "feet"),
  31003. name: "Beak",
  31004. image: {
  31005. source: "./media/characters/axel/beak.svg"
  31006. }
  31007. },
  31008. beakSide: {
  31009. height: math.unit(1.4, "feet"),
  31010. name: "Beak Side",
  31011. image: {
  31012. source: "./media/characters/axel/beak-side.svg"
  31013. }
  31014. },
  31015. sheath: {
  31016. height: math.unit(0.5, "feet"),
  31017. name: "Sheath",
  31018. image: {
  31019. source: "./media/characters/axel/sheath.svg"
  31020. }
  31021. },
  31022. dick: {
  31023. height: math.unit(0.98, "feet"),
  31024. name: "Dick",
  31025. image: {
  31026. source: "./media/characters/axel/dick.svg"
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Macro",
  31033. height: math.unit(68, "meters"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31040. {
  31041. front: {
  31042. height: math.unit(3.5, "meters"),
  31043. weight: math.unit(1200, "kg"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/joanna/front.svg",
  31047. extra: 1596 / 1488,
  31048. bottom: 29 / 1625
  31049. }
  31050. },
  31051. back: {
  31052. height: math.unit(3.5, "meters"),
  31053. weight: math.unit(1200, "kg"),
  31054. name: "Back",
  31055. image: {
  31056. source: "./media/characters/joanna/back.svg",
  31057. extra: 1594 / 1495,
  31058. bottom: 26 / 1620
  31059. }
  31060. },
  31061. frontShorts: {
  31062. height: math.unit(3.5, "meters"),
  31063. weight: math.unit(1200, "kg"),
  31064. name: "Front (Shorts)",
  31065. image: {
  31066. source: "./media/characters/joanna/front-shorts.svg",
  31067. extra: 1596 / 1488,
  31068. bottom: 29 / 1625
  31069. }
  31070. },
  31071. frontBiker: {
  31072. height: math.unit(3.5, "meters"),
  31073. weight: math.unit(1200, "kg"),
  31074. name: "Front (Biker)",
  31075. image: {
  31076. source: "./media/characters/joanna/front-biker.svg",
  31077. extra: 1596 / 1488,
  31078. bottom: 29 / 1625
  31079. }
  31080. },
  31081. backBiker: {
  31082. height: math.unit(3.5, "meters"),
  31083. weight: math.unit(1200, "kg"),
  31084. name: "Back (Biker)",
  31085. image: {
  31086. source: "./media/characters/joanna/back-biker.svg",
  31087. extra: 1594 / 1495,
  31088. bottom: 88 / 1682
  31089. }
  31090. },
  31091. bikeLeft: {
  31092. height: math.unit(2.4, "meters"),
  31093. weight: math.unit(1600, "kg"),
  31094. name: "Bike (Left)",
  31095. image: {
  31096. source: "./media/characters/joanna/bike-left.svg",
  31097. extra: 720 / 720,
  31098. bottom: 8 / 728
  31099. }
  31100. },
  31101. bikeRight: {
  31102. height: math.unit(2.4, "meters"),
  31103. weight: math.unit(1600, "kg"),
  31104. name: "Bike (Right)",
  31105. image: {
  31106. source: "./media/characters/joanna/bike-right.svg",
  31107. extra: 720 / 720,
  31108. bottom: 8 / 728
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Incognito",
  31115. height: math.unit(3.5, "meters")
  31116. },
  31117. {
  31118. name: "Casual Big",
  31119. height: math.unit(200, "meters")
  31120. },
  31121. {
  31122. name: "Macro",
  31123. height: math.unit(600, "meters")
  31124. },
  31125. {
  31126. name: "Original",
  31127. height: math.unit(20, "km"),
  31128. default: true
  31129. },
  31130. {
  31131. name: "Giga",
  31132. height: math.unit(400, "km")
  31133. },
  31134. {
  31135. name: "Lounging",
  31136. height: math.unit(1500, "km")
  31137. },
  31138. {
  31139. name: "Planetary",
  31140. height: math.unit(200000, "km")
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(6, "feet"),
  31149. weight: math.unit(150, "lb"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/hugo-sigil/front.svg",
  31153. extra: 522 / 500,
  31154. bottom: 2 / 524
  31155. }
  31156. },
  31157. back: {
  31158. height: math.unit(6, "feet"),
  31159. weight: math.unit(150, "lb"),
  31160. name: "Back",
  31161. image: {
  31162. source: "./media/characters/hugo-sigil/back.svg",
  31163. extra: 519 / 495,
  31164. bottom: 5 / 524
  31165. }
  31166. },
  31167. maw: {
  31168. height: math.unit(1.4, "feet"),
  31169. weight: math.unit(150, "lb"),
  31170. name: "Maw",
  31171. image: {
  31172. source: "./media/characters/hugo-sigil/maw.svg"
  31173. }
  31174. },
  31175. feet: {
  31176. height: math.unit(1.56, "feet"),
  31177. weight: math.unit(150, "lb"),
  31178. name: "Feet",
  31179. image: {
  31180. source: "./media/characters/hugo-sigil/feet.svg",
  31181. extra: 177 / 177,
  31182. bottom: 12 / 189
  31183. }
  31184. },
  31185. },
  31186. [
  31187. {
  31188. name: "Normal",
  31189. height: math.unit(6, "feet")
  31190. },
  31191. {
  31192. name: "Macro",
  31193. height: math.unit(200, "feet"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31200. {
  31201. front: {
  31202. height: math.unit(6, "feet"),
  31203. weight: math.unit(150, "lb"),
  31204. name: "Front",
  31205. image: {
  31206. source: "./media/characters/peri/front.svg",
  31207. extra: 2354 / 2233,
  31208. bottom: 49 / 2403
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Really Small",
  31215. height: math.unit(1, "nm")
  31216. },
  31217. {
  31218. name: "Micro",
  31219. height: math.unit(4, "inches")
  31220. },
  31221. {
  31222. name: "Normal",
  31223. height: math.unit(7, "inches"),
  31224. default: true
  31225. },
  31226. {
  31227. name: "Macro",
  31228. height: math.unit(400, "feet")
  31229. },
  31230. {
  31231. name: "Megamacro",
  31232. height: math.unit(100, "miles")
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31238. {
  31239. frontSlim: {
  31240. height: math.unit(7, "feet"),
  31241. name: "Front (Slim)",
  31242. image: {
  31243. source: "./media/characters/issilora/front-slim.svg",
  31244. extra: 529 / 449,
  31245. bottom: 53 / 582
  31246. }
  31247. },
  31248. sideSlim: {
  31249. height: math.unit(7, "feet"),
  31250. name: "Side (Slim)",
  31251. image: {
  31252. source: "./media/characters/issilora/side-slim.svg",
  31253. extra: 570 / 480,
  31254. bottom: 30 / 600
  31255. }
  31256. },
  31257. backSlim: {
  31258. height: math.unit(7, "feet"),
  31259. name: "Back (Slim)",
  31260. image: {
  31261. source: "./media/characters/issilora/back-slim.svg",
  31262. extra: 537 / 455,
  31263. bottom: 46 / 583
  31264. }
  31265. },
  31266. frontBuff: {
  31267. height: math.unit(7, "feet"),
  31268. name: "Front (Buff)",
  31269. image: {
  31270. source: "./media/characters/issilora/front-buff.svg",
  31271. extra: 2310 / 2035,
  31272. bottom: 335 / 2645
  31273. }
  31274. },
  31275. head: {
  31276. height: math.unit(1.94, "feet"),
  31277. name: "Head",
  31278. image: {
  31279. source: "./media/characters/issilora/head.svg"
  31280. }
  31281. },
  31282. },
  31283. [
  31284. {
  31285. name: "Minimum",
  31286. height: math.unit(7, "feet")
  31287. },
  31288. {
  31289. name: "Comfortable",
  31290. height: math.unit(17, "feet")
  31291. },
  31292. {
  31293. name: "Fun Size",
  31294. height: math.unit(47, "feet")
  31295. },
  31296. {
  31297. name: "Natural Macro",
  31298. height: math.unit(137, "feet"),
  31299. default: true
  31300. },
  31301. {
  31302. name: "Maximum Kaiju",
  31303. height: math.unit(397, "feet")
  31304. },
  31305. ]
  31306. ))
  31307. characterMakers.push(() => makeCharacter(
  31308. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31309. {
  31310. front: {
  31311. height: math.unit(50 + 9/12, "feet"),
  31312. weight: math.unit(32.8, "tons"),
  31313. name: "Front",
  31314. image: {
  31315. source: "./media/characters/irb'iiritaahn/front.svg",
  31316. extra: 1878/1826,
  31317. bottom: 326/2204
  31318. }
  31319. },
  31320. back: {
  31321. height: math.unit(50 + 9/12, "feet"),
  31322. weight: math.unit(32.8, "tons"),
  31323. name: "Back",
  31324. image: {
  31325. source: "./media/characters/irb'iiritaahn/back.svg",
  31326. extra: 2052/2018,
  31327. bottom: 152/2204
  31328. }
  31329. },
  31330. head: {
  31331. height: math.unit(12.86, "feet"),
  31332. name: "Head",
  31333. image: {
  31334. source: "./media/characters/irb'iiritaahn/head.svg"
  31335. }
  31336. },
  31337. maw: {
  31338. height: math.unit(9.66, "feet"),
  31339. name: "Maw",
  31340. image: {
  31341. source: "./media/characters/irb'iiritaahn/maw.svg"
  31342. }
  31343. },
  31344. frontDick: {
  31345. height: math.unit(8.78461, "feet"),
  31346. name: "Front Dick",
  31347. image: {
  31348. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31349. }
  31350. },
  31351. rearDick: {
  31352. height: math.unit(8.78461, "feet"),
  31353. name: "Rear Dick",
  31354. image: {
  31355. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31356. }
  31357. },
  31358. rearDickUnfolded: {
  31359. height: math.unit(8.78, "feet"),
  31360. name: "Rear Dick (Unfolded)",
  31361. image: {
  31362. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31363. }
  31364. },
  31365. wings: {
  31366. height: math.unit(43, "feet"),
  31367. name: "Wings",
  31368. image: {
  31369. source: "./media/characters/irb'iiritaahn/wings.svg"
  31370. }
  31371. },
  31372. },
  31373. [
  31374. {
  31375. name: "Macro",
  31376. height: math.unit(50 + 9/12, "feet"),
  31377. default: true
  31378. },
  31379. ]
  31380. ))
  31381. characterMakers.push(() => makeCharacter(
  31382. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31383. {
  31384. front: {
  31385. height: math.unit(205, "cm"),
  31386. weight: math.unit(102, "kg"),
  31387. name: "Front",
  31388. image: {
  31389. source: "./media/characters/irbisgreif/front.svg",
  31390. extra: 785/706,
  31391. bottom: 13/798
  31392. }
  31393. },
  31394. back: {
  31395. height: math.unit(205, "cm"),
  31396. weight: math.unit(102, "kg"),
  31397. name: "Back",
  31398. image: {
  31399. source: "./media/characters/irbisgreif/back.svg",
  31400. extra: 713/701,
  31401. bottom: 26/739
  31402. }
  31403. },
  31404. frontDressed: {
  31405. height: math.unit(216, "cm"),
  31406. weight: math.unit(102, "kg"),
  31407. name: "Front-dressed",
  31408. image: {
  31409. source: "./media/characters/irbisgreif/front-dressed.svg",
  31410. extra: 902/776,
  31411. bottom: 14/916
  31412. }
  31413. },
  31414. sideDressed: {
  31415. height: math.unit(195, "cm"),
  31416. weight: math.unit(102, "kg"),
  31417. name: "Side-dressed",
  31418. image: {
  31419. source: "./media/characters/irbisgreif/side-dressed.svg",
  31420. extra: 788/688,
  31421. bottom: 21/809
  31422. }
  31423. },
  31424. backDressed: {
  31425. height: math.unit(216, "cm"),
  31426. weight: math.unit(102, "kg"),
  31427. name: "Back-dressed",
  31428. image: {
  31429. source: "./media/characters/irbisgreif/back-dressed.svg",
  31430. extra: 901/783,
  31431. bottom: 10/911
  31432. }
  31433. },
  31434. dick: {
  31435. height: math.unit(0.49, "feet"),
  31436. name: "Dick",
  31437. image: {
  31438. source: "./media/characters/irbisgreif/dick.svg"
  31439. }
  31440. },
  31441. wingTop: {
  31442. height: math.unit(1.93 , "feet"),
  31443. name: "Wing-top",
  31444. image: {
  31445. source: "./media/characters/irbisgreif/wing-top.svg"
  31446. }
  31447. },
  31448. wingBottom: {
  31449. height: math.unit(1.93 , "feet"),
  31450. name: "Wing-bottom",
  31451. image: {
  31452. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "Normal",
  31459. height: math.unit(216, "cm"),
  31460. default: true
  31461. },
  31462. ]
  31463. ))
  31464. characterMakers.push(() => makeCharacter(
  31465. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31466. {
  31467. front: {
  31468. height: math.unit(6, "feet"),
  31469. weight: math.unit(150, "lb"),
  31470. name: "Front",
  31471. image: {
  31472. source: "./media/characters/pride/front.svg",
  31473. extra: 1299/1230,
  31474. bottom: 18/1317
  31475. }
  31476. },
  31477. },
  31478. [
  31479. {
  31480. name: "Normal",
  31481. height: math.unit(7, "feet")
  31482. },
  31483. {
  31484. name: "Mini-macro",
  31485. height: math.unit(11, "feet")
  31486. },
  31487. {
  31488. name: "Macro",
  31489. height: math.unit(15, "meters"),
  31490. default: true
  31491. },
  31492. {
  31493. name: "Macro+",
  31494. height: math.unit(40, "meters")
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31500. {
  31501. front: {
  31502. height: math.unit(4 + 2 / 12, "feet"),
  31503. weight: math.unit(95, "lb"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/vaelophis-nyx/front.svg",
  31507. extra: 2532/2330,
  31508. bottom: 0/2532
  31509. }
  31510. },
  31511. back: {
  31512. height: math.unit(4 + 2 / 12, "feet"),
  31513. weight: math.unit(95, "lb"),
  31514. name: "Back",
  31515. image: {
  31516. source: "./media/characters/vaelophis-nyx/back.svg",
  31517. extra: 2484/2361,
  31518. bottom: 0/2484
  31519. }
  31520. },
  31521. feralSide: {
  31522. height: math.unit(2 + 1/12, "feet"),
  31523. weight: math.unit(20, "lb"),
  31524. name: "Feral (Side)",
  31525. image: {
  31526. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31527. extra: 1721/1581,
  31528. bottom: 70/1791
  31529. }
  31530. },
  31531. feralLazing: {
  31532. height: math.unit(1.08, "feet"),
  31533. weight: math.unit(20, "lb"),
  31534. name: "Feral (Lazing)",
  31535. image: {
  31536. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31537. extra: 822/822,
  31538. bottom: 248/1070
  31539. }
  31540. },
  31541. ear: {
  31542. height: math.unit(0.416, "feet"),
  31543. name: "Ear",
  31544. image: {
  31545. source: "./media/characters/vaelophis-nyx/ear.svg"
  31546. }
  31547. },
  31548. eye: {
  31549. height: math.unit(0.0748, "feet"),
  31550. name: "Eye",
  31551. image: {
  31552. source: "./media/characters/vaelophis-nyx/eye.svg"
  31553. }
  31554. },
  31555. mouth: {
  31556. height: math.unit(0.378, "feet"),
  31557. name: "Mouth",
  31558. image: {
  31559. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31560. }
  31561. },
  31562. spade: {
  31563. height: math.unit(0.55, "feet"),
  31564. name: "Spade",
  31565. image: {
  31566. source: "./media/characters/vaelophis-nyx/spade.svg"
  31567. }
  31568. },
  31569. },
  31570. [
  31571. {
  31572. name: "Normal",
  31573. height: math.unit(4 + 2/12, "feet"),
  31574. default: true
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31580. {
  31581. front: {
  31582. height: math.unit(7, "feet"),
  31583. weight: math.unit(231, "lb"),
  31584. name: "Front",
  31585. image: {
  31586. source: "./media/characters/flux/front.svg",
  31587. extra: 919/871,
  31588. bottom: 0/919
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(7, "feet"),
  31593. weight: math.unit(231, "lb"),
  31594. name: "Back",
  31595. image: {
  31596. source: "./media/characters/flux/back.svg",
  31597. extra: 1040/992,
  31598. bottom: 0/1040
  31599. }
  31600. },
  31601. frontDressed: {
  31602. height: math.unit(7, "feet"),
  31603. weight: math.unit(231, "lb"),
  31604. name: "Front (Dressed)",
  31605. image: {
  31606. source: "./media/characters/flux/front-dressed.svg",
  31607. extra: 919/871,
  31608. bottom: 0/919
  31609. }
  31610. },
  31611. feralSide: {
  31612. height: math.unit(5, "feet"),
  31613. weight: math.unit(150, "lb"),
  31614. name: "Feral (Side)",
  31615. image: {
  31616. source: "./media/characters/flux/feral-side.svg",
  31617. extra: 598/528,
  31618. bottom: 28/626
  31619. }
  31620. },
  31621. head: {
  31622. height: math.unit(1.585, "feet"),
  31623. name: "Head",
  31624. image: {
  31625. source: "./media/characters/flux/head.svg"
  31626. }
  31627. },
  31628. headSide: {
  31629. height: math.unit(1.74, "feet"),
  31630. name: "Head (Side)",
  31631. image: {
  31632. source: "./media/characters/flux/head-side.svg"
  31633. }
  31634. },
  31635. headSideFire: {
  31636. height: math.unit(1.76, "feet"),
  31637. name: "Head (Side, Fire)",
  31638. image: {
  31639. source: "./media/characters/flux/head-side-fire.svg"
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Normal",
  31646. height: math.unit(7, "feet"),
  31647. default: true
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31653. {
  31654. front: {
  31655. height: math.unit(9, "feet"),
  31656. weight: math.unit(1012, "lb"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/ulfra-lupae/front.svg",
  31660. extra: 1083/1011,
  31661. bottom: 67/1150
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Micro",
  31668. height: math.unit(6, "inches")
  31669. },
  31670. {
  31671. name: "Socializing",
  31672. height: math.unit(6 + 5/12, "feet")
  31673. },
  31674. {
  31675. name: "Normal",
  31676. height: math.unit(9, "feet"),
  31677. default: true
  31678. },
  31679. {
  31680. name: "Macro",
  31681. height: math.unit(150, "feet")
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31687. {
  31688. front: {
  31689. height: math.unit(5 + 2/12, "feet"),
  31690. weight: math.unit(120, "lb"),
  31691. name: "Front",
  31692. image: {
  31693. source: "./media/characters/timber/front.svg",
  31694. extra: 2814/2705,
  31695. bottom: 181/2995
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Normal",
  31702. height: math.unit(5 + 2/12, "feet"),
  31703. default: true
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31709. {
  31710. front: {
  31711. height: math.unit(5 + 7/12, "feet"),
  31712. weight: math.unit(220, "lb"),
  31713. name: "Front",
  31714. image: {
  31715. source: "./media/characters/nicki/front.svg",
  31716. extra: 453/419,
  31717. bottom: 7/460
  31718. }
  31719. },
  31720. frontAlt: {
  31721. height: math.unit(5 + 7/12, "feet"),
  31722. weight: math.unit(220, "lb"),
  31723. name: "Front-alt",
  31724. image: {
  31725. source: "./media/characters/nicki/front-alt.svg",
  31726. extra: 435/411,
  31727. bottom: 12/447
  31728. }
  31729. },
  31730. back: {
  31731. height: math.unit(5 + 7/12, "feet"),
  31732. weight: math.unit(220, "lb"),
  31733. name: "Back",
  31734. image: {
  31735. source: "./media/characters/nicki/back.svg",
  31736. extra: 440/413,
  31737. bottom: 19/459
  31738. }
  31739. },
  31740. taur: {
  31741. height: math.unit(7 + 6/12, "feet"),
  31742. weight: math.unit(700, "lb"),
  31743. name: "Taur",
  31744. image: {
  31745. source: "./media/characters/nicki/taur.svg",
  31746. extra: 975/773,
  31747. bottom: 0/975
  31748. }
  31749. },
  31750. frontNsfw: {
  31751. height: math.unit(5 + 7/12, "feet"),
  31752. weight: math.unit(220, "lb"),
  31753. name: "Front (NSFW)",
  31754. image: {
  31755. source: "./media/characters/nicki/front-nsfw.svg",
  31756. extra: 453/419,
  31757. bottom: 7/460
  31758. }
  31759. },
  31760. frontNsfwAlt: {
  31761. height: math.unit(5 + 7/12, "feet"),
  31762. weight: math.unit(220, "lb"),
  31763. name: "Front (Alt, NSFW)",
  31764. image: {
  31765. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31766. extra: 435/411,
  31767. bottom: 12/447
  31768. }
  31769. },
  31770. backNsfw: {
  31771. height: math.unit(5 + 7/12, "feet"),
  31772. weight: math.unit(220, "lb"),
  31773. name: "Back (NSFW)",
  31774. image: {
  31775. source: "./media/characters/nicki/back-nsfw.svg",
  31776. extra: 440/413,
  31777. bottom: 19/459
  31778. }
  31779. },
  31780. head: {
  31781. height: math.unit(2.1, "feet"),
  31782. name: "Head",
  31783. image: {
  31784. source: "./media/characters/nicki/head.svg"
  31785. }
  31786. },
  31787. paw: {
  31788. height: math.unit(1.88, "feet"),
  31789. name: "Paw",
  31790. image: {
  31791. source: "./media/characters/nicki/paw.svg"
  31792. }
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Normal",
  31798. height: math.unit(5 + 7/12, "feet"),
  31799. default: true
  31800. },
  31801. ]
  31802. ))
  31803. characterMakers.push(() => makeCharacter(
  31804. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31805. {
  31806. front: {
  31807. height: math.unit(7 + 10/12, "feet"),
  31808. weight: math.unit(3.5, "tons"),
  31809. name: "Front",
  31810. image: {
  31811. source: "./media/characters/lee/front.svg",
  31812. extra: 1773/1615,
  31813. bottom: 86/1859
  31814. }
  31815. },
  31816. hand: {
  31817. height: math.unit(1.78, "feet"),
  31818. name: "Hand",
  31819. image: {
  31820. source: "./media/characters/lee/hand.svg"
  31821. }
  31822. },
  31823. maw: {
  31824. height: math.unit(1.18, "feet"),
  31825. name: "Maw",
  31826. image: {
  31827. source: "./media/characters/lee/maw.svg"
  31828. }
  31829. },
  31830. },
  31831. [
  31832. {
  31833. name: "Normal",
  31834. height: math.unit(7 + 10/12, "feet"),
  31835. default: true
  31836. },
  31837. ]
  31838. ))
  31839. characterMakers.push(() => makeCharacter(
  31840. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31841. {
  31842. front: {
  31843. height: math.unit(9, "feet"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/guti/front.svg",
  31847. extra: 4551/4355,
  31848. bottom: 123/4674
  31849. }
  31850. },
  31851. tongue: {
  31852. height: math.unit(1, "feet"),
  31853. name: "Tongue",
  31854. image: {
  31855. source: "./media/characters/guti/tongue.svg"
  31856. }
  31857. },
  31858. paw: {
  31859. height: math.unit(1.18, "feet"),
  31860. name: "Paw",
  31861. image: {
  31862. source: "./media/characters/guti/paw.svg"
  31863. }
  31864. },
  31865. },
  31866. [
  31867. {
  31868. name: "Normal",
  31869. height: math.unit(9, "feet"),
  31870. default: true
  31871. },
  31872. ]
  31873. ))
  31874. characterMakers.push(() => makeCharacter(
  31875. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31876. {
  31877. side: {
  31878. height: math.unit(5, "meters"),
  31879. name: "Side",
  31880. image: {
  31881. source: "./media/characters/vesper/side.svg",
  31882. extra: 1605/1518,
  31883. bottom: 0/1605
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Small",
  31890. height: math.unit(5, "meters")
  31891. },
  31892. {
  31893. name: "Sage",
  31894. height: math.unit(100, "meters"),
  31895. default: true
  31896. },
  31897. {
  31898. name: "Fun Size",
  31899. height: math.unit(600, "meters")
  31900. },
  31901. {
  31902. name: "Goddess",
  31903. height: math.unit(20000, "km")
  31904. },
  31905. {
  31906. name: "Maximum",
  31907. height: math.unit(5, "galaxies")
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(6 + 3/12, "feet"),
  31916. weight: math.unit(190, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/gawain/front.svg",
  31920. extra: 2222/2139,
  31921. bottom: 90/2312
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(6 + 3/12, "feet"),
  31926. weight: math.unit(190, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/gawain/back.svg",
  31930. extra: 2199/2111,
  31931. bottom: 73/2272
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Normal",
  31938. height: math.unit(6 + 3/12, "feet"),
  31939. default: true
  31940. },
  31941. ]
  31942. ))
  31943. characterMakers.push(() => makeCharacter(
  31944. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31945. {
  31946. side: {
  31947. height: math.unit(3.5, "meters"),
  31948. weight: math.unit(16000, "lb"),
  31949. name: "Side",
  31950. image: {
  31951. source: "./media/characters/dascalti/side.svg",
  31952. extra: 392/273,
  31953. bottom: 47/439
  31954. }
  31955. },
  31956. breath: {
  31957. height: math.unit(7.4, "feet"),
  31958. name: "Breath",
  31959. image: {
  31960. source: "./media/characters/dascalti/breath.svg"
  31961. }
  31962. },
  31963. fed: {
  31964. height: math.unit(3.6, "meters"),
  31965. weight: math.unit(16000, "lb"),
  31966. name: "Fed",
  31967. image: {
  31968. source: "./media/characters/dascalti/fed.svg",
  31969. extra: 1419/820,
  31970. bottom: 95/1514
  31971. }
  31972. },
  31973. },
  31974. [
  31975. {
  31976. name: "Normal",
  31977. height: math.unit(3.5, "meters"),
  31978. default: true
  31979. },
  31980. ]
  31981. ))
  31982. characterMakers.push(() => makeCharacter(
  31983. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31984. {
  31985. front: {
  31986. height: math.unit(3 + 5/12, "feet"),
  31987. name: "Front",
  31988. image: {
  31989. source: "./media/characters/mauve/front.svg",
  31990. extra: 1126/1033,
  31991. bottom: 65/1191
  31992. }
  31993. },
  31994. side: {
  31995. height: math.unit(3 + 5/12, "feet"),
  31996. name: "Side",
  31997. image: {
  31998. source: "./media/characters/mauve/side.svg",
  31999. extra: 1089/1001,
  32000. bottom: 29/1118
  32001. }
  32002. },
  32003. back: {
  32004. height: math.unit(3 + 5/12, "feet"),
  32005. name: "Back",
  32006. image: {
  32007. source: "./media/characters/mauve/back.svg",
  32008. extra: 1173/1053,
  32009. bottom: 109/1282
  32010. }
  32011. },
  32012. },
  32013. [
  32014. {
  32015. name: "Normal",
  32016. height: math.unit(3 + 5/12, "feet"),
  32017. default: true
  32018. },
  32019. ]
  32020. ))
  32021. characterMakers.push(() => makeCharacter(
  32022. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32023. {
  32024. front: {
  32025. height: math.unit(6 + 3/12, "feet"),
  32026. weight: math.unit(430, "lb"),
  32027. name: "Front",
  32028. image: {
  32029. source: "./media/characters/carlos/front.svg",
  32030. extra: 1964/1913,
  32031. bottom: 70/2034
  32032. }
  32033. },
  32034. },
  32035. [
  32036. {
  32037. name: "Normal",
  32038. height: math.unit(6 + 3/12, "feet"),
  32039. default: true
  32040. },
  32041. ]
  32042. ))
  32043. characterMakers.push(() => makeCharacter(
  32044. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32045. {
  32046. back: {
  32047. height: math.unit(5 + 10/12, "feet"),
  32048. weight: math.unit(200, "lb"),
  32049. name: "Back",
  32050. image: {
  32051. source: "./media/characters/jax/back.svg",
  32052. extra: 764/739,
  32053. bottom: 25/789
  32054. }
  32055. },
  32056. },
  32057. [
  32058. {
  32059. name: "Normal",
  32060. height: math.unit(5 + 10/12, "feet"),
  32061. default: true
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32067. {
  32068. front: {
  32069. height: math.unit(8, "feet"),
  32070. weight: math.unit(250, "lb"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/eikthynir/front.svg",
  32074. extra: 1332/1166,
  32075. bottom: 82/1414
  32076. }
  32077. },
  32078. back: {
  32079. height: math.unit(8, "feet"),
  32080. weight: math.unit(250, "lb"),
  32081. name: "Back",
  32082. image: {
  32083. source: "./media/characters/eikthynir/back.svg",
  32084. extra: 1342/1190,
  32085. bottom: 19/1361
  32086. }
  32087. },
  32088. dick: {
  32089. height: math.unit(2.35, "feet"),
  32090. name: "Dick",
  32091. image: {
  32092. source: "./media/characters/eikthynir/dick.svg"
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Normal",
  32099. height: math.unit(8, "feet"),
  32100. default: true
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32106. {
  32107. front: {
  32108. height: math.unit(99, "meters"),
  32109. weight: math.unit(13000, "tons"),
  32110. name: "Front",
  32111. image: {
  32112. source: "./media/characters/zlmos/front.svg",
  32113. extra: 2202/1992,
  32114. bottom: 315/2517
  32115. }
  32116. },
  32117. },
  32118. [
  32119. {
  32120. name: "Macro",
  32121. height: math.unit(99, "meters"),
  32122. default: true
  32123. },
  32124. ]
  32125. ))
  32126. characterMakers.push(() => makeCharacter(
  32127. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32128. {
  32129. front: {
  32130. height: math.unit(6 + 5/12, "feet"),
  32131. name: "Front",
  32132. image: {
  32133. source: "./media/characters/purri/front.svg",
  32134. extra: 1698/1610,
  32135. bottom: 32/1730
  32136. }
  32137. },
  32138. frontAlt: {
  32139. height: math.unit(6 + 5/12, "feet"),
  32140. name: "Front (Alt)",
  32141. image: {
  32142. source: "./media/characters/purri/front-alt.svg",
  32143. extra: 450/420,
  32144. bottom: 26/476
  32145. }
  32146. },
  32147. boots: {
  32148. height: math.unit(5.5, "feet"),
  32149. name: "Boots",
  32150. image: {
  32151. source: "./media/characters/purri/boots.svg",
  32152. extra: 905/853,
  32153. bottom: 18/923
  32154. }
  32155. },
  32156. lying: {
  32157. height: math.unit(2, "feet"),
  32158. name: "Lying",
  32159. image: {
  32160. source: "./media/characters/purri/lying.svg",
  32161. extra: 940/843,
  32162. bottom: 146/1086
  32163. }
  32164. },
  32165. devious: {
  32166. height: math.unit(1.77, "feet"),
  32167. name: "Devious",
  32168. image: {
  32169. source: "./media/characters/purri/devious.svg",
  32170. extra: 1440/1155,
  32171. bottom: 147/1587
  32172. }
  32173. },
  32174. bean: {
  32175. height: math.unit(1.94, "feet"),
  32176. name: "Bean",
  32177. image: {
  32178. source: "./media/characters/purri/bean.svg"
  32179. }
  32180. },
  32181. },
  32182. [
  32183. {
  32184. name: "Micro",
  32185. height: math.unit(1, "mm")
  32186. },
  32187. {
  32188. name: "Normal",
  32189. height: math.unit(6 + 5/12, "feet"),
  32190. default: true
  32191. },
  32192. {
  32193. name: "Macro :3c",
  32194. height: math.unit(2, "miles")
  32195. },
  32196. ]
  32197. ))
  32198. characterMakers.push(() => makeCharacter(
  32199. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32200. {
  32201. front: {
  32202. height: math.unit(6 + 2/12, "feet"),
  32203. weight: math.unit(250, "lb"),
  32204. name: "Front",
  32205. image: {
  32206. source: "./media/characters/moonlight/front.svg",
  32207. extra: 1044/908,
  32208. bottom: 56/1100
  32209. }
  32210. },
  32211. feral: {
  32212. height: math.unit(3 + 1/12, "feet"),
  32213. weight: math.unit(50, "kg"),
  32214. name: "Feral",
  32215. image: {
  32216. source: "./media/characters/moonlight/feral.svg",
  32217. extra: 3705/2791,
  32218. bottom: 145/3850
  32219. }
  32220. },
  32221. paw: {
  32222. height: math.unit(1, "feet"),
  32223. name: "Paw",
  32224. image: {
  32225. source: "./media/characters/moonlight/paw.svg"
  32226. }
  32227. },
  32228. paws: {
  32229. height: math.unit(0.98, "feet"),
  32230. name: "Paws",
  32231. image: {
  32232. source: "./media/characters/moonlight/paws.svg",
  32233. extra: 939/939,
  32234. bottom: 50/989
  32235. }
  32236. },
  32237. mouth: {
  32238. height: math.unit(0.48, "feet"),
  32239. name: "Mouth",
  32240. image: {
  32241. source: "./media/characters/moonlight/mouth.svg"
  32242. }
  32243. },
  32244. dick: {
  32245. height: math.unit(1.46, "feet"),
  32246. name: "Dick",
  32247. image: {
  32248. source: "./media/characters/moonlight/dick.svg"
  32249. }
  32250. },
  32251. },
  32252. [
  32253. {
  32254. name: "Normal",
  32255. height: math.unit(6 + 2/12, "feet"),
  32256. default: true
  32257. },
  32258. {
  32259. name: "Macro",
  32260. height: math.unit(300, "feet")
  32261. },
  32262. {
  32263. name: "Macro+",
  32264. height: math.unit(1, "mile")
  32265. },
  32266. {
  32267. name: "Mt. Moon",
  32268. height: math.unit(5, "miles")
  32269. },
  32270. {
  32271. name: "Megamacro",
  32272. height: math.unit(15, "miles")
  32273. },
  32274. ]
  32275. ))
  32276. characterMakers.push(() => makeCharacter(
  32277. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32278. {
  32279. back: {
  32280. height: math.unit(6, "feet"),
  32281. weight: math.unit(150, "lb"),
  32282. name: "Back",
  32283. image: {
  32284. source: "./media/characters/sylen/back.svg",
  32285. extra: 1335/1273,
  32286. bottom: 107/1442
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Normal",
  32293. height: math.unit(5 + 5/12, "feet")
  32294. },
  32295. {
  32296. name: "Megamacro",
  32297. height: math.unit(3, "miles"),
  32298. default: true
  32299. },
  32300. ]
  32301. ))
  32302. characterMakers.push(() => makeCharacter(
  32303. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32304. {
  32305. front: {
  32306. height: math.unit(6, "feet"),
  32307. weight: math.unit(190, "lb"),
  32308. name: "Front",
  32309. image: {
  32310. source: "./media/characters/huttser/front.svg",
  32311. extra: 1152/1058,
  32312. bottom: 23/1175
  32313. }
  32314. },
  32315. side: {
  32316. height: math.unit(6, "feet"),
  32317. weight: math.unit(190, "lb"),
  32318. name: "Side",
  32319. image: {
  32320. source: "./media/characters/huttser/side.svg",
  32321. extra: 1174/1065,
  32322. bottom: 18/1192
  32323. }
  32324. },
  32325. back: {
  32326. height: math.unit(6, "feet"),
  32327. weight: math.unit(190, "lb"),
  32328. name: "Back",
  32329. image: {
  32330. source: "./media/characters/huttser/back.svg",
  32331. extra: 1158/1056,
  32332. bottom: 12/1170
  32333. }
  32334. },
  32335. },
  32336. [
  32337. ]
  32338. ))
  32339. characterMakers.push(() => makeCharacter(
  32340. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32341. {
  32342. side: {
  32343. height: math.unit(12 + 9/12, "feet"),
  32344. weight: math.unit(15000, "lb"),
  32345. name: "Side",
  32346. image: {
  32347. source: "./media/characters/faan/side.svg",
  32348. extra: 2747/2697,
  32349. bottom: 0/2747
  32350. }
  32351. },
  32352. front: {
  32353. height: math.unit(12 + 9/12, "feet"),
  32354. weight: math.unit(15000, "lb"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/faan/front.svg",
  32358. extra: 607/571,
  32359. bottom: 24/631
  32360. }
  32361. },
  32362. head: {
  32363. height: math.unit(2.85, "feet"),
  32364. name: "Head",
  32365. image: {
  32366. source: "./media/characters/faan/head.svg"
  32367. }
  32368. },
  32369. headAlt: {
  32370. height: math.unit(3.13, "feet"),
  32371. name: "Head-alt",
  32372. image: {
  32373. source: "./media/characters/faan/head-alt.svg"
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Normal",
  32380. height: math.unit(12 + 9/12, "feet"),
  32381. default: true
  32382. },
  32383. ]
  32384. ))
  32385. characterMakers.push(() => makeCharacter(
  32386. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32387. {
  32388. front: {
  32389. height: math.unit(6, "feet"),
  32390. weight: math.unit(300, "lb"),
  32391. name: "Front",
  32392. image: {
  32393. source: "./media/characters/tanio/front.svg",
  32394. extra: 711/673,
  32395. bottom: 25/736
  32396. }
  32397. },
  32398. },
  32399. [
  32400. {
  32401. name: "Normal",
  32402. height: math.unit(6, "feet"),
  32403. default: true
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32409. {
  32410. front: {
  32411. height: math.unit(3, "inches"),
  32412. name: "Front",
  32413. image: {
  32414. source: "./media/characters/noboru/front.svg",
  32415. extra: 1039/932,
  32416. bottom: 18/1057
  32417. }
  32418. },
  32419. },
  32420. [
  32421. {
  32422. name: "Micro",
  32423. height: math.unit(3, "inches"),
  32424. default: true
  32425. },
  32426. ]
  32427. ))
  32428. characterMakers.push(() => makeCharacter(
  32429. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32430. {
  32431. front: {
  32432. height: math.unit(1.85, "meters"),
  32433. weight: math.unit(80, "kg"),
  32434. name: "Front",
  32435. image: {
  32436. source: "./media/characters/daniel-barrett/front.svg",
  32437. extra: 355/337,
  32438. bottom: 9/364
  32439. }
  32440. },
  32441. },
  32442. [
  32443. {
  32444. name: "Pico",
  32445. height: math.unit(0.0433, "mm")
  32446. },
  32447. {
  32448. name: "Nano",
  32449. height: math.unit(1.5, "mm")
  32450. },
  32451. {
  32452. name: "Micro",
  32453. height: math.unit(5.3, "cm"),
  32454. default: true
  32455. },
  32456. {
  32457. name: "Normal",
  32458. height: math.unit(1.85, "meters")
  32459. },
  32460. {
  32461. name: "Macro",
  32462. height: math.unit(64.7, "meters")
  32463. },
  32464. {
  32465. name: "Megamacro",
  32466. height: math.unit(2.26, "km")
  32467. },
  32468. {
  32469. name: "Gigamacro",
  32470. height: math.unit(79, "km")
  32471. },
  32472. {
  32473. name: "Teramacro",
  32474. height: math.unit(2765, "km")
  32475. },
  32476. {
  32477. name: "Petamacro",
  32478. height: math.unit(96678, "km")
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(30, "meters"),
  32487. weight: math.unit(400, "tons"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/zeel/front.svg",
  32491. extra: 2599/2599,
  32492. bottom: 226/2825
  32493. }
  32494. },
  32495. },
  32496. [
  32497. {
  32498. name: "Macro",
  32499. height: math.unit(30, "meters"),
  32500. default: true
  32501. },
  32502. ]
  32503. ))
  32504. characterMakers.push(() => makeCharacter(
  32505. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32506. {
  32507. front: {
  32508. height: math.unit(6 + 7/12, "feet"),
  32509. weight: math.unit(210, "lb"),
  32510. name: "Front",
  32511. image: {
  32512. source: "./media/characters/tarn/front.svg",
  32513. extra: 3517/3220,
  32514. bottom: 91/3608
  32515. }
  32516. },
  32517. back: {
  32518. height: math.unit(6 + 7/12, "feet"),
  32519. weight: math.unit(210, "lb"),
  32520. name: "Back",
  32521. image: {
  32522. source: "./media/characters/tarn/back.svg",
  32523. extra: 3566/3241,
  32524. bottom: 34/3600
  32525. }
  32526. },
  32527. dick: {
  32528. height: math.unit(1.65, "feet"),
  32529. name: "Dick",
  32530. image: {
  32531. source: "./media/characters/tarn/dick.svg"
  32532. }
  32533. },
  32534. paw: {
  32535. height: math.unit(1.80, "feet"),
  32536. name: "Paw",
  32537. image: {
  32538. source: "./media/characters/tarn/paw.svg"
  32539. }
  32540. },
  32541. tongue: {
  32542. height: math.unit(0.97, "feet"),
  32543. name: "Tongue",
  32544. image: {
  32545. source: "./media/characters/tarn/tongue.svg"
  32546. }
  32547. },
  32548. },
  32549. [
  32550. {
  32551. name: "Micro",
  32552. height: math.unit(4, "inches")
  32553. },
  32554. {
  32555. name: "Normal",
  32556. height: math.unit(6 + 7/12, "feet"),
  32557. default: true
  32558. },
  32559. {
  32560. name: "Macro",
  32561. height: math.unit(300, "feet")
  32562. },
  32563. ]
  32564. ))
  32565. characterMakers.push(() => makeCharacter(
  32566. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32567. {
  32568. front: {
  32569. height: math.unit(5 + 7/12, "feet"),
  32570. weight: math.unit(80, "kg"),
  32571. name: "Front",
  32572. image: {
  32573. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32574. extra: 3023/2865,
  32575. bottom: 33/3056
  32576. }
  32577. },
  32578. back: {
  32579. height: math.unit(5 + 7/12, "feet"),
  32580. weight: math.unit(80, "kg"),
  32581. name: "Back",
  32582. image: {
  32583. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32584. extra: 3020/2886,
  32585. bottom: 30/3050
  32586. }
  32587. },
  32588. dick: {
  32589. height: math.unit(0.98, "feet"),
  32590. name: "Dick",
  32591. image: {
  32592. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32593. }
  32594. },
  32595. anatomy: {
  32596. height: math.unit(2.86, "feet"),
  32597. name: "Anatomy",
  32598. image: {
  32599. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32600. }
  32601. },
  32602. },
  32603. [
  32604. {
  32605. name: "Really Small",
  32606. height: math.unit(2, "inches")
  32607. },
  32608. {
  32609. name: "Micro",
  32610. height: math.unit(5.583, "inches")
  32611. },
  32612. {
  32613. name: "Normal",
  32614. height: math.unit(5 + 7/12, "feet"),
  32615. default: true
  32616. },
  32617. {
  32618. name: "Macro",
  32619. height: math.unit(67, "feet")
  32620. },
  32621. {
  32622. name: "Megamacro",
  32623. height: math.unit(134, "feet")
  32624. },
  32625. ]
  32626. ))
  32627. characterMakers.push(() => makeCharacter(
  32628. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32629. {
  32630. front: {
  32631. height: math.unit(9, "feet"),
  32632. weight: math.unit(120, "lb"),
  32633. name: "Front",
  32634. image: {
  32635. source: "./media/characters/sally/front.svg",
  32636. extra: 1506/1349,
  32637. bottom: 66/1572
  32638. }
  32639. },
  32640. },
  32641. [
  32642. {
  32643. name: "Normal",
  32644. height: math.unit(9, "feet"),
  32645. default: true
  32646. },
  32647. ]
  32648. ))
  32649. characterMakers.push(() => makeCharacter(
  32650. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32651. {
  32652. front: {
  32653. height: math.unit(8, "feet"),
  32654. weight: math.unit(900, "lb"),
  32655. name: "Front",
  32656. image: {
  32657. source: "./media/characters/owen/front.svg",
  32658. extra: 1761/1657,
  32659. bottom: 74/1835
  32660. }
  32661. },
  32662. side: {
  32663. height: math.unit(8, "feet"),
  32664. weight: math.unit(900, "lb"),
  32665. name: "Side",
  32666. image: {
  32667. source: "./media/characters/owen/side.svg",
  32668. extra: 1797/1734,
  32669. bottom: 30/1827
  32670. }
  32671. },
  32672. back: {
  32673. height: math.unit(8, "feet"),
  32674. weight: math.unit(900, "lb"),
  32675. name: "Back",
  32676. image: {
  32677. source: "./media/characters/owen/back.svg",
  32678. extra: 1796/1706,
  32679. bottom: 59/1855
  32680. }
  32681. },
  32682. maw: {
  32683. height: math.unit(1.76, "feet"),
  32684. name: "Maw",
  32685. image: {
  32686. source: "./media/characters/owen/maw.svg"
  32687. }
  32688. },
  32689. },
  32690. [
  32691. {
  32692. name: "Normal",
  32693. height: math.unit(8, "feet"),
  32694. default: true
  32695. },
  32696. ]
  32697. ))
  32698. characterMakers.push(() => makeCharacter(
  32699. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32700. {
  32701. front: {
  32702. height: math.unit(4, "feet"),
  32703. weight: math.unit(400, "lb"),
  32704. name: "Front",
  32705. image: {
  32706. source: "./media/characters/ryth/front.svg",
  32707. extra: 1920/1748,
  32708. bottom: 42/1962
  32709. }
  32710. },
  32711. back: {
  32712. height: math.unit(4, "feet"),
  32713. weight: math.unit(400, "lb"),
  32714. name: "Back",
  32715. image: {
  32716. source: "./media/characters/ryth/back.svg",
  32717. extra: 1897/1690,
  32718. bottom: 89/1986
  32719. }
  32720. },
  32721. mouth: {
  32722. height: math.unit(1.39, "feet"),
  32723. name: "Mouth",
  32724. image: {
  32725. source: "./media/characters/ryth/mouth.svg"
  32726. }
  32727. },
  32728. tailmaw: {
  32729. height: math.unit(1.23, "feet"),
  32730. name: "Tailmaw",
  32731. image: {
  32732. source: "./media/characters/ryth/tailmaw.svg"
  32733. }
  32734. },
  32735. goia: {
  32736. height: math.unit(4, "meters"),
  32737. weight: math.unit(10800, "lb"),
  32738. name: "Goia",
  32739. image: {
  32740. source: "./media/characters/ryth/goia.svg",
  32741. extra: 745/640,
  32742. bottom: 107/852
  32743. }
  32744. },
  32745. goiaFront: {
  32746. height: math.unit(4, "meters"),
  32747. weight: math.unit(10800, "lb"),
  32748. name: "Goia (Front)",
  32749. image: {
  32750. source: "./media/characters/ryth/goia-front.svg",
  32751. extra: 750/586,
  32752. bottom: 114/864
  32753. }
  32754. },
  32755. goiaMaw: {
  32756. height: math.unit(5.55, "feet"),
  32757. name: "Goia Maw",
  32758. image: {
  32759. source: "./media/characters/ryth/goia-maw.svg"
  32760. }
  32761. },
  32762. goiaForepaw: {
  32763. height: math.unit(3.5, "feet"),
  32764. name: "Goia Forepaw",
  32765. image: {
  32766. source: "./media/characters/ryth/goia-forepaw.svg"
  32767. }
  32768. },
  32769. goiaHindpaw: {
  32770. height: math.unit(5.55, "feet"),
  32771. name: "Goia Hindpaw",
  32772. image: {
  32773. source: "./media/characters/ryth/goia-hindpaw.svg"
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Normal",
  32780. height: math.unit(4, "feet"),
  32781. default: true
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32787. {
  32788. front: {
  32789. height: math.unit(7, "feet"),
  32790. weight: math.unit(180, "lb"),
  32791. name: "Front",
  32792. image: {
  32793. source: "./media/characters/necrolance/front.svg",
  32794. extra: 1062/947,
  32795. bottom: 41/1103
  32796. }
  32797. },
  32798. back: {
  32799. height: math.unit(7, "feet"),
  32800. weight: math.unit(180, "lb"),
  32801. name: "Back",
  32802. image: {
  32803. source: "./media/characters/necrolance/back.svg",
  32804. extra: 1045/984,
  32805. bottom: 14/1059
  32806. }
  32807. },
  32808. wing: {
  32809. height: math.unit(2.67, "feet"),
  32810. name: "Wing",
  32811. image: {
  32812. source: "./media/characters/necrolance/wing.svg"
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Normal",
  32819. height: math.unit(7, "feet"),
  32820. default: true
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32826. {
  32827. front: {
  32828. height: math.unit(76, "meters"),
  32829. weight: math.unit(30000, "tons"),
  32830. name: "Front",
  32831. image: {
  32832. source: "./media/characters/tyler/front.svg",
  32833. extra: 1640/1640,
  32834. bottom: 114/1754
  32835. }
  32836. },
  32837. },
  32838. [
  32839. {
  32840. name: "Macro",
  32841. height: math.unit(76, "meters"),
  32842. default: true
  32843. },
  32844. ]
  32845. ))
  32846. characterMakers.push(() => makeCharacter(
  32847. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32848. {
  32849. front: {
  32850. height: math.unit(4 + 11/12, "feet"),
  32851. weight: math.unit(132, "lb"),
  32852. name: "Front",
  32853. image: {
  32854. source: "./media/characters/icey/front.svg",
  32855. extra: 2750/2550,
  32856. bottom: 33/2783
  32857. }
  32858. },
  32859. back: {
  32860. height: math.unit(4 + 11/12, "feet"),
  32861. weight: math.unit(132, "lb"),
  32862. name: "Back",
  32863. image: {
  32864. source: "./media/characters/icey/back.svg",
  32865. extra: 2624/2481,
  32866. bottom: 35/2659
  32867. }
  32868. },
  32869. },
  32870. [
  32871. {
  32872. name: "Normal",
  32873. height: math.unit(4 + 11/12, "feet"),
  32874. default: true
  32875. },
  32876. ]
  32877. ))
  32878. characterMakers.push(() => makeCharacter(
  32879. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32880. {
  32881. front: {
  32882. height: math.unit(100, "feet"),
  32883. weight: math.unit(0, "lb"),
  32884. name: "Front",
  32885. image: {
  32886. source: "./media/characters/smile/front.svg",
  32887. extra: 2983/2912,
  32888. bottom: 162/3145
  32889. }
  32890. },
  32891. back: {
  32892. height: math.unit(100, "feet"),
  32893. weight: math.unit(0, "lb"),
  32894. name: "Back",
  32895. image: {
  32896. source: "./media/characters/smile/back.svg",
  32897. extra: 3143/3031,
  32898. bottom: 91/3234
  32899. }
  32900. },
  32901. head: {
  32902. height: math.unit(26.3, "feet"),
  32903. weight: math.unit(0, "lb"),
  32904. name: "Head",
  32905. image: {
  32906. source: "./media/characters/smile/head.svg"
  32907. }
  32908. },
  32909. collar: {
  32910. height: math.unit(5.3, "feet"),
  32911. weight: math.unit(0, "lb"),
  32912. name: "Collar",
  32913. image: {
  32914. source: "./media/characters/smile/collar.svg"
  32915. }
  32916. },
  32917. },
  32918. [
  32919. {
  32920. name: "Macro",
  32921. height: math.unit(100, "feet"),
  32922. default: true
  32923. },
  32924. ]
  32925. ))
  32926. characterMakers.push(() => makeCharacter(
  32927. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32928. {
  32929. dragon: {
  32930. height: math.unit(26, "feet"),
  32931. weight: math.unit(36, "tons"),
  32932. name: "Dragon",
  32933. image: {
  32934. source: "./media/characters/arimphae/dragon.svg",
  32935. extra: 1574/983,
  32936. bottom: 357/1931
  32937. }
  32938. },
  32939. drake: {
  32940. height: math.unit(9, "feet"),
  32941. weight: math.unit(1.5, "tons"),
  32942. name: "Drake",
  32943. image: {
  32944. source: "./media/characters/arimphae/drake.svg",
  32945. extra: 1120/925,
  32946. bottom: 435/1555
  32947. }
  32948. },
  32949. },
  32950. [
  32951. {
  32952. name: "Small",
  32953. height: math.unit(26*5/9, "feet")
  32954. },
  32955. {
  32956. name: "Normal",
  32957. height: math.unit(26, "feet"),
  32958. default: true
  32959. },
  32960. ]
  32961. ))
  32962. characterMakers.push(() => makeCharacter(
  32963. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32964. {
  32965. front: {
  32966. height: math.unit(8 + 9/12, "feet"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/xander/front.svg",
  32970. extra: 1237/974,
  32971. bottom: 94/1331
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Normal",
  32978. height: math.unit(8 + 9/12, "feet"),
  32979. default: true
  32980. },
  32981. {
  32982. name: "Gaze Grabber",
  32983. height: math.unit(13 + 8/12, "feet")
  32984. },
  32985. {
  32986. name: "Jaw Dropper",
  32987. height: math.unit(27, "feet")
  32988. },
  32989. {
  32990. name: "Show Stopper",
  32991. height: math.unit(136, "feet")
  32992. },
  32993. {
  32994. name: "Superstar",
  32995. height: math.unit(1.9e6, "miles")
  32996. },
  32997. ]
  32998. ))
  32999. characterMakers.push(() => makeCharacter(
  33000. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33001. {
  33002. side: {
  33003. height: math.unit(2100, "feet"),
  33004. name: "Side",
  33005. image: {
  33006. source: "./media/characters/osiris/side.svg",
  33007. extra: 1105/939,
  33008. bottom: 167/1272
  33009. }
  33010. },
  33011. },
  33012. [
  33013. {
  33014. name: "Macro",
  33015. height: math.unit(2100, "feet"),
  33016. default: true
  33017. },
  33018. ]
  33019. ))
  33020. characterMakers.push(() => makeCharacter(
  33021. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33022. {
  33023. front: {
  33024. height: math.unit(6 + 8/12, "feet"),
  33025. weight: math.unit(225, "lb"),
  33026. name: "Front",
  33027. image: {
  33028. source: "./media/characters/rhys-londe/front.svg",
  33029. extra: 2258/2141,
  33030. bottom: 188/2446
  33031. }
  33032. },
  33033. back: {
  33034. height: math.unit(6 + 8/12, "feet"),
  33035. weight: math.unit(225, "lb"),
  33036. name: "Back",
  33037. image: {
  33038. source: "./media/characters/rhys-londe/back.svg",
  33039. extra: 2237/2137,
  33040. bottom: 63/2300
  33041. }
  33042. },
  33043. frontNsfw: {
  33044. height: math.unit(6 + 8/12, "feet"),
  33045. weight: math.unit(225, "lb"),
  33046. name: "Front (NSFW)",
  33047. image: {
  33048. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33049. extra: 2258/2141,
  33050. bottom: 188/2446
  33051. }
  33052. },
  33053. backNsfw: {
  33054. height: math.unit(6 + 8/12, "feet"),
  33055. weight: math.unit(225, "lb"),
  33056. name: "Back (NSFW)",
  33057. image: {
  33058. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33059. extra: 2237/2137,
  33060. bottom: 63/2300
  33061. }
  33062. },
  33063. dick: {
  33064. height: math.unit(30, "inches"),
  33065. name: "Dick",
  33066. image: {
  33067. source: "./media/characters/rhys-londe/dick.svg"
  33068. }
  33069. },
  33070. maw: {
  33071. height: math.unit(1.6, "feet"),
  33072. name: "Maw",
  33073. image: {
  33074. source: "./media/characters/rhys-londe/maw.svg"
  33075. }
  33076. },
  33077. },
  33078. [
  33079. {
  33080. name: "Normal",
  33081. height: math.unit(6 + 8/12, "feet"),
  33082. default: true
  33083. },
  33084. ]
  33085. ))
  33086. characterMakers.push(() => makeCharacter(
  33087. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33088. {
  33089. front: {
  33090. height: math.unit(3 + 10/12, "feet"),
  33091. weight: math.unit(90, "lb"),
  33092. name: "Front",
  33093. image: {
  33094. source: "./media/characters/taivas-ensim/front.svg",
  33095. extra: 1327/1216,
  33096. bottom: 96/1423
  33097. }
  33098. },
  33099. back: {
  33100. height: math.unit(3 + 10/12, "feet"),
  33101. weight: math.unit(90, "lb"),
  33102. name: "Back",
  33103. image: {
  33104. source: "./media/characters/taivas-ensim/back.svg",
  33105. extra: 1355/1247,
  33106. bottom: 11/1366
  33107. }
  33108. },
  33109. frontNsfw: {
  33110. height: math.unit(3 + 10/12, "feet"),
  33111. weight: math.unit(90, "lb"),
  33112. name: "Front (NSFW)",
  33113. image: {
  33114. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33115. extra: 1327/1216,
  33116. bottom: 96/1423
  33117. }
  33118. },
  33119. backNsfw: {
  33120. height: math.unit(3 + 10/12, "feet"),
  33121. weight: math.unit(90, "lb"),
  33122. name: "Back (NSFW)",
  33123. image: {
  33124. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33125. extra: 1355/1247,
  33126. bottom: 11/1366
  33127. }
  33128. },
  33129. },
  33130. [
  33131. {
  33132. name: "Normal",
  33133. height: math.unit(3 + 10/12, "feet"),
  33134. default: true
  33135. },
  33136. ]
  33137. ))
  33138. characterMakers.push(() => makeCharacter(
  33139. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33140. {
  33141. front: {
  33142. height: math.unit(9 + 6/12, "feet"),
  33143. weight: math.unit(940, "lb"),
  33144. name: "Front",
  33145. image: {
  33146. source: "./media/characters/byliss/front.svg",
  33147. extra: 1327/1290,
  33148. bottom: 82/1409
  33149. }
  33150. },
  33151. back: {
  33152. height: math.unit(9 + 6/12, "feet"),
  33153. weight: math.unit(940, "lb"),
  33154. name: "Back",
  33155. image: {
  33156. source: "./media/characters/byliss/back.svg",
  33157. extra: 1376/1349,
  33158. bottom: 9/1385
  33159. }
  33160. },
  33161. frontNsfw: {
  33162. height: math.unit(9 + 6/12, "feet"),
  33163. weight: math.unit(940, "lb"),
  33164. name: "Front (NSFW)",
  33165. image: {
  33166. source: "./media/characters/byliss/front-nsfw.svg",
  33167. extra: 1327/1290,
  33168. bottom: 82/1409
  33169. }
  33170. },
  33171. backNsfw: {
  33172. height: math.unit(9 + 6/12, "feet"),
  33173. weight: math.unit(940, "lb"),
  33174. name: "Back (NSFW)",
  33175. image: {
  33176. source: "./media/characters/byliss/back-nsfw.svg",
  33177. extra: 1376/1349,
  33178. bottom: 9/1385
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(9 + 6/12, "feet"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(5 + 2/12, "feet"),
  33195. weight: math.unit(200, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/noraly/front.svg",
  33199. extra: 4985/4773,
  33200. bottom: 150/5135
  33201. }
  33202. },
  33203. full: {
  33204. height: math.unit(5 + 2/12, "feet"),
  33205. weight: math.unit(164, "lb"),
  33206. name: "Full",
  33207. image: {
  33208. source: "./media/characters/noraly/full.svg",
  33209. extra: 1114/1059,
  33210. bottom: 35/1149
  33211. }
  33212. },
  33213. fuller: {
  33214. height: math.unit(5 + 2/12, "feet"),
  33215. weight: math.unit(230, "lb"),
  33216. name: "Fuller",
  33217. image: {
  33218. source: "./media/characters/noraly/fuller.svg",
  33219. extra: 1114/1059,
  33220. bottom: 35/1149
  33221. }
  33222. },
  33223. fullest: {
  33224. height: math.unit(5 + 2/12, "feet"),
  33225. weight: math.unit(300, "lb"),
  33226. name: "Fullest",
  33227. image: {
  33228. source: "./media/characters/noraly/fullest.svg",
  33229. extra: 1114/1059,
  33230. bottom: 35/1149
  33231. }
  33232. },
  33233. },
  33234. [
  33235. {
  33236. name: "Normal",
  33237. height: math.unit(5 + 2/12, "feet"),
  33238. default: true
  33239. },
  33240. ]
  33241. ))
  33242. characterMakers.push(() => makeCharacter(
  33243. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33244. {
  33245. front: {
  33246. height: math.unit(5 + 2/12, "feet"),
  33247. weight: math.unit(210, "lb"),
  33248. name: "Front",
  33249. image: {
  33250. source: "./media/characters/pera/front.svg",
  33251. extra: 1560/1531,
  33252. bottom: 165/1725
  33253. }
  33254. },
  33255. back: {
  33256. height: math.unit(5 + 2/12, "feet"),
  33257. weight: math.unit(210, "lb"),
  33258. name: "Back",
  33259. image: {
  33260. source: "./media/characters/pera/back.svg",
  33261. extra: 1523/1493,
  33262. bottom: 152/1675
  33263. }
  33264. },
  33265. dick: {
  33266. height: math.unit(2.4, "feet"),
  33267. name: "Dick",
  33268. image: {
  33269. source: "./media/characters/pera/dick.svg"
  33270. }
  33271. },
  33272. },
  33273. [
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(5 + 2/12, "feet"),
  33277. default: true
  33278. },
  33279. ]
  33280. ))
  33281. characterMakers.push(() => makeCharacter(
  33282. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33283. {
  33284. front: {
  33285. height: math.unit(12, "feet"),
  33286. weight: math.unit(3200, "lb"),
  33287. name: "Front",
  33288. image: {
  33289. source: "./media/characters/julian/front.svg",
  33290. extra: 2962/2701,
  33291. bottom: 184/3146
  33292. }
  33293. },
  33294. maw: {
  33295. height: math.unit(5.35, "feet"),
  33296. name: "Maw",
  33297. image: {
  33298. source: "./media/characters/julian/maw.svg"
  33299. }
  33300. },
  33301. paw: {
  33302. height: math.unit(3.07, "feet"),
  33303. name: "Paw",
  33304. image: {
  33305. source: "./media/characters/julian/paw.svg"
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Default",
  33312. height: math.unit(12, "feet"),
  33313. default: true
  33314. },
  33315. {
  33316. name: "Big",
  33317. height: math.unit(50, "feet")
  33318. },
  33319. {
  33320. name: "Really Big",
  33321. height: math.unit(1, "mile")
  33322. },
  33323. {
  33324. name: "Extremely Big",
  33325. height: math.unit(100, "miles")
  33326. },
  33327. {
  33328. name: "Planet Hugger",
  33329. height: math.unit(200, "megameters")
  33330. },
  33331. {
  33332. name: "Unreasonably Big",
  33333. height: math.unit(1e300, "meters")
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33339. {
  33340. solgooleo: {
  33341. height: math.unit(4, "meters"),
  33342. weight: math.unit(6000*1.5, "kg"),
  33343. volume: math.unit(6000, "liters"),
  33344. name: "Solgooleo",
  33345. image: {
  33346. source: "./media/characters/pi/solgooleo.svg",
  33347. extra: 388/331,
  33348. bottom: 29/417
  33349. }
  33350. },
  33351. },
  33352. [
  33353. {
  33354. name: "Normal",
  33355. height: math.unit(4, "meters"),
  33356. default: true
  33357. },
  33358. ]
  33359. ))
  33360. characterMakers.push(() => makeCharacter(
  33361. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33362. {
  33363. front: {
  33364. height: math.unit(8, "feet"),
  33365. weight: math.unit(4, "tons"),
  33366. name: "Front",
  33367. image: {
  33368. source: "./media/characters/shaun/front.svg",
  33369. extra: 503/495,
  33370. bottom: 20/523
  33371. }
  33372. },
  33373. back: {
  33374. height: math.unit(8, "feet"),
  33375. weight: math.unit(4, "tons"),
  33376. name: "Back",
  33377. image: {
  33378. source: "./media/characters/shaun/back.svg",
  33379. extra: 487/480,
  33380. bottom: 20/507
  33381. }
  33382. },
  33383. },
  33384. [
  33385. {
  33386. name: "Lorg",
  33387. height: math.unit(8, "feet"),
  33388. default: true
  33389. },
  33390. ]
  33391. ))
  33392. characterMakers.push(() => makeCharacter(
  33393. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33394. {
  33395. frontAnthro: {
  33396. height: math.unit(7, "feet"),
  33397. name: "Front",
  33398. image: {
  33399. source: "./media/characters/sini/front-anthro.svg",
  33400. extra: 726/678,
  33401. bottom: 35/761
  33402. },
  33403. form: "anthro",
  33404. default: true
  33405. },
  33406. backAnthro: {
  33407. height: math.unit(7, "feet"),
  33408. name: "Back",
  33409. image: {
  33410. source: "./media/characters/sini/back-anthro.svg",
  33411. extra: 743/701,
  33412. bottom: 12/755
  33413. },
  33414. form: "anthro",
  33415. },
  33416. frontAnthroNsfw: {
  33417. height: math.unit(7, "feet"),
  33418. name: "Front (NSFW)",
  33419. image: {
  33420. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33421. extra: 726/678,
  33422. bottom: 35/761
  33423. },
  33424. form: "anthro"
  33425. },
  33426. backAnthroNsfw: {
  33427. height: math.unit(7, "feet"),
  33428. name: "Back (NSFW)",
  33429. image: {
  33430. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33431. extra: 743/701,
  33432. bottom: 12/755
  33433. },
  33434. form: "anthro",
  33435. },
  33436. mawAnthro: {
  33437. height: math.unit(2.14, "feet"),
  33438. name: "Maw",
  33439. image: {
  33440. source: "./media/characters/sini/maw-anthro.svg"
  33441. },
  33442. form: "anthro"
  33443. },
  33444. dick: {
  33445. height: math.unit(1.45, "feet"),
  33446. name: "Dick",
  33447. image: {
  33448. source: "./media/characters/sini/dick-anthro.svg"
  33449. },
  33450. form: "anthro"
  33451. },
  33452. feral: {
  33453. height: math.unit(16, "feet"),
  33454. name: "Feral",
  33455. image: {
  33456. source: "./media/characters/sini/feral.svg",
  33457. extra: 814/605,
  33458. bottom: 11/825
  33459. },
  33460. form: "feral",
  33461. default: true
  33462. },
  33463. feralNsfw: {
  33464. height: math.unit(16, "feet"),
  33465. name: "Feral (NSFW)",
  33466. image: {
  33467. source: "./media/characters/sini/feral-nsfw.svg",
  33468. extra: 814/605,
  33469. bottom: 11/825
  33470. },
  33471. form: "feral"
  33472. },
  33473. mawFeral: {
  33474. height: math.unit(5.66, "feet"),
  33475. name: "Maw",
  33476. image: {
  33477. source: "./media/characters/sini/maw-feral.svg"
  33478. },
  33479. form: "feral",
  33480. },
  33481. pawFeral: {
  33482. height: math.unit(5.17, "feet"),
  33483. name: "Paw",
  33484. image: {
  33485. source: "./media/characters/sini/paw-feral.svg"
  33486. },
  33487. form: "feral",
  33488. },
  33489. rumpFeral: {
  33490. height: math.unit(13.11, "feet"),
  33491. name: "Rump",
  33492. image: {
  33493. source: "./media/characters/sini/rump-feral.svg"
  33494. },
  33495. form: "feral",
  33496. },
  33497. dickFeral: {
  33498. height: math.unit(1, "feet"),
  33499. name: "Dick",
  33500. image: {
  33501. source: "./media/characters/sini/dick-feral.svg"
  33502. },
  33503. form: "feral",
  33504. },
  33505. eyeFeral: {
  33506. height: math.unit(1.23, "feet"),
  33507. name: "Eye",
  33508. image: {
  33509. source: "./media/characters/sini/eye-feral.svg"
  33510. },
  33511. form: "feral",
  33512. },
  33513. },
  33514. [
  33515. {
  33516. name: "Normal",
  33517. height: math.unit(7, "feet"),
  33518. default: true,
  33519. form: "anthro"
  33520. },
  33521. {
  33522. name: "Normal",
  33523. height: math.unit(16, "feet"),
  33524. default: true,
  33525. form: "feral"
  33526. },
  33527. ],
  33528. {
  33529. "anthro": {
  33530. name: "Anthro",
  33531. default: true
  33532. },
  33533. "feral": {
  33534. name: "Feral",
  33535. }
  33536. }
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33540. {
  33541. side: {
  33542. height: math.unit(13, "meters"),
  33543. weight: math.unit(9072, "kg"),
  33544. name: "Side",
  33545. image: {
  33546. source: "./media/characters/raylldo/side.svg",
  33547. extra: 403/344,
  33548. bottom: 42/445
  33549. }
  33550. },
  33551. leaping: {
  33552. height: math.unit(12.3, "meters"),
  33553. weight: math.unit(9072, "kg"),
  33554. name: "Leaping",
  33555. image: {
  33556. source: "./media/characters/raylldo/leaping.svg",
  33557. extra: 470/249,
  33558. bottom: 13/483
  33559. }
  33560. },
  33561. flying: {
  33562. height: math.unit(18, "meters"),
  33563. weight: math.unit(9072, "kg"),
  33564. name: "Flying",
  33565. image: {
  33566. source: "./media/characters/raylldo/flying.svg"
  33567. }
  33568. },
  33569. head: {
  33570. height: math.unit(5.85, "meters"),
  33571. name: "Head",
  33572. image: {
  33573. source: "./media/characters/raylldo/head.svg"
  33574. }
  33575. },
  33576. maw: {
  33577. height: math.unit(5.32, "meters"),
  33578. name: "Maw",
  33579. image: {
  33580. source: "./media/characters/raylldo/maw.svg"
  33581. }
  33582. },
  33583. eye: {
  33584. height: math.unit(0.54, "meters"),
  33585. name: "Eye",
  33586. image: {
  33587. source: "./media/characters/raylldo/eye.svg"
  33588. }
  33589. },
  33590. },
  33591. [
  33592. {
  33593. name: "Normal",
  33594. height: math.unit(13, "meters"),
  33595. default: true
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33601. {
  33602. anthroFront: {
  33603. height: math.unit(9, "feet"),
  33604. weight: math.unit(600, "lb"),
  33605. name: "Anthro (Front)",
  33606. image: {
  33607. source: "./media/characters/glint/anthro-front.svg",
  33608. extra: 1097/1018,
  33609. bottom: 28/1125
  33610. }
  33611. },
  33612. anthroBack: {
  33613. height: math.unit(9, "feet"),
  33614. weight: math.unit(600, "lb"),
  33615. name: "Anthro (Back)",
  33616. image: {
  33617. source: "./media/characters/glint/anthro-back.svg",
  33618. extra: 1154/997,
  33619. bottom: 36/1190
  33620. }
  33621. },
  33622. feral: {
  33623. height: math.unit(11, "feet"),
  33624. weight: math.unit(50000, "lb"),
  33625. name: "Feral",
  33626. image: {
  33627. source: "./media/characters/glint/feral.svg",
  33628. extra: 3035/1585,
  33629. bottom: 1169/4204
  33630. }
  33631. },
  33632. dickAnthro: {
  33633. height: math.unit(0.7, "meters"),
  33634. name: "Dick (Anthro)",
  33635. image: {
  33636. source: "./media/characters/glint/dick-anthro.svg"
  33637. }
  33638. },
  33639. dickFeral: {
  33640. height: math.unit(2.65, "meters"),
  33641. name: "Dick (Feral)",
  33642. image: {
  33643. source: "./media/characters/glint/dick-feral.svg"
  33644. }
  33645. },
  33646. slitHidden: {
  33647. height: math.unit(5.85, "meters"),
  33648. name: "Slit (Hidden)",
  33649. image: {
  33650. source: "./media/characters/glint/slit-hidden.svg"
  33651. }
  33652. },
  33653. slitErect: {
  33654. height: math.unit(5.85, "meters"),
  33655. name: "Slit (Erect)",
  33656. image: {
  33657. source: "./media/characters/glint/slit-erect.svg"
  33658. }
  33659. },
  33660. mawAnthro: {
  33661. height: math.unit(0.63, "meters"),
  33662. name: "Maw (Anthro)",
  33663. image: {
  33664. source: "./media/characters/glint/maw.svg"
  33665. }
  33666. },
  33667. mawFeral: {
  33668. height: math.unit(2.89, "meters"),
  33669. name: "Maw (Feral)",
  33670. image: {
  33671. source: "./media/characters/glint/maw.svg"
  33672. }
  33673. },
  33674. },
  33675. [
  33676. {
  33677. name: "Normal",
  33678. height: math.unit(9, "feet"),
  33679. default: true
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33685. {
  33686. side: {
  33687. height: math.unit(15, "feet"),
  33688. weight: math.unit(5000, "kg"),
  33689. name: "Side",
  33690. image: {
  33691. source: "./media/characters/kairne/side.svg",
  33692. extra: 979/811,
  33693. bottom: 13/992
  33694. }
  33695. },
  33696. front: {
  33697. height: math.unit(15, "feet"),
  33698. weight: math.unit(5000, "kg"),
  33699. name: "Front",
  33700. image: {
  33701. source: "./media/characters/kairne/front.svg",
  33702. extra: 908/814,
  33703. bottom: 26/934
  33704. }
  33705. },
  33706. sideNsfw: {
  33707. height: math.unit(15, "feet"),
  33708. weight: math.unit(5000, "kg"),
  33709. name: "Side (NSFW)",
  33710. image: {
  33711. source: "./media/characters/kairne/side-nsfw.svg",
  33712. extra: 979/811,
  33713. bottom: 13/992
  33714. }
  33715. },
  33716. frontNsfw: {
  33717. height: math.unit(15, "feet"),
  33718. weight: math.unit(5000, "kg"),
  33719. name: "Front (NSFW)",
  33720. image: {
  33721. source: "./media/characters/kairne/front-nsfw.svg",
  33722. extra: 908/814,
  33723. bottom: 26/934
  33724. }
  33725. },
  33726. dickCaged: {
  33727. height: math.unit(0.65, "meters"),
  33728. name: "Dick-caged",
  33729. image: {
  33730. source: "./media/characters/kairne/dick-caged.svg"
  33731. }
  33732. },
  33733. dick: {
  33734. height: math.unit(0.79, "meters"),
  33735. name: "Dick",
  33736. image: {
  33737. source: "./media/characters/kairne/dick.svg"
  33738. }
  33739. },
  33740. genitals: {
  33741. height: math.unit(1.29, "meters"),
  33742. name: "Genitals",
  33743. image: {
  33744. source: "./media/characters/kairne/genitals.svg"
  33745. }
  33746. },
  33747. maw: {
  33748. height: math.unit(1.73, "meters"),
  33749. name: "Maw",
  33750. image: {
  33751. source: "./media/characters/kairne/maw.svg"
  33752. }
  33753. },
  33754. },
  33755. [
  33756. {
  33757. name: "Normal",
  33758. height: math.unit(15, "feet"),
  33759. default: true
  33760. },
  33761. ]
  33762. ))
  33763. characterMakers.push(() => makeCharacter(
  33764. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33765. {
  33766. front: {
  33767. height: math.unit(5 + 8/12, "feet"),
  33768. weight: math.unit(139, "lb"),
  33769. name: "Front",
  33770. image: {
  33771. source: "./media/characters/biscuit-jackal/front.svg",
  33772. extra: 2106/1961,
  33773. bottom: 58/2164
  33774. }
  33775. },
  33776. back: {
  33777. height: math.unit(5 + 8/12, "feet"),
  33778. weight: math.unit(139, "lb"),
  33779. name: "Back",
  33780. image: {
  33781. source: "./media/characters/biscuit-jackal/back.svg",
  33782. extra: 2132/1976,
  33783. bottom: 57/2189
  33784. }
  33785. },
  33786. werejackal: {
  33787. height: math.unit(6 + 3/12, "feet"),
  33788. weight: math.unit(188, "lb"),
  33789. name: "Werejackal",
  33790. image: {
  33791. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33792. extra: 2373/2178,
  33793. bottom: 53/2426
  33794. }
  33795. },
  33796. },
  33797. [
  33798. {
  33799. name: "Normal",
  33800. height: math.unit(5 + 8/12, "feet"),
  33801. default: true
  33802. },
  33803. ]
  33804. ))
  33805. characterMakers.push(() => makeCharacter(
  33806. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33807. {
  33808. front: {
  33809. height: math.unit(140, "cm"),
  33810. weight: math.unit(45, "kg"),
  33811. name: "Front",
  33812. image: {
  33813. source: "./media/characters/tayra-white/front.svg",
  33814. extra: 2229/2192,
  33815. bottom: 75/2304
  33816. }
  33817. },
  33818. },
  33819. [
  33820. {
  33821. name: "Normal",
  33822. height: math.unit(140, "cm"),
  33823. default: true
  33824. },
  33825. ]
  33826. ))
  33827. characterMakers.push(() => makeCharacter(
  33828. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33829. {
  33830. front: {
  33831. height: math.unit(4 + 5/12, "feet"),
  33832. name: "Front",
  33833. image: {
  33834. source: "./media/characters/scoop/front.svg",
  33835. extra: 1257/1136,
  33836. bottom: 69/1326
  33837. }
  33838. },
  33839. back: {
  33840. height: math.unit(4 + 5/12, "feet"),
  33841. name: "Back",
  33842. image: {
  33843. source: "./media/characters/scoop/back.svg",
  33844. extra: 1321/1152,
  33845. bottom: 32/1353
  33846. }
  33847. },
  33848. maw: {
  33849. height: math.unit(0.68, "feet"),
  33850. name: "Maw",
  33851. image: {
  33852. source: "./media/characters/scoop/maw.svg"
  33853. }
  33854. },
  33855. },
  33856. [
  33857. {
  33858. name: "Really Small",
  33859. height: math.unit(1, "mm")
  33860. },
  33861. {
  33862. name: "Micro",
  33863. height: math.unit(1, "inch")
  33864. },
  33865. {
  33866. name: "Normal",
  33867. height: math.unit(4 + 5/12, "feet"),
  33868. default: true
  33869. },
  33870. {
  33871. name: "Macro",
  33872. height: math.unit(200, "feet")
  33873. },
  33874. {
  33875. name: "Megamacro",
  33876. height: math.unit(3240, "feet")
  33877. },
  33878. {
  33879. name: "Teramacro",
  33880. height: math.unit(2500, "miles")
  33881. },
  33882. ]
  33883. ))
  33884. characterMakers.push(() => makeCharacter(
  33885. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33886. {
  33887. front: {
  33888. height: math.unit(15 + 7/12, "feet"),
  33889. weight: math.unit(1150, "tons"),
  33890. name: "Front",
  33891. image: {
  33892. source: "./media/characters/saphinara/front.svg",
  33893. extra: 1837/1643,
  33894. bottom: 84/1921
  33895. },
  33896. form: "normal",
  33897. default: true
  33898. },
  33899. side: {
  33900. height: math.unit(15 + 7/12, "feet"),
  33901. weight: math.unit(1150, "tons"),
  33902. name: "Side",
  33903. image: {
  33904. source: "./media/characters/saphinara/side.svg",
  33905. extra: 605/547,
  33906. bottom: 6/611
  33907. },
  33908. form: "normal"
  33909. },
  33910. back: {
  33911. height: math.unit(15 + 7/12, "feet"),
  33912. weight: math.unit(1150, "tons"),
  33913. name: "Back",
  33914. image: {
  33915. source: "./media/characters/saphinara/back.svg",
  33916. extra: 591/531,
  33917. bottom: 13/604
  33918. },
  33919. form: "normal"
  33920. },
  33921. frontTail: {
  33922. height: math.unit(15 + 7/12, "feet"),
  33923. weight: math.unit(1150, "tons"),
  33924. name: "Front (Full Tail)",
  33925. image: {
  33926. source: "./media/characters/saphinara/front-tail.svg",
  33927. extra: 2256/1630,
  33928. bottom: 261/2517
  33929. },
  33930. form: "normal"
  33931. },
  33932. insides: {
  33933. height: math.unit(11.92, "feet"),
  33934. name: "Insides",
  33935. image: {
  33936. source: "./media/characters/saphinara/insides.svg"
  33937. },
  33938. form: "normal"
  33939. },
  33940. head: {
  33941. height: math.unit(4.17, "feet"),
  33942. name: "Head",
  33943. image: {
  33944. source: "./media/characters/saphinara/head.svg"
  33945. },
  33946. form: "normal"
  33947. },
  33948. tongue: {
  33949. height: math.unit(4.60, "feet"),
  33950. name: "Tongue",
  33951. image: {
  33952. source: "./media/characters/saphinara/tongue.svg"
  33953. },
  33954. form: "normal"
  33955. },
  33956. headEnraged: {
  33957. height: math.unit(5.55, "feet"),
  33958. name: "Head (Enraged)",
  33959. image: {
  33960. source: "./media/characters/saphinara/head-enraged.svg"
  33961. },
  33962. form: "normal"
  33963. },
  33964. wings: {
  33965. height: math.unit(11.95, "feet"),
  33966. name: "Wings",
  33967. image: {
  33968. source: "./media/characters/saphinara/wings.svg"
  33969. },
  33970. form: "normal"
  33971. },
  33972. feathers: {
  33973. height: math.unit(8.92, "feet"),
  33974. name: "Feathers",
  33975. image: {
  33976. source: "./media/characters/saphinara/feathers.svg"
  33977. },
  33978. form: "normal"
  33979. },
  33980. shackles: {
  33981. height: math.unit(2, "feet"),
  33982. name: "Shackles",
  33983. image: {
  33984. source: "./media/characters/saphinara/shackles.svg"
  33985. },
  33986. form: "normal"
  33987. },
  33988. eyes: {
  33989. height: math.unit(1.331, "feet"),
  33990. name: "Eyes",
  33991. image: {
  33992. source: "./media/characters/saphinara/eyes.svg"
  33993. },
  33994. form: "normal"
  33995. },
  33996. eyesEnraged: {
  33997. height: math.unit(1.331, "feet"),
  33998. name: "Eyes (Enraged)",
  33999. image: {
  34000. source: "./media/characters/saphinara/eyes-enraged.svg"
  34001. },
  34002. form: "normal"
  34003. },
  34004. trueFormSide: {
  34005. height: math.unit(200, "feet"),
  34006. weight: math.unit(1e7, "tons"),
  34007. name: "Side",
  34008. image: {
  34009. source: "./media/characters/saphinara/true-form-side.svg",
  34010. extra: 1399/770,
  34011. bottom: 97/1496
  34012. },
  34013. form: "true-form",
  34014. default: true
  34015. },
  34016. trueFormMaw: {
  34017. height: math.unit(71.5, "feet"),
  34018. name: "Maw",
  34019. image: {
  34020. source: "./media/characters/saphinara/true-form-maw.svg",
  34021. extra: 2302/1453,
  34022. bottom: 0/2302
  34023. },
  34024. form: "true-form"
  34025. },
  34026. },
  34027. [
  34028. {
  34029. name: "Normal",
  34030. height: math.unit(15 + 7/12, "feet"),
  34031. default: true,
  34032. form: "normal"
  34033. },
  34034. {
  34035. name: "Angry",
  34036. height: math.unit(30 + 6/12, "feet"),
  34037. form: "normal"
  34038. },
  34039. {
  34040. name: "Enraged",
  34041. height: math.unit(102 + 1/12, "feet"),
  34042. form: "normal"
  34043. },
  34044. {
  34045. name: "True",
  34046. height: math.unit(200, "feet"),
  34047. default: true,
  34048. form: "true-form"
  34049. }
  34050. ],
  34051. {
  34052. "normal": {
  34053. name: "Normal",
  34054. default: true
  34055. },
  34056. "true-form": {
  34057. name: "True Form"
  34058. }
  34059. }
  34060. ))
  34061. characterMakers.push(() => makeCharacter(
  34062. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34063. {
  34064. front: {
  34065. height: math.unit(6 + 8/12, "feet"),
  34066. weight: math.unit(300, "lb"),
  34067. name: "Front",
  34068. image: {
  34069. source: "./media/characters/jrain/front.svg",
  34070. extra: 3039/2865,
  34071. bottom: 399/3438
  34072. }
  34073. },
  34074. back: {
  34075. height: math.unit(6 + 8/12, "feet"),
  34076. weight: math.unit(300, "lb"),
  34077. name: "Back",
  34078. image: {
  34079. source: "./media/characters/jrain/back.svg",
  34080. extra: 3089/2938,
  34081. bottom: 172/3261
  34082. }
  34083. },
  34084. head: {
  34085. height: math.unit(2.14, "feet"),
  34086. name: "Head",
  34087. image: {
  34088. source: "./media/characters/jrain/head.svg"
  34089. }
  34090. },
  34091. maw: {
  34092. height: math.unit(1.77, "feet"),
  34093. name: "Maw",
  34094. image: {
  34095. source: "./media/characters/jrain/maw.svg"
  34096. }
  34097. },
  34098. leftHand: {
  34099. height: math.unit(1.1, "feet"),
  34100. name: "Left Hand",
  34101. image: {
  34102. source: "./media/characters/jrain/left-hand.svg"
  34103. }
  34104. },
  34105. rightHand: {
  34106. height: math.unit(1.1, "feet"),
  34107. name: "Right Hand",
  34108. image: {
  34109. source: "./media/characters/jrain/right-hand.svg"
  34110. }
  34111. },
  34112. eye: {
  34113. height: math.unit(0.35, "feet"),
  34114. name: "Eye",
  34115. image: {
  34116. source: "./media/characters/jrain/eye.svg"
  34117. }
  34118. },
  34119. },
  34120. [
  34121. {
  34122. name: "Normal",
  34123. height: math.unit(6 + 8/12, "feet"),
  34124. default: true
  34125. },
  34126. {
  34127. name: "Casually Large",
  34128. height: math.unit(25, "feet")
  34129. },
  34130. {
  34131. name: "Giant",
  34132. height: math.unit(100, "feet")
  34133. },
  34134. {
  34135. name: "Kaiju",
  34136. height: math.unit(300, "feet")
  34137. },
  34138. ]
  34139. ))
  34140. characterMakers.push(() => makeCharacter(
  34141. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34142. {
  34143. dragon: {
  34144. height: math.unit(5, "meters"),
  34145. name: "Dragon",
  34146. image: {
  34147. source: "./media/characters/sabrina/dragon.svg",
  34148. extra: 3670 / 2365,
  34149. bottom: 333 / 4003
  34150. }
  34151. },
  34152. gryphon: {
  34153. height: math.unit(3, "meters"),
  34154. name: "Gryphon",
  34155. image: {
  34156. source: "./media/characters/sabrina/gryphon.svg",
  34157. extra: 1576 / 945,
  34158. bottom: 71 / 1647
  34159. }
  34160. },
  34161. snake: {
  34162. height: math.unit(12, "meters"),
  34163. name: "Snake",
  34164. image: {
  34165. source: "./media/characters/sabrina/snake.svg",
  34166. extra: 1758 / 1320,
  34167. bottom: 186 / 1944
  34168. }
  34169. },
  34170. collar: {
  34171. height: math.unit(1.86, "meters"),
  34172. name: "Collar",
  34173. image: {
  34174. source: "./media/characters/sabrina/collar.svg"
  34175. }
  34176. },
  34177. eye: {
  34178. height: math.unit(0.53, "meters"),
  34179. name: "Eye",
  34180. image: {
  34181. source: "./media/characters/sabrina/eye.svg"
  34182. }
  34183. },
  34184. foot: {
  34185. height: math.unit(1.86, "meters"),
  34186. name: "Foot",
  34187. image: {
  34188. source: "./media/characters/sabrina/foot.svg"
  34189. }
  34190. },
  34191. hand: {
  34192. height: math.unit(1.32, "meters"),
  34193. name: "Hand",
  34194. image: {
  34195. source: "./media/characters/sabrina/hand.svg"
  34196. }
  34197. },
  34198. head: {
  34199. height: math.unit(2.44, "meters"),
  34200. name: "Head",
  34201. image: {
  34202. source: "./media/characters/sabrina/head.svg"
  34203. }
  34204. },
  34205. headAngry: {
  34206. height: math.unit(2.44, "meters"),
  34207. name: "Head (Angry))",
  34208. image: {
  34209. source: "./media/characters/sabrina/head-angry.svg"
  34210. }
  34211. },
  34212. maw: {
  34213. height: math.unit(1.65, "meters"),
  34214. name: "Maw",
  34215. image: {
  34216. source: "./media/characters/sabrina/maw.svg"
  34217. }
  34218. },
  34219. spikes: {
  34220. height: math.unit(1.69, "meters"),
  34221. name: "Spikes",
  34222. image: {
  34223. source: "./media/characters/sabrina/spikes.svg"
  34224. }
  34225. },
  34226. stomach: {
  34227. height: math.unit(1.15, "meters"),
  34228. name: "Stomach",
  34229. image: {
  34230. source: "./media/characters/sabrina/stomach.svg"
  34231. }
  34232. },
  34233. tongue: {
  34234. height: math.unit(1.27, "meters"),
  34235. name: "Tongue",
  34236. image: {
  34237. source: "./media/characters/sabrina/tongue.svg"
  34238. }
  34239. },
  34240. wingDorsal: {
  34241. height: math.unit(4.85, "meters"),
  34242. name: "Wing (Dorsal)",
  34243. image: {
  34244. source: "./media/characters/sabrina/wing-dorsal.svg"
  34245. }
  34246. },
  34247. wingVentral: {
  34248. height: math.unit(4.85, "meters"),
  34249. name: "Wing (Ventral)",
  34250. image: {
  34251. source: "./media/characters/sabrina/wing-ventral.svg"
  34252. }
  34253. },
  34254. },
  34255. [
  34256. {
  34257. name: "Normal",
  34258. height: math.unit(5, "meters"),
  34259. default: true
  34260. },
  34261. ]
  34262. ))
  34263. characterMakers.push(() => makeCharacter(
  34264. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34265. {
  34266. frontMaid: {
  34267. height: math.unit(5 + 5/12, "feet"),
  34268. weight: math.unit(130, "lb"),
  34269. name: "Front (Maid)",
  34270. image: {
  34271. source: "./media/characters/midnight-tales/front-maid.svg",
  34272. extra: 489/454,
  34273. bottom: 61/550
  34274. }
  34275. },
  34276. frontFormal: {
  34277. height: math.unit(5 + 5/12, "feet"),
  34278. weight: math.unit(130, "lb"),
  34279. name: "Front (Formal)",
  34280. image: {
  34281. source: "./media/characters/midnight-tales/front-formal.svg",
  34282. extra: 489/454,
  34283. bottom: 61/550
  34284. }
  34285. },
  34286. back: {
  34287. height: math.unit(5 + 5/12, "feet"),
  34288. weight: math.unit(130, "lb"),
  34289. name: "Back",
  34290. image: {
  34291. source: "./media/characters/midnight-tales/back.svg",
  34292. extra: 498/456,
  34293. bottom: 33/531
  34294. }
  34295. },
  34296. frontBeast: {
  34297. height: math.unit(40, "feet"),
  34298. weight: math.unit(64000, "lb"),
  34299. name: "Front (Beast)",
  34300. image: {
  34301. source: "./media/characters/midnight-tales/front-beast.svg",
  34302. extra: 927/860,
  34303. bottom: 53/980
  34304. }
  34305. },
  34306. backBeast: {
  34307. height: math.unit(40, "feet"),
  34308. weight: math.unit(64000, "lb"),
  34309. name: "Back (Beast)",
  34310. image: {
  34311. source: "./media/characters/midnight-tales/back-beast.svg",
  34312. extra: 929/855,
  34313. bottom: 16/945
  34314. }
  34315. },
  34316. footBeast: {
  34317. height: math.unit(6.7, "feet"),
  34318. name: "Foot (Beast)",
  34319. image: {
  34320. source: "./media/characters/midnight-tales/foot-beast.svg"
  34321. }
  34322. },
  34323. headBeast: {
  34324. height: math.unit(8, "feet"),
  34325. name: "Head (Beast)",
  34326. image: {
  34327. source: "./media/characters/midnight-tales/head-beast.svg"
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Normal",
  34334. height: math.unit(5 + 5 / 12, "feet"),
  34335. default: true
  34336. },
  34337. {
  34338. name: "Macro",
  34339. height: math.unit(25, "feet")
  34340. },
  34341. ]
  34342. ))
  34343. characterMakers.push(() => makeCharacter(
  34344. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34345. {
  34346. front: {
  34347. height: math.unit(5 + 10/12, "feet"),
  34348. name: "Front",
  34349. image: {
  34350. source: "./media/characters/argon/front.svg",
  34351. extra: 2009/1935,
  34352. bottom: 118/2127
  34353. }
  34354. },
  34355. back: {
  34356. height: math.unit(5 + 10/12, "feet"),
  34357. name: "Back",
  34358. image: {
  34359. source: "./media/characters/argon/back.svg",
  34360. extra: 2047/1992,
  34361. bottom: 20/2067
  34362. }
  34363. },
  34364. frontDressed: {
  34365. height: math.unit(5 + 10/12, "feet"),
  34366. name: "Front (Dressed)",
  34367. image: {
  34368. source: "./media/characters/argon/front-dressed.svg",
  34369. extra: 2009/1935,
  34370. bottom: 118/2127
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Normal",
  34377. height: math.unit(5 + 10/12, "feet"),
  34378. default: true
  34379. },
  34380. ]
  34381. ))
  34382. characterMakers.push(() => makeCharacter(
  34383. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34384. {
  34385. front: {
  34386. height: math.unit(8 + 6/12, "feet"),
  34387. weight: math.unit(1150, "lb"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/kichi/front.svg",
  34391. extra: 1267/1164,
  34392. bottom: 61/1328
  34393. }
  34394. },
  34395. back: {
  34396. height: math.unit(8 + 6/12, "feet"),
  34397. weight: math.unit(1150, "lb"),
  34398. name: "Back",
  34399. image: {
  34400. source: "./media/characters/kichi/back.svg",
  34401. extra: 1273/1166,
  34402. bottom: 33/1306
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Normal",
  34409. height: math.unit(8 + 6/12, "feet"),
  34410. default: true
  34411. },
  34412. ]
  34413. ))
  34414. characterMakers.push(() => makeCharacter(
  34415. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34416. {
  34417. front: {
  34418. height: math.unit(6, "feet"),
  34419. weight: math.unit(210, "lb"),
  34420. name: "Front",
  34421. image: {
  34422. source: "./media/characters/manetel-greyscale/front.svg",
  34423. extra: 350/312,
  34424. bottom: 8/358
  34425. }
  34426. },
  34427. },
  34428. [
  34429. {
  34430. name: "Micro",
  34431. height: math.unit(2, "inches")
  34432. },
  34433. {
  34434. name: "Normal",
  34435. height: math.unit(6, "feet"),
  34436. default: true
  34437. },
  34438. {
  34439. name: "Minimacro",
  34440. height: math.unit(17, "feet")
  34441. },
  34442. {
  34443. name: "Macro",
  34444. height: math.unit(117, "feet")
  34445. },
  34446. ]
  34447. ))
  34448. characterMakers.push(() => makeCharacter(
  34449. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34450. {
  34451. side: {
  34452. height: math.unit(5 + 1/12, "feet"),
  34453. weight: math.unit(418, "lb"),
  34454. name: "Side",
  34455. image: {
  34456. source: "./media/characters/softpurr/side.svg",
  34457. extra: 1993/1945,
  34458. bottom: 134/2127
  34459. }
  34460. },
  34461. front: {
  34462. height: math.unit(5 + 1/12, "feet"),
  34463. weight: math.unit(418, "lb"),
  34464. name: "Front",
  34465. image: {
  34466. source: "./media/characters/softpurr/front.svg",
  34467. extra: 1950/1856,
  34468. bottom: 174/2124
  34469. }
  34470. },
  34471. paw: {
  34472. height: math.unit(1, "feet"),
  34473. name: "Paw",
  34474. image: {
  34475. source: "./media/characters/softpurr/paw.svg"
  34476. }
  34477. },
  34478. },
  34479. [
  34480. {
  34481. name: "Normal",
  34482. height: math.unit(5 + 1/12, "feet"),
  34483. default: true
  34484. },
  34485. ]
  34486. ))
  34487. characterMakers.push(() => makeCharacter(
  34488. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34489. {
  34490. front: {
  34491. height: math.unit(260, "meters"),
  34492. name: "Front",
  34493. image: {
  34494. source: "./media/characters/anahita/front.svg",
  34495. extra: 665/635,
  34496. bottom: 89/754
  34497. }
  34498. },
  34499. },
  34500. [
  34501. {
  34502. name: "Macro",
  34503. height: math.unit(260, "meters"),
  34504. default: true
  34505. },
  34506. ]
  34507. ))
  34508. characterMakers.push(() => makeCharacter(
  34509. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34510. {
  34511. front: {
  34512. height: math.unit(4 + 10/12, "feet"),
  34513. weight: math.unit(160, "lb"),
  34514. name: "Front",
  34515. image: {
  34516. source: "./media/characters/chip-mouse/front.svg",
  34517. extra: 3528/3408,
  34518. bottom: 0/3528
  34519. }
  34520. },
  34521. frontNsfw: {
  34522. height: math.unit(4 + 10/12, "feet"),
  34523. weight: math.unit(160, "lb"),
  34524. name: "Front (NSFW)",
  34525. image: {
  34526. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34527. extra: 3528/3408,
  34528. bottom: 0/3528
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(4 + 10/12, "feet"),
  34536. default: true
  34537. },
  34538. ]
  34539. ))
  34540. characterMakers.push(() => makeCharacter(
  34541. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34542. {
  34543. side: {
  34544. height: math.unit(10, "feet"),
  34545. weight: math.unit(14000, "lb"),
  34546. name: "Side",
  34547. image: {
  34548. source: "./media/characters/kremm/side.svg",
  34549. extra: 1390/1053,
  34550. bottom: 90/1480
  34551. }
  34552. },
  34553. gut: {
  34554. height: math.unit(5.8, "feet"),
  34555. name: "Gut",
  34556. image: {
  34557. source: "./media/characters/kremm/gut.svg"
  34558. }
  34559. },
  34560. ass: {
  34561. height: math.unit(6.1, "feet"),
  34562. name: "Ass",
  34563. image: {
  34564. source: "./media/characters/kremm/ass.svg"
  34565. }
  34566. },
  34567. jaws: {
  34568. height: math.unit(2.2, "feet"),
  34569. name: "Jaws",
  34570. image: {
  34571. source: "./media/characters/kremm/jaws.svg"
  34572. }
  34573. },
  34574. dick: {
  34575. height: math.unit(4.26, "feet"),
  34576. name: "Dick",
  34577. image: {
  34578. source: "./media/characters/kremm/dick.svg"
  34579. }
  34580. },
  34581. },
  34582. [
  34583. {
  34584. name: "Normal",
  34585. height: math.unit(10, "feet"),
  34586. default: true
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(30, "stories"),
  34595. name: "Front",
  34596. image: {
  34597. source: "./media/characters/kai/front.svg",
  34598. extra: 1892/1718,
  34599. bottom: 162/2054
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Macro",
  34606. height: math.unit(30, "stories"),
  34607. default: true
  34608. },
  34609. ]
  34610. ))
  34611. characterMakers.push(() => makeCharacter(
  34612. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34613. {
  34614. front: {
  34615. height: math.unit(6 + 4/12, "feet"),
  34616. weight: math.unit(145, "lb"),
  34617. name: "Front",
  34618. image: {
  34619. source: "./media/characters/sykes/front.svg",
  34620. extra: 1321 / 1187,
  34621. bottom: 66 / 1387
  34622. }
  34623. },
  34624. back: {
  34625. height: math.unit(6 + 4/12, "feet"),
  34626. weight: math.unit(145, "lb"),
  34627. name: "Back",
  34628. image: {
  34629. source: "./media/characters/sykes/back.svg",
  34630. extra: 1326/1181,
  34631. bottom: 31/1357
  34632. }
  34633. },
  34634. traditionalOutfit: {
  34635. height: math.unit(6 + 4/12, "feet"),
  34636. weight: math.unit(145, "lb"),
  34637. name: "Traditional Outfit",
  34638. image: {
  34639. source: "./media/characters/sykes/traditional-outfit.svg",
  34640. extra: 1321 / 1187,
  34641. bottom: 66 / 1387
  34642. }
  34643. },
  34644. adventureOutfit: {
  34645. height: math.unit(6 + 4/12, "feet"),
  34646. weight: math.unit(145, "lb"),
  34647. name: "Adventure Outfit",
  34648. image: {
  34649. source: "./media/characters/sykes/adventure-outfit.svg",
  34650. extra: 1321 / 1187,
  34651. bottom: 66 / 1387
  34652. }
  34653. },
  34654. handLeft: {
  34655. height: math.unit(0.9, "feet"),
  34656. name: "Hand (Left)",
  34657. image: {
  34658. source: "./media/characters/sykes/hand-left.svg"
  34659. }
  34660. },
  34661. handRight: {
  34662. height: math.unit(0.839, "feet"),
  34663. name: "Hand (Right)",
  34664. image: {
  34665. source: "./media/characters/sykes/hand-right.svg"
  34666. }
  34667. },
  34668. leftFoot: {
  34669. height: math.unit(1.2, "feet"),
  34670. name: "Foot (Left)",
  34671. image: {
  34672. source: "./media/characters/sykes/foot-left.svg"
  34673. }
  34674. },
  34675. rightFoot: {
  34676. height: math.unit(1.2, "feet"),
  34677. name: "Foot (Right)",
  34678. image: {
  34679. source: "./media/characters/sykes/foot-right.svg"
  34680. }
  34681. },
  34682. maw: {
  34683. height: math.unit(1.93, "feet"),
  34684. name: "Maw",
  34685. image: {
  34686. source: "./media/characters/sykes/maw.svg"
  34687. }
  34688. },
  34689. teeth: {
  34690. height: math.unit(0.51, "feet"),
  34691. name: "Teeth",
  34692. image: {
  34693. source: "./media/characters/sykes/teeth.svg"
  34694. }
  34695. },
  34696. tongue: {
  34697. height: math.unit(2.13, "feet"),
  34698. name: "Tongue",
  34699. image: {
  34700. source: "./media/characters/sykes/tongue.svg"
  34701. }
  34702. },
  34703. uvula: {
  34704. height: math.unit(0.16, "feet"),
  34705. name: "Uvula",
  34706. image: {
  34707. source: "./media/characters/sykes/uvula.svg"
  34708. }
  34709. },
  34710. collar: {
  34711. height: math.unit(0.287, "feet"),
  34712. name: "Collar",
  34713. image: {
  34714. source: "./media/characters/sykes/collar.svg"
  34715. }
  34716. },
  34717. tail: {
  34718. height: math.unit(3.8, "feet"),
  34719. name: "Tail",
  34720. image: {
  34721. source: "./media/characters/sykes/tail.svg"
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Shrunken",
  34728. height: math.unit(5, "inches")
  34729. },
  34730. {
  34731. name: "Normal",
  34732. height: math.unit(6 + 4 / 12, "feet"),
  34733. default: true
  34734. },
  34735. {
  34736. name: "Big",
  34737. height: math.unit(15, "feet")
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34743. {
  34744. front: {
  34745. height: math.unit(5 + 8/12, "feet"),
  34746. weight: math.unit(190, "lb"),
  34747. name: "Front",
  34748. image: {
  34749. source: "./media/characters/oven-otter/front.svg",
  34750. extra: 1809/1740,
  34751. bottom: 181/1990
  34752. }
  34753. },
  34754. back: {
  34755. height: math.unit(5 + 8/12, "feet"),
  34756. weight: math.unit(190, "lb"),
  34757. name: "Back",
  34758. image: {
  34759. source: "./media/characters/oven-otter/back.svg",
  34760. extra: 1709/1635,
  34761. bottom: 118/1827
  34762. }
  34763. },
  34764. hand: {
  34765. height: math.unit(1.07, "feet"),
  34766. name: "Hand",
  34767. image: {
  34768. source: "./media/characters/oven-otter/hand.svg"
  34769. }
  34770. },
  34771. beans: {
  34772. height: math.unit(1.74, "feet"),
  34773. name: "Beans",
  34774. image: {
  34775. source: "./media/characters/oven-otter/beans.svg"
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Micro",
  34782. height: math.unit(0.5, "inches")
  34783. },
  34784. {
  34785. name: "Normal",
  34786. height: math.unit(5 + 8/12, "feet"),
  34787. default: true
  34788. },
  34789. {
  34790. name: "Macro",
  34791. height: math.unit(250, "feet")
  34792. },
  34793. {
  34794. name: "Really High",
  34795. height: math.unit(420, "feet")
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(5, "meters"),
  34804. weight: math.unit(292000000000000, "kg"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/devourer/front.svg",
  34808. extra: 1800/1733,
  34809. bottom: 211/2011
  34810. }
  34811. },
  34812. maw: {
  34813. height: math.unit(1.1, "meter"),
  34814. name: "Maw",
  34815. image: {
  34816. source: "./media/characters/devourer/maw.svg"
  34817. }
  34818. },
  34819. },
  34820. [
  34821. {
  34822. name: "Small",
  34823. height: math.unit(3, "meters")
  34824. },
  34825. {
  34826. name: "Large",
  34827. height: math.unit(5, "meters"),
  34828. default: true
  34829. },
  34830. ]
  34831. ))
  34832. characterMakers.push(() => makeCharacter(
  34833. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34834. {
  34835. front: {
  34836. height: math.unit(6, "feet"),
  34837. weight: math.unit(400, "lb"),
  34838. name: "Front",
  34839. image: {
  34840. source: "./media/characters/ellarby/front.svg",
  34841. extra: 1909/1763,
  34842. bottom: 80/1989
  34843. }
  34844. },
  34845. back: {
  34846. height: math.unit(6, "feet"),
  34847. weight: math.unit(400, "lb"),
  34848. name: "Back",
  34849. image: {
  34850. source: "./media/characters/ellarby/back.svg",
  34851. extra: 1914/1784,
  34852. bottom: 172/2086
  34853. }
  34854. },
  34855. },
  34856. [
  34857. {
  34858. name: "Mischief",
  34859. height: math.unit(18, "inches")
  34860. },
  34861. {
  34862. name: "Trouble",
  34863. height: math.unit(12, "feet")
  34864. },
  34865. {
  34866. name: "Havoc",
  34867. height: math.unit(200, "feet"),
  34868. default: true
  34869. },
  34870. {
  34871. name: "Pandemonium",
  34872. height: math.unit(1, "mile")
  34873. },
  34874. {
  34875. name: "Catastrophe",
  34876. height: math.unit(100, "miles")
  34877. },
  34878. ]
  34879. ))
  34880. characterMakers.push(() => makeCharacter(
  34881. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34882. {
  34883. front: {
  34884. height: math.unit(4.7, "meters"),
  34885. weight: math.unit(6500, "kg"),
  34886. name: "Front",
  34887. image: {
  34888. source: "./media/characters/vex/front.svg",
  34889. extra: 1288/1140,
  34890. bottom: 100/1388
  34891. }
  34892. },
  34893. },
  34894. [
  34895. {
  34896. name: "Normal",
  34897. height: math.unit(4.7, "meters"),
  34898. default: true
  34899. },
  34900. ]
  34901. ))
  34902. characterMakers.push(() => makeCharacter(
  34903. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34904. {
  34905. normal: {
  34906. height: math.unit(6, "feet"),
  34907. weight: math.unit(350, "lb"),
  34908. name: "Normal",
  34909. image: {
  34910. source: "./media/characters/teshy/normal.svg",
  34911. extra: 1795/1735,
  34912. bottom: 16/1811
  34913. }
  34914. },
  34915. monsterFront: {
  34916. height: math.unit(12, "feet"),
  34917. weight: math.unit(4700, "lb"),
  34918. name: "Monster (Front)",
  34919. image: {
  34920. source: "./media/characters/teshy/monster-front.svg",
  34921. extra: 2042/2034,
  34922. bottom: 128/2170
  34923. }
  34924. },
  34925. monsterSide: {
  34926. height: math.unit(12, "feet"),
  34927. weight: math.unit(4700, "lb"),
  34928. name: "Monster (Side)",
  34929. image: {
  34930. source: "./media/characters/teshy/monster-side.svg",
  34931. extra: 2067/2056,
  34932. bottom: 70/2137
  34933. }
  34934. },
  34935. monsterBack: {
  34936. height: math.unit(12, "feet"),
  34937. weight: math.unit(4700, "lb"),
  34938. name: "Monster (Back)",
  34939. image: {
  34940. source: "./media/characters/teshy/monster-back.svg",
  34941. extra: 1921/1914,
  34942. bottom: 171/2092
  34943. }
  34944. },
  34945. },
  34946. [
  34947. {
  34948. name: "Normal",
  34949. height: math.unit(6, "feet"),
  34950. default: true
  34951. },
  34952. ]
  34953. ))
  34954. characterMakers.push(() => makeCharacter(
  34955. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34956. {
  34957. front: {
  34958. height: math.unit(6, "feet"),
  34959. name: "Front",
  34960. image: {
  34961. source: "./media/characters/ramey/front.svg",
  34962. extra: 790/787,
  34963. bottom: 27/817
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(6, "feet"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(5 + 5/12, "feet"),
  34980. weight: math.unit(120, "lb"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/phirae/front.svg",
  34984. extra: 2491/2436,
  34985. bottom: 38/2529
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Normal",
  34992. height: math.unit(5 + 5/12, "feet"),
  34993. default: true
  34994. },
  34995. ]
  34996. ))
  34997. characterMakers.push(() => makeCharacter(
  34998. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34999. {
  35000. front: {
  35001. height: math.unit(5 + 3/12, "feet"),
  35002. name: "Front",
  35003. image: {
  35004. source: "./media/characters/stagglas/front.svg",
  35005. extra: 962/882,
  35006. bottom: 53/1015
  35007. }
  35008. },
  35009. feral: {
  35010. height: math.unit(335, "cm"),
  35011. name: "Feral",
  35012. image: {
  35013. source: "./media/characters/stagglas/feral.svg",
  35014. extra: 1732/1090,
  35015. bottom: 48/1780
  35016. }
  35017. },
  35018. },
  35019. [
  35020. {
  35021. name: "Normal",
  35022. height: math.unit(5 + 3/12, "feet"),
  35023. default: true
  35024. },
  35025. ]
  35026. ))
  35027. characterMakers.push(() => makeCharacter(
  35028. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35029. {
  35030. front: {
  35031. height: math.unit(5 + 4/12, "feet"),
  35032. weight: math.unit(145, "lb"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/starra/front.svg",
  35036. extra: 1790/1691,
  35037. bottom: 91/1881
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(5 + 4/12, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(2.2, "meters"),
  35054. name: "Front",
  35055. image: {
  35056. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35057. extra: 1194/1005,
  35058. bottom: 25/1219
  35059. }
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(2.2, "meters"),
  35066. default: true
  35067. },
  35068. ]
  35069. ))
  35070. characterMakers.push(() => makeCharacter(
  35071. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35072. {
  35073. side: {
  35074. height: math.unit(8 + 2/12, "feet"),
  35075. weight: math.unit(1240, "lb"),
  35076. name: "Side",
  35077. image: {
  35078. source: "./media/characters/mika-valentine/side.svg",
  35079. extra: 2670/2501,
  35080. bottom: 250/2920
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Normal",
  35087. height: math.unit(8 + 2/12, "feet"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(7 + 2/12, "feet"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/xoltol/front.svg",
  35100. extra: 2212/2124,
  35101. bottom: 84/2296
  35102. }
  35103. },
  35104. side: {
  35105. height: math.unit(7 + 2/12, "feet"),
  35106. name: "Side",
  35107. image: {
  35108. source: "./media/characters/xoltol/side.svg",
  35109. extra: 2273/2197,
  35110. bottom: 26/2299
  35111. }
  35112. },
  35113. hand: {
  35114. height: math.unit(2.5, "feet"),
  35115. name: "Hand",
  35116. image: {
  35117. source: "./media/characters/xoltol/hand.svg"
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Small-ish",
  35124. height: math.unit(5 + 11/12, "feet")
  35125. },
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(7 + 2/12, "feet")
  35129. },
  35130. {
  35131. name: "\"Macro\"",
  35132. height: math.unit(14 + 9/12, "feet"),
  35133. default: true
  35134. },
  35135. {
  35136. name: "Alternate Height",
  35137. height: math.unit(20, "feet")
  35138. },
  35139. {
  35140. name: "Actually Macro",
  35141. height: math.unit(100, "feet")
  35142. },
  35143. ]
  35144. ))
  35145. characterMakers.push(() => makeCharacter(
  35146. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35147. {
  35148. front: {
  35149. height: math.unit(5 + 2/12, "feet"),
  35150. name: "Front",
  35151. image: {
  35152. source: "./media/characters/kotetsu-redwood/front.svg",
  35153. extra: 1053/942,
  35154. bottom: 60/1113
  35155. }
  35156. },
  35157. },
  35158. [
  35159. {
  35160. name: "Normal",
  35161. height: math.unit(5 + 2/12, "feet"),
  35162. default: true
  35163. },
  35164. ]
  35165. ))
  35166. characterMakers.push(() => makeCharacter(
  35167. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35168. {
  35169. front: {
  35170. height: math.unit(2.4, "meters"),
  35171. weight: math.unit(125, "kg"),
  35172. name: "Front",
  35173. image: {
  35174. source: "./media/characters/lilith/front.svg",
  35175. extra: 1590/1513,
  35176. bottom: 203/1793
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Humanoid",
  35183. height: math.unit(2.4, "meters")
  35184. },
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(6, "meters"),
  35188. default: true
  35189. },
  35190. {
  35191. name: "Largest",
  35192. height: math.unit(55, "meters")
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35198. {
  35199. front: {
  35200. height: math.unit(8 + 4/12, "feet"),
  35201. weight: math.unit(535, "lb"),
  35202. name: "Front",
  35203. image: {
  35204. source: "./media/characters/beh'kah-bolger/front.svg",
  35205. extra: 1660/1603,
  35206. bottom: 37/1697
  35207. }
  35208. },
  35209. },
  35210. [
  35211. {
  35212. name: "Normal",
  35213. height: math.unit(8 + 4/12, "feet"),
  35214. default: true
  35215. },
  35216. {
  35217. name: "Kaiju",
  35218. height: math.unit(250, "feet")
  35219. },
  35220. {
  35221. name: "Still Growing",
  35222. height: math.unit(10, "miles")
  35223. },
  35224. {
  35225. name: "Continental",
  35226. height: math.unit(5000, "miles")
  35227. },
  35228. {
  35229. name: "Final Form",
  35230. height: math.unit(2500000, "miles")
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35236. {
  35237. front: {
  35238. height: math.unit(7 + 2/12, "feet"),
  35239. weight: math.unit(230, "kg"),
  35240. name: "Front",
  35241. image: {
  35242. source: "./media/characters/tatyana-milewska/front.svg",
  35243. extra: 1199/1150,
  35244. bottom: 86/1285
  35245. }
  35246. },
  35247. },
  35248. [
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(7 + 2/12, "feet"),
  35252. default: true
  35253. },
  35254. {
  35255. name: "Big",
  35256. height: math.unit(12, "feet")
  35257. },
  35258. {
  35259. name: "Minimacro",
  35260. height: math.unit(20, "feet")
  35261. },
  35262. {
  35263. name: "Macro",
  35264. height: math.unit(120, "feet")
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(7 + 8/12, "feet"),
  35273. weight: math.unit(152, "kg"),
  35274. name: "Front",
  35275. image: {
  35276. source: "./media/characters/helen-arri/front.svg",
  35277. extra: 440/423,
  35278. bottom: 14/454
  35279. }
  35280. },
  35281. back: {
  35282. height: math.unit(7 + 8/12, "feet"),
  35283. weight: math.unit(152, "kg"),
  35284. name: "Back",
  35285. image: {
  35286. source: "./media/characters/helen-arri/back.svg",
  35287. extra: 443/426,
  35288. bottom: 8/451
  35289. }
  35290. },
  35291. },
  35292. [
  35293. {
  35294. name: "Normal",
  35295. height: math.unit(7 + 8/12, "feet"),
  35296. default: true
  35297. },
  35298. {
  35299. name: "Big",
  35300. height: math.unit(14, "feet")
  35301. },
  35302. {
  35303. name: "Minimacro",
  35304. height: math.unit(24, "feet")
  35305. },
  35306. {
  35307. name: "Macro",
  35308. height: math.unit(140, "feet")
  35309. },
  35310. ]
  35311. ))
  35312. characterMakers.push(() => makeCharacter(
  35313. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35314. {
  35315. front: {
  35316. height: math.unit(6, "meters"),
  35317. name: "Front",
  35318. image: {
  35319. source: "./media/characters/ehanu-rehu/front.svg",
  35320. extra: 1800/1800,
  35321. bottom: 59/1859
  35322. }
  35323. },
  35324. },
  35325. [
  35326. {
  35327. name: "Normal",
  35328. height: math.unit(6, "meters"),
  35329. default: true
  35330. },
  35331. ]
  35332. ))
  35333. characterMakers.push(() => makeCharacter(
  35334. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35335. {
  35336. front: {
  35337. height: math.unit(7 + 3/12, "feet"),
  35338. name: "Front",
  35339. image: {
  35340. source: "./media/characters/renholder/front.svg",
  35341. extra: 3096/2960,
  35342. bottom: 250/3346
  35343. }
  35344. },
  35345. },
  35346. [
  35347. {
  35348. name: "Normal Bat",
  35349. height: math.unit(7 + 3/12, "feet"),
  35350. default: true
  35351. },
  35352. {
  35353. name: "Slightly Tall Bat",
  35354. height: math.unit(100, "feet")
  35355. },
  35356. {
  35357. name: "Big Bat",
  35358. height: math.unit(1000, "feet")
  35359. },
  35360. {
  35361. name: "City-Sized Bat",
  35362. height: math.unit(200000, "feet")
  35363. },
  35364. {
  35365. name: "Bigger Bat",
  35366. height: math.unit(10000, "miles")
  35367. },
  35368. {
  35369. name: "Solar Sized Bat",
  35370. height: math.unit(100, "AU")
  35371. },
  35372. {
  35373. name: "Galactic Bat",
  35374. height: math.unit(200000, "lightyears")
  35375. },
  35376. {
  35377. name: "Universally Known Bat",
  35378. height: math.unit(1, "universe")
  35379. },
  35380. ]
  35381. ))
  35382. characterMakers.push(() => makeCharacter(
  35383. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35384. {
  35385. front: {
  35386. height: math.unit(6 + 11/12, "feet"),
  35387. weight: math.unit(250, "lb"),
  35388. name: "Front",
  35389. image: {
  35390. source: "./media/characters/cookiecat/front.svg",
  35391. extra: 893/827,
  35392. bottom: 14/907
  35393. }
  35394. },
  35395. },
  35396. [
  35397. {
  35398. name: "Micro",
  35399. height: math.unit(3, "inches")
  35400. },
  35401. {
  35402. name: "Normal",
  35403. height: math.unit(6 + 11/12, "feet"),
  35404. default: true
  35405. },
  35406. {
  35407. name: "Macro",
  35408. height: math.unit(100, "feet")
  35409. },
  35410. {
  35411. name: "Macro+",
  35412. height: math.unit(404, "feet")
  35413. },
  35414. {
  35415. name: "Megamacro",
  35416. height: math.unit(165, "miles")
  35417. },
  35418. {
  35419. name: "Planetary",
  35420. height: math.unit(4600, "miles")
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(10 + 3/12, "feet"),
  35429. weight: math.unit(1500, "lb"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/tux-kusanagi/front.svg",
  35433. extra: 944/840,
  35434. bottom: 39/983
  35435. }
  35436. },
  35437. back: {
  35438. height: math.unit(10 + 3/12, "feet"),
  35439. weight: math.unit(1500, "lb"),
  35440. name: "Back",
  35441. image: {
  35442. source: "./media/characters/tux-kusanagi/back.svg",
  35443. extra: 941/842,
  35444. bottom: 28/969
  35445. }
  35446. },
  35447. rump: {
  35448. height: math.unit(5.25, "feet"),
  35449. name: "Rump",
  35450. image: {
  35451. source: "./media/characters/tux-kusanagi/rump.svg"
  35452. }
  35453. },
  35454. beak: {
  35455. height: math.unit(1.54, "feet"),
  35456. name: "Beak",
  35457. image: {
  35458. source: "./media/characters/tux-kusanagi/beak.svg"
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(10 + 3/12, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(58, "feet"),
  35475. weight: math.unit(200, "tons"),
  35476. name: "Front",
  35477. image: {
  35478. source: "./media/characters/uzarmazari/front.svg",
  35479. extra: 1575/1455,
  35480. bottom: 152/1727
  35481. }
  35482. },
  35483. back: {
  35484. height: math.unit(58, "feet"),
  35485. weight: math.unit(200, "tons"),
  35486. name: "Back",
  35487. image: {
  35488. source: "./media/characters/uzarmazari/back.svg",
  35489. extra: 1585/1510,
  35490. bottom: 157/1742
  35491. }
  35492. },
  35493. head: {
  35494. height: math.unit(26, "feet"),
  35495. name: "Head",
  35496. image: {
  35497. source: "./media/characters/uzarmazari/head.svg"
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Normal",
  35504. height: math.unit(58, "feet"),
  35505. default: true
  35506. },
  35507. ]
  35508. ))
  35509. characterMakers.push(() => makeCharacter(
  35510. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35511. {
  35512. side: {
  35513. height: math.unit(15, "feet"),
  35514. name: "Side",
  35515. image: {
  35516. source: "./media/characters/akitu/side.svg",
  35517. extra: 1421/1321,
  35518. bottom: 157/1578
  35519. }
  35520. },
  35521. front: {
  35522. height: math.unit(15, "feet"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/akitu/front.svg",
  35526. extra: 1435/1326,
  35527. bottom: 232/1667
  35528. }
  35529. },
  35530. },
  35531. [
  35532. {
  35533. name: "Normal",
  35534. height: math.unit(15, "feet"),
  35535. default: true
  35536. },
  35537. ]
  35538. ))
  35539. characterMakers.push(() => makeCharacter(
  35540. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35541. {
  35542. front: {
  35543. height: math.unit(10 + 8/12, "feet"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/azalie-croixland/front.svg",
  35547. extra: 1972/1856,
  35548. bottom: 31/2003
  35549. }
  35550. },
  35551. },
  35552. [
  35553. {
  35554. name: "Original Height",
  35555. height: math.unit(5 + 4/12, "feet")
  35556. },
  35557. {
  35558. name: "Normal Height",
  35559. height: math.unit(10 + 8/12, "feet"),
  35560. default: true
  35561. },
  35562. ]
  35563. ))
  35564. characterMakers.push(() => makeCharacter(
  35565. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35566. {
  35567. side: {
  35568. height: math.unit(7 + 1/12, "feet"),
  35569. weight: math.unit(245, "lb"),
  35570. name: "Side",
  35571. image: {
  35572. source: "./media/characters/kavus-kazian/side.svg",
  35573. extra: 349/342,
  35574. bottom: 15/364
  35575. }
  35576. },
  35577. },
  35578. [
  35579. {
  35580. name: "Normal",
  35581. height: math.unit(7 + 1/12, "feet"),
  35582. default: true
  35583. },
  35584. ]
  35585. ))
  35586. characterMakers.push(() => makeCharacter(
  35587. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35588. {
  35589. normalFront: {
  35590. height: math.unit(5 + 11/12, "feet"),
  35591. name: "Front",
  35592. image: {
  35593. source: "./media/characters/moonlight-rose/normal-front.svg",
  35594. extra: 1980/1825,
  35595. bottom: 18/1998
  35596. },
  35597. form: "normal",
  35598. default: true
  35599. },
  35600. normalBack: {
  35601. height: math.unit(5 + 11/12, "feet"),
  35602. name: "Back",
  35603. image: {
  35604. source: "./media/characters/moonlight-rose/normal-back.svg",
  35605. extra: 2010/1839,
  35606. bottom: 10/2020
  35607. },
  35608. form: "normal"
  35609. },
  35610. demonFront: {
  35611. height: math.unit(1.5, "earths"),
  35612. name: "Front",
  35613. image: {
  35614. source: "./media/characters/moonlight-rose/demon.svg",
  35615. extra: 1400/1294,
  35616. bottom: 45/1445
  35617. },
  35618. form: "demon",
  35619. default: true
  35620. },
  35621. terraFront: {
  35622. height: math.unit(1.5, "earths"),
  35623. name: "Front",
  35624. image: {
  35625. source: "./media/characters/moonlight-rose/terra.svg"
  35626. },
  35627. form: "terra",
  35628. default: true
  35629. },
  35630. jupiterFront: {
  35631. height: math.unit(69911*2, "km"),
  35632. name: "Front",
  35633. image: {
  35634. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35635. extra: 1367/1286,
  35636. bottom: 55/1422
  35637. },
  35638. form: "jupiter",
  35639. default: true
  35640. },
  35641. neptuneFront: {
  35642. height: math.unit(24622*2, "feet"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35646. extra: 1851/1712,
  35647. bottom: 0/1851
  35648. },
  35649. form: "neptune",
  35650. default: true
  35651. },
  35652. },
  35653. [
  35654. {
  35655. name: "\"Natural\" Height",
  35656. height: math.unit(5 + 11/12, "feet"),
  35657. form: "normal"
  35658. },
  35659. {
  35660. name: "Smallest comfortable size",
  35661. height: math.unit(40, "meters"),
  35662. form: "normal"
  35663. },
  35664. {
  35665. name: "Common size",
  35666. height: math.unit(50, "km"),
  35667. form: "normal",
  35668. default: true
  35669. },
  35670. {
  35671. name: "Normal",
  35672. height: math.unit(1.5, "earths"),
  35673. form: "demon",
  35674. default: true
  35675. },
  35676. {
  35677. name: "Universal",
  35678. height: math.unit(15, "universes"),
  35679. form: "demon"
  35680. },
  35681. {
  35682. name: "Earth",
  35683. height: math.unit(1.5, "earths"),
  35684. form: "terra",
  35685. default: true
  35686. },
  35687. {
  35688. name: "Super Earth",
  35689. height: math.unit(67.5, "earths"),
  35690. form: "terra"
  35691. },
  35692. {
  35693. name: "Doesn't fit in a solar system...",
  35694. height: math.unit(1, "galaxy"),
  35695. form: "terra"
  35696. },
  35697. {
  35698. name: "Saturn",
  35699. height: math.unit(58232*2, "km"),
  35700. form: "jupiter"
  35701. },
  35702. {
  35703. name: "Jupiter",
  35704. height: math.unit(69911*2, "km"),
  35705. form: "jupiter",
  35706. default: true
  35707. },
  35708. {
  35709. name: "HD 100546 b",
  35710. height: math.unit(482938, "km"),
  35711. form: "jupiter"
  35712. },
  35713. {
  35714. name: "Enceladus",
  35715. height: math.unit(513*2, "km"),
  35716. form: "neptune"
  35717. },
  35718. {
  35719. name: "Europe",
  35720. height: math.unit(1560*2, "km"),
  35721. form: "neptune"
  35722. },
  35723. {
  35724. name: "Neptune",
  35725. height: math.unit(24622*2, "km"),
  35726. form: "neptune",
  35727. default: true
  35728. },
  35729. {
  35730. name: "CoRoT-9b",
  35731. height: math.unit(75067*2, "km"),
  35732. form: "neptune"
  35733. },
  35734. ],
  35735. {
  35736. "normal": {
  35737. name: "Normal",
  35738. default: true
  35739. },
  35740. "demon": {
  35741. name: "Demon"
  35742. },
  35743. "terra": {
  35744. name: "Terra"
  35745. },
  35746. "jupiter": {
  35747. name: "Jupiter"
  35748. },
  35749. "neptune": {
  35750. name: "Neptune"
  35751. }
  35752. }
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35756. {
  35757. front: {
  35758. height: math.unit(16, "feet"),
  35759. weight: math.unit(610, "kg"),
  35760. name: "Front",
  35761. image: {
  35762. source: "./media/characters/huckle/front.svg",
  35763. extra: 1731/1625,
  35764. bottom: 33/1764
  35765. }
  35766. },
  35767. back: {
  35768. height: math.unit(16, "feet"),
  35769. weight: math.unit(610, "kg"),
  35770. name: "Back",
  35771. image: {
  35772. source: "./media/characters/huckle/back.svg",
  35773. extra: 1738/1651,
  35774. bottom: 37/1775
  35775. }
  35776. },
  35777. laughing: {
  35778. height: math.unit(3.75, "feet"),
  35779. name: "Laughing",
  35780. image: {
  35781. source: "./media/characters/huckle/laughing.svg"
  35782. }
  35783. },
  35784. angry: {
  35785. height: math.unit(4.15, "feet"),
  35786. name: "Angry",
  35787. image: {
  35788. source: "./media/characters/huckle/angry.svg"
  35789. }
  35790. },
  35791. },
  35792. [
  35793. {
  35794. name: "Normal",
  35795. height: math.unit(16, "feet"),
  35796. default: true
  35797. },
  35798. {
  35799. name: "Mini Macro",
  35800. height: math.unit(463, "feet")
  35801. },
  35802. {
  35803. name: "Macro",
  35804. height: math.unit(1680, "meters")
  35805. },
  35806. {
  35807. name: "Mega Macro",
  35808. height: math.unit(175, "km")
  35809. },
  35810. {
  35811. name: "Terra Macro",
  35812. height: math.unit(32, "gigameters")
  35813. },
  35814. {
  35815. name: "Multiverse+",
  35816. height: math.unit(2.56e23, "yottameters")
  35817. },
  35818. ]
  35819. ))
  35820. characterMakers.push(() => makeCharacter(
  35821. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35822. {
  35823. front: {
  35824. height: math.unit(6 + 9/12, "feet"),
  35825. weight: math.unit(280, "lb"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/candy/front.svg",
  35829. extra: 234/217,
  35830. bottom: 11/245
  35831. }
  35832. },
  35833. },
  35834. [
  35835. {
  35836. name: "Really Small",
  35837. height: math.unit(0.1, "nm")
  35838. },
  35839. {
  35840. name: "Micro",
  35841. height: math.unit(2, "inches")
  35842. },
  35843. {
  35844. name: "Normal",
  35845. height: math.unit(6 + 9/12, "feet"),
  35846. default: true
  35847. },
  35848. {
  35849. name: "Small Macro",
  35850. height: math.unit(69, "feet")
  35851. },
  35852. {
  35853. name: "Macro",
  35854. height: math.unit(160, "feet")
  35855. },
  35856. {
  35857. name: "Megamacro",
  35858. height: math.unit(22000, "miles")
  35859. },
  35860. {
  35861. name: "Gigamacro",
  35862. height: math.unit(50000, "miles")
  35863. },
  35864. ]
  35865. ))
  35866. characterMakers.push(() => makeCharacter(
  35867. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35868. {
  35869. front: {
  35870. height: math.unit(4, "feet"),
  35871. weight: math.unit(90, "lb"),
  35872. name: "Front",
  35873. image: {
  35874. source: "./media/characters/joey-mcdonald/front.svg",
  35875. extra: 1059/852,
  35876. bottom: 33/1092
  35877. }
  35878. },
  35879. back: {
  35880. height: math.unit(4, "feet"),
  35881. weight: math.unit(90, "lb"),
  35882. name: "Back",
  35883. image: {
  35884. source: "./media/characters/joey-mcdonald/back.svg",
  35885. extra: 1077/879,
  35886. bottom: 5/1082
  35887. }
  35888. },
  35889. frontKobold: {
  35890. height: math.unit(4, "feet"),
  35891. weight: math.unit(100, "lb"),
  35892. name: "Front-kobold",
  35893. image: {
  35894. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35895. extra: 1480/1367,
  35896. bottom: 0/1480
  35897. }
  35898. },
  35899. backKobold: {
  35900. height: math.unit(4, "feet"),
  35901. weight: math.unit(100, "lb"),
  35902. name: "Back-kobold",
  35903. image: {
  35904. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35905. extra: 1449/1361,
  35906. bottom: 0/1449
  35907. }
  35908. },
  35909. },
  35910. [
  35911. {
  35912. name: "Normal",
  35913. height: math.unit(4, "feet"),
  35914. default: true
  35915. },
  35916. ]
  35917. ))
  35918. characterMakers.push(() => makeCharacter(
  35919. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35920. {
  35921. front: {
  35922. height: math.unit(12 + 6/12, "feet"),
  35923. name: "Front",
  35924. image: {
  35925. source: "./media/characters/kass-lockheed/front.svg",
  35926. extra: 354/343,
  35927. bottom: 9/363
  35928. }
  35929. },
  35930. back: {
  35931. height: math.unit(12 + 6/12, "feet"),
  35932. name: "Back",
  35933. image: {
  35934. source: "./media/characters/kass-lockheed/back.svg",
  35935. extra: 364/352,
  35936. bottom: 3/367
  35937. }
  35938. },
  35939. dick: {
  35940. height: math.unit(3.12, "feet"),
  35941. name: "Dick",
  35942. image: {
  35943. source: "./media/characters/kass-lockheed/dick.svg"
  35944. }
  35945. },
  35946. head: {
  35947. height: math.unit(2.6, "feet"),
  35948. name: "Head",
  35949. image: {
  35950. source: "./media/characters/kass-lockheed/head.svg"
  35951. }
  35952. },
  35953. bleh: {
  35954. height: math.unit(2.85, "feet"),
  35955. name: "Bleh",
  35956. image: {
  35957. source: "./media/characters/kass-lockheed/bleh.svg"
  35958. }
  35959. },
  35960. smug: {
  35961. height: math.unit(2.85, "feet"),
  35962. name: "Smug",
  35963. image: {
  35964. source: "./media/characters/kass-lockheed/smug.svg"
  35965. }
  35966. },
  35967. },
  35968. [
  35969. {
  35970. name: "Normal",
  35971. height: math.unit(12 + 6/12, "feet"),
  35972. default: true
  35973. },
  35974. ]
  35975. ))
  35976. characterMakers.push(() => makeCharacter(
  35977. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35978. {
  35979. front: {
  35980. height: math.unit(6 + 2/12, "feet"),
  35981. name: "Front",
  35982. image: {
  35983. source: "./media/characters/taylor/front.svg",
  35984. extra: 639/495,
  35985. bottom: 12/651
  35986. }
  35987. },
  35988. },
  35989. [
  35990. {
  35991. name: "Normal",
  35992. height: math.unit(6 + 2/12, "feet"),
  35993. default: true
  35994. },
  35995. {
  35996. name: "Big",
  35997. height: math.unit(15, "feet")
  35998. },
  35999. {
  36000. name: "Lorg",
  36001. height: math.unit(80, "feet")
  36002. },
  36003. {
  36004. name: "Too Lorg",
  36005. height: math.unit(120, "feet")
  36006. },
  36007. ]
  36008. ))
  36009. characterMakers.push(() => makeCharacter(
  36010. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36011. {
  36012. front: {
  36013. height: math.unit(15, "feet"),
  36014. name: "Front",
  36015. image: {
  36016. source: "./media/characters/kaizer/front.svg",
  36017. extra: 1612/1436,
  36018. bottom: 43/1655
  36019. }
  36020. },
  36021. },
  36022. [
  36023. {
  36024. name: "Normal",
  36025. height: math.unit(15, "feet"),
  36026. default: true
  36027. },
  36028. ]
  36029. ))
  36030. characterMakers.push(() => makeCharacter(
  36031. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36032. {
  36033. front: {
  36034. height: math.unit(2, "feet"),
  36035. weight: math.unit(30, "lb"),
  36036. name: "Front",
  36037. image: {
  36038. source: "./media/characters/sandy/front.svg",
  36039. extra: 1439/1307,
  36040. bottom: 194/1633
  36041. }
  36042. },
  36043. },
  36044. [
  36045. {
  36046. name: "Normal",
  36047. height: math.unit(2, "feet"),
  36048. default: true
  36049. },
  36050. ]
  36051. ))
  36052. characterMakers.push(() => makeCharacter(
  36053. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36054. {
  36055. front: {
  36056. height: math.unit(3, "feet"),
  36057. name: "Front",
  36058. image: {
  36059. source: "./media/characters/mellvi/front.svg",
  36060. extra: 1831/1630,
  36061. bottom: 58/1889
  36062. }
  36063. },
  36064. },
  36065. [
  36066. {
  36067. name: "Normal",
  36068. height: math.unit(3, "feet"),
  36069. default: true
  36070. },
  36071. ]
  36072. ))
  36073. characterMakers.push(() => makeCharacter(
  36074. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36075. {
  36076. front: {
  36077. height: math.unit(5 + 11/12, "feet"),
  36078. weight: math.unit(200, "lb"),
  36079. name: "Front",
  36080. image: {
  36081. source: "./media/characters/shirou/front.svg",
  36082. extra: 2491/2383,
  36083. bottom: 189/2680
  36084. }
  36085. },
  36086. back: {
  36087. height: math.unit(5 + 11/12, "feet"),
  36088. weight: math.unit(200, "lb"),
  36089. name: "Back",
  36090. image: {
  36091. source: "./media/characters/shirou/back.svg",
  36092. extra: 2554/2450,
  36093. bottom: 76/2630
  36094. }
  36095. },
  36096. },
  36097. [
  36098. {
  36099. name: "Normal",
  36100. height: math.unit(5 + 11/12, "feet"),
  36101. default: true
  36102. },
  36103. ]
  36104. ))
  36105. characterMakers.push(() => makeCharacter(
  36106. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36107. {
  36108. front: {
  36109. height: math.unit(6 + 3/12, "feet"),
  36110. weight: math.unit(177, "lb"),
  36111. name: "Front",
  36112. image: {
  36113. source: "./media/characters/noryu/front.svg",
  36114. extra: 973/885,
  36115. bottom: 10/983
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(6 + 3/12, "feet"),
  36123. default: true
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(5 + 6/12, "feet"),
  36132. weight: math.unit(170, "lb"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/mevolas-rubenido/front.svg",
  36136. extra: 2109/1901,
  36137. bottom: 96/2205
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(5 + 6/12, "feet"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36151. {
  36152. front: {
  36153. height: math.unit(100, "feet"),
  36154. name: "Front",
  36155. image: {
  36156. source: "./media/characters/dee/front.svg",
  36157. extra: 2153/2036,
  36158. bottom: 59/2212
  36159. }
  36160. },
  36161. back: {
  36162. height: math.unit(100, "feet"),
  36163. name: "Back",
  36164. image: {
  36165. source: "./media/characters/dee/back.svg",
  36166. extra: 2183/2058,
  36167. bottom: 75/2258
  36168. }
  36169. },
  36170. foot: {
  36171. height: math.unit(19.43, "feet"),
  36172. name: "Foot",
  36173. image: {
  36174. source: "./media/characters/dee/foot.svg"
  36175. }
  36176. },
  36177. hoof: {
  36178. height: math.unit(20.6, "feet"),
  36179. name: "Hoof",
  36180. image: {
  36181. source: "./media/characters/dee/hoof.svg"
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Macro",
  36188. height: math.unit(100, "feet"),
  36189. default: true
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(5 + 6/12, "feet"),
  36198. name: "Front",
  36199. image: {
  36200. source: "./media/characters/teh/front.svg",
  36201. extra: 1002/847,
  36202. bottom: 62/1064
  36203. }
  36204. },
  36205. },
  36206. [
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(5 + 6/12, "feet"),
  36210. default: true
  36211. },
  36212. ]
  36213. ))
  36214. characterMakers.push(() => makeCharacter(
  36215. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36216. {
  36217. side: {
  36218. height: math.unit(6 + 1/12, "feet"),
  36219. weight: math.unit(204, "lb"),
  36220. name: "Side",
  36221. image: {
  36222. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36223. extra: 974/775,
  36224. bottom: 169/1143
  36225. }
  36226. },
  36227. sitting: {
  36228. height: math.unit(6 + 2/12, "feet"),
  36229. weight: math.unit(204, "lb"),
  36230. name: "Sitting",
  36231. image: {
  36232. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36233. extra: 1175/964,
  36234. bottom: 378/1553
  36235. }
  36236. },
  36237. },
  36238. [
  36239. {
  36240. name: "Normal",
  36241. height: math.unit(6 + 1/12, "feet"),
  36242. default: true
  36243. },
  36244. ]
  36245. ))
  36246. characterMakers.push(() => makeCharacter(
  36247. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36248. {
  36249. front: {
  36250. height: math.unit(6, "inches"),
  36251. name: "Front",
  36252. image: {
  36253. source: "./media/characters/tululi/front.svg",
  36254. extra: 1997/1876,
  36255. bottom: 20/2017
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(6, "inches"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(4 + 1/12, "feet"),
  36272. name: "Front",
  36273. image: {
  36274. source: "./media/characters/star/front.svg",
  36275. extra: 1493/1189,
  36276. bottom: 48/1541
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(4 + 1/12, "feet"),
  36284. default: true
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36290. {
  36291. front: {
  36292. height: math.unit(6 + 3/12, "feet"),
  36293. name: "Front",
  36294. image: {
  36295. source: "./media/characters/comet/front.svg",
  36296. extra: 1681/1462,
  36297. bottom: 26/1707
  36298. }
  36299. },
  36300. },
  36301. [
  36302. {
  36303. name: "Normal",
  36304. height: math.unit(6 + 3/12, "feet"),
  36305. default: true
  36306. },
  36307. ]
  36308. ))
  36309. characterMakers.push(() => makeCharacter(
  36310. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36311. {
  36312. front: {
  36313. height: math.unit(950, "feet"),
  36314. name: "Front",
  36315. image: {
  36316. source: "./media/characters/vortex/front.svg",
  36317. extra: 1497/1434,
  36318. bottom: 56/1553
  36319. }
  36320. },
  36321. maw: {
  36322. height: math.unit(285, "feet"),
  36323. name: "Maw",
  36324. image: {
  36325. source: "./media/characters/vortex/maw.svg"
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Macro",
  36332. height: math.unit(950, "feet"),
  36333. default: true
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36339. {
  36340. front: {
  36341. height: math.unit(600, "feet"),
  36342. weight: math.unit(0.02, "grams"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/doodle/front.svg",
  36346. extra: 1578/1413,
  36347. bottom: 37/1615
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Macro",
  36354. height: math.unit(600, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(6 + 6/12, "feet"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/jai/front.svg",
  36367. extra: 1645/1534,
  36368. bottom: 115/1760
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(6 + 6/12, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(6 + 8/12, "feet"),
  36385. name: "Front",
  36386. image: {
  36387. source: "./media/characters/pixel/front.svg",
  36388. extra: 1900/1735,
  36389. bottom: 63/1963
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(6 + 8/12, "feet"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36403. {
  36404. back: {
  36405. height: math.unit(4 + 1/12, "feet"),
  36406. weight: math.unit(75, "lb"),
  36407. name: "Back",
  36408. image: {
  36409. source: "./media/characters/rhett/back.svg",
  36410. extra: 930/878,
  36411. bottom: 25/955
  36412. }
  36413. },
  36414. front: {
  36415. height: math.unit(4 + 1/12, "feet"),
  36416. weight: math.unit(75, "lb"),
  36417. name: "Front",
  36418. image: {
  36419. source: "./media/characters/rhett/front.svg",
  36420. extra: 1682/1586,
  36421. bottom: 92/1774
  36422. }
  36423. },
  36424. },
  36425. [
  36426. {
  36427. name: "Micro",
  36428. height: math.unit(8, "inches")
  36429. },
  36430. {
  36431. name: "Tiny",
  36432. height: math.unit(2, "feet")
  36433. },
  36434. {
  36435. name: "Normal",
  36436. height: math.unit(4 + 1/12, "feet"),
  36437. default: true
  36438. },
  36439. ]
  36440. ))
  36441. characterMakers.push(() => makeCharacter(
  36442. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36443. {
  36444. front: {
  36445. height: math.unit(3 + 3/12, "feet"),
  36446. name: "Front",
  36447. image: {
  36448. source: "./media/characters/penny/front.svg",
  36449. extra: 1406/1311,
  36450. bottom: 26/1432
  36451. }
  36452. },
  36453. },
  36454. [
  36455. {
  36456. name: "Normal",
  36457. height: math.unit(3 + 3/12, "feet"),
  36458. default: true
  36459. },
  36460. ]
  36461. ))
  36462. characterMakers.push(() => makeCharacter(
  36463. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36464. {
  36465. front: {
  36466. height: math.unit(4 + 11/12, "feet"),
  36467. name: "Front",
  36468. image: {
  36469. source: "./media/characters/monty/front.svg",
  36470. extra: 1479/1209,
  36471. bottom: 0/1479
  36472. }
  36473. },
  36474. },
  36475. [
  36476. {
  36477. name: "Normal",
  36478. height: math.unit(4 + 11/12, "feet"),
  36479. default: true
  36480. },
  36481. ]
  36482. ))
  36483. characterMakers.push(() => makeCharacter(
  36484. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36485. {
  36486. front: {
  36487. height: math.unit(8 + 4/12, "feet"),
  36488. name: "Front",
  36489. image: {
  36490. source: "./media/characters/sterling/front.svg",
  36491. extra: 1420/1236,
  36492. bottom: 27/1447
  36493. }
  36494. },
  36495. },
  36496. [
  36497. {
  36498. name: "Normal",
  36499. height: math.unit(8 + 4/12, "feet"),
  36500. default: true
  36501. },
  36502. ]
  36503. ))
  36504. characterMakers.push(() => makeCharacter(
  36505. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36506. {
  36507. front: {
  36508. height: math.unit(15, "feet"),
  36509. name: "Front",
  36510. image: {
  36511. source: "./media/characters/marble/front.svg",
  36512. extra: 973/937,
  36513. bottom: 32/1005
  36514. }
  36515. },
  36516. },
  36517. [
  36518. {
  36519. name: "Normal",
  36520. height: math.unit(15, "feet"),
  36521. default: true
  36522. },
  36523. ]
  36524. ))
  36525. characterMakers.push(() => makeCharacter(
  36526. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36527. {
  36528. front: {
  36529. height: math.unit(3, "inches"),
  36530. name: "Front",
  36531. image: {
  36532. source: "./media/characters/powder/front.svg",
  36533. extra: 1504/1334,
  36534. bottom: 518/2022
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Normal",
  36541. height: math.unit(3, "inches"),
  36542. default: true
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36548. {
  36549. front: {
  36550. height: math.unit(4 + 5/12, "feet"),
  36551. name: "Front",
  36552. image: {
  36553. source: "./media/characters/joey-raccoon/front.svg",
  36554. extra: 1273/1197,
  36555. bottom: 0/1273
  36556. }
  36557. },
  36558. },
  36559. [
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(4 + 5/12, "feet"),
  36563. default: true
  36564. },
  36565. ]
  36566. ))
  36567. characterMakers.push(() => makeCharacter(
  36568. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36569. {
  36570. front: {
  36571. height: math.unit(8 + 4/12, "feet"),
  36572. name: "Front",
  36573. image: {
  36574. source: "./media/characters/vick/front.svg",
  36575. extra: 2187/2118,
  36576. bottom: 47/2234
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Normal",
  36583. height: math.unit(8 + 4/12, "feet"),
  36584. default: true
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36590. {
  36591. front: {
  36592. height: math.unit(5 + 5/12, "feet"),
  36593. name: "Front",
  36594. image: {
  36595. source: "./media/characters/mitsy/front.svg",
  36596. extra: 1842/1695,
  36597. bottom: 0/1842
  36598. }
  36599. },
  36600. },
  36601. [
  36602. {
  36603. name: "Normal",
  36604. height: math.unit(5 + 5/12, "feet"),
  36605. default: true
  36606. },
  36607. ]
  36608. ))
  36609. characterMakers.push(() => makeCharacter(
  36610. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36611. {
  36612. front: {
  36613. height: math.unit(6 + 3/12, "feet"),
  36614. name: "Front",
  36615. image: {
  36616. source: "./media/characters/silvy/front.svg",
  36617. extra: 1995/1836,
  36618. bottom: 225/2220
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(6 + 3/12, "feet"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(3 + 8/12, "feet"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/rodney/front.svg",
  36638. extra: 1956/1747,
  36639. bottom: 31/1987
  36640. }
  36641. },
  36642. frontDressed: {
  36643. height: math.unit(2.9, "feet"),
  36644. name: "Front (Dressed)",
  36645. image: {
  36646. source: "./media/characters/rodney/front-dressed.svg",
  36647. extra: 1382/1241,
  36648. bottom: 385/1767
  36649. }
  36650. },
  36651. },
  36652. [
  36653. {
  36654. name: "Normal",
  36655. height: math.unit(3 + 8/12, "feet"),
  36656. default: true
  36657. },
  36658. ]
  36659. ))
  36660. characterMakers.push(() => makeCharacter(
  36661. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36662. {
  36663. front: {
  36664. height: math.unit(5 + 9/12, "feet"),
  36665. weight: math.unit(194, "lbs"),
  36666. name: "Front",
  36667. image: {
  36668. source: "./media/characters/zakail-sudekai/front.svg",
  36669. extra: 2696/2533,
  36670. bottom: 248/2944
  36671. }
  36672. },
  36673. maw: {
  36674. height: math.unit(1.35, "feet"),
  36675. name: "Maw",
  36676. image: {
  36677. source: "./media/characters/zakail-sudekai/maw.svg"
  36678. }
  36679. },
  36680. },
  36681. [
  36682. {
  36683. name: "Normal",
  36684. height: math.unit(5 + 9/12, "feet"),
  36685. default: true
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36691. {
  36692. front: {
  36693. height: math.unit(8 + 4/12, "feet"),
  36694. weight: math.unit(1200, "lb"),
  36695. name: "Front",
  36696. image: {
  36697. source: "./media/characters/eleanor/front.svg",
  36698. extra: 1226/1192,
  36699. bottom: 52/1278
  36700. }
  36701. },
  36702. back: {
  36703. height: math.unit(8 + 4/12, "feet"),
  36704. weight: math.unit(1200, "lb"),
  36705. name: "Back",
  36706. image: {
  36707. source: "./media/characters/eleanor/back.svg",
  36708. extra: 1242/1184,
  36709. bottom: 60/1302
  36710. }
  36711. },
  36712. head: {
  36713. height: math.unit(2.62, "feet"),
  36714. name: "Head",
  36715. image: {
  36716. source: "./media/characters/eleanor/head.svg"
  36717. }
  36718. },
  36719. },
  36720. [
  36721. {
  36722. name: "Normal",
  36723. height: math.unit(8 + 4/12, "feet"),
  36724. default: true
  36725. },
  36726. ]
  36727. ))
  36728. characterMakers.push(() => makeCharacter(
  36729. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36730. {
  36731. front: {
  36732. height: math.unit(8 + 4/12, "feet"),
  36733. weight: math.unit(750, "lb"),
  36734. name: "Front",
  36735. image: {
  36736. source: "./media/characters/tanya/front.svg",
  36737. extra: 1749/1615,
  36738. bottom: 33/1782
  36739. }
  36740. },
  36741. },
  36742. [
  36743. {
  36744. name: "Normal",
  36745. height: math.unit(8 + 4/12, "feet"),
  36746. default: true
  36747. },
  36748. ]
  36749. ))
  36750. characterMakers.push(() => makeCharacter(
  36751. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36752. {
  36753. front: {
  36754. height: math.unit(5, "feet"),
  36755. weight: math.unit(225, "lb"),
  36756. name: "Front",
  36757. image: {
  36758. source: "./media/characters/cindy/front.svg",
  36759. extra: 1320/1250,
  36760. bottom: 42/1362
  36761. }
  36762. },
  36763. frontDressed: {
  36764. height: math.unit(5, "feet"),
  36765. weight: math.unit(225, "lb"),
  36766. name: "Front (Dressed)",
  36767. image: {
  36768. source: "./media/characters/cindy/front-dressed.svg",
  36769. extra: 1320/1250,
  36770. bottom: 42/1362
  36771. }
  36772. },
  36773. back: {
  36774. height: math.unit(5, "feet"),
  36775. weight: math.unit(225, "lb"),
  36776. name: "Back",
  36777. image: {
  36778. source: "./media/characters/cindy/back.svg",
  36779. extra: 1384/1346,
  36780. bottom: 14/1398
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Normal",
  36787. height: math.unit(5, "feet"),
  36788. default: true
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(6 + 9/12, "feet"),
  36797. weight: math.unit(440, "lb"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/wilbur-owen/front.svg",
  36801. extra: 1575/1448,
  36802. bottom: 72/1647
  36803. }
  36804. },
  36805. back: {
  36806. height: math.unit(6 + 9/12, "feet"),
  36807. weight: math.unit(440, "lb"),
  36808. name: "Back",
  36809. image: {
  36810. source: "./media/characters/wilbur-owen/back.svg",
  36811. extra: 1578/1445,
  36812. bottom: 36/1614
  36813. }
  36814. },
  36815. },
  36816. [
  36817. {
  36818. name: "Normal",
  36819. height: math.unit(6 + 9/12, "feet"),
  36820. default: true
  36821. },
  36822. ]
  36823. ))
  36824. characterMakers.push(() => makeCharacter(
  36825. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36826. {
  36827. front: {
  36828. height: math.unit(6 + 5/12, "feet"),
  36829. weight: math.unit(650, "lb"),
  36830. name: "Front",
  36831. image: {
  36832. source: "./media/characters/keegan/front.svg",
  36833. extra: 2387/2198,
  36834. bottom: 33/2420
  36835. }
  36836. },
  36837. side: {
  36838. height: math.unit(6 + 5/12, "feet"),
  36839. weight: math.unit(650, "lb"),
  36840. name: "Side",
  36841. image: {
  36842. source: "./media/characters/keegan/side.svg",
  36843. extra: 2390/2202,
  36844. bottom: 47/2437
  36845. }
  36846. },
  36847. back: {
  36848. height: math.unit(6 + 5/12, "feet"),
  36849. weight: math.unit(650, "lb"),
  36850. name: "Back",
  36851. image: {
  36852. source: "./media/characters/keegan/back.svg",
  36853. extra: 2418/2268,
  36854. bottom: 15/2433
  36855. }
  36856. },
  36857. frontSfw: {
  36858. height: math.unit(6 + 5/12, "feet"),
  36859. weight: math.unit(650, "lb"),
  36860. name: "Front (SFW)",
  36861. image: {
  36862. source: "./media/characters/keegan/front-sfw.svg",
  36863. extra: 2387/2198,
  36864. bottom: 33/2420
  36865. }
  36866. },
  36867. beans: {
  36868. height: math.unit(1.85, "feet"),
  36869. name: "Beans",
  36870. image: {
  36871. source: "./media/characters/keegan/beans.svg"
  36872. }
  36873. },
  36874. },
  36875. [
  36876. {
  36877. name: "Normal",
  36878. height: math.unit(6 + 5/12, "feet"),
  36879. default: true
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36885. {
  36886. front: {
  36887. height: math.unit(9, "feet"),
  36888. name: "Front",
  36889. image: {
  36890. source: "./media/characters/colton/front.svg",
  36891. extra: 1589/1326,
  36892. bottom: 139/1728
  36893. }
  36894. },
  36895. },
  36896. [
  36897. {
  36898. name: "Normal",
  36899. height: math.unit(9, "feet"),
  36900. default: true
  36901. },
  36902. ]
  36903. ))
  36904. characterMakers.push(() => makeCharacter(
  36905. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36906. {
  36907. front: {
  36908. height: math.unit(2 + 9/12, "feet"),
  36909. name: "Front",
  36910. image: {
  36911. source: "./media/characters/bora/front.svg",
  36912. extra: 1265/1250,
  36913. bottom: 24/1289
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Normal",
  36920. height: math.unit(2 + 9/12, "feet"),
  36921. default: true
  36922. },
  36923. ]
  36924. ))
  36925. characterMakers.push(() => makeCharacter(
  36926. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36927. {
  36928. front: {
  36929. height: math.unit(8, "feet"),
  36930. name: "Front",
  36931. image: {
  36932. source: "./media/characters/myu-myu/front.svg",
  36933. extra: 1949/1857,
  36934. bottom: 90/2039
  36935. }
  36936. },
  36937. },
  36938. [
  36939. {
  36940. name: "Normal",
  36941. height: math.unit(8, "feet"),
  36942. default: true
  36943. },
  36944. {
  36945. name: "Big",
  36946. height: math.unit(15, "feet")
  36947. },
  36948. {
  36949. name: "BIG",
  36950. height: math.unit(25, "feet")
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36956. {
  36957. side: {
  36958. height: math.unit(7 + 5/12, "feet"),
  36959. weight: math.unit(2800, "lb"),
  36960. name: "Side",
  36961. image: {
  36962. source: "./media/characters/haloren/side.svg",
  36963. extra: 1793/409,
  36964. bottom: 59/1852
  36965. }
  36966. },
  36967. frontPaw: {
  36968. height: math.unit(2.36, "feet"),
  36969. name: "Front paw",
  36970. image: {
  36971. source: "./media/characters/haloren/front-paw.svg"
  36972. }
  36973. },
  36974. hindPaw: {
  36975. height: math.unit(3.18, "feet"),
  36976. name: "Hind paw",
  36977. image: {
  36978. source: "./media/characters/haloren/hind-paw.svg"
  36979. }
  36980. },
  36981. maw: {
  36982. height: math.unit(5.05, "feet"),
  36983. name: "Maw",
  36984. image: {
  36985. source: "./media/characters/haloren/maw.svg"
  36986. }
  36987. },
  36988. dick: {
  36989. height: math.unit(2.90, "feet"),
  36990. name: "Dick",
  36991. image: {
  36992. source: "./media/characters/haloren/dick.svg"
  36993. }
  36994. },
  36995. },
  36996. [
  36997. {
  36998. name: "Normal",
  36999. height: math.unit(7 + 5/12, "feet"),
  37000. default: true
  37001. },
  37002. {
  37003. name: "Enhanced",
  37004. height: math.unit(14 + 3/12, "feet")
  37005. },
  37006. ]
  37007. ))
  37008. characterMakers.push(() => makeCharacter(
  37009. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37010. {
  37011. front: {
  37012. height: math.unit(171, "cm"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/kimmy/front.svg",
  37016. extra: 1491/1435,
  37017. bottom: 53/1544
  37018. }
  37019. },
  37020. },
  37021. [
  37022. {
  37023. name: "Small",
  37024. height: math.unit(9, "cm")
  37025. },
  37026. {
  37027. name: "Normal",
  37028. height: math.unit(171, "cm"),
  37029. default: true
  37030. },
  37031. ]
  37032. ))
  37033. characterMakers.push(() => makeCharacter(
  37034. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37035. {
  37036. front: {
  37037. height: math.unit(8, "feet"),
  37038. weight: math.unit(300, "lb"),
  37039. name: "Front",
  37040. image: {
  37041. source: "./media/characters/galeboomer/front.svg",
  37042. extra: 4651/4415,
  37043. bottom: 162/4813
  37044. }
  37045. },
  37046. back: {
  37047. height: math.unit(8, "feet"),
  37048. weight: math.unit(300, "lb"),
  37049. name: "Back",
  37050. image: {
  37051. source: "./media/characters/galeboomer/back.svg",
  37052. extra: 4544/4314,
  37053. bottom: 16/4560
  37054. }
  37055. },
  37056. frontAlt: {
  37057. height: math.unit(8, "feet"),
  37058. weight: math.unit(300, "lb"),
  37059. name: "Front (Alt)",
  37060. image: {
  37061. source: "./media/characters/galeboomer/front-alt.svg",
  37062. extra: 4458/4228,
  37063. bottom: 68/4526
  37064. }
  37065. },
  37066. maw: {
  37067. height: math.unit(1.2, "feet"),
  37068. name: "Maw",
  37069. image: {
  37070. source: "./media/characters/galeboomer/maw.svg"
  37071. }
  37072. },
  37073. },
  37074. [
  37075. {
  37076. name: "Normal",
  37077. height: math.unit(8, "feet"),
  37078. default: true
  37079. },
  37080. ]
  37081. ))
  37082. characterMakers.push(() => makeCharacter(
  37083. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37084. {
  37085. front: {
  37086. height: math.unit(5 + 9/12, "feet"),
  37087. weight: math.unit(120, "lb"),
  37088. name: "Front",
  37089. image: {
  37090. source: "./media/characters/chyr/front.svg",
  37091. extra: 1323/1254,
  37092. bottom: 63/1386
  37093. }
  37094. },
  37095. back: {
  37096. height: math.unit(5 + 9/12, "feet"),
  37097. weight: math.unit(120, "lb"),
  37098. name: "Back",
  37099. image: {
  37100. source: "./media/characters/chyr/back.svg",
  37101. extra: 1323/1252,
  37102. bottom: 48/1371
  37103. }
  37104. },
  37105. },
  37106. [
  37107. {
  37108. name: "Normal",
  37109. height: math.unit(5 + 9/12, "feet"),
  37110. default: true
  37111. },
  37112. ]
  37113. ))
  37114. characterMakers.push(() => makeCharacter(
  37115. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37116. {
  37117. front: {
  37118. height: math.unit(7, "feet"),
  37119. weight: math.unit(310, "lb"),
  37120. name: "Front",
  37121. image: {
  37122. source: "./media/characters/solarus/front.svg",
  37123. extra: 2415/2021,
  37124. bottom: 103/2518
  37125. }
  37126. },
  37127. back: {
  37128. height: math.unit(7, "feet"),
  37129. weight: math.unit(310, "lb"),
  37130. name: "Back",
  37131. image: {
  37132. source: "./media/characters/solarus/back.svg",
  37133. extra: 2463/2089,
  37134. bottom: 79/2542
  37135. }
  37136. },
  37137. },
  37138. [
  37139. {
  37140. name: "Normal",
  37141. height: math.unit(7, "feet"),
  37142. default: true
  37143. },
  37144. ]
  37145. ))
  37146. characterMakers.push(() => makeCharacter(
  37147. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37148. {
  37149. front: {
  37150. height: math.unit(16, "feet"),
  37151. name: "Front",
  37152. image: {
  37153. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37154. extra: 1844/1780,
  37155. bottom: 58/1902
  37156. }
  37157. },
  37158. winterCoat: {
  37159. height: math.unit(16, "feet"),
  37160. name: "Winter Coat",
  37161. image: {
  37162. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37163. extra: 1807/1775,
  37164. bottom: 69/1876
  37165. }
  37166. },
  37167. },
  37168. [
  37169. {
  37170. name: "Normal",
  37171. height: math.unit(16, "feet"),
  37172. default: true
  37173. },
  37174. {
  37175. name: "Chicago Size",
  37176. height: math.unit(560, "feet")
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(11 + 6/12, "feet"),
  37185. weight: math.unit(1366, "lb"),
  37186. name: "Front",
  37187. image: {
  37188. source: "./media/characters/lexor/front.svg",
  37189. extra: 1560/1481,
  37190. bottom: 211/1771
  37191. }
  37192. },
  37193. back: {
  37194. height: math.unit(11 + 6/12, "feet"),
  37195. weight: math.unit(1366, "lb"),
  37196. name: "Back",
  37197. image: {
  37198. source: "./media/characters/lexor/back.svg",
  37199. extra: 1614/1533,
  37200. bottom: 76/1690
  37201. }
  37202. },
  37203. maw: {
  37204. height: math.unit(3, "feet"),
  37205. name: "Maw",
  37206. image: {
  37207. source: "./media/characters/lexor/maw.svg"
  37208. }
  37209. },
  37210. dick: {
  37211. height: math.unit(2.59, "feet"),
  37212. name: "Dick",
  37213. image: {
  37214. source: "./media/characters/lexor/dick.svg"
  37215. }
  37216. },
  37217. },
  37218. [
  37219. {
  37220. name: "Normal",
  37221. height: math.unit(11 + 6/12, "feet"),
  37222. default: true
  37223. },
  37224. ]
  37225. ))
  37226. characterMakers.push(() => makeCharacter(
  37227. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37228. {
  37229. front: {
  37230. height: math.unit(5 + 8/12, "feet"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/magnum/front.svg",
  37234. extra: 942/855,
  37235. bottom: 26/968
  37236. }
  37237. },
  37238. },
  37239. [
  37240. {
  37241. name: "Normal",
  37242. height: math.unit(5 + 8/12, "feet"),
  37243. default: true
  37244. },
  37245. ]
  37246. ))
  37247. characterMakers.push(() => makeCharacter(
  37248. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37249. {
  37250. front: {
  37251. height: math.unit(18 + 4/12, "feet"),
  37252. weight: math.unit(1500, "kg"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/solas-sharpsman/front.svg",
  37256. extra: 1698/1589,
  37257. bottom: 0/1698
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(18 + 4/12, "feet"),
  37265. default: true
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37271. {
  37272. front: {
  37273. height: math.unit(5 + 5/12, "feet"),
  37274. weight: math.unit(180, "lb"),
  37275. name: "Front",
  37276. image: {
  37277. source: "./media/characters/october/front.svg",
  37278. extra: 1800/1650,
  37279. bottom: 0/1800
  37280. }
  37281. },
  37282. frontNsfw: {
  37283. height: math.unit(5 + 5/12, "feet"),
  37284. weight: math.unit(180, "lb"),
  37285. name: "Front (NSFW)",
  37286. image: {
  37287. source: "./media/characters/october/front-nsfw.svg",
  37288. extra: 1392/1307,
  37289. bottom: 42/1434
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(5 + 5/12, "feet"),
  37297. default: true
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(8 + 6/12, "feet"),
  37306. name: "Front",
  37307. image: {
  37308. source: "./media/characters/essynkardi/front.svg",
  37309. extra: 1914/1846,
  37310. bottom: 22/1936
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(8 + 6/12, "feet"),
  37318. default: true
  37319. },
  37320. ]
  37321. ))
  37322. characterMakers.push(() => makeCharacter(
  37323. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37324. {
  37325. front: {
  37326. height: math.unit(6 + 6/12, "feet"),
  37327. weight: math.unit(7, "lb"),
  37328. name: "Front",
  37329. image: {
  37330. source: "./media/characters/icky/front.svg",
  37331. extra: 813/782,
  37332. bottom: 66/879
  37333. }
  37334. },
  37335. back: {
  37336. height: math.unit(6 + 6/12, "feet"),
  37337. weight: math.unit(7, "lb"),
  37338. name: "Back",
  37339. image: {
  37340. source: "./media/characters/icky/back.svg",
  37341. extra: 754/735,
  37342. bottom: 56/810
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Normal",
  37349. height: math.unit(6 + 6/12, "feet"),
  37350. default: true
  37351. },
  37352. ]
  37353. ))
  37354. characterMakers.push(() => makeCharacter(
  37355. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37356. {
  37357. front: {
  37358. height: math.unit(15, "feet"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/rojas/front.svg",
  37362. extra: 1462/1408,
  37363. bottom: 95/1557
  37364. }
  37365. },
  37366. back: {
  37367. height: math.unit(15, "feet"),
  37368. name: "Back",
  37369. image: {
  37370. source: "./media/characters/rojas/back.svg",
  37371. extra: 1023/954,
  37372. bottom: 28/1051
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(15, "feet"),
  37380. default: true
  37381. },
  37382. ]
  37383. ))
  37384. characterMakers.push(() => makeCharacter(
  37385. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37386. {
  37387. frontHuman: {
  37388. height: math.unit(5 + 7/12, "feet"),
  37389. name: "Front (Human)",
  37390. image: {
  37391. source: "./media/characters/alek-dryagan/front-human.svg",
  37392. extra: 1687/1667,
  37393. bottom: 69/1756
  37394. }
  37395. },
  37396. backHuman: {
  37397. height: math.unit(5 + 7/12, "feet"),
  37398. name: "Back (Human)",
  37399. image: {
  37400. source: "./media/characters/alek-dryagan/back-human.svg",
  37401. extra: 1670/1649,
  37402. bottom: 65/1735
  37403. }
  37404. },
  37405. frontDemi: {
  37406. height: math.unit(65, "feet"),
  37407. name: "Front (Demi)",
  37408. image: {
  37409. source: "./media/characters/alek-dryagan/front-demi.svg",
  37410. extra: 1669/1642,
  37411. bottom: 49/1718
  37412. }
  37413. },
  37414. backDemi: {
  37415. height: math.unit(65, "feet"),
  37416. name: "Back (Demi)",
  37417. image: {
  37418. source: "./media/characters/alek-dryagan/back-demi.svg",
  37419. extra: 1658/1637,
  37420. bottom: 40/1698
  37421. }
  37422. },
  37423. mawHuman: {
  37424. height: math.unit(0.3, "feet"),
  37425. name: "Maw (Human)",
  37426. image: {
  37427. source: "./media/characters/alek-dryagan/maw-human.svg"
  37428. }
  37429. },
  37430. mawDemi: {
  37431. height: math.unit(3.8, "feet"),
  37432. name: "Maw (Demi)",
  37433. image: {
  37434. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37435. }
  37436. },
  37437. },
  37438. [
  37439. {
  37440. name: "Normal",
  37441. height: math.unit(5 + 7/12, "feet"),
  37442. default: true
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37448. {
  37449. frontHuman: {
  37450. height: math.unit(5 + 2/12, "feet"),
  37451. name: "Front (Human)",
  37452. image: {
  37453. source: "./media/characters/gen/front-human.svg",
  37454. extra: 1627/1538,
  37455. bottom: 71/1698
  37456. }
  37457. },
  37458. backHuman: {
  37459. height: math.unit(5 + 2/12, "feet"),
  37460. name: "Back (Human)",
  37461. image: {
  37462. source: "./media/characters/gen/back-human.svg",
  37463. extra: 1638/1548,
  37464. bottom: 69/1707
  37465. }
  37466. },
  37467. frontDemi: {
  37468. height: math.unit(5 + 2/12, "feet"),
  37469. name: "Front (Demi)",
  37470. image: {
  37471. source: "./media/characters/gen/front-demi.svg",
  37472. extra: 1627/1538,
  37473. bottom: 71/1698
  37474. }
  37475. },
  37476. backDemi: {
  37477. height: math.unit(5 + 2/12, "feet"),
  37478. name: "Back (Demi)",
  37479. image: {
  37480. source: "./media/characters/gen/back-demi.svg",
  37481. extra: 1638/1548,
  37482. bottom: 69/1707
  37483. }
  37484. },
  37485. },
  37486. [
  37487. {
  37488. name: "Normal",
  37489. height: math.unit(5 + 2/12, "feet"),
  37490. default: true
  37491. },
  37492. ]
  37493. ))
  37494. characterMakers.push(() => makeCharacter(
  37495. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37496. {
  37497. frontImp: {
  37498. height: math.unit(1 + 11/12, "feet"),
  37499. name: "Front (Imp)",
  37500. image: {
  37501. source: "./media/characters/max-kobold/front-imp.svg",
  37502. extra: 1238/1134,
  37503. bottom: 81/1319
  37504. }
  37505. },
  37506. backImp: {
  37507. height: math.unit(1 + 11/12, "feet"),
  37508. name: "Back (Imp)",
  37509. image: {
  37510. source: "./media/characters/max-kobold/back-imp.svg",
  37511. extra: 1334/1175,
  37512. bottom: 34/1368
  37513. }
  37514. },
  37515. frontDemi: {
  37516. height: math.unit(5 + 9/12, "feet"),
  37517. name: "Front (Demi)",
  37518. image: {
  37519. source: "./media/characters/max-kobold/front-demi.svg",
  37520. extra: 1715/1685,
  37521. bottom: 54/1769
  37522. }
  37523. },
  37524. backDemi: {
  37525. height: math.unit(5 + 9/12, "feet"),
  37526. name: "Back (Demi)",
  37527. image: {
  37528. source: "./media/characters/max-kobold/back-demi.svg",
  37529. extra: 1752/1729,
  37530. bottom: 41/1793
  37531. }
  37532. },
  37533. handImp: {
  37534. height: math.unit(0.45, "feet"),
  37535. name: "Hand (Imp)",
  37536. image: {
  37537. source: "./media/characters/max-kobold/hand.svg"
  37538. }
  37539. },
  37540. pawImp: {
  37541. height: math.unit(0.46, "feet"),
  37542. name: "Paw (Imp)",
  37543. image: {
  37544. source: "./media/characters/max-kobold/paw.svg"
  37545. }
  37546. },
  37547. handDemi: {
  37548. height: math.unit(0.80, "feet"),
  37549. name: "Hand (Demi)",
  37550. image: {
  37551. source: "./media/characters/max-kobold/hand.svg"
  37552. }
  37553. },
  37554. pawDemi: {
  37555. height: math.unit(1.1, "feet"),
  37556. name: "Paw (Demi)",
  37557. image: {
  37558. source: "./media/characters/max-kobold/paw.svg"
  37559. }
  37560. },
  37561. headImp: {
  37562. height: math.unit(1.33, "feet"),
  37563. name: "Head (Imp)",
  37564. image: {
  37565. source: "./media/characters/max-kobold/head-imp.svg"
  37566. }
  37567. },
  37568. mawImp: {
  37569. height: math.unit(0.75, "feet"),
  37570. name: "Maw (Imp)",
  37571. image: {
  37572. source: "./media/characters/max-kobold/maw-imp.svg"
  37573. }
  37574. },
  37575. mawDemi: {
  37576. height: math.unit(0.42, "feet"),
  37577. name: "Maw (Demi)",
  37578. image: {
  37579. source: "./media/characters/max-kobold/maw-demi.svg"
  37580. }
  37581. },
  37582. },
  37583. [
  37584. {
  37585. name: "Normal",
  37586. height: math.unit(1 + 11/12, "feet"),
  37587. default: true
  37588. },
  37589. ]
  37590. ))
  37591. characterMakers.push(() => makeCharacter(
  37592. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37593. {
  37594. front: {
  37595. height: math.unit(7 + 5/12, "feet"),
  37596. name: "Front",
  37597. image: {
  37598. source: "./media/characters/carbon/front.svg",
  37599. extra: 1754/1689,
  37600. bottom: 65/1819
  37601. }
  37602. },
  37603. back: {
  37604. height: math.unit(7 + 5/12, "feet"),
  37605. name: "Back",
  37606. image: {
  37607. source: "./media/characters/carbon/back.svg",
  37608. extra: 1762/1695,
  37609. bottom: 24/1786
  37610. }
  37611. },
  37612. frontGigantamax: {
  37613. height: math.unit(150, "feet"),
  37614. name: "Front (Gigantamax)",
  37615. image: {
  37616. source: "./media/characters/carbon/front-gigantamax.svg",
  37617. extra: 1826/1669,
  37618. bottom: 59/1885
  37619. }
  37620. },
  37621. backGigantamax: {
  37622. height: math.unit(150, "feet"),
  37623. name: "Back (Gigantamax)",
  37624. image: {
  37625. source: "./media/characters/carbon/back-gigantamax.svg",
  37626. extra: 1796/1653,
  37627. bottom: 53/1849
  37628. }
  37629. },
  37630. maw: {
  37631. height: math.unit(0.48, "feet"),
  37632. name: "Maw",
  37633. image: {
  37634. source: "./media/characters/carbon/maw.svg"
  37635. }
  37636. },
  37637. mawGigantamax: {
  37638. height: math.unit(7.5, "feet"),
  37639. name: "Maw (Gigantamax)",
  37640. image: {
  37641. source: "./media/characters/carbon/maw-gigantamax.svg"
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(7 + 5/12, "feet"),
  37649. default: true
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(6, "feet"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/maverick/front.svg",
  37661. extra: 1672/1661,
  37662. bottom: 85/1757
  37663. }
  37664. },
  37665. back: {
  37666. height: math.unit(6, "feet"),
  37667. name: "Back",
  37668. image: {
  37669. source: "./media/characters/maverick/back.svg",
  37670. extra: 1642/1631,
  37671. bottom: 38/1680
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(6, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(15, "feet"),
  37688. weight: math.unit(615, "lb"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/grockle/front.svg",
  37692. extra: 1535/1427,
  37693. bottom: 56/1591
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Normal",
  37700. height: math.unit(15, "feet"),
  37701. default: true
  37702. },
  37703. {
  37704. name: "Large",
  37705. height: math.unit(150, "feet")
  37706. },
  37707. {
  37708. name: "Macro",
  37709. height: math.unit(1876, "feet")
  37710. },
  37711. {
  37712. name: "Mega Macro",
  37713. height: math.unit(121940, "feet")
  37714. },
  37715. {
  37716. name: "Giga Macro",
  37717. height: math.unit(750, "km")
  37718. },
  37719. {
  37720. name: "Tera Macro",
  37721. height: math.unit(750000, "km")
  37722. },
  37723. {
  37724. name: "Galactic",
  37725. height: math.unit(1.4e5, "km")
  37726. },
  37727. {
  37728. name: "Godlike",
  37729. height: math.unit(9.8e280, "galaxies")
  37730. },
  37731. ]
  37732. ))
  37733. characterMakers.push(() => makeCharacter(
  37734. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37735. {
  37736. front: {
  37737. height: math.unit(11, "meters"),
  37738. weight: math.unit(20, "tonnes"),
  37739. name: "Front",
  37740. image: {
  37741. source: "./media/characters/alistair/front.svg",
  37742. extra: 1265/1009,
  37743. bottom: 93/1358
  37744. }
  37745. },
  37746. },
  37747. [
  37748. {
  37749. name: "Normal",
  37750. height: math.unit(11, "meters"),
  37751. default: true
  37752. },
  37753. ]
  37754. ))
  37755. characterMakers.push(() => makeCharacter(
  37756. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37757. {
  37758. front: {
  37759. height: math.unit(5 + 8/12, "feet"),
  37760. name: "Front",
  37761. image: {
  37762. source: "./media/characters/haruka/front.svg",
  37763. extra: 2012/1952,
  37764. bottom: 0/2012
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Normal",
  37771. height: math.unit(5 + 8/12, "feet"),
  37772. default: true
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37778. {
  37779. back: {
  37780. height: math.unit(9, "feet"),
  37781. name: "Back",
  37782. image: {
  37783. source: "./media/characters/vivian-sylveon/back.svg",
  37784. extra: 1853/1714,
  37785. bottom: 0/1853
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(9, "feet"),
  37793. default: true
  37794. },
  37795. {
  37796. name: "Macro",
  37797. height: math.unit(500, "feet")
  37798. },
  37799. {
  37800. name: "Megamacro",
  37801. height: math.unit(600, "miles")
  37802. },
  37803. {
  37804. name: "Gigamacro",
  37805. height: math.unit(30000, "miles")
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37811. {
  37812. anthro: {
  37813. height: math.unit(5 + 10/12, "feet"),
  37814. weight: math.unit(100, "lb"),
  37815. name: "Anthro",
  37816. image: {
  37817. source: "./media/characters/daiki/anthro.svg",
  37818. extra: 1115/1027,
  37819. bottom: 69/1184
  37820. }
  37821. },
  37822. feral: {
  37823. height: math.unit(200, "feet"),
  37824. name: "Feral",
  37825. image: {
  37826. source: "./media/characters/daiki/feral.svg",
  37827. extra: 1256/313,
  37828. bottom: 39/1295
  37829. }
  37830. },
  37831. feralHead: {
  37832. height: math.unit(171, "feet"),
  37833. name: "Feral Head",
  37834. image: {
  37835. source: "./media/characters/daiki/feral-head.svg"
  37836. }
  37837. },
  37838. manaDragon: {
  37839. height: math.unit(170, "meters"),
  37840. name: "Mana-dragon",
  37841. image: {
  37842. source: "./media/characters/daiki/mana-dragon.svg",
  37843. extra: 763/420,
  37844. bottom: 97/860
  37845. }
  37846. },
  37847. },
  37848. [
  37849. {
  37850. name: "Normal",
  37851. height: math.unit(5 + 10/12, "feet"),
  37852. default: true
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37858. {
  37859. fullyEquippedFront: {
  37860. height: math.unit(3 + 1/12, "feet"),
  37861. weight: math.unit(24, "lb"),
  37862. name: "Fully Equipped (Front)",
  37863. image: {
  37864. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37865. extra: 687/605,
  37866. bottom: 18/705
  37867. }
  37868. },
  37869. fullyEquippedBack: {
  37870. height: math.unit(3 + 1/12, "feet"),
  37871. weight: math.unit(24, "lb"),
  37872. name: "Fully Equipped (Back)",
  37873. image: {
  37874. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37875. extra: 689/590,
  37876. bottom: 18/707
  37877. }
  37878. },
  37879. dailyWear: {
  37880. height: math.unit(3 + 1/12, "feet"),
  37881. weight: math.unit(24, "lb"),
  37882. name: "Daily Wear",
  37883. image: {
  37884. source: "./media/characters/tea-spot/daily-wear.svg",
  37885. extra: 701/620,
  37886. bottom: 21/722
  37887. }
  37888. },
  37889. maidWork: {
  37890. height: math.unit(3 + 1/12, "feet"),
  37891. weight: math.unit(24, "lb"),
  37892. name: "Maid Work",
  37893. image: {
  37894. source: "./media/characters/tea-spot/maid-work.svg",
  37895. extra: 693/609,
  37896. bottom: 15/708
  37897. }
  37898. },
  37899. },
  37900. [
  37901. {
  37902. name: "Normal",
  37903. height: math.unit(3 + 1/12, "feet"),
  37904. default: true
  37905. },
  37906. ]
  37907. ))
  37908. characterMakers.push(() => makeCharacter(
  37909. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37910. {
  37911. front: {
  37912. height: math.unit(175, "cm"),
  37913. weight: math.unit(75, "kg"),
  37914. name: "Front",
  37915. image: {
  37916. source: "./media/characters/chee/front.svg",
  37917. extra: 1796/1740,
  37918. bottom: 40/1836
  37919. }
  37920. },
  37921. },
  37922. [
  37923. {
  37924. name: "Micro-Micro",
  37925. height: math.unit(1, "nm")
  37926. },
  37927. {
  37928. name: "Micro-erst",
  37929. height: math.unit(1, "micrometer")
  37930. },
  37931. {
  37932. name: "Micro-er",
  37933. height: math.unit(1, "cm")
  37934. },
  37935. {
  37936. name: "Normal",
  37937. height: math.unit(175, "cm"),
  37938. default: true
  37939. },
  37940. {
  37941. name: "Macro",
  37942. height: math.unit(100, "m")
  37943. },
  37944. {
  37945. name: "Macro-er",
  37946. height: math.unit(1, "km")
  37947. },
  37948. {
  37949. name: "Macro-erst",
  37950. height: math.unit(10, "km")
  37951. },
  37952. {
  37953. name: "Macro-Macro",
  37954. height: math.unit(100, "km")
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37960. {
  37961. front: {
  37962. height: math.unit(11 + 9/12, "feet"),
  37963. weight: math.unit(935, "lb"),
  37964. name: "Front",
  37965. image: {
  37966. source: "./media/characters/kingsley/front.svg",
  37967. extra: 1803/1674,
  37968. bottom: 127/1930
  37969. }
  37970. },
  37971. frontNude: {
  37972. height: math.unit(11 + 9/12, "feet"),
  37973. weight: math.unit(935, "lb"),
  37974. name: "Front (Nude)",
  37975. image: {
  37976. source: "./media/characters/kingsley/front-nude.svg",
  37977. extra: 1803/1674,
  37978. bottom: 127/1930
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Normal",
  37985. height: math.unit(11 + 9/12, "feet"),
  37986. default: true
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37992. {
  37993. side: {
  37994. height: math.unit(9, "feet"),
  37995. name: "Side",
  37996. image: {
  37997. source: "./media/characters/rymel/side.svg",
  37998. extra: 792/469,
  37999. bottom: 121/913
  38000. }
  38001. },
  38002. maw: {
  38003. height: math.unit(2.4, "meters"),
  38004. name: "Maw",
  38005. image: {
  38006. source: "./media/characters/rymel/maw.svg"
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "House Drake",
  38013. height: math.unit(2, "feet")
  38014. },
  38015. {
  38016. name: "Reduced",
  38017. height: math.unit(4.5, "feet")
  38018. },
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(9, "feet"),
  38022. default: true
  38023. },
  38024. ]
  38025. ))
  38026. characterMakers.push(() => makeCharacter(
  38027. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38028. {
  38029. front: {
  38030. height: math.unit(1.74, "meters"),
  38031. weight: math.unit(55, "kg"),
  38032. name: "Front",
  38033. image: {
  38034. source: "./media/characters/rubus/front.svg",
  38035. extra: 1894/1742,
  38036. bottom: 44/1938
  38037. }
  38038. },
  38039. },
  38040. [
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(1.74, "meters"),
  38044. default: true
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38050. {
  38051. front: {
  38052. height: math.unit(5 + 2/12, "feet"),
  38053. weight: math.unit(112, "lb"),
  38054. name: "Front",
  38055. image: {
  38056. source: "./media/characters/cassie-kingston/front.svg",
  38057. extra: 1438/1390,
  38058. bottom: 47/1485
  38059. }
  38060. },
  38061. },
  38062. [
  38063. {
  38064. name: "Normal",
  38065. height: math.unit(5 + 2/12, "feet"),
  38066. default: true
  38067. },
  38068. {
  38069. name: "Macro",
  38070. height: math.unit(128, "feet")
  38071. },
  38072. {
  38073. name: "Megamacro",
  38074. height: math.unit(2.56, "miles")
  38075. },
  38076. ]
  38077. ))
  38078. characterMakers.push(() => makeCharacter(
  38079. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38080. {
  38081. front: {
  38082. height: math.unit(7, "feet"),
  38083. name: "Front",
  38084. image: {
  38085. source: "./media/characters/fox/front.svg",
  38086. extra: 1798/1703,
  38087. bottom: 55/1853
  38088. }
  38089. },
  38090. back: {
  38091. height: math.unit(7, "feet"),
  38092. name: "Back",
  38093. image: {
  38094. source: "./media/characters/fox/back.svg",
  38095. extra: 1748/1649,
  38096. bottom: 32/1780
  38097. }
  38098. },
  38099. head: {
  38100. height: math.unit(1.95, "feet"),
  38101. name: "Head",
  38102. image: {
  38103. source: "./media/characters/fox/head.svg"
  38104. }
  38105. },
  38106. dick: {
  38107. height: math.unit(1.33, "feet"),
  38108. name: "Dick",
  38109. image: {
  38110. source: "./media/characters/fox/dick.svg"
  38111. }
  38112. },
  38113. foot: {
  38114. height: math.unit(1, "feet"),
  38115. name: "Foot",
  38116. image: {
  38117. source: "./media/characters/fox/foot.svg"
  38118. }
  38119. },
  38120. paw: {
  38121. height: math.unit(0.92, "feet"),
  38122. name: "Paw",
  38123. image: {
  38124. source: "./media/characters/fox/paw.svg"
  38125. }
  38126. },
  38127. },
  38128. [
  38129. {
  38130. name: "Small",
  38131. height: math.unit(3, "inches")
  38132. },
  38133. {
  38134. name: "\"Realistic\"",
  38135. height: math.unit(7, "feet")
  38136. },
  38137. {
  38138. name: "Normal",
  38139. height: math.unit(150, "feet"),
  38140. default: true
  38141. },
  38142. {
  38143. name: "BIG",
  38144. height: math.unit(1200, "feet")
  38145. },
  38146. {
  38147. name: "👀",
  38148. height: math.unit(5, "miles")
  38149. },
  38150. {
  38151. name: "👀👀👀",
  38152. height: math.unit(64, "miles")
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38158. {
  38159. front: {
  38160. height: math.unit(625, "feet"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/asonja-rossa/front.svg",
  38164. extra: 1833/1686,
  38165. bottom: 24/1857
  38166. }
  38167. },
  38168. back: {
  38169. height: math.unit(625, "feet"),
  38170. name: "Back",
  38171. image: {
  38172. source: "./media/characters/asonja-rossa/back.svg",
  38173. extra: 1852/1753,
  38174. bottom: 26/1878
  38175. }
  38176. },
  38177. },
  38178. [
  38179. {
  38180. name: "Macro",
  38181. height: math.unit(625, "feet"),
  38182. default: true
  38183. },
  38184. ]
  38185. ))
  38186. characterMakers.push(() => makeCharacter(
  38187. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38188. {
  38189. side: {
  38190. height: math.unit(8, "feet"),
  38191. name: "Side",
  38192. image: {
  38193. source: "./media/characters/rezukii/side.svg",
  38194. extra: 979/542,
  38195. bottom: 87/1066
  38196. }
  38197. },
  38198. sitting: {
  38199. height: math.unit(14.6, "feet"),
  38200. name: "Sitting",
  38201. image: {
  38202. source: "./media/characters/rezukii/sitting.svg",
  38203. extra: 1023/813,
  38204. bottom: 45/1068
  38205. }
  38206. },
  38207. },
  38208. [
  38209. {
  38210. name: "Tiny",
  38211. height: math.unit(2, "feet")
  38212. },
  38213. {
  38214. name: "Smol",
  38215. height: math.unit(4, "feet")
  38216. },
  38217. {
  38218. name: "Normal",
  38219. height: math.unit(8, "feet"),
  38220. default: true
  38221. },
  38222. {
  38223. name: "Big",
  38224. height: math.unit(12, "feet")
  38225. },
  38226. {
  38227. name: "Macro",
  38228. height: math.unit(30, "feet")
  38229. },
  38230. ]
  38231. ))
  38232. characterMakers.push(() => makeCharacter(
  38233. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38234. {
  38235. front: {
  38236. height: math.unit(14, "feet"),
  38237. weight: math.unit(9.5, "tonnes"),
  38238. name: "Front",
  38239. image: {
  38240. source: "./media/characters/dawnheart/front.svg",
  38241. extra: 2792/2675,
  38242. bottom: 64/2856
  38243. }
  38244. },
  38245. },
  38246. [
  38247. {
  38248. name: "Normal",
  38249. height: math.unit(14, "feet"),
  38250. default: true
  38251. },
  38252. ]
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38256. {
  38257. front: {
  38258. height: math.unit(1.7, "m"),
  38259. name: "Front",
  38260. image: {
  38261. source: "./media/characters/gladi/front.svg",
  38262. extra: 1460/1362,
  38263. bottom: 19/1479
  38264. }
  38265. },
  38266. back: {
  38267. height: math.unit(1.7, "m"),
  38268. name: "Back",
  38269. image: {
  38270. source: "./media/characters/gladi/back.svg",
  38271. extra: 1459/1357,
  38272. bottom: 12/1471
  38273. }
  38274. },
  38275. feral: {
  38276. height: math.unit(2.05, "m"),
  38277. name: "Feral",
  38278. image: {
  38279. source: "./media/characters/gladi/feral.svg",
  38280. extra: 821/557,
  38281. bottom: 91/912
  38282. }
  38283. },
  38284. },
  38285. [
  38286. {
  38287. name: "Shortest",
  38288. height: math.unit(70, "cm")
  38289. },
  38290. {
  38291. name: "Normal",
  38292. height: math.unit(1.7, "m")
  38293. },
  38294. {
  38295. name: "Macro",
  38296. height: math.unit(10, "m"),
  38297. default: true
  38298. },
  38299. {
  38300. name: "Tallest",
  38301. height: math.unit(200, "m")
  38302. },
  38303. ]
  38304. ))
  38305. characterMakers.push(() => makeCharacter(
  38306. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38307. {
  38308. front: {
  38309. height: math.unit(5 + 7/12, "feet"),
  38310. weight: math.unit(2, "tons"),
  38311. name: "Front",
  38312. image: {
  38313. source: "./media/characters/erdno/front.svg",
  38314. extra: 1234/1129,
  38315. bottom: 35/1269
  38316. }
  38317. },
  38318. angled: {
  38319. height: math.unit(5 + 7/12, "feet"),
  38320. weight: math.unit(2, "tons"),
  38321. name: "Angled",
  38322. image: {
  38323. source: "./media/characters/erdno/angled.svg",
  38324. extra: 1185/1139,
  38325. bottom: 36/1221
  38326. }
  38327. },
  38328. side: {
  38329. height: math.unit(5 + 7/12, "feet"),
  38330. weight: math.unit(2, "tons"),
  38331. name: "Side",
  38332. image: {
  38333. source: "./media/characters/erdno/side.svg",
  38334. extra: 1191/1144,
  38335. bottom: 40/1231
  38336. }
  38337. },
  38338. back: {
  38339. height: math.unit(5 + 7/12, "feet"),
  38340. weight: math.unit(2, "tons"),
  38341. name: "Back",
  38342. image: {
  38343. source: "./media/characters/erdno/back.svg",
  38344. extra: 1202/1146,
  38345. bottom: 17/1219
  38346. }
  38347. },
  38348. frontNsfw: {
  38349. height: math.unit(5 + 7/12, "feet"),
  38350. weight: math.unit(2, "tons"),
  38351. name: "Front (NSFW)",
  38352. image: {
  38353. source: "./media/characters/erdno/front-nsfw.svg",
  38354. extra: 1234/1129,
  38355. bottom: 35/1269
  38356. }
  38357. },
  38358. angledNsfw: {
  38359. height: math.unit(5 + 7/12, "feet"),
  38360. weight: math.unit(2, "tons"),
  38361. name: "Angled (NSFW)",
  38362. image: {
  38363. source: "./media/characters/erdno/angled-nsfw.svg",
  38364. extra: 1185/1139,
  38365. bottom: 36/1221
  38366. }
  38367. },
  38368. sideNsfw: {
  38369. height: math.unit(5 + 7/12, "feet"),
  38370. weight: math.unit(2, "tons"),
  38371. name: "Side (NSFW)",
  38372. image: {
  38373. source: "./media/characters/erdno/side-nsfw.svg",
  38374. extra: 1191/1144,
  38375. bottom: 40/1231
  38376. }
  38377. },
  38378. backNsfw: {
  38379. height: math.unit(5 + 7/12, "feet"),
  38380. weight: math.unit(2, "tons"),
  38381. name: "Back (NSFW)",
  38382. image: {
  38383. source: "./media/characters/erdno/back-nsfw.svg",
  38384. extra: 1202/1146,
  38385. bottom: 17/1219
  38386. }
  38387. },
  38388. frontHyper: {
  38389. height: math.unit(5 + 7/12, "feet"),
  38390. weight: math.unit(2, "tons"),
  38391. name: "Front (Hyper)",
  38392. image: {
  38393. source: "./media/characters/erdno/front-hyper.svg",
  38394. extra: 1298/1136,
  38395. bottom: 35/1333
  38396. }
  38397. },
  38398. },
  38399. [
  38400. {
  38401. name: "Normal",
  38402. height: math.unit(5 + 7/12, "feet"),
  38403. default: true
  38404. },
  38405. {
  38406. name: "Big",
  38407. height: math.unit(5.7, "meters")
  38408. },
  38409. {
  38410. name: "Macro",
  38411. height: math.unit(5.7, "kilometers")
  38412. },
  38413. {
  38414. name: "Megamacro",
  38415. height: math.unit(5.7, "earths")
  38416. },
  38417. ]
  38418. ))
  38419. characterMakers.push(() => makeCharacter(
  38420. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38421. {
  38422. front: {
  38423. height: math.unit(5 + 10/12, "feet"),
  38424. weight: math.unit(150, "lb"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/jamie/front.svg",
  38428. extra: 1908/1768,
  38429. bottom: 19/1927
  38430. }
  38431. },
  38432. },
  38433. [
  38434. {
  38435. name: "Minimum",
  38436. height: math.unit(2, "cm")
  38437. },
  38438. {
  38439. name: "Micro",
  38440. height: math.unit(3, "inches")
  38441. },
  38442. {
  38443. name: "Normal",
  38444. height: math.unit(5 + 10/12, "feet"),
  38445. default: true
  38446. },
  38447. {
  38448. name: "Macro",
  38449. height: math.unit(150, "feet")
  38450. },
  38451. {
  38452. name: "Megamacro",
  38453. height: math.unit(10000, "m")
  38454. },
  38455. ]
  38456. ))
  38457. characterMakers.push(() => makeCharacter(
  38458. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38459. {
  38460. front: {
  38461. height: math.unit(2, "meters"),
  38462. weight: math.unit(100, "kg"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/shiron/front.svg",
  38466. extra: 2103/1985,
  38467. bottom: 98/2201
  38468. }
  38469. },
  38470. back: {
  38471. height: math.unit(2, "meters"),
  38472. weight: math.unit(100, "kg"),
  38473. name: "Back",
  38474. image: {
  38475. source: "./media/characters/shiron/back.svg",
  38476. extra: 2110/2015,
  38477. bottom: 89/2199
  38478. }
  38479. },
  38480. hand: {
  38481. height: math.unit(0.96, "feet"),
  38482. name: "Hand",
  38483. image: {
  38484. source: "./media/characters/shiron/hand.svg"
  38485. }
  38486. },
  38487. foot: {
  38488. height: math.unit(1.464, "feet"),
  38489. name: "Foot",
  38490. image: {
  38491. source: "./media/characters/shiron/foot.svg"
  38492. }
  38493. },
  38494. },
  38495. [
  38496. {
  38497. name: "Normal",
  38498. height: math.unit(2, "meters")
  38499. },
  38500. {
  38501. name: "Macro",
  38502. height: math.unit(500, "meters"),
  38503. default: true
  38504. },
  38505. {
  38506. name: "Megamacro",
  38507. height: math.unit(20, "km")
  38508. },
  38509. ]
  38510. ))
  38511. characterMakers.push(() => makeCharacter(
  38512. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38513. {
  38514. front: {
  38515. height: math.unit(6, "feet"),
  38516. name: "Front",
  38517. image: {
  38518. source: "./media/characters/sam/front.svg",
  38519. extra: 849/826,
  38520. bottom: 19/868
  38521. }
  38522. },
  38523. },
  38524. [
  38525. {
  38526. name: "Normal",
  38527. height: math.unit(6, "feet"),
  38528. default: true
  38529. },
  38530. ]
  38531. ))
  38532. characterMakers.push(() => makeCharacter(
  38533. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38534. {
  38535. front: {
  38536. height: math.unit(8 + 4/12, "feet"),
  38537. weight: math.unit(122, "kg"),
  38538. name: "Front",
  38539. image: {
  38540. source: "./media/characters/namori-kurogawa/front.svg",
  38541. extra: 1894/1576,
  38542. bottom: 34/1928
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(8 + 4/12, "feet"),
  38550. default: true
  38551. },
  38552. ]
  38553. ))
  38554. characterMakers.push(() => makeCharacter(
  38555. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38556. {
  38557. front: {
  38558. height: math.unit(9, "feet"),
  38559. weight: math.unit(621, "lb"),
  38560. name: "Front",
  38561. image: {
  38562. source: "./media/characters/unmru/front.svg",
  38563. extra: 1853/1747,
  38564. bottom: 73/1926
  38565. }
  38566. },
  38567. side: {
  38568. height: math.unit(9, "feet"),
  38569. weight: math.unit(621, "lb"),
  38570. name: "Side",
  38571. image: {
  38572. source: "./media/characters/unmru/side.svg",
  38573. extra: 1781/1671,
  38574. bottom: 127/1908
  38575. }
  38576. },
  38577. back: {
  38578. height: math.unit(9, "feet"),
  38579. weight: math.unit(621, "lb"),
  38580. name: "Back",
  38581. image: {
  38582. source: "./media/characters/unmru/back.svg",
  38583. extra: 1894/1765,
  38584. bottom: 75/1969
  38585. }
  38586. },
  38587. dick: {
  38588. height: math.unit(3, "feet"),
  38589. weight: math.unit(35, "lb"),
  38590. name: "Dick",
  38591. image: {
  38592. source: "./media/characters/unmru/dick.svg"
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(9, "feet")
  38600. },
  38601. {
  38602. name: "Natural",
  38603. height: math.unit(27, "feet"),
  38604. default: true
  38605. },
  38606. {
  38607. name: "Giant",
  38608. height: math.unit(90, "feet")
  38609. },
  38610. {
  38611. name: "Kaiju",
  38612. height: math.unit(270, "feet")
  38613. },
  38614. {
  38615. name: "Macro",
  38616. height: math.unit(900, "feet")
  38617. },
  38618. {
  38619. name: "Macro+",
  38620. height: math.unit(2700, "feet")
  38621. },
  38622. {
  38623. name: "Megamacro",
  38624. height: math.unit(9000, "feet")
  38625. },
  38626. {
  38627. name: "City-Crushing",
  38628. height: math.unit(27000, "feet")
  38629. },
  38630. {
  38631. name: "Mountain-Mashing",
  38632. height: math.unit(90000, "feet")
  38633. },
  38634. {
  38635. name: "Earth-Eclipsing",
  38636. height: math.unit(2.7e8, "feet")
  38637. },
  38638. {
  38639. name: "Sol-Swallowing",
  38640. height: math.unit(9e10, "feet")
  38641. },
  38642. {
  38643. name: "Majoris-Munching",
  38644. height: math.unit(2.7e13, "feet")
  38645. },
  38646. ]
  38647. ))
  38648. characterMakers.push(() => makeCharacter(
  38649. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38650. {
  38651. front: {
  38652. height: math.unit(1, "inch"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/squeaks-mouse/front.svg",
  38656. extra: 352/308,
  38657. bottom: 25/377
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Micro",
  38664. height: math.unit(1, "inch"),
  38665. default: true
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38671. {
  38672. side: {
  38673. height: math.unit(35, "feet"),
  38674. name: "Side",
  38675. image: {
  38676. source: "./media/characters/sayko/side.svg",
  38677. extra: 1697/1021,
  38678. bottom: 82/1779
  38679. }
  38680. },
  38681. head: {
  38682. height: math.unit(16, "feet"),
  38683. name: "Head",
  38684. image: {
  38685. source: "./media/characters/sayko/head.svg"
  38686. }
  38687. },
  38688. forepaw: {
  38689. height: math.unit(7.85, "feet"),
  38690. name: "Forepaw",
  38691. image: {
  38692. source: "./media/characters/sayko/forepaw.svg"
  38693. }
  38694. },
  38695. hindpaw: {
  38696. height: math.unit(8.8, "feet"),
  38697. name: "Hindpaw",
  38698. image: {
  38699. source: "./media/characters/sayko/hindpaw.svg"
  38700. }
  38701. },
  38702. },
  38703. [
  38704. {
  38705. name: "Normal",
  38706. height: math.unit(35, "feet"),
  38707. default: true
  38708. },
  38709. {
  38710. name: "Colossus",
  38711. height: math.unit(100, "meters")
  38712. },
  38713. {
  38714. name: "\"Small\" Deity",
  38715. height: math.unit(1, "km")
  38716. },
  38717. {
  38718. name: "\"Large\" Deity",
  38719. height: math.unit(15, "km")
  38720. },
  38721. ]
  38722. ))
  38723. characterMakers.push(() => makeCharacter(
  38724. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38725. {
  38726. front: {
  38727. height: math.unit(6, "feet"),
  38728. weight: math.unit(250, "lb"),
  38729. name: "Front",
  38730. image: {
  38731. source: "./media/characters/mukiro/front.svg",
  38732. extra: 1368/1310,
  38733. bottom: 34/1402
  38734. }
  38735. },
  38736. },
  38737. [
  38738. {
  38739. name: "Normal",
  38740. height: math.unit(6, "feet"),
  38741. default: true
  38742. },
  38743. ]
  38744. ))
  38745. characterMakers.push(() => makeCharacter(
  38746. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38747. {
  38748. front: {
  38749. height: math.unit(12 + 4/12, "feet"),
  38750. name: "Front",
  38751. image: {
  38752. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38753. extra: 1346/1311,
  38754. bottom: 65/1411
  38755. }
  38756. },
  38757. },
  38758. [
  38759. {
  38760. name: "Base",
  38761. height: math.unit(12 + 4/12, "feet"),
  38762. default: true
  38763. },
  38764. {
  38765. name: "Macro",
  38766. height: math.unit(150, "feet")
  38767. },
  38768. {
  38769. name: "Mega",
  38770. height: math.unit(2, "miles")
  38771. },
  38772. {
  38773. name: "Demi God",
  38774. height: math.unit(4, "AU")
  38775. },
  38776. {
  38777. name: "God Size",
  38778. height: math.unit(1, "universe")
  38779. },
  38780. ]
  38781. ))
  38782. characterMakers.push(() => makeCharacter(
  38783. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38784. {
  38785. front: {
  38786. height: math.unit(3 + 3/12, "feet"),
  38787. weight: math.unit(88, "lb"),
  38788. name: "Front",
  38789. image: {
  38790. source: "./media/characters/trey/front.svg",
  38791. extra: 1815/1509,
  38792. bottom: 60/1875
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(3 + 3/12, "feet"),
  38800. default: true
  38801. },
  38802. ]
  38803. ))
  38804. characterMakers.push(() => makeCharacter(
  38805. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38806. {
  38807. front: {
  38808. height: math.unit(4, "meters"),
  38809. name: "Front",
  38810. image: {
  38811. source: "./media/characters/adelonda/front.svg",
  38812. extra: 1077/982,
  38813. bottom: 39/1116
  38814. }
  38815. },
  38816. back: {
  38817. height: math.unit(4, "meters"),
  38818. name: "Back",
  38819. image: {
  38820. source: "./media/characters/adelonda/back.svg",
  38821. extra: 1105/1003,
  38822. bottom: 25/1130
  38823. }
  38824. },
  38825. feral: {
  38826. height: math.unit(40/1.5, "meters"),
  38827. name: "Feral",
  38828. image: {
  38829. source: "./media/characters/adelonda/feral.svg",
  38830. extra: 597/271,
  38831. bottom: 387/984
  38832. }
  38833. },
  38834. },
  38835. [
  38836. {
  38837. name: "Normal",
  38838. height: math.unit(4, "meters"),
  38839. default: true
  38840. },
  38841. ]
  38842. ))
  38843. characterMakers.push(() => makeCharacter(
  38844. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38845. {
  38846. front: {
  38847. height: math.unit(8 + 4/12, "feet"),
  38848. weight: math.unit(670, "lb"),
  38849. name: "Front",
  38850. image: {
  38851. source: "./media/characters/acadiel/front.svg",
  38852. extra: 1901/1595,
  38853. bottom: 142/2043
  38854. }
  38855. },
  38856. },
  38857. [
  38858. {
  38859. name: "Normal",
  38860. height: math.unit(8 + 4/12, "feet"),
  38861. default: true
  38862. },
  38863. {
  38864. name: "Macro",
  38865. height: math.unit(200, "feet")
  38866. },
  38867. ]
  38868. ))
  38869. characterMakers.push(() => makeCharacter(
  38870. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38871. {
  38872. front: {
  38873. height: math.unit(6 + 2/12, "feet"),
  38874. weight: math.unit(185, "lb"),
  38875. name: "Front",
  38876. image: {
  38877. source: "./media/characters/kayne-ein/front.svg",
  38878. extra: 1780/1560,
  38879. bottom: 81/1861
  38880. }
  38881. },
  38882. },
  38883. [
  38884. {
  38885. name: "Normal",
  38886. height: math.unit(6 + 2/12, "feet"),
  38887. default: true
  38888. },
  38889. {
  38890. name: "Transformation Stage",
  38891. height: math.unit(15, "feet")
  38892. },
  38893. {
  38894. name: "Macro",
  38895. height: math.unit(150, "feet")
  38896. },
  38897. {
  38898. name: "Earth's Shadow",
  38899. height: math.unit(6200, "miles")
  38900. },
  38901. {
  38902. name: "Universal Demon",
  38903. height: math.unit(28e9, "parsecs")
  38904. },
  38905. {
  38906. name: "Multiverse God",
  38907. height: math.unit(3, "multiverses")
  38908. },
  38909. ]
  38910. ))
  38911. characterMakers.push(() => makeCharacter(
  38912. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38913. {
  38914. front: {
  38915. height: math.unit(5 + 5/12, "feet"),
  38916. name: "Front",
  38917. image: {
  38918. source: "./media/characters/fawn/front.svg",
  38919. extra: 1873/1731,
  38920. bottom: 95/1968
  38921. }
  38922. },
  38923. back: {
  38924. height: math.unit(5 + 5/12, "feet"),
  38925. name: "Back",
  38926. image: {
  38927. source: "./media/characters/fawn/back.svg",
  38928. extra: 1813/1700,
  38929. bottom: 14/1827
  38930. }
  38931. },
  38932. hoof: {
  38933. height: math.unit(1.45, "feet"),
  38934. name: "Hoof",
  38935. image: {
  38936. source: "./media/characters/fawn/hoof.svg"
  38937. }
  38938. },
  38939. },
  38940. [
  38941. {
  38942. name: "Normal",
  38943. height: math.unit(5 + 5/12, "feet"),
  38944. default: true
  38945. },
  38946. ]
  38947. ))
  38948. characterMakers.push(() => makeCharacter(
  38949. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38950. {
  38951. front: {
  38952. height: math.unit(2 + 5/12, "feet"),
  38953. name: "Front",
  38954. image: {
  38955. source: "./media/characters/orion/front.svg",
  38956. extra: 1366/1304,
  38957. bottom: 43/1409
  38958. }
  38959. },
  38960. paw: {
  38961. height: math.unit(0.52, "feet"),
  38962. name: "Paw",
  38963. image: {
  38964. source: "./media/characters/orion/paw.svg"
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Normal",
  38971. height: math.unit(2 + 5/12, "feet"),
  38972. default: true
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38978. {
  38979. front: {
  38980. height: math.unit(5 + 10/12, "feet"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/vera/front.svg",
  38984. extra: 1680/1575,
  38985. bottom: 49/1729
  38986. }
  38987. },
  38988. back: {
  38989. height: math.unit(5 + 10/12, "feet"),
  38990. name: "Back",
  38991. image: {
  38992. source: "./media/characters/vera/back.svg",
  38993. extra: 1700/1588,
  38994. bottom: 18/1718
  38995. }
  38996. },
  38997. arcanine: {
  38998. height: math.unit(6 + 8/12, "feet"),
  38999. name: "Arcanine",
  39000. image: {
  39001. source: "./media/characters/vera/arcanine.svg",
  39002. extra: 1590/1511,
  39003. bottom: 71/1661
  39004. }
  39005. },
  39006. maw: {
  39007. height: math.unit(0.82, "feet"),
  39008. name: "Maw",
  39009. image: {
  39010. source: "./media/characters/vera/maw.svg"
  39011. }
  39012. },
  39013. mawArcanine: {
  39014. height: math.unit(0.97, "feet"),
  39015. name: "Maw (Arcanine)",
  39016. image: {
  39017. source: "./media/characters/vera/maw-arcanine.svg"
  39018. }
  39019. },
  39020. paw: {
  39021. height: math.unit(0.75, "feet"),
  39022. name: "Paw",
  39023. image: {
  39024. source: "./media/characters/vera/paw.svg"
  39025. }
  39026. },
  39027. pawprint: {
  39028. height: math.unit(0.52, "feet"),
  39029. name: "Pawprint",
  39030. image: {
  39031. source: "./media/characters/vera/pawprint.svg"
  39032. }
  39033. },
  39034. },
  39035. [
  39036. {
  39037. name: "Normal",
  39038. height: math.unit(5 + 10/12, "feet"),
  39039. default: true
  39040. },
  39041. {
  39042. name: "Macro",
  39043. height: math.unit(75, "feet")
  39044. },
  39045. ]
  39046. ))
  39047. characterMakers.push(() => makeCharacter(
  39048. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39049. {
  39050. front: {
  39051. height: math.unit(4, "feet"),
  39052. weight: math.unit(40, "lb"),
  39053. name: "Front",
  39054. image: {
  39055. source: "./media/characters/orvan-rabbit/front.svg",
  39056. extra: 1896/1642,
  39057. bottom: 29/1925
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Normal",
  39064. height: math.unit(4, "feet"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(6, "feet"),
  39074. weight: math.unit(168, "lb"),
  39075. name: "Front",
  39076. image: {
  39077. source: "./media/characters/lisa/front.svg",
  39078. extra: 2065/1867,
  39079. bottom: 46/2111
  39080. }
  39081. },
  39082. back: {
  39083. height: math.unit(6, "feet"),
  39084. weight: math.unit(168, "lb"),
  39085. name: "Back",
  39086. image: {
  39087. source: "./media/characters/lisa/back.svg",
  39088. extra: 1982/1838,
  39089. bottom: 29/2011
  39090. }
  39091. },
  39092. maw: {
  39093. height: math.unit(0.81, "feet"),
  39094. name: "Maw",
  39095. image: {
  39096. source: "./media/characters/lisa/maw.svg"
  39097. }
  39098. },
  39099. paw: {
  39100. height: math.unit(0.9, "feet"),
  39101. name: "Paw",
  39102. image: {
  39103. source: "./media/characters/lisa/paw.svg"
  39104. }
  39105. },
  39106. caribousune: {
  39107. height: math.unit(7 + 2/12, "feet"),
  39108. weight: math.unit(268, "lb"),
  39109. name: "Caribousune",
  39110. image: {
  39111. source: "./media/characters/lisa/caribousune.svg",
  39112. extra: 1843/1633,
  39113. bottom: 29/1872
  39114. }
  39115. },
  39116. frontCaribousune: {
  39117. height: math.unit(7 + 2/12, "feet"),
  39118. weight: math.unit(268, "lb"),
  39119. name: "Front (Caribousune)",
  39120. image: {
  39121. source: "./media/characters/lisa/front-caribousune.svg",
  39122. extra: 1818/1638,
  39123. bottom: 52/1870
  39124. }
  39125. },
  39126. sideCaribousune: {
  39127. height: math.unit(7 + 2/12, "feet"),
  39128. weight: math.unit(268, "lb"),
  39129. name: "Side (Caribousune)",
  39130. image: {
  39131. source: "./media/characters/lisa/side-caribousune.svg",
  39132. extra: 1851/1635,
  39133. bottom: 16/1867
  39134. }
  39135. },
  39136. backCaribousune: {
  39137. height: math.unit(7 + 2/12, "feet"),
  39138. weight: math.unit(268, "lb"),
  39139. name: "Back (Caribousune)",
  39140. image: {
  39141. source: "./media/characters/lisa/back-caribousune.svg",
  39142. extra: 1801/1604,
  39143. bottom: 44/1845
  39144. }
  39145. },
  39146. caribou: {
  39147. height: math.unit(7 + 2/12, "feet"),
  39148. weight: math.unit(268, "lb"),
  39149. name: "Caribou",
  39150. image: {
  39151. source: "./media/characters/lisa/caribou.svg",
  39152. extra: 1843/1633,
  39153. bottom: 29/1872
  39154. }
  39155. },
  39156. frontCaribou: {
  39157. height: math.unit(7 + 2/12, "feet"),
  39158. weight: math.unit(268, "lb"),
  39159. name: "Front (Caribou)",
  39160. image: {
  39161. source: "./media/characters/lisa/front-caribou.svg",
  39162. extra: 1818/1638,
  39163. bottom: 52/1870
  39164. }
  39165. },
  39166. sideCaribou: {
  39167. height: math.unit(7 + 2/12, "feet"),
  39168. weight: math.unit(268, "lb"),
  39169. name: "Side (Caribou)",
  39170. image: {
  39171. source: "./media/characters/lisa/side-caribou.svg",
  39172. extra: 1851/1635,
  39173. bottom: 16/1867
  39174. }
  39175. },
  39176. backCaribou: {
  39177. height: math.unit(7 + 2/12, "feet"),
  39178. weight: math.unit(268, "lb"),
  39179. name: "Back (Caribou)",
  39180. image: {
  39181. source: "./media/characters/lisa/back-caribou.svg",
  39182. extra: 1801/1604,
  39183. bottom: 44/1845
  39184. }
  39185. },
  39186. mawCaribou: {
  39187. height: math.unit(1.45, "feet"),
  39188. name: "Maw (Caribou)",
  39189. image: {
  39190. source: "./media/characters/lisa/maw-caribou.svg"
  39191. }
  39192. },
  39193. mawCaribousune: {
  39194. height: math.unit(1.45, "feet"),
  39195. name: "Maw (Caribousune)",
  39196. image: {
  39197. source: "./media/characters/lisa/maw-caribousune.svg"
  39198. }
  39199. },
  39200. pawCaribousune: {
  39201. height: math.unit(1.61, "feet"),
  39202. name: "Paw (Caribou)",
  39203. image: {
  39204. source: "./media/characters/lisa/paw-caribousune.svg"
  39205. }
  39206. },
  39207. },
  39208. [
  39209. {
  39210. name: "Normal",
  39211. height: math.unit(6, "feet")
  39212. },
  39213. {
  39214. name: "God Size",
  39215. height: math.unit(72, "feet"),
  39216. default: true
  39217. },
  39218. {
  39219. name: "Towering",
  39220. height: math.unit(288, "feet")
  39221. },
  39222. {
  39223. name: "City Size",
  39224. height: math.unit(48384, "feet")
  39225. },
  39226. {
  39227. name: "Continental",
  39228. height: math.unit(4200, "miles")
  39229. },
  39230. {
  39231. name: "Planet Eater",
  39232. height: math.unit(42, "earths")
  39233. },
  39234. {
  39235. name: "Star Swallower",
  39236. height: math.unit(42, "solarradii")
  39237. },
  39238. {
  39239. name: "System Swallower",
  39240. height: math.unit(84000, "AU")
  39241. },
  39242. {
  39243. name: "Galaxy Gobbler",
  39244. height: math.unit(42, "galaxies")
  39245. },
  39246. {
  39247. name: "Universe Devourer",
  39248. height: math.unit(42, "universes")
  39249. },
  39250. {
  39251. name: "Multiverse Muncher",
  39252. height: math.unit(42, "multiverses")
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(36, "feet"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/shadow-rat/front.svg",
  39264. extra: 1845/1758,
  39265. bottom: 83/1928
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Macro",
  39272. height: math.unit(36, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39279. {
  39280. side: {
  39281. height: math.unit(8, "feet"),
  39282. weight: math.unit(2630, "lb"),
  39283. name: "Side",
  39284. image: {
  39285. source: "./media/characters/torallia/side.svg",
  39286. extra: 2164/2021,
  39287. bottom: 371/2535
  39288. }
  39289. },
  39290. },
  39291. [
  39292. {
  39293. name: "Mortal Interaction",
  39294. height: math.unit(8, "feet")
  39295. },
  39296. {
  39297. name: "Natural",
  39298. height: math.unit(24, "feet"),
  39299. default: true
  39300. },
  39301. {
  39302. name: "Giant",
  39303. height: math.unit(80, "feet")
  39304. },
  39305. {
  39306. name: "Kaiju",
  39307. height: math.unit(240, "feet")
  39308. },
  39309. {
  39310. name: "Macro",
  39311. height: math.unit(800, "feet")
  39312. },
  39313. {
  39314. name: "Macro+",
  39315. height: math.unit(2400, "feet")
  39316. },
  39317. {
  39318. name: "Macro++",
  39319. height: math.unit(8000, "feet")
  39320. },
  39321. {
  39322. name: "City-Crushing",
  39323. height: math.unit(24000, "feet")
  39324. },
  39325. {
  39326. name: "Mountain-Mashing",
  39327. height: math.unit(80000, "feet")
  39328. },
  39329. {
  39330. name: "District Demolisher",
  39331. height: math.unit(240000, "feet")
  39332. },
  39333. {
  39334. name: "Tri-County Terror",
  39335. height: math.unit(800000, "feet")
  39336. },
  39337. {
  39338. name: "State Smasher",
  39339. height: math.unit(2.4e6, "feet")
  39340. },
  39341. {
  39342. name: "Nation Nemesis",
  39343. height: math.unit(8e6, "feet")
  39344. },
  39345. {
  39346. name: "Continent Cracker",
  39347. height: math.unit(2.4e7, "feet")
  39348. },
  39349. {
  39350. name: "Planet-Pillaging",
  39351. height: math.unit(8e7, "feet")
  39352. },
  39353. {
  39354. name: "Earth-Eclipsing",
  39355. height: math.unit(2.4e8, "feet")
  39356. },
  39357. {
  39358. name: "Jovian-Jostling",
  39359. height: math.unit(8e8, "feet")
  39360. },
  39361. {
  39362. name: "Gas Giant Gulper",
  39363. height: math.unit(2.4e9, "feet")
  39364. },
  39365. {
  39366. name: "Astral Annihilator",
  39367. height: math.unit(8e9, "feet")
  39368. },
  39369. {
  39370. name: "Celestial Conqueror",
  39371. height: math.unit(2.4e10, "feet")
  39372. },
  39373. {
  39374. name: "Sol-Swallowing",
  39375. height: math.unit(8e10, "feet")
  39376. },
  39377. {
  39378. name: "Hunter of the Heavens",
  39379. height: math.unit(2.4e13, "feet")
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(6 + 8/12, "feet"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/rebecca-pawlson/front.svg",
  39391. extra: 1737/1596,
  39392. bottom: 107/1844
  39393. }
  39394. },
  39395. back: {
  39396. height: math.unit(6 + 8/12, "feet"),
  39397. name: "Back",
  39398. image: {
  39399. source: "./media/characters/rebecca-pawlson/back.svg",
  39400. extra: 1702/1523,
  39401. bottom: 86/1788
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Normal",
  39408. height: math.unit(6 + 8/12, "feet")
  39409. },
  39410. {
  39411. name: "Mini Macro",
  39412. height: math.unit(10, "feet"),
  39413. default: true
  39414. },
  39415. {
  39416. name: "Macro",
  39417. height: math.unit(100, "feet")
  39418. },
  39419. {
  39420. name: "Mega Macro",
  39421. height: math.unit(2500, "feet")
  39422. },
  39423. {
  39424. name: "Giga Macro",
  39425. height: math.unit(50, "miles")
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39431. {
  39432. front: {
  39433. height: math.unit(7 + 6/12, "feet"),
  39434. weight: math.unit(600, "lb"),
  39435. name: "Front",
  39436. image: {
  39437. source: "./media/characters/moxie-nova/front.svg",
  39438. extra: 1734/1652,
  39439. bottom: 41/1775
  39440. }
  39441. },
  39442. },
  39443. [
  39444. {
  39445. name: "Normal",
  39446. height: math.unit(7 + 6/12, "feet"),
  39447. default: true
  39448. },
  39449. ]
  39450. ))
  39451. characterMakers.push(() => makeCharacter(
  39452. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39453. {
  39454. goat: {
  39455. height: math.unit(4, "feet"),
  39456. weight: math.unit(180, "lb"),
  39457. name: "Goat",
  39458. image: {
  39459. source: "./media/characters/tiffany/goat.svg",
  39460. extra: 1845/1595,
  39461. bottom: 106/1951
  39462. }
  39463. },
  39464. front: {
  39465. height: math.unit(5, "feet"),
  39466. weight: math.unit(150, "lb"),
  39467. name: "Foxcoon",
  39468. image: {
  39469. source: "./media/characters/tiffany/foxcoon.svg",
  39470. extra: 1941/1845,
  39471. bottom: 58/1999
  39472. }
  39473. },
  39474. },
  39475. [
  39476. {
  39477. name: "Normal",
  39478. height: math.unit(5, "feet"),
  39479. default: true
  39480. },
  39481. ]
  39482. ))
  39483. characterMakers.push(() => makeCharacter(
  39484. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39485. {
  39486. front: {
  39487. height: math.unit(8, "feet"),
  39488. weight: math.unit(300, "lb"),
  39489. name: "Front",
  39490. image: {
  39491. source: "./media/characters/raxinath/front.svg",
  39492. extra: 1407/1309,
  39493. bottom: 39/1446
  39494. }
  39495. },
  39496. back: {
  39497. height: math.unit(8, "feet"),
  39498. weight: math.unit(300, "lb"),
  39499. name: "Back",
  39500. image: {
  39501. source: "./media/characters/raxinath/back.svg",
  39502. extra: 1405/1315,
  39503. bottom: 9/1414
  39504. }
  39505. },
  39506. },
  39507. [
  39508. {
  39509. name: "Speck",
  39510. height: math.unit(0.5, "nm")
  39511. },
  39512. {
  39513. name: "Micro",
  39514. height: math.unit(3, "inches")
  39515. },
  39516. {
  39517. name: "Kobold",
  39518. height: math.unit(3, "feet")
  39519. },
  39520. {
  39521. name: "Normal",
  39522. height: math.unit(8, "feet"),
  39523. default: true
  39524. },
  39525. {
  39526. name: "Giant",
  39527. height: math.unit(50, "feet")
  39528. },
  39529. {
  39530. name: "Macro",
  39531. height: math.unit(1000, "feet")
  39532. },
  39533. {
  39534. name: "Megamacro",
  39535. height: math.unit(1, "mile")
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39541. {
  39542. front: {
  39543. height: math.unit(10, "feet"),
  39544. weight: math.unit(1442, "lb"),
  39545. name: "Front",
  39546. image: {
  39547. source: "./media/characters/mal-dragon/front.svg",
  39548. extra: 1515/1444,
  39549. bottom: 113/1628
  39550. }
  39551. },
  39552. back: {
  39553. height: math.unit(10, "feet"),
  39554. weight: math.unit(1442, "lb"),
  39555. name: "Back",
  39556. image: {
  39557. source: "./media/characters/mal-dragon/back.svg",
  39558. extra: 1527/1434,
  39559. bottom: 25/1552
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Mortal Interaction",
  39566. height: math.unit(10, "feet"),
  39567. default: true
  39568. },
  39569. {
  39570. name: "Large",
  39571. height: math.unit(30, "feet")
  39572. },
  39573. {
  39574. name: "Kaiju",
  39575. height: math.unit(300, "feet")
  39576. },
  39577. {
  39578. name: "Megamacro",
  39579. height: math.unit(10000, "feet")
  39580. },
  39581. {
  39582. name: "Continent Cracker",
  39583. height: math.unit(30000000, "feet")
  39584. },
  39585. {
  39586. name: "Sol-Swallowing",
  39587. height: math.unit(1e11, "feet")
  39588. },
  39589. {
  39590. name: "Light Universal",
  39591. height: math.unit(5, "universes")
  39592. },
  39593. {
  39594. name: "Universe Atoms",
  39595. height: math.unit(1.829e9, "universes")
  39596. },
  39597. {
  39598. name: "Light Multiversal",
  39599. height: math.unit(5, "multiverses")
  39600. },
  39601. {
  39602. name: "Multiverse Atoms",
  39603. height: math.unit(1.829e9, "multiverses")
  39604. },
  39605. {
  39606. name: "Fabric of Time",
  39607. height: math.unit(1e262, "multiverses")
  39608. },
  39609. ]
  39610. ))
  39611. characterMakers.push(() => makeCharacter(
  39612. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39613. {
  39614. front: {
  39615. height: math.unit(9, "feet"),
  39616. weight: math.unit(1050, "lb"),
  39617. name: "Front",
  39618. image: {
  39619. source: "./media/characters/tabitha/front.svg",
  39620. extra: 2083/1994,
  39621. bottom: 68/2151
  39622. }
  39623. },
  39624. },
  39625. [
  39626. {
  39627. name: "Baseline",
  39628. height: math.unit(9, "feet"),
  39629. default: true
  39630. },
  39631. {
  39632. name: "Giant",
  39633. height: math.unit(90, "feet")
  39634. },
  39635. {
  39636. name: "Macro",
  39637. height: math.unit(900, "feet")
  39638. },
  39639. {
  39640. name: "Megamacro",
  39641. height: math.unit(9000, "feet")
  39642. },
  39643. {
  39644. name: "City-Crushing",
  39645. height: math.unit(27000, "feet")
  39646. },
  39647. {
  39648. name: "Mountain-Mashing",
  39649. height: math.unit(90000, "feet")
  39650. },
  39651. {
  39652. name: "Nation Nemesis",
  39653. height: math.unit(9e6, "feet")
  39654. },
  39655. {
  39656. name: "Continent Cracker",
  39657. height: math.unit(27e6, "feet")
  39658. },
  39659. {
  39660. name: "Earth-Eclipsing",
  39661. height: math.unit(2.7e8, "feet")
  39662. },
  39663. {
  39664. name: "Gas Giant Gulper",
  39665. height: math.unit(2.7e9, "feet")
  39666. },
  39667. {
  39668. name: "Sol-Swallowing",
  39669. height: math.unit(9e10, "feet")
  39670. },
  39671. {
  39672. name: "Galaxy Gulper",
  39673. height: math.unit(9, "galaxies")
  39674. },
  39675. {
  39676. name: "Cosmos Churner",
  39677. height: math.unit(9, "universes")
  39678. },
  39679. ]
  39680. ))
  39681. characterMakers.push(() => makeCharacter(
  39682. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39683. {
  39684. front: {
  39685. height: math.unit(160, "cm"),
  39686. weight: math.unit(55, "kg"),
  39687. name: "Front",
  39688. image: {
  39689. source: "./media/characters/tow/front.svg",
  39690. extra: 1751/1722,
  39691. bottom: 74/1825
  39692. }
  39693. },
  39694. },
  39695. [
  39696. {
  39697. name: "Norm",
  39698. height: math.unit(160, "cm")
  39699. },
  39700. {
  39701. name: "Casual",
  39702. height: math.unit(3200, "m"),
  39703. default: true
  39704. },
  39705. {
  39706. name: "Show-Off",
  39707. height: math.unit(160, "km")
  39708. },
  39709. ]
  39710. ))
  39711. characterMakers.push(() => makeCharacter(
  39712. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39713. {
  39714. front: {
  39715. height: math.unit(7 + 11/12, "feet"),
  39716. weight: math.unit(342.8, "lb"),
  39717. name: "Front",
  39718. image: {
  39719. source: "./media/characters/vivian-orca-dragon/front.svg",
  39720. extra: 1890/1865,
  39721. bottom: 28/1918
  39722. }
  39723. },
  39724. },
  39725. [
  39726. {
  39727. name: "Micro",
  39728. height: math.unit(5, "inches")
  39729. },
  39730. {
  39731. name: "Normal",
  39732. height: math.unit(7 + 11/12, "feet"),
  39733. default: true
  39734. },
  39735. {
  39736. name: "Macro",
  39737. height: math.unit(395 + 7/12, "feet")
  39738. },
  39739. ]
  39740. ))
  39741. characterMakers.push(() => makeCharacter(
  39742. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39743. {
  39744. side: {
  39745. height: math.unit(10, "feet"),
  39746. weight: math.unit(1442, "lb"),
  39747. name: "Side",
  39748. image: {
  39749. source: "./media/characters/lotherakon/side.svg",
  39750. extra: 1604/1497,
  39751. bottom: 89/1693
  39752. }
  39753. },
  39754. },
  39755. [
  39756. {
  39757. name: "Mortal Interaction",
  39758. height: math.unit(10, "feet")
  39759. },
  39760. {
  39761. name: "Large",
  39762. height: math.unit(30, "feet"),
  39763. default: true
  39764. },
  39765. {
  39766. name: "Giant",
  39767. height: math.unit(100, "feet")
  39768. },
  39769. {
  39770. name: "Kaiju",
  39771. height: math.unit(300, "feet")
  39772. },
  39773. {
  39774. name: "Macro",
  39775. height: math.unit(1000, "feet")
  39776. },
  39777. {
  39778. name: "Macro+",
  39779. height: math.unit(3000, "feet")
  39780. },
  39781. {
  39782. name: "Megamacro",
  39783. height: math.unit(10000, "feet")
  39784. },
  39785. {
  39786. name: "City-Crushing",
  39787. height: math.unit(30000, "feet")
  39788. },
  39789. {
  39790. name: "Continent Cracker",
  39791. height: math.unit(30e6, "feet")
  39792. },
  39793. {
  39794. name: "Earth Eclipsing",
  39795. height: math.unit(3e8, "feet")
  39796. },
  39797. {
  39798. name: "Gas Giant Gulper",
  39799. height: math.unit(3e9, "feet")
  39800. },
  39801. {
  39802. name: "Sol-Swallowing",
  39803. height: math.unit(1e11, "feet")
  39804. },
  39805. {
  39806. name: "System Swallower",
  39807. height: math.unit(3e14, "feet")
  39808. },
  39809. {
  39810. name: "Galaxy Gulper",
  39811. height: math.unit(10, "galaxies")
  39812. },
  39813. {
  39814. name: "Light Universal",
  39815. height: math.unit(5, "universes")
  39816. },
  39817. {
  39818. name: "Universe Palm",
  39819. height: math.unit(20, "universes")
  39820. },
  39821. {
  39822. name: "Light Multiversal",
  39823. height: math.unit(5, "multiverses")
  39824. },
  39825. {
  39826. name: "Multiverse Palm",
  39827. height: math.unit(20, "multiverses")
  39828. },
  39829. {
  39830. name: "Inferno Incarnate",
  39831. height: math.unit(1e7, "multiverses")
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(8, "feet"),
  39840. weight: math.unit(1200, "lb"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/malithee/front.svg",
  39844. extra: 1675/1640,
  39845. bottom: 162/1837
  39846. }
  39847. },
  39848. },
  39849. [
  39850. {
  39851. name: "Mortal Interaction",
  39852. height: math.unit(8, "feet"),
  39853. default: true
  39854. },
  39855. {
  39856. name: "Large",
  39857. height: math.unit(24, "feet")
  39858. },
  39859. {
  39860. name: "Kaiju",
  39861. height: math.unit(240, "feet")
  39862. },
  39863. {
  39864. name: "Megamacro",
  39865. height: math.unit(8000, "feet")
  39866. },
  39867. {
  39868. name: "Continent Cracker",
  39869. height: math.unit(24e6, "feet")
  39870. },
  39871. {
  39872. name: "Earth-Eclipsing",
  39873. height: math.unit(2.4e8, "feet")
  39874. },
  39875. {
  39876. name: "Sol-Swallowing",
  39877. height: math.unit(8e10, "feet")
  39878. },
  39879. {
  39880. name: "Galaxy Gulper",
  39881. height: math.unit(8, "galaxies")
  39882. },
  39883. {
  39884. name: "Light Universal",
  39885. height: math.unit(4, "universes")
  39886. },
  39887. {
  39888. name: "Universe Atoms",
  39889. height: math.unit(1.829e9, "universes")
  39890. },
  39891. {
  39892. name: "Light Multiversal",
  39893. height: math.unit(4, "multiverses")
  39894. },
  39895. {
  39896. name: "Multiverse Atoms",
  39897. height: math.unit(1.829e9, "multiverses")
  39898. },
  39899. {
  39900. name: "Nigh-Omnipresence",
  39901. height: math.unit(8e261, "multiverses")
  39902. },
  39903. ]
  39904. ))
  39905. characterMakers.push(() => makeCharacter(
  39906. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39907. {
  39908. front: {
  39909. height: math.unit(10, "feet"),
  39910. weight: math.unit(1500, "lb"),
  39911. name: "Front",
  39912. image: {
  39913. source: "./media/characters/miles-thestia/front.svg",
  39914. extra: 1812/1727,
  39915. bottom: 86/1898
  39916. }
  39917. },
  39918. back: {
  39919. height: math.unit(10, "feet"),
  39920. weight: math.unit(1500, "lb"),
  39921. name: "Back",
  39922. image: {
  39923. source: "./media/characters/miles-thestia/back.svg",
  39924. extra: 1799/1690,
  39925. bottom: 47/1846
  39926. }
  39927. },
  39928. frontNsfw: {
  39929. height: math.unit(10, "feet"),
  39930. weight: math.unit(1500, "lb"),
  39931. name: "Front (NSFW)",
  39932. image: {
  39933. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39934. extra: 1812/1727,
  39935. bottom: 86/1898
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Mini-Macro",
  39942. height: math.unit(10, "feet"),
  39943. default: true
  39944. },
  39945. ]
  39946. ))
  39947. characterMakers.push(() => makeCharacter(
  39948. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39949. {
  39950. front: {
  39951. height: math.unit(25, "feet"),
  39952. name: "Front",
  39953. image: {
  39954. source: "./media/characters/titan-s-wulf/front.svg",
  39955. extra: 1560/1484,
  39956. bottom: 76/1636
  39957. }
  39958. },
  39959. },
  39960. [
  39961. {
  39962. name: "Smallest",
  39963. height: math.unit(25, "feet"),
  39964. default: true
  39965. },
  39966. {
  39967. name: "Normal",
  39968. height: math.unit(200, "feet")
  39969. },
  39970. {
  39971. name: "Macro",
  39972. height: math.unit(200000, "feet")
  39973. },
  39974. {
  39975. name: "Multiversal Original",
  39976. height: math.unit(10000, "multiverses")
  39977. },
  39978. ]
  39979. ))
  39980. characterMakers.push(() => makeCharacter(
  39981. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39982. {
  39983. front: {
  39984. height: math.unit(8, "feet"),
  39985. weight: math.unit(553, "lb"),
  39986. name: "Front",
  39987. image: {
  39988. source: "./media/characters/tawendeh/front.svg",
  39989. extra: 2365/2268,
  39990. bottom: 83/2448
  39991. }
  39992. },
  39993. frontClothed: {
  39994. height: math.unit(8, "feet"),
  39995. weight: math.unit(553, "lb"),
  39996. name: "Front (Clothed)",
  39997. image: {
  39998. source: "./media/characters/tawendeh/front-clothed.svg",
  39999. extra: 2365/2268,
  40000. bottom: 83/2448
  40001. }
  40002. },
  40003. back: {
  40004. height: math.unit(8, "feet"),
  40005. weight: math.unit(553, "lb"),
  40006. name: "Back",
  40007. image: {
  40008. source: "./media/characters/tawendeh/back.svg",
  40009. extra: 2397/2294,
  40010. bottom: 42/2439
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Mortal Interaction",
  40017. height: math.unit(8, "feet"),
  40018. default: true
  40019. },
  40020. {
  40021. name: "Giant",
  40022. height: math.unit(80, "feet")
  40023. },
  40024. {
  40025. name: "Macro",
  40026. height: math.unit(800, "feet")
  40027. },
  40028. {
  40029. name: "Megamacro",
  40030. height: math.unit(8000, "feet")
  40031. },
  40032. {
  40033. name: "City-Crushing",
  40034. height: math.unit(24000, "feet")
  40035. },
  40036. {
  40037. name: "Mountain-Mashing",
  40038. height: math.unit(80000, "feet")
  40039. },
  40040. {
  40041. name: "Nation Nemesis",
  40042. height: math.unit(8e6, "feet")
  40043. },
  40044. {
  40045. name: "Continent Cracker",
  40046. height: math.unit(24e6, "feet")
  40047. },
  40048. {
  40049. name: "Earth-Eclipsing",
  40050. height: math.unit(2.4e8, "feet")
  40051. },
  40052. {
  40053. name: "Gas Giant Gulper",
  40054. height: math.unit(2.4e9, "feet")
  40055. },
  40056. {
  40057. name: "Sol-Swallowing",
  40058. height: math.unit(8e10, "feet")
  40059. },
  40060. {
  40061. name: "Galaxy Gulper",
  40062. height: math.unit(8, "galaxies")
  40063. },
  40064. {
  40065. name: "Cosmos Churner",
  40066. height: math.unit(8, "universes")
  40067. },
  40068. {
  40069. name: "Omnipotent Otter",
  40070. height: math.unit(80, "universes")
  40071. },
  40072. ]
  40073. ))
  40074. characterMakers.push(() => makeCharacter(
  40075. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40076. {
  40077. front: {
  40078. height: math.unit(2.6, "meters"),
  40079. weight: math.unit(900, "kg"),
  40080. name: "Front",
  40081. image: {
  40082. source: "./media/characters/neesha/front.svg",
  40083. extra: 1803/1653,
  40084. bottom: 128/1931
  40085. }
  40086. },
  40087. },
  40088. [
  40089. {
  40090. name: "Normal",
  40091. height: math.unit(2.6, "meters"),
  40092. default: true
  40093. },
  40094. {
  40095. name: "Macro",
  40096. height: math.unit(50, "meters")
  40097. },
  40098. ]
  40099. ))
  40100. characterMakers.push(() => makeCharacter(
  40101. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40102. {
  40103. front: {
  40104. height: math.unit(5, "feet"),
  40105. weight: math.unit(185, "lb"),
  40106. name: "Front",
  40107. image: {
  40108. source: "./media/characters/kyera/front.svg",
  40109. extra: 1875/1790,
  40110. bottom: 96/1971
  40111. }
  40112. },
  40113. },
  40114. [
  40115. {
  40116. name: "Normal",
  40117. height: math.unit(5, "feet"),
  40118. default: true
  40119. },
  40120. ]
  40121. ))
  40122. characterMakers.push(() => makeCharacter(
  40123. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40124. {
  40125. front: {
  40126. height: math.unit(7 + 6/12, "feet"),
  40127. weight: math.unit(540, "lb"),
  40128. name: "Front",
  40129. image: {
  40130. source: "./media/characters/yuko/front.svg",
  40131. extra: 1282/1222,
  40132. bottom: 101/1383
  40133. }
  40134. },
  40135. frontClothed: {
  40136. height: math.unit(7 + 6/12, "feet"),
  40137. weight: math.unit(540, "lb"),
  40138. name: "Front (Clothed)",
  40139. image: {
  40140. source: "./media/characters/yuko/front-clothed.svg",
  40141. extra: 1282/1222,
  40142. bottom: 101/1383
  40143. }
  40144. },
  40145. },
  40146. [
  40147. {
  40148. name: "Normal",
  40149. height: math.unit(7 + 6/12, "feet"),
  40150. default: true
  40151. },
  40152. {
  40153. name: "Macro",
  40154. height: math.unit(26 + 9/12, "feet")
  40155. },
  40156. {
  40157. name: "Megamacro",
  40158. height: math.unit(300, "feet")
  40159. },
  40160. {
  40161. name: "Gigamacro",
  40162. height: math.unit(5000, "feet")
  40163. },
  40164. {
  40165. name: "Planetary",
  40166. height: math.unit(10000, "miles")
  40167. },
  40168. ]
  40169. ))
  40170. characterMakers.push(() => makeCharacter(
  40171. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40172. {
  40173. front: {
  40174. height: math.unit(8 + 2/12, "feet"),
  40175. weight: math.unit(600, "lb"),
  40176. name: "Front",
  40177. image: {
  40178. source: "./media/characters/deam-nitrel/front.svg",
  40179. extra: 1308/1234,
  40180. bottom: 125/1433
  40181. }
  40182. },
  40183. },
  40184. [
  40185. {
  40186. name: "Normal",
  40187. height: math.unit(8 + 2/12, "feet"),
  40188. default: true
  40189. },
  40190. ]
  40191. ))
  40192. characterMakers.push(() => makeCharacter(
  40193. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40194. {
  40195. front: {
  40196. height: math.unit(6.1, "feet"),
  40197. weight: math.unit(180, "lb"),
  40198. name: "Front",
  40199. image: {
  40200. source: "./media/characters/skyress/front.svg",
  40201. extra: 1045/915,
  40202. bottom: 28/1073
  40203. }
  40204. },
  40205. maw: {
  40206. height: math.unit(1, "feet"),
  40207. name: "Maw",
  40208. image: {
  40209. source: "./media/characters/skyress/maw.svg"
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(6.1, "feet"),
  40217. default: true
  40218. },
  40219. {
  40220. name: "Macro",
  40221. height: math.unit(200, "feet")
  40222. },
  40223. ]
  40224. ))
  40225. characterMakers.push(() => makeCharacter(
  40226. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40227. {
  40228. front: {
  40229. height: math.unit(4 + 2/12, "feet"),
  40230. weight: math.unit(40, "kg"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/amethyst-jones/front.svg",
  40234. extra: 1220/1150,
  40235. bottom: 101/1321
  40236. }
  40237. },
  40238. },
  40239. [
  40240. {
  40241. name: "Normal",
  40242. height: math.unit(4 + 2/12, "feet"),
  40243. default: true
  40244. },
  40245. ]
  40246. ))
  40247. characterMakers.push(() => makeCharacter(
  40248. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40249. {
  40250. front: {
  40251. height: math.unit(1.7, "m"),
  40252. weight: math.unit(135, "lb"),
  40253. name: "Front",
  40254. image: {
  40255. source: "./media/characters/jade/front.svg",
  40256. extra: 1818/1767,
  40257. bottom: 32/1850
  40258. }
  40259. },
  40260. back: {
  40261. height: math.unit(1.7, "m"),
  40262. weight: math.unit(135, "lb"),
  40263. name: "Back",
  40264. image: {
  40265. source: "./media/characters/jade/back.svg",
  40266. extra: 1869/1809,
  40267. bottom: 35/1904
  40268. }
  40269. },
  40270. hand: {
  40271. height: math.unit(0.24, "m"),
  40272. name: "Hand",
  40273. image: {
  40274. source: "./media/characters/jade/hand.svg"
  40275. }
  40276. },
  40277. foot: {
  40278. height: math.unit(0.263, "m"),
  40279. name: "Foot",
  40280. image: {
  40281. source: "./media/characters/jade/foot.svg"
  40282. }
  40283. },
  40284. dick: {
  40285. height: math.unit(0.47, "m"),
  40286. name: "Dick",
  40287. image: {
  40288. source: "./media/characters/jade/dick.svg"
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Micro",
  40295. height: math.unit(22, "cm")
  40296. },
  40297. {
  40298. name: "Normal",
  40299. height: math.unit(1.7, "m"),
  40300. default: true
  40301. },
  40302. {
  40303. name: "Macro",
  40304. height: math.unit(152, "m")
  40305. },
  40306. ]
  40307. ))
  40308. characterMakers.push(() => makeCharacter(
  40309. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40310. {
  40311. front: {
  40312. height: math.unit(100, "miles"),
  40313. weight: math.unit(20000, "tons"),
  40314. name: "Front",
  40315. image: {
  40316. source: "./media/characters/cookie/front.svg",
  40317. extra: 1125/1070,
  40318. bottom: 30/1155
  40319. }
  40320. },
  40321. },
  40322. [
  40323. {
  40324. name: "Big",
  40325. height: math.unit(50, "feet")
  40326. },
  40327. {
  40328. name: "Macro",
  40329. height: math.unit(100, "miles"),
  40330. default: true
  40331. },
  40332. {
  40333. name: "Megamacro",
  40334. height: math.unit(90000, "miles")
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(6, "feet"),
  40343. weight: math.unit(145, "lb"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/farzian/front.svg",
  40347. extra: 1902/1693,
  40348. bottom: 108/2010
  40349. }
  40350. },
  40351. },
  40352. [
  40353. {
  40354. name: "Macro",
  40355. height: math.unit(500, "feet"),
  40356. default: true
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(3 + 6/12, "feet"),
  40365. weight: math.unit(50, "lb"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/kimberly-tilson/front.svg",
  40369. extra: 1400/1322,
  40370. bottom: 36/1436
  40371. }
  40372. },
  40373. back: {
  40374. height: math.unit(3 + 6/12, "feet"),
  40375. weight: math.unit(50, "lb"),
  40376. name: "Back",
  40377. image: {
  40378. source: "./media/characters/kimberly-tilson/back.svg",
  40379. extra: 1370/1307,
  40380. bottom: 20/1390
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Normal",
  40387. height: math.unit(3 + 6/12, "feet"),
  40388. default: true
  40389. },
  40390. ]
  40391. ))
  40392. characterMakers.push(() => makeCharacter(
  40393. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40394. {
  40395. front: {
  40396. height: math.unit(1148, "feet"),
  40397. weight: math.unit(34057, "lb"),
  40398. name: "Front",
  40399. image: {
  40400. source: "./media/characters/harthos/front.svg",
  40401. extra: 1391/1339,
  40402. bottom: 13/1404
  40403. }
  40404. },
  40405. },
  40406. [
  40407. {
  40408. name: "Macro",
  40409. height: math.unit(1148, "feet"),
  40410. default: true
  40411. },
  40412. ]
  40413. ))
  40414. characterMakers.push(() => makeCharacter(
  40415. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40416. {
  40417. front: {
  40418. height: math.unit(15, "feet"),
  40419. name: "Front",
  40420. image: {
  40421. source: "./media/characters/hypatia/front.svg",
  40422. extra: 1653/1591,
  40423. bottom: 79/1732
  40424. }
  40425. },
  40426. },
  40427. [
  40428. {
  40429. name: "Normal",
  40430. height: math.unit(15, "feet")
  40431. },
  40432. {
  40433. name: "Small",
  40434. height: math.unit(300, "feet")
  40435. },
  40436. {
  40437. name: "Macro",
  40438. height: math.unit(2500, "feet"),
  40439. default: true
  40440. },
  40441. {
  40442. name: "Mega Macro",
  40443. height: math.unit(1500, "miles")
  40444. },
  40445. {
  40446. name: "Giga Macro",
  40447. height: math.unit(1.5e6, "miles")
  40448. },
  40449. ]
  40450. ))
  40451. characterMakers.push(() => makeCharacter(
  40452. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40453. {
  40454. front: {
  40455. height: math.unit(6, "feet"),
  40456. weight: math.unit(200, "lb"),
  40457. name: "Front",
  40458. image: {
  40459. source: "./media/characters/wulver/front.svg",
  40460. extra: 1724/1632,
  40461. bottom: 130/1854
  40462. }
  40463. },
  40464. frontNsfw: {
  40465. height: math.unit(6, "feet"),
  40466. weight: math.unit(200, "lb"),
  40467. name: "Front (NSFW)",
  40468. image: {
  40469. source: "./media/characters/wulver/front-nsfw.svg",
  40470. extra: 1724/1632,
  40471. bottom: 130/1854
  40472. }
  40473. },
  40474. },
  40475. [
  40476. {
  40477. name: "Human-Sized",
  40478. height: math.unit(6, "feet")
  40479. },
  40480. {
  40481. name: "Normal",
  40482. height: math.unit(4, "meters"),
  40483. default: true
  40484. },
  40485. {
  40486. name: "Large",
  40487. height: math.unit(6, "m")
  40488. },
  40489. ]
  40490. ))
  40491. characterMakers.push(() => makeCharacter(
  40492. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40493. {
  40494. front: {
  40495. height: math.unit(7, "feet"),
  40496. name: "Front",
  40497. image: {
  40498. source: "./media/characters/maru/front.svg",
  40499. extra: 1595/1570,
  40500. bottom: 0/1595
  40501. }
  40502. },
  40503. },
  40504. [
  40505. {
  40506. name: "Normal",
  40507. height: math.unit(7, "feet"),
  40508. default: true
  40509. },
  40510. {
  40511. name: "Macro",
  40512. height: math.unit(700, "feet")
  40513. },
  40514. {
  40515. name: "Mega Macro",
  40516. height: math.unit(25, "miles")
  40517. },
  40518. ]
  40519. ))
  40520. characterMakers.push(() => makeCharacter(
  40521. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40522. {
  40523. front: {
  40524. height: math.unit(6, "feet"),
  40525. weight: math.unit(170, "lb"),
  40526. name: "Front",
  40527. image: {
  40528. source: "./media/characters/xenon/front.svg",
  40529. extra: 1376/1305,
  40530. bottom: 56/1432
  40531. }
  40532. },
  40533. back: {
  40534. height: math.unit(6, "feet"),
  40535. weight: math.unit(170, "lb"),
  40536. name: "Back",
  40537. image: {
  40538. source: "./media/characters/xenon/back.svg",
  40539. extra: 1328/1259,
  40540. bottom: 95/1423
  40541. }
  40542. },
  40543. maw: {
  40544. height: math.unit(0.52, "feet"),
  40545. name: "Maw",
  40546. image: {
  40547. source: "./media/characters/xenon/maw.svg"
  40548. }
  40549. },
  40550. hand: {
  40551. height: math.unit(0.82, "feet"),
  40552. name: "Hand",
  40553. image: {
  40554. source: "./media/characters/xenon/hand.svg"
  40555. }
  40556. },
  40557. foot: {
  40558. height: math.unit(1.13, "feet"),
  40559. name: "Foot",
  40560. image: {
  40561. source: "./media/characters/xenon/foot.svg"
  40562. }
  40563. },
  40564. },
  40565. [
  40566. {
  40567. name: "Micro",
  40568. height: math.unit(0.8, "inches")
  40569. },
  40570. {
  40571. name: "Normal",
  40572. height: math.unit(6, "feet")
  40573. },
  40574. {
  40575. name: "Macro",
  40576. height: math.unit(50, "feet"),
  40577. default: true
  40578. },
  40579. {
  40580. name: "Macro+",
  40581. height: math.unit(250, "feet")
  40582. },
  40583. {
  40584. name: "Megamacro",
  40585. height: math.unit(1500, "feet")
  40586. },
  40587. ]
  40588. ))
  40589. characterMakers.push(() => makeCharacter(
  40590. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40591. {
  40592. front: {
  40593. height: math.unit(7 + 5/12, "feet"),
  40594. name: "Front",
  40595. image: {
  40596. source: "./media/characters/zane/front.svg",
  40597. extra: 1260/1203,
  40598. bottom: 94/1354
  40599. }
  40600. },
  40601. back: {
  40602. height: math.unit(5.05, "feet"),
  40603. name: "Back",
  40604. image: {
  40605. source: "./media/characters/zane/back.svg",
  40606. extra: 893/829,
  40607. bottom: 30/923
  40608. }
  40609. },
  40610. werewolf: {
  40611. height: math.unit(11, "feet"),
  40612. name: "Werewolf",
  40613. image: {
  40614. source: "./media/characters/zane/werewolf.svg",
  40615. extra: 1383/1323,
  40616. bottom: 89/1472
  40617. }
  40618. },
  40619. foot: {
  40620. height: math.unit(1.46, "feet"),
  40621. name: "Foot",
  40622. image: {
  40623. source: "./media/characters/zane/foot.svg"
  40624. }
  40625. },
  40626. footFront: {
  40627. height: math.unit(0.784, "feet"),
  40628. name: "Foot (Front)",
  40629. image: {
  40630. source: "./media/characters/zane/foot-front.svg"
  40631. }
  40632. },
  40633. dick: {
  40634. height: math.unit(1.95, "feet"),
  40635. name: "Dick",
  40636. image: {
  40637. source: "./media/characters/zane/dick.svg"
  40638. }
  40639. },
  40640. dickWerewolf: {
  40641. height: math.unit(3.77, "feet"),
  40642. name: "Dick (Werewolf)",
  40643. image: {
  40644. source: "./media/characters/zane/dick.svg"
  40645. }
  40646. },
  40647. },
  40648. [
  40649. {
  40650. name: "Normal",
  40651. height: math.unit(7 + 5/12, "feet"),
  40652. default: true
  40653. },
  40654. ]
  40655. ))
  40656. characterMakers.push(() => makeCharacter(
  40657. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40658. {
  40659. front: {
  40660. height: math.unit(6 + 2/12, "feet"),
  40661. weight: math.unit(284, "lb"),
  40662. name: "Front",
  40663. image: {
  40664. source: "./media/characters/benni-desparque/front.svg",
  40665. extra: 1353/1126,
  40666. bottom: 69/1422
  40667. }
  40668. },
  40669. },
  40670. [
  40671. {
  40672. name: "Civilian",
  40673. height: math.unit(6 + 2/12, "feet")
  40674. },
  40675. {
  40676. name: "Normal",
  40677. height: math.unit(98, "feet"),
  40678. default: true
  40679. },
  40680. {
  40681. name: "Kaiju Fighter",
  40682. height: math.unit(268, "feet")
  40683. },
  40684. ]
  40685. ))
  40686. characterMakers.push(() => makeCharacter(
  40687. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40688. {
  40689. front: {
  40690. height: math.unit(5, "feet"),
  40691. weight: math.unit(105, "lb"),
  40692. name: "Front",
  40693. image: {
  40694. source: "./media/characters/maxine/front.svg",
  40695. extra: 1386/1250,
  40696. bottom: 71/1457
  40697. }
  40698. },
  40699. },
  40700. [
  40701. {
  40702. name: "Normal",
  40703. height: math.unit(5, "feet"),
  40704. default: true
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40710. {
  40711. front: {
  40712. height: math.unit(11 + 7/12, "feet"),
  40713. weight: math.unit(9576, "lb"),
  40714. name: "Front",
  40715. image: {
  40716. source: "./media/characters/scaly/front.svg",
  40717. extra: 888/867,
  40718. bottom: 36/924
  40719. }
  40720. },
  40721. },
  40722. [
  40723. {
  40724. name: "Normal",
  40725. height: math.unit(11 + 7/12, "feet"),
  40726. default: true
  40727. },
  40728. ]
  40729. ))
  40730. characterMakers.push(() => makeCharacter(
  40731. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40732. {
  40733. front: {
  40734. height: math.unit(6 + 3/12, "feet"),
  40735. name: "Front",
  40736. image: {
  40737. source: "./media/characters/saelria/front.svg",
  40738. extra: 1243/1138,
  40739. bottom: 46/1289
  40740. }
  40741. },
  40742. },
  40743. [
  40744. {
  40745. name: "Micro",
  40746. height: math.unit(6, "inches"),
  40747. },
  40748. {
  40749. name: "Normal",
  40750. height: math.unit(6 + 3/12, "feet"),
  40751. default: true
  40752. },
  40753. {
  40754. name: "Macro",
  40755. height: math.unit(25, "feet")
  40756. },
  40757. ]
  40758. ))
  40759. characterMakers.push(() => makeCharacter(
  40760. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40761. {
  40762. front: {
  40763. height: math.unit(80, "meters"),
  40764. weight: math.unit(7000, "tonnes"),
  40765. name: "Front",
  40766. image: {
  40767. source: "./media/characters/tef/front.svg",
  40768. extra: 2036/1991,
  40769. bottom: 54/2090
  40770. }
  40771. },
  40772. back: {
  40773. height: math.unit(80, "meters"),
  40774. weight: math.unit(7000, "tonnes"),
  40775. name: "Back",
  40776. image: {
  40777. source: "./media/characters/tef/back.svg",
  40778. extra: 2036/1991,
  40779. bottom: 54/2090
  40780. }
  40781. },
  40782. },
  40783. [
  40784. {
  40785. name: "Macro",
  40786. height: math.unit(80, "meters"),
  40787. default: true
  40788. },
  40789. ]
  40790. ))
  40791. characterMakers.push(() => makeCharacter(
  40792. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40793. {
  40794. front: {
  40795. height: math.unit(13, "feet"),
  40796. weight: math.unit(6, "tons"),
  40797. name: "Front",
  40798. image: {
  40799. source: "./media/characters/rover/front.svg",
  40800. extra: 1233/1156,
  40801. bottom: 50/1283
  40802. }
  40803. },
  40804. back: {
  40805. height: math.unit(13, "feet"),
  40806. weight: math.unit(6, "tons"),
  40807. name: "Back",
  40808. image: {
  40809. source: "./media/characters/rover/back.svg",
  40810. extra: 1327/1258,
  40811. bottom: 39/1366
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(13, "feet"),
  40819. default: true
  40820. },
  40821. {
  40822. name: "Macro",
  40823. height: math.unit(1300, "feet")
  40824. },
  40825. {
  40826. name: "Megamacro",
  40827. height: math.unit(1300, "miles")
  40828. },
  40829. {
  40830. name: "Gigamacro",
  40831. height: math.unit(1300000, "miles")
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(6, "feet"),
  40840. weight: math.unit(150, "lb"),
  40841. name: "Front",
  40842. image: {
  40843. source: "./media/characters/ariz/front.svg",
  40844. extra: 1401/1346,
  40845. bottom: 5/1406
  40846. }
  40847. },
  40848. },
  40849. [
  40850. {
  40851. name: "Normal",
  40852. height: math.unit(10, "feet"),
  40853. default: true
  40854. },
  40855. ]
  40856. ))
  40857. characterMakers.push(() => makeCharacter(
  40858. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40859. {
  40860. front: {
  40861. height: math.unit(6, "feet"),
  40862. weight: math.unit(140, "lb"),
  40863. name: "Front",
  40864. image: {
  40865. source: "./media/characters/sigrun/front.svg",
  40866. extra: 1418/1359,
  40867. bottom: 27/1445
  40868. }
  40869. },
  40870. },
  40871. [
  40872. {
  40873. name: "Macro",
  40874. height: math.unit(35, "feet"),
  40875. default: true
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(6, "feet"),
  40884. weight: math.unit(150, "lb"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/numin/front.svg",
  40888. extra: 1433/1388,
  40889. bottom: 12/1445
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Macro",
  40896. height: math.unit(21.5, "km"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(6, "feet"),
  40906. weight: math.unit(463, "lb"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/melwa/front.svg",
  40910. extra: 1307/1248,
  40911. bottom: 93/1400
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Macro",
  40918. height: math.unit(50, "meters"),
  40919. default: true
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40925. {
  40926. front: {
  40927. height: math.unit(325, "feet"),
  40928. name: "Front",
  40929. image: {
  40930. source: "./media/characters/zorkaiju/front.svg",
  40931. extra: 1955/1814,
  40932. bottom: 40/1995
  40933. }
  40934. },
  40935. frontExtended: {
  40936. height: math.unit(325, "feet"),
  40937. name: "Front (Extended)",
  40938. image: {
  40939. source: "./media/characters/zorkaiju/front-extended.svg",
  40940. extra: 1955/1814,
  40941. bottom: 40/1995
  40942. }
  40943. },
  40944. side: {
  40945. height: math.unit(325, "feet"),
  40946. name: "Side",
  40947. image: {
  40948. source: "./media/characters/zorkaiju/side.svg",
  40949. extra: 1495/1396,
  40950. bottom: 17/1512
  40951. }
  40952. },
  40953. sideExtended: {
  40954. height: math.unit(325, "feet"),
  40955. name: "Side (Extended)",
  40956. image: {
  40957. source: "./media/characters/zorkaiju/side-extended.svg",
  40958. extra: 1495/1396,
  40959. bottom: 17/1512
  40960. }
  40961. },
  40962. back: {
  40963. height: math.unit(325, "feet"),
  40964. name: "Back",
  40965. image: {
  40966. source: "./media/characters/zorkaiju/back.svg",
  40967. extra: 1959/1821,
  40968. bottom: 31/1990
  40969. }
  40970. },
  40971. backExtended: {
  40972. height: math.unit(325, "feet"),
  40973. name: "Back (Extended)",
  40974. image: {
  40975. source: "./media/characters/zorkaiju/back-extended.svg",
  40976. extra: 1959/1821,
  40977. bottom: 31/1990
  40978. }
  40979. },
  40980. hand: {
  40981. height: math.unit(58.4, "feet"),
  40982. name: "Hand",
  40983. image: {
  40984. source: "./media/characters/zorkaiju/hand.svg"
  40985. }
  40986. },
  40987. handExtended: {
  40988. height: math.unit(61.4, "feet"),
  40989. name: "Hand (Extended)",
  40990. image: {
  40991. source: "./media/characters/zorkaiju/hand-extended.svg"
  40992. }
  40993. },
  40994. foot: {
  40995. height: math.unit(95, "feet"),
  40996. name: "Foot",
  40997. image: {
  40998. source: "./media/characters/zorkaiju/foot.svg"
  40999. }
  41000. },
  41001. leftArm: {
  41002. height: math.unit(59, "feet"),
  41003. name: "Left Arm",
  41004. image: {
  41005. source: "./media/characters/zorkaiju/left-arm.svg"
  41006. }
  41007. },
  41008. rightArm: {
  41009. height: math.unit(59, "feet"),
  41010. name: "Right Arm",
  41011. image: {
  41012. source: "./media/characters/zorkaiju/right-arm.svg"
  41013. }
  41014. },
  41015. tail: {
  41016. height: math.unit(104, "feet"),
  41017. name: "Tail",
  41018. image: {
  41019. source: "./media/characters/zorkaiju/tail.svg"
  41020. }
  41021. },
  41022. tailExtended: {
  41023. height: math.unit(104, "feet"),
  41024. name: "Tail (Extended)",
  41025. image: {
  41026. source: "./media/characters/zorkaiju/tail-extended.svg"
  41027. }
  41028. },
  41029. tailBottom: {
  41030. height: math.unit(104, "feet"),
  41031. name: "Tail Bottom",
  41032. image: {
  41033. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41034. }
  41035. },
  41036. crystal: {
  41037. height: math.unit(27.54, "feet"),
  41038. name: "Crystal",
  41039. image: {
  41040. source: "./media/characters/zorkaiju/crystal.svg"
  41041. }
  41042. },
  41043. },
  41044. [
  41045. {
  41046. name: "Kaiju",
  41047. height: math.unit(325, "feet"),
  41048. default: true
  41049. },
  41050. ]
  41051. ))
  41052. characterMakers.push(() => makeCharacter(
  41053. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41054. {
  41055. front: {
  41056. height: math.unit(6 + 1/12, "feet"),
  41057. weight: math.unit(115, "lb"),
  41058. name: "Front",
  41059. image: {
  41060. source: "./media/characters/bailey-belfry/front.svg",
  41061. extra: 1240/1121,
  41062. bottom: 101/1341
  41063. }
  41064. },
  41065. },
  41066. [
  41067. {
  41068. name: "Normal",
  41069. height: math.unit(6 + 1/12, "feet"),
  41070. default: true
  41071. },
  41072. ]
  41073. ))
  41074. characterMakers.push(() => makeCharacter(
  41075. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41076. {
  41077. side: {
  41078. height: math.unit(4, "meters"),
  41079. weight: math.unit(250, "kg"),
  41080. name: "Side",
  41081. image: {
  41082. source: "./media/characters/blacky/side.svg",
  41083. extra: 1027/919,
  41084. bottom: 43/1070
  41085. }
  41086. },
  41087. maw: {
  41088. height: math.unit(1, "meters"),
  41089. name: "Maw",
  41090. image: {
  41091. source: "./media/characters/blacky/maw.svg"
  41092. }
  41093. },
  41094. paw: {
  41095. height: math.unit(1, "meters"),
  41096. name: "Paw",
  41097. image: {
  41098. source: "./media/characters/blacky/paw.svg"
  41099. }
  41100. },
  41101. },
  41102. [
  41103. {
  41104. name: "Normal",
  41105. height: math.unit(4, "meters"),
  41106. default: true
  41107. },
  41108. ]
  41109. ))
  41110. characterMakers.push(() => makeCharacter(
  41111. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41112. {
  41113. front: {
  41114. height: math.unit(170, "cm"),
  41115. weight: math.unit(66, "kg"),
  41116. name: "Front",
  41117. image: {
  41118. source: "./media/characters/thux-ei/front.svg",
  41119. extra: 1109/1011,
  41120. bottom: 8/1117
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Normal",
  41127. height: math.unit(170, "cm"),
  41128. default: true
  41129. },
  41130. ]
  41131. ))
  41132. characterMakers.push(() => makeCharacter(
  41133. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41134. {
  41135. front: {
  41136. height: math.unit(5, "feet"),
  41137. weight: math.unit(120, "lb"),
  41138. name: "Front",
  41139. image: {
  41140. source: "./media/characters/roxanne-voltaire/front.svg",
  41141. extra: 1901/1779,
  41142. bottom: 53/1954
  41143. }
  41144. },
  41145. },
  41146. [
  41147. {
  41148. name: "Normal",
  41149. height: math.unit(5, "feet"),
  41150. default: true
  41151. },
  41152. {
  41153. name: "Giant",
  41154. height: math.unit(50, "feet")
  41155. },
  41156. {
  41157. name: "Titan",
  41158. height: math.unit(500, "feet")
  41159. },
  41160. {
  41161. name: "Macro",
  41162. height: math.unit(5000, "feet")
  41163. },
  41164. {
  41165. name: "Megamacro",
  41166. height: math.unit(50000, "feet")
  41167. },
  41168. {
  41169. name: "Gigamacro",
  41170. height: math.unit(500000, "feet")
  41171. },
  41172. {
  41173. name: "Teramacro",
  41174. height: math.unit(5e6, "feet")
  41175. },
  41176. ]
  41177. ))
  41178. characterMakers.push(() => makeCharacter(
  41179. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41180. {
  41181. front: {
  41182. height: math.unit(6 + 2/12, "feet"),
  41183. name: "Front",
  41184. image: {
  41185. source: "./media/characters/squeaks/front.svg",
  41186. extra: 1823/1768,
  41187. bottom: 138/1961
  41188. }
  41189. },
  41190. },
  41191. [
  41192. {
  41193. name: "Micro",
  41194. height: math.unit(0.5, "inches")
  41195. },
  41196. {
  41197. name: "Normal",
  41198. height: math.unit(6 + 2/12, "feet"),
  41199. default: true
  41200. },
  41201. {
  41202. name: "Macro",
  41203. height: math.unit(600, "feet")
  41204. },
  41205. ]
  41206. ))
  41207. characterMakers.push(() => makeCharacter(
  41208. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41209. {
  41210. front: {
  41211. height: math.unit(1.72, "meters"),
  41212. name: "Front",
  41213. image: {
  41214. source: "./media/characters/archinger/front.svg",
  41215. extra: 1861/1675,
  41216. bottom: 125/1986
  41217. }
  41218. },
  41219. back: {
  41220. height: math.unit(1.72, "meters"),
  41221. name: "Back",
  41222. image: {
  41223. source: "./media/characters/archinger/back.svg",
  41224. extra: 1844/1701,
  41225. bottom: 104/1948
  41226. }
  41227. },
  41228. cock: {
  41229. height: math.unit(0.59, "feet"),
  41230. name: "Cock",
  41231. image: {
  41232. source: "./media/characters/archinger/cock.svg"
  41233. }
  41234. },
  41235. },
  41236. [
  41237. {
  41238. name: "Normal",
  41239. height: math.unit(1.72, "meters"),
  41240. default: true
  41241. },
  41242. {
  41243. name: "Macro",
  41244. height: math.unit(84, "meters")
  41245. },
  41246. {
  41247. name: "Macro+",
  41248. height: math.unit(112, "meters")
  41249. },
  41250. {
  41251. name: "Macro++",
  41252. height: math.unit(960, "meters")
  41253. },
  41254. {
  41255. name: "Macro+++",
  41256. height: math.unit(4, "km")
  41257. },
  41258. {
  41259. name: "Macro++++",
  41260. height: math.unit(48, "km")
  41261. },
  41262. {
  41263. name: "Macro+++++",
  41264. height: math.unit(4500, "km")
  41265. },
  41266. ]
  41267. ))
  41268. characterMakers.push(() => makeCharacter(
  41269. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41270. {
  41271. front: {
  41272. height: math.unit(5 + 5/12, "feet"),
  41273. name: "Front",
  41274. image: {
  41275. source: "./media/characters/alsnapz/front.svg",
  41276. extra: 1157/1065,
  41277. bottom: 42/1199
  41278. }
  41279. },
  41280. },
  41281. [
  41282. {
  41283. name: "Normal",
  41284. height: math.unit(5 + 5/12, "feet"),
  41285. default: true
  41286. },
  41287. ]
  41288. ))
  41289. characterMakers.push(() => makeCharacter(
  41290. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41291. {
  41292. side: {
  41293. height: math.unit(3.2, "earths"),
  41294. name: "Side",
  41295. image: {
  41296. source: "./media/characters/mag/side.svg",
  41297. extra: 1331/1008,
  41298. bottom: 52/1383
  41299. }
  41300. },
  41301. wing: {
  41302. height: math.unit(1.94, "earths"),
  41303. name: "Wing",
  41304. image: {
  41305. source: "./media/characters/mag/wing.svg"
  41306. }
  41307. },
  41308. dick: {
  41309. height: math.unit(1.8, "earths"),
  41310. name: "Dick",
  41311. image: {
  41312. source: "./media/characters/mag/dick.svg"
  41313. }
  41314. },
  41315. ass: {
  41316. height: math.unit(1.33, "earths"),
  41317. name: "Ass",
  41318. image: {
  41319. source: "./media/characters/mag/ass.svg"
  41320. }
  41321. },
  41322. head: {
  41323. height: math.unit(1.1, "earths"),
  41324. name: "Head",
  41325. image: {
  41326. source: "./media/characters/mag/head.svg"
  41327. }
  41328. },
  41329. maw: {
  41330. height: math.unit(1.62, "earths"),
  41331. name: "Maw",
  41332. image: {
  41333. source: "./media/characters/mag/maw.svg"
  41334. }
  41335. },
  41336. },
  41337. [
  41338. {
  41339. name: "Small",
  41340. height: math.unit(162, "feet")
  41341. },
  41342. {
  41343. name: "Normal",
  41344. height: math.unit(3.2, "earths"),
  41345. default: true
  41346. },
  41347. ]
  41348. ))
  41349. characterMakers.push(() => makeCharacter(
  41350. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41351. {
  41352. front: {
  41353. height: math.unit(512, "feet"),
  41354. weight: math.unit(63509, "tonnes"),
  41355. name: "Front",
  41356. image: {
  41357. source: "./media/characters/vorrel-harroc/front.svg",
  41358. extra: 1075/1063,
  41359. bottom: 62/1137
  41360. }
  41361. },
  41362. },
  41363. [
  41364. {
  41365. name: "Normal",
  41366. height: math.unit(10, "feet")
  41367. },
  41368. {
  41369. name: "Macro",
  41370. height: math.unit(512, "feet"),
  41371. default: true
  41372. },
  41373. {
  41374. name: "Megamacro",
  41375. height: math.unit(256, "miles")
  41376. },
  41377. {
  41378. name: "Gigamacro",
  41379. height: math.unit(4096, "miles")
  41380. },
  41381. ]
  41382. ))
  41383. characterMakers.push(() => makeCharacter(
  41384. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41385. {
  41386. side: {
  41387. height: math.unit(50, "feet"),
  41388. name: "Side",
  41389. image: {
  41390. source: "./media/characters/froimar/side.svg",
  41391. extra: 855/638,
  41392. bottom: 99/954
  41393. }
  41394. },
  41395. },
  41396. [
  41397. {
  41398. name: "Macro",
  41399. height: math.unit(50, "feet"),
  41400. default: true
  41401. },
  41402. ]
  41403. ))
  41404. characterMakers.push(() => makeCharacter(
  41405. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41406. {
  41407. front: {
  41408. height: math.unit(210, "miles"),
  41409. name: "Front",
  41410. image: {
  41411. source: "./media/characters/timothy/front.svg",
  41412. extra: 1007/943,
  41413. bottom: 62/1069
  41414. }
  41415. },
  41416. frontSkirt: {
  41417. height: math.unit(210, "miles"),
  41418. name: "Front (Skirt)",
  41419. image: {
  41420. source: "./media/characters/timothy/front-skirt.svg",
  41421. extra: 1007/943,
  41422. bottom: 62/1069
  41423. }
  41424. },
  41425. frontCoat: {
  41426. height: math.unit(210, "miles"),
  41427. name: "Front (Coat)",
  41428. image: {
  41429. source: "./media/characters/timothy/front-coat.svg",
  41430. extra: 1007/943,
  41431. bottom: 62/1069
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Macro",
  41438. height: math.unit(210, "miles"),
  41439. default: true
  41440. },
  41441. {
  41442. name: "Megamacro",
  41443. height: math.unit(210000, "miles")
  41444. },
  41445. ]
  41446. ))
  41447. characterMakers.push(() => makeCharacter(
  41448. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41449. {
  41450. front: {
  41451. height: math.unit(188, "feet"),
  41452. name: "Front",
  41453. image: {
  41454. source: "./media/characters/pyotr/front.svg",
  41455. extra: 1912/1826,
  41456. bottom: 18/1930
  41457. }
  41458. },
  41459. },
  41460. [
  41461. {
  41462. name: "Macro",
  41463. height: math.unit(188, "feet"),
  41464. default: true
  41465. },
  41466. {
  41467. name: "Megamacro",
  41468. height: math.unit(8, "miles")
  41469. },
  41470. ]
  41471. ))
  41472. characterMakers.push(() => makeCharacter(
  41473. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41474. {
  41475. side: {
  41476. height: math.unit(10, "feet"),
  41477. weight: math.unit(4500, "lb"),
  41478. name: "Side",
  41479. image: {
  41480. source: "./media/characters/ackart/side.svg",
  41481. extra: 1776/1668,
  41482. bottom: 116/1892
  41483. }
  41484. },
  41485. },
  41486. [
  41487. {
  41488. name: "Normal",
  41489. height: math.unit(10, "feet"),
  41490. default: true
  41491. },
  41492. ]
  41493. ))
  41494. characterMakers.push(() => makeCharacter(
  41495. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41496. {
  41497. side: {
  41498. height: math.unit(21, "feet"),
  41499. name: "Side",
  41500. image: {
  41501. source: "./media/characters/nolow/side.svg",
  41502. extra: 1484/1434,
  41503. bottom: 85/1569
  41504. }
  41505. },
  41506. sideErect: {
  41507. height: math.unit(21, "feet"),
  41508. name: "Side-erect",
  41509. image: {
  41510. source: "./media/characters/nolow/side-erect.svg",
  41511. extra: 1484/1434,
  41512. bottom: 85/1569
  41513. }
  41514. },
  41515. },
  41516. [
  41517. {
  41518. name: "Regular",
  41519. height: math.unit(12, "feet")
  41520. },
  41521. {
  41522. name: "Big Chee",
  41523. height: math.unit(21, "feet"),
  41524. default: true
  41525. },
  41526. ]
  41527. ))
  41528. characterMakers.push(() => makeCharacter(
  41529. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41530. {
  41531. front: {
  41532. height: math.unit(7, "feet"),
  41533. weight: math.unit(250, "lb"),
  41534. name: "Front",
  41535. image: {
  41536. source: "./media/characters/nines/front.svg",
  41537. extra: 1741/1607,
  41538. bottom: 41/1782
  41539. }
  41540. },
  41541. side: {
  41542. height: math.unit(7, "feet"),
  41543. weight: math.unit(250, "lb"),
  41544. name: "Side",
  41545. image: {
  41546. source: "./media/characters/nines/side.svg",
  41547. extra: 1854/1735,
  41548. bottom: 93/1947
  41549. }
  41550. },
  41551. back: {
  41552. height: math.unit(7, "feet"),
  41553. weight: math.unit(250, "lb"),
  41554. name: "Back",
  41555. image: {
  41556. source: "./media/characters/nines/back.svg",
  41557. extra: 1748/1615,
  41558. bottom: 20/1768
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Megamacro",
  41565. height: math.unit(99, "km"),
  41566. default: true
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41572. {
  41573. front: {
  41574. height: math.unit(5 + 10/12, "feet"),
  41575. weight: math.unit(210, "lb"),
  41576. name: "Front",
  41577. image: {
  41578. source: "./media/characters/zenith/front.svg",
  41579. extra: 1531/1452,
  41580. bottom: 198/1729
  41581. }
  41582. },
  41583. back: {
  41584. height: math.unit(5 + 10/12, "feet"),
  41585. weight: math.unit(210, "lb"),
  41586. name: "Back",
  41587. image: {
  41588. source: "./media/characters/zenith/back.svg",
  41589. extra: 1571/1487,
  41590. bottom: 75/1646
  41591. }
  41592. },
  41593. },
  41594. [
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(5 + 10/12, "feet"),
  41598. default: true
  41599. }
  41600. ]
  41601. ))
  41602. characterMakers.push(() => makeCharacter(
  41603. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41604. {
  41605. front: {
  41606. height: math.unit(4, "feet"),
  41607. weight: math.unit(60, "lb"),
  41608. name: "Front",
  41609. image: {
  41610. source: "./media/characters/jasper/front.svg",
  41611. extra: 1450/1379,
  41612. bottom: 19/1469
  41613. }
  41614. },
  41615. },
  41616. [
  41617. {
  41618. name: "Normal",
  41619. height: math.unit(4, "feet"),
  41620. default: true
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41626. {
  41627. front: {
  41628. height: math.unit(6 + 5/12, "feet"),
  41629. weight: math.unit(290, "lb"),
  41630. name: "Front",
  41631. image: {
  41632. source: "./media/characters/tiberius-thyben/front.svg",
  41633. extra: 757/739,
  41634. bottom: 39/796
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Micro",
  41641. height: math.unit(1.5, "inches")
  41642. },
  41643. {
  41644. name: "Normal",
  41645. height: math.unit(6 + 5/12, "feet"),
  41646. default: true
  41647. },
  41648. {
  41649. name: "Macro",
  41650. height: math.unit(300, "feet")
  41651. },
  41652. ]
  41653. ))
  41654. characterMakers.push(() => makeCharacter(
  41655. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41656. {
  41657. front: {
  41658. height: math.unit(5 + 6/12, "feet"),
  41659. weight: math.unit(60, "kg"),
  41660. name: "Front",
  41661. image: {
  41662. source: "./media/characters/sabre/front.svg",
  41663. extra: 738/671,
  41664. bottom: 27/765
  41665. }
  41666. },
  41667. },
  41668. [
  41669. {
  41670. name: "Teeny",
  41671. height: math.unit(2, "inches")
  41672. },
  41673. {
  41674. name: "Smol",
  41675. height: math.unit(8, "inches")
  41676. },
  41677. {
  41678. name: "Normal",
  41679. height: math.unit(5 + 6/12, "feet"),
  41680. default: true
  41681. },
  41682. {
  41683. name: "Mini-Macro",
  41684. height: math.unit(15, "feet")
  41685. },
  41686. {
  41687. name: "Macro",
  41688. height: math.unit(50, "feet")
  41689. },
  41690. ]
  41691. ))
  41692. characterMakers.push(() => makeCharacter(
  41693. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41694. {
  41695. front: {
  41696. height: math.unit(6 + 4/12, "feet"),
  41697. weight: math.unit(170, "lb"),
  41698. name: "Front",
  41699. image: {
  41700. source: "./media/characters/charlie/front.svg",
  41701. extra: 1348/1228,
  41702. bottom: 15/1363
  41703. }
  41704. },
  41705. },
  41706. [
  41707. {
  41708. name: "Macro",
  41709. height: math.unit(1700, "meters"),
  41710. default: true
  41711. },
  41712. {
  41713. name: "MegaMacro",
  41714. height: math.unit(20400, "meters")
  41715. },
  41716. ]
  41717. ))
  41718. characterMakers.push(() => makeCharacter(
  41719. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41720. {
  41721. front: {
  41722. height: math.unit(6 + 3/12, "feet"),
  41723. weight: math.unit(185, "lb"),
  41724. name: "Front",
  41725. image: {
  41726. source: "./media/characters/susan-grant/front.svg",
  41727. extra: 1351/1327,
  41728. bottom: 26/1377
  41729. }
  41730. },
  41731. },
  41732. [
  41733. {
  41734. name: "Normal",
  41735. height: math.unit(6 + 3/12, "feet"),
  41736. default: true
  41737. },
  41738. {
  41739. name: "Macro",
  41740. height: math.unit(225, "feet")
  41741. },
  41742. {
  41743. name: "Macro+",
  41744. height: math.unit(900, "feet")
  41745. },
  41746. {
  41747. name: "MegaMacro",
  41748. height: math.unit(14400, "feet")
  41749. },
  41750. ]
  41751. ))
  41752. characterMakers.push(() => makeCharacter(
  41753. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41754. {
  41755. front: {
  41756. height: math.unit(5 + 4/12, "feet"),
  41757. weight: math.unit(110, "lb"),
  41758. name: "Front",
  41759. image: {
  41760. source: "./media/characters/axel-isanov/front.svg",
  41761. extra: 1096/1065,
  41762. bottom: 13/1109
  41763. }
  41764. },
  41765. },
  41766. [
  41767. {
  41768. name: "Normal",
  41769. height: math.unit(5 + 4/12, "feet"),
  41770. default: true
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(9, "feet"),
  41779. weight: math.unit(467, "lb"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/necahual/front.svg",
  41783. extra: 920/873,
  41784. bottom: 26/946
  41785. }
  41786. },
  41787. back: {
  41788. height: math.unit(9, "feet"),
  41789. weight: math.unit(467, "lb"),
  41790. name: "Back",
  41791. image: {
  41792. source: "./media/characters/necahual/back.svg",
  41793. extra: 930/884,
  41794. bottom: 16/946
  41795. }
  41796. },
  41797. frontUnderwear: {
  41798. height: math.unit(9, "feet"),
  41799. weight: math.unit(467, "lb"),
  41800. name: "Front (Underwear)",
  41801. image: {
  41802. source: "./media/characters/necahual/front-underwear.svg",
  41803. extra: 920/873,
  41804. bottom: 26/946
  41805. }
  41806. },
  41807. frontDressed: {
  41808. height: math.unit(9, "feet"),
  41809. weight: math.unit(467, "lb"),
  41810. name: "Front (Dressed)",
  41811. image: {
  41812. source: "./media/characters/necahual/front-dressed.svg",
  41813. extra: 920/873,
  41814. bottom: 26/946
  41815. }
  41816. },
  41817. },
  41818. [
  41819. {
  41820. name: "Comprsesed",
  41821. height: math.unit(9, "feet")
  41822. },
  41823. {
  41824. name: "Natural",
  41825. height: math.unit(15, "feet"),
  41826. default: true
  41827. },
  41828. {
  41829. name: "Boosted",
  41830. height: math.unit(50, "feet")
  41831. },
  41832. {
  41833. name: "Boosted+",
  41834. height: math.unit(150, "feet")
  41835. },
  41836. {
  41837. name: "Max",
  41838. height: math.unit(500, "feet")
  41839. },
  41840. ]
  41841. ))
  41842. characterMakers.push(() => makeCharacter(
  41843. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41844. {
  41845. front: {
  41846. height: math.unit(22 + 1/12, "feet"),
  41847. weight: math.unit(3200, "lb"),
  41848. name: "Front",
  41849. image: {
  41850. source: "./media/characters/theo-acacia/front.svg",
  41851. extra: 1796/1741,
  41852. bottom: 83/1879
  41853. }
  41854. },
  41855. frontUnderwear: {
  41856. height: math.unit(22 + 1/12, "feet"),
  41857. weight: math.unit(3200, "lb"),
  41858. name: "Front (Underwear)",
  41859. image: {
  41860. source: "./media/characters/theo-acacia/front-underwear.svg",
  41861. extra: 1796/1741,
  41862. bottom: 83/1879
  41863. }
  41864. },
  41865. frontNude: {
  41866. height: math.unit(22 + 1/12, "feet"),
  41867. weight: math.unit(3200, "lb"),
  41868. name: "Front (Nude)",
  41869. image: {
  41870. source: "./media/characters/theo-acacia/front-nude.svg",
  41871. extra: 1796/1741,
  41872. bottom: 83/1879
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Normal",
  41879. height: math.unit(22 + 1/12, "feet"),
  41880. default: true
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(20, "feet"),
  41889. name: "Front",
  41890. image: {
  41891. source: "./media/characters/astra/front.svg",
  41892. extra: 1850/1714,
  41893. bottom: 106/1956
  41894. }
  41895. },
  41896. frontUndressed: {
  41897. height: math.unit(20, "feet"),
  41898. name: "Front (Undressed)",
  41899. image: {
  41900. source: "./media/characters/astra/front-undressed.svg",
  41901. extra: 1926/1749,
  41902. bottom: 0/1926
  41903. }
  41904. },
  41905. hand: {
  41906. height: math.unit(1.53, "feet"),
  41907. name: "Hand",
  41908. image: {
  41909. source: "./media/characters/astra/hand.svg"
  41910. }
  41911. },
  41912. paw: {
  41913. height: math.unit(1.53, "feet"),
  41914. name: "Paw",
  41915. image: {
  41916. source: "./media/characters/astra/paw.svg"
  41917. }
  41918. },
  41919. },
  41920. [
  41921. {
  41922. name: "Smallest",
  41923. height: math.unit(20, "feet")
  41924. },
  41925. {
  41926. name: "Normal",
  41927. height: math.unit(1e9, "miles"),
  41928. default: true
  41929. },
  41930. {
  41931. name: "Larger",
  41932. height: math.unit(5, "multiverses")
  41933. },
  41934. {
  41935. name: "Largest",
  41936. height: math.unit(1e9, "multiverses")
  41937. },
  41938. ]
  41939. ))
  41940. characterMakers.push(() => makeCharacter(
  41941. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41942. {
  41943. front: {
  41944. height: math.unit(8, "feet"),
  41945. name: "Front",
  41946. image: {
  41947. source: "./media/characters/breanna/front.svg",
  41948. extra: 1912/1632,
  41949. bottom: 33/1945
  41950. }
  41951. },
  41952. },
  41953. [
  41954. {
  41955. name: "Smallest",
  41956. height: math.unit(8, "feet")
  41957. },
  41958. {
  41959. name: "Normal",
  41960. height: math.unit(1, "mile"),
  41961. default: true
  41962. },
  41963. {
  41964. name: "Maximum",
  41965. height: math.unit(1500000000000, "lightyears")
  41966. },
  41967. ]
  41968. ))
  41969. characterMakers.push(() => makeCharacter(
  41970. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41971. {
  41972. front: {
  41973. height: math.unit(5 + 11/12, "feet"),
  41974. weight: math.unit(155, "lb"),
  41975. name: "Front",
  41976. image: {
  41977. source: "./media/characters/cai/front.svg",
  41978. extra: 1823/1702,
  41979. bottom: 32/1855
  41980. }
  41981. },
  41982. back: {
  41983. height: math.unit(5 + 11/12, "feet"),
  41984. weight: math.unit(155, "lb"),
  41985. name: "Back",
  41986. image: {
  41987. source: "./media/characters/cai/back.svg",
  41988. extra: 1809/1708,
  41989. bottom: 31/1840
  41990. }
  41991. },
  41992. },
  41993. [
  41994. {
  41995. name: "Normal",
  41996. height: math.unit(5 + 11/12, "feet"),
  41997. default: true
  41998. },
  41999. {
  42000. name: "Big",
  42001. height: math.unit(15, "feet")
  42002. },
  42003. {
  42004. name: "Macro",
  42005. height: math.unit(200, "feet")
  42006. },
  42007. ]
  42008. ))
  42009. characterMakers.push(() => makeCharacter(
  42010. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42011. {
  42012. front: {
  42013. height: math.unit(5 + 6/12, "feet"),
  42014. weight: math.unit(160, "lb"),
  42015. name: "Front",
  42016. image: {
  42017. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42018. extra: 1227/1174,
  42019. bottom: 37/1264
  42020. }
  42021. },
  42022. },
  42023. [
  42024. {
  42025. name: "Macro",
  42026. height: math.unit(444, "meters"),
  42027. default: true
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(18 + 7/12, "feet"),
  42036. name: "Front",
  42037. image: {
  42038. source: "./media/characters/rex/front.svg",
  42039. extra: 1941/1807,
  42040. bottom: 66/2007
  42041. }
  42042. },
  42043. back: {
  42044. height: math.unit(18 + 7/12, "feet"),
  42045. name: "Back",
  42046. image: {
  42047. source: "./media/characters/rex/back.svg",
  42048. extra: 1937/1822,
  42049. bottom: 42/1979
  42050. }
  42051. },
  42052. boot: {
  42053. height: math.unit(3.45, "feet"),
  42054. name: "Boot",
  42055. image: {
  42056. source: "./media/characters/rex/boot.svg"
  42057. }
  42058. },
  42059. paw: {
  42060. height: math.unit(4.17, "feet"),
  42061. name: "Paw",
  42062. image: {
  42063. source: "./media/characters/rex/paw.svg"
  42064. }
  42065. },
  42066. head: {
  42067. height: math.unit(6.728, "feet"),
  42068. name: "Head",
  42069. image: {
  42070. source: "./media/characters/rex/head.svg"
  42071. }
  42072. },
  42073. },
  42074. [
  42075. {
  42076. name: "Nano",
  42077. height: math.unit(18 + 7/12, "feet")
  42078. },
  42079. {
  42080. name: "Micro",
  42081. height: math.unit(1.5, "megameters")
  42082. },
  42083. {
  42084. name: "Normal",
  42085. height: math.unit(440, "megameters"),
  42086. default: true
  42087. },
  42088. {
  42089. name: "Macro",
  42090. height: math.unit(2.5, "gigameters")
  42091. },
  42092. {
  42093. name: "Gigamacro",
  42094. height: math.unit(2, "galaxies")
  42095. },
  42096. ]
  42097. ))
  42098. characterMakers.push(() => makeCharacter(
  42099. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42100. {
  42101. side: {
  42102. height: math.unit(32, "feet"),
  42103. weight: math.unit(250000, "lb"),
  42104. name: "Side",
  42105. image: {
  42106. source: "./media/characters/silverwing/side.svg",
  42107. extra: 1100/1019,
  42108. bottom: 204/1304
  42109. }
  42110. },
  42111. },
  42112. [
  42113. {
  42114. name: "Normal",
  42115. height: math.unit(32, "feet"),
  42116. default: true
  42117. },
  42118. ]
  42119. ))
  42120. characterMakers.push(() => makeCharacter(
  42121. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42122. {
  42123. front: {
  42124. height: math.unit(6 + 6/12, "feet"),
  42125. weight: math.unit(350, "lb"),
  42126. name: "Front",
  42127. image: {
  42128. source: "./media/characters/tristan-hawthorne/front.svg",
  42129. extra: 1159/1124,
  42130. bottom: 37/1196
  42131. },
  42132. form: "labrador",
  42133. default: true
  42134. },
  42135. skunkFront: {
  42136. height: math.unit(4 + 6/12, "feet"),
  42137. weight: math.unit(120, "lb"),
  42138. name: "Front",
  42139. image: {
  42140. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42141. extra: 1609/1551,
  42142. bottom: 169/1778
  42143. },
  42144. form: "skunk",
  42145. default: true
  42146. },
  42147. },
  42148. [
  42149. {
  42150. name: "Normal",
  42151. height: math.unit(6 + 6/12, "feet"),
  42152. form: "labrador",
  42153. default: true
  42154. },
  42155. {
  42156. name: "Normal",
  42157. height: math.unit(4 + 6/12, "feet"),
  42158. form: "skunk",
  42159. default: true
  42160. },
  42161. ],
  42162. {
  42163. "labrador": {
  42164. name: "Labrador",
  42165. default: true
  42166. },
  42167. "skunk": {
  42168. name: "Skunk"
  42169. }
  42170. }
  42171. ))
  42172. characterMakers.push(() => makeCharacter(
  42173. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42174. {
  42175. front: {
  42176. height: math.unit(5 + 11/12, "feet"),
  42177. weight: math.unit(190, "lb"),
  42178. name: "Front",
  42179. image: {
  42180. source: "./media/characters/mizu/front.svg",
  42181. extra: 1988/1788,
  42182. bottom: 14/2002
  42183. }
  42184. },
  42185. },
  42186. [
  42187. {
  42188. name: "Normal",
  42189. height: math.unit(5 + 11/12, "feet"),
  42190. default: true
  42191. },
  42192. ]
  42193. ))
  42194. characterMakers.push(() => makeCharacter(
  42195. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42196. {
  42197. front: {
  42198. height: math.unit(1.7, "feet"),
  42199. weight: math.unit(50, "lb"),
  42200. name: "Front",
  42201. image: {
  42202. source: "./media/characters/dechroma/front.svg",
  42203. extra: 1095/859,
  42204. bottom: 64/1159
  42205. }
  42206. },
  42207. },
  42208. [
  42209. {
  42210. name: "Normal",
  42211. height: math.unit(1.7, "feet"),
  42212. default: true
  42213. },
  42214. ]
  42215. ))
  42216. characterMakers.push(() => makeCharacter(
  42217. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42218. {
  42219. side: {
  42220. height: math.unit(30, "feet"),
  42221. name: "Side",
  42222. image: {
  42223. source: "./media/characters/veluren-thanazel/side.svg",
  42224. extra: 1611/633,
  42225. bottom: 118/1729
  42226. }
  42227. },
  42228. front: {
  42229. height: math.unit(30, "feet"),
  42230. name: "Front",
  42231. image: {
  42232. source: "./media/characters/veluren-thanazel/front.svg",
  42233. extra: 1486/636,
  42234. bottom: 238/1724
  42235. }
  42236. },
  42237. head: {
  42238. height: math.unit(21.4, "feet"),
  42239. name: "Head",
  42240. image: {
  42241. source: "./media/characters/veluren-thanazel/head.svg"
  42242. }
  42243. },
  42244. genitals: {
  42245. height: math.unit(19.4, "feet"),
  42246. name: "Genitals",
  42247. image: {
  42248. source: "./media/characters/veluren-thanazel/genitals.svg"
  42249. }
  42250. },
  42251. },
  42252. [
  42253. {
  42254. name: "Social",
  42255. height: math.unit(6, "feet")
  42256. },
  42257. {
  42258. name: "Play",
  42259. height: math.unit(12, "feet")
  42260. },
  42261. {
  42262. name: "True",
  42263. height: math.unit(30, "feet"),
  42264. default: true
  42265. },
  42266. ]
  42267. ))
  42268. characterMakers.push(() => makeCharacter(
  42269. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42270. {
  42271. front: {
  42272. height: math.unit(7 + 6/12, "feet"),
  42273. weight: math.unit(500, "kg"),
  42274. name: "Front",
  42275. image: {
  42276. source: "./media/characters/arcturas/front.svg",
  42277. extra: 1700/1500,
  42278. bottom: 145/1845
  42279. }
  42280. },
  42281. },
  42282. [
  42283. {
  42284. name: "Normal",
  42285. height: math.unit(7 + 6/12, "feet"),
  42286. default: true
  42287. },
  42288. ]
  42289. ))
  42290. characterMakers.push(() => makeCharacter(
  42291. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42292. {
  42293. side: {
  42294. height: math.unit(6, "feet"),
  42295. weight: math.unit(2, "tons"),
  42296. name: "Side",
  42297. image: {
  42298. source: "./media/characters/vitaen/side.svg",
  42299. extra: 1157/617,
  42300. bottom: 122/1279
  42301. }
  42302. },
  42303. },
  42304. [
  42305. {
  42306. name: "Normal",
  42307. height: math.unit(6, "feet"),
  42308. default: true
  42309. },
  42310. ]
  42311. ))
  42312. characterMakers.push(() => makeCharacter(
  42313. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42314. {
  42315. front: {
  42316. height: math.unit(19, "feet"),
  42317. name: "Front",
  42318. image: {
  42319. source: "./media/characters/fia-dreamweaver/front.svg",
  42320. extra: 1630/1504,
  42321. bottom: 25/1655
  42322. }
  42323. },
  42324. },
  42325. [
  42326. {
  42327. name: "Normal",
  42328. height: math.unit(19, "feet"),
  42329. default: true
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42335. {
  42336. front: {
  42337. height: math.unit(5 + 4/12, "feet"),
  42338. name: "Front",
  42339. image: {
  42340. source: "./media/characters/artan/front.svg",
  42341. extra: 1618/1535,
  42342. bottom: 46/1664
  42343. }
  42344. },
  42345. back: {
  42346. height: math.unit(5 + 4/12, "feet"),
  42347. name: "Back",
  42348. image: {
  42349. source: "./media/characters/artan/back.svg",
  42350. extra: 1618/1543,
  42351. bottom: 31/1649
  42352. }
  42353. },
  42354. },
  42355. [
  42356. {
  42357. name: "Normal",
  42358. height: math.unit(5 + 4/12, "feet"),
  42359. default: true
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42365. {
  42366. side: {
  42367. height: math.unit(182, "cm"),
  42368. weight: math.unit(1000, "lb"),
  42369. name: "Side",
  42370. image: {
  42371. source: "./media/characters/silver-dragon/side.svg",
  42372. extra: 710/287,
  42373. bottom: 88/798
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "Normal",
  42380. height: math.unit(182, "cm"),
  42381. default: true
  42382. },
  42383. ]
  42384. ))
  42385. characterMakers.push(() => makeCharacter(
  42386. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42387. {
  42388. side: {
  42389. height: math.unit(6 + 6/12, "feet"),
  42390. weight: math.unit(1.5, "tons"),
  42391. name: "Side",
  42392. image: {
  42393. source: "./media/characters/zephyr/side.svg",
  42394. extra: 1433/586,
  42395. bottom: 109/1542
  42396. }
  42397. },
  42398. },
  42399. [
  42400. {
  42401. name: "Normal",
  42402. height: math.unit(6 + 6/12, "feet"),
  42403. default: true
  42404. },
  42405. ]
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42409. {
  42410. side: {
  42411. height: math.unit(1, "feet"),
  42412. name: "Side",
  42413. image: {
  42414. source: "./media/characters/vixye/side.svg",
  42415. extra: 632/541,
  42416. bottom: 0/632
  42417. }
  42418. },
  42419. },
  42420. [
  42421. {
  42422. name: "Normal",
  42423. height: math.unit(1, "feet"),
  42424. default: true
  42425. },
  42426. {
  42427. name: "True",
  42428. height: math.unit(1e15, "multiverses")
  42429. },
  42430. ]
  42431. ))
  42432. characterMakers.push(() => makeCharacter(
  42433. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42434. {
  42435. front: {
  42436. height: math.unit(8 + 2/12, "feet"),
  42437. weight: math.unit(650, "lb"),
  42438. name: "Front",
  42439. image: {
  42440. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42441. extra: 1174/1137,
  42442. bottom: 82/1256
  42443. }
  42444. },
  42445. back: {
  42446. height: math.unit(8 + 2/12, "feet"),
  42447. weight: math.unit(650, "lb"),
  42448. name: "Back",
  42449. image: {
  42450. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42451. extra: 1204/1157,
  42452. bottom: 46/1250
  42453. }
  42454. },
  42455. },
  42456. [
  42457. {
  42458. name: "Wildform",
  42459. height: math.unit(8 + 2/12, "feet"),
  42460. default: true
  42461. },
  42462. ]
  42463. ))
  42464. characterMakers.push(() => makeCharacter(
  42465. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42466. {
  42467. front: {
  42468. height: math.unit(18, "feet"),
  42469. name: "Front",
  42470. image: {
  42471. source: "./media/characters/cyphin/front.svg",
  42472. extra: 970/886,
  42473. bottom: 42/1012
  42474. }
  42475. },
  42476. back: {
  42477. height: math.unit(18, "feet"),
  42478. name: "Back",
  42479. image: {
  42480. source: "./media/characters/cyphin/back.svg",
  42481. extra: 1009/894,
  42482. bottom: 24/1033
  42483. }
  42484. },
  42485. head: {
  42486. height: math.unit(5.05, "feet"),
  42487. name: "Head",
  42488. image: {
  42489. source: "./media/characters/cyphin/head.svg"
  42490. }
  42491. },
  42492. tailbud: {
  42493. height: math.unit(5, "feet"),
  42494. name: "Tailbud",
  42495. image: {
  42496. source: "./media/characters/cyphin/tailbud.svg"
  42497. }
  42498. },
  42499. },
  42500. [
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42505. {
  42506. side: {
  42507. height: math.unit(10, "feet"),
  42508. weight: math.unit(6, "tons"),
  42509. name: "Side",
  42510. image: {
  42511. source: "./media/characters/raijin/side.svg",
  42512. extra: 1529/613,
  42513. bottom: 337/1866
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Normal",
  42520. height: math.unit(10, "feet"),
  42521. default: true
  42522. },
  42523. ]
  42524. ))
  42525. characterMakers.push(() => makeCharacter(
  42526. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42527. {
  42528. side: {
  42529. height: math.unit(9, "feet"),
  42530. name: "Side",
  42531. image: {
  42532. source: "./media/characters/nilghais/side.svg",
  42533. extra: 1047/744,
  42534. bottom: 91/1138
  42535. }
  42536. },
  42537. head: {
  42538. height: math.unit(3.14, "feet"),
  42539. name: "Head",
  42540. image: {
  42541. source: "./media/characters/nilghais/head.svg"
  42542. }
  42543. },
  42544. mouth: {
  42545. height: math.unit(4.6, "feet"),
  42546. name: "Mouth",
  42547. image: {
  42548. source: "./media/characters/nilghais/mouth.svg"
  42549. }
  42550. },
  42551. wings: {
  42552. height: math.unit(24, "feet"),
  42553. name: "Wings",
  42554. image: {
  42555. source: "./media/characters/nilghais/wings.svg"
  42556. }
  42557. },
  42558. ass: {
  42559. height: math.unit(6.12, "feet"),
  42560. name: "Ass",
  42561. image: {
  42562. source: "./media/characters/nilghais/ass.svg"
  42563. }
  42564. },
  42565. },
  42566. [
  42567. {
  42568. name: "Normal",
  42569. height: math.unit(9, "feet"),
  42570. default: true
  42571. },
  42572. ]
  42573. ))
  42574. characterMakers.push(() => makeCharacter(
  42575. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42576. {
  42577. regular: {
  42578. height: math.unit(16 + 2/12, "feet"),
  42579. weight: math.unit(2300, "lb"),
  42580. name: "Regular",
  42581. image: {
  42582. source: "./media/characters/zolgar/regular.svg",
  42583. extra: 1246/1004,
  42584. bottom: 124/1370
  42585. }
  42586. },
  42587. boxers: {
  42588. height: math.unit(16 + 2/12, "feet"),
  42589. weight: math.unit(2300, "lb"),
  42590. name: "Boxers",
  42591. image: {
  42592. source: "./media/characters/zolgar/boxers.svg",
  42593. extra: 1246/1004,
  42594. bottom: 124/1370
  42595. }
  42596. },
  42597. armored: {
  42598. height: math.unit(16 + 2/12, "feet"),
  42599. weight: math.unit(2300, "lb"),
  42600. name: "Armored",
  42601. image: {
  42602. source: "./media/characters/zolgar/armored.svg",
  42603. extra: 1246/1004,
  42604. bottom: 124/1370
  42605. }
  42606. },
  42607. goth: {
  42608. height: math.unit(16 + 2/12, "feet"),
  42609. weight: math.unit(2300, "lb"),
  42610. name: "Goth",
  42611. image: {
  42612. source: "./media/characters/zolgar/goth.svg",
  42613. extra: 1246/1004,
  42614. bottom: 124/1370
  42615. }
  42616. },
  42617. },
  42618. [
  42619. {
  42620. name: "Shrunken Down",
  42621. height: math.unit(9 + 2/12, "feet")
  42622. },
  42623. {
  42624. name: "Normal",
  42625. height: math.unit(16 + 2/12, "feet"),
  42626. default: true
  42627. },
  42628. ]
  42629. ))
  42630. characterMakers.push(() => makeCharacter(
  42631. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42632. {
  42633. front: {
  42634. height: math.unit(6, "feet"),
  42635. weight: math.unit(168, "lb"),
  42636. name: "Front",
  42637. image: {
  42638. source: "./media/characters/luca/front.svg",
  42639. extra: 841/667,
  42640. bottom: 102/943
  42641. }
  42642. },
  42643. },
  42644. [
  42645. {
  42646. name: "Normal",
  42647. height: math.unit(6, "feet"),
  42648. default: true
  42649. },
  42650. ]
  42651. ))
  42652. characterMakers.push(() => makeCharacter(
  42653. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42654. {
  42655. side: {
  42656. height: math.unit(7 + 3/12, "feet"),
  42657. weight: math.unit(312, "lb"),
  42658. name: "Side",
  42659. image: {
  42660. source: "./media/characters/zezo/side.svg",
  42661. extra: 1192/1067,
  42662. bottom: 63/1255
  42663. }
  42664. },
  42665. },
  42666. [
  42667. {
  42668. name: "Normal",
  42669. height: math.unit(7 + 3/12, "feet"),
  42670. default: true
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42676. {
  42677. front: {
  42678. height: math.unit(5 + 5/12, "feet"),
  42679. weight: math.unit(170, "lb"),
  42680. name: "Front",
  42681. image: {
  42682. source: "./media/characters/mayso/front.svg",
  42683. extra: 1215/1108,
  42684. bottom: 16/1231
  42685. }
  42686. },
  42687. },
  42688. [
  42689. {
  42690. name: "Normal",
  42691. height: math.unit(5 + 5/12, "feet"),
  42692. default: true
  42693. },
  42694. ]
  42695. ))
  42696. characterMakers.push(() => makeCharacter(
  42697. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42698. {
  42699. front: {
  42700. height: math.unit(4 + 3/12, "feet"),
  42701. weight: math.unit(80, "lb"),
  42702. name: "Front",
  42703. image: {
  42704. source: "./media/characters/hess/front.svg",
  42705. extra: 1200/1123,
  42706. bottom: 16/1216
  42707. }
  42708. },
  42709. },
  42710. [
  42711. {
  42712. name: "Normal",
  42713. height: math.unit(4 + 3/12, "feet"),
  42714. default: true
  42715. },
  42716. ]
  42717. ))
  42718. characterMakers.push(() => makeCharacter(
  42719. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42720. {
  42721. front: {
  42722. height: math.unit(1.9, "meters"),
  42723. name: "Front",
  42724. image: {
  42725. source: "./media/characters/ashgar/front.svg",
  42726. extra: 1177/1146,
  42727. bottom: 99/1276
  42728. }
  42729. },
  42730. back: {
  42731. height: math.unit(1.9, "meters"),
  42732. name: "Back",
  42733. image: {
  42734. source: "./media/characters/ashgar/back.svg",
  42735. extra: 1201/1183,
  42736. bottom: 53/1254
  42737. }
  42738. },
  42739. feral: {
  42740. height: math.unit(1.4, "meters"),
  42741. name: "Feral",
  42742. image: {
  42743. source: "./media/characters/ashgar/feral.svg",
  42744. extra: 370/345,
  42745. bottom: 45/415
  42746. }
  42747. },
  42748. },
  42749. [
  42750. {
  42751. name: "Normal",
  42752. height: math.unit(1.9, "meters"),
  42753. default: true
  42754. },
  42755. ]
  42756. ))
  42757. characterMakers.push(() => makeCharacter(
  42758. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42759. {
  42760. regular: {
  42761. height: math.unit(6, "feet"),
  42762. weight: math.unit(220, "lb"),
  42763. name: "Regular",
  42764. image: {
  42765. source: "./media/characters/phillip/regular.svg",
  42766. extra: 1373/1277,
  42767. bottom: 75/1448
  42768. }
  42769. },
  42770. dressed: {
  42771. height: math.unit(6, "feet"),
  42772. weight: math.unit(220, "lb"),
  42773. name: "Dressed",
  42774. image: {
  42775. source: "./media/characters/phillip/dressed.svg",
  42776. extra: 1373/1277,
  42777. bottom: 75/1448
  42778. }
  42779. },
  42780. paw: {
  42781. height: math.unit(1.44, "feet"),
  42782. name: "Paw",
  42783. image: {
  42784. source: "./media/characters/phillip/paw.svg"
  42785. }
  42786. },
  42787. },
  42788. [
  42789. {
  42790. name: "Normal",
  42791. height: math.unit(6, "feet"),
  42792. default: true
  42793. },
  42794. ]
  42795. ))
  42796. characterMakers.push(() => makeCharacter(
  42797. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42798. {
  42799. side: {
  42800. height: math.unit(42, "feet"),
  42801. name: "Side",
  42802. image: {
  42803. source: "./media/characters/uvula/side.svg",
  42804. extra: 683/586,
  42805. bottom: 60/743
  42806. }
  42807. },
  42808. front: {
  42809. height: math.unit(42, "feet"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/uvula/front.svg",
  42813. extra: 705/613,
  42814. bottom: 54/759
  42815. }
  42816. },
  42817. maw: {
  42818. height: math.unit(23.5, "feet"),
  42819. name: "Maw",
  42820. image: {
  42821. source: "./media/characters/uvula/maw.svg"
  42822. }
  42823. },
  42824. },
  42825. [
  42826. {
  42827. name: "Original Size",
  42828. height: math.unit(14, "inches")
  42829. },
  42830. {
  42831. name: "Human Size",
  42832. height: math.unit(6, "feet")
  42833. },
  42834. {
  42835. name: "Big",
  42836. height: math.unit(42, "feet"),
  42837. default: true
  42838. },
  42839. {
  42840. name: "Bigger",
  42841. height: math.unit(100, "feet")
  42842. },
  42843. ]
  42844. ))
  42845. characterMakers.push(() => makeCharacter(
  42846. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42847. {
  42848. front: {
  42849. height: math.unit(5 + 11/12, "feet"),
  42850. name: "Front",
  42851. image: {
  42852. source: "./media/characters/lannah/front.svg",
  42853. extra: 1208/1113,
  42854. bottom: 97/1305
  42855. }
  42856. },
  42857. },
  42858. [
  42859. {
  42860. name: "Normal",
  42861. height: math.unit(5 + 11/12, "feet"),
  42862. default: true
  42863. },
  42864. ]
  42865. ))
  42866. characterMakers.push(() => makeCharacter(
  42867. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42868. {
  42869. front: {
  42870. height: math.unit(6 + 3/12, "feet"),
  42871. weight: math.unit(3.5, "tons"),
  42872. name: "Front",
  42873. image: {
  42874. source: "./media/characters/emberflame/front.svg",
  42875. extra: 1198/672,
  42876. bottom: 82/1280
  42877. }
  42878. },
  42879. side: {
  42880. height: math.unit(6 + 3/12, "feet"),
  42881. weight: math.unit(3.5, "tons"),
  42882. name: "Side",
  42883. image: {
  42884. source: "./media/characters/emberflame/side.svg",
  42885. extra: 938/527,
  42886. bottom: 56/994
  42887. }
  42888. },
  42889. },
  42890. [
  42891. {
  42892. name: "Normal",
  42893. height: math.unit(6 + 3/12, "feet"),
  42894. default: true
  42895. },
  42896. ]
  42897. ))
  42898. characterMakers.push(() => makeCharacter(
  42899. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42900. {
  42901. side: {
  42902. height: math.unit(17.5, "feet"),
  42903. weight: math.unit(35, "tons"),
  42904. name: "Side",
  42905. image: {
  42906. source: "./media/characters/sophie-ambrose/side.svg",
  42907. extra: 1573/1242,
  42908. bottom: 71/1644
  42909. }
  42910. },
  42911. maw: {
  42912. height: math.unit(7.4, "feet"),
  42913. name: "Maw",
  42914. image: {
  42915. source: "./media/characters/sophie-ambrose/maw.svg"
  42916. }
  42917. },
  42918. },
  42919. [
  42920. {
  42921. name: "Normal",
  42922. height: math.unit(17.5, "feet"),
  42923. default: true
  42924. },
  42925. ]
  42926. ))
  42927. characterMakers.push(() => makeCharacter(
  42928. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42929. {
  42930. front: {
  42931. height: math.unit(280, "feet"),
  42932. weight: math.unit(550, "tons"),
  42933. name: "Front",
  42934. image: {
  42935. source: "./media/characters/king-mugi/front.svg",
  42936. extra: 1102/947,
  42937. bottom: 104/1206
  42938. }
  42939. },
  42940. },
  42941. [
  42942. {
  42943. name: "King Mugi",
  42944. height: math.unit(280, "feet"),
  42945. default: true
  42946. },
  42947. ]
  42948. ))
  42949. characterMakers.push(() => makeCharacter(
  42950. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42951. {
  42952. front: {
  42953. height: math.unit(64, "meters"),
  42954. name: "Front",
  42955. image: {
  42956. source: "./media/characters/nova-fox/front.svg",
  42957. extra: 1310/1246,
  42958. bottom: 65/1375
  42959. }
  42960. },
  42961. },
  42962. [
  42963. {
  42964. name: "Macro",
  42965. height: math.unit(64, "meters"),
  42966. default: true
  42967. },
  42968. ]
  42969. ))
  42970. characterMakers.push(() => makeCharacter(
  42971. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42972. {
  42973. front: {
  42974. height: math.unit(6 + 3/12, "feet"),
  42975. weight: math.unit(170, "lb"),
  42976. name: "Front",
  42977. image: {
  42978. source: "./media/characters/sam-bat/front.svg",
  42979. extra: 1601/1411,
  42980. bottom: 125/1726
  42981. }
  42982. },
  42983. back: {
  42984. height: math.unit(6 + 3/12, "feet"),
  42985. weight: math.unit(170, "lb"),
  42986. name: "Back",
  42987. image: {
  42988. source: "./media/characters/sam-bat/back.svg",
  42989. extra: 1577/1405,
  42990. bottom: 58/1635
  42991. }
  42992. },
  42993. },
  42994. [
  42995. {
  42996. name: "Normal",
  42997. height: math.unit(6 + 3/12, "feet"),
  42998. default: true
  42999. },
  43000. ]
  43001. ))
  43002. characterMakers.push(() => makeCharacter(
  43003. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43004. {
  43005. front: {
  43006. height: math.unit(59, "feet"),
  43007. weight: math.unit(40000, "lb"),
  43008. name: "Front",
  43009. image: {
  43010. source: "./media/characters/inari/front.svg",
  43011. extra: 1884/1350,
  43012. bottom: 95/1979
  43013. }
  43014. },
  43015. },
  43016. [
  43017. {
  43018. name: "Gigantamax",
  43019. height: math.unit(59, "feet"),
  43020. default: true
  43021. },
  43022. ]
  43023. ))
  43024. characterMakers.push(() => makeCharacter(
  43025. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43026. {
  43027. front: {
  43028. height: math.unit(5 + 8/12, "feet"),
  43029. name: "Front",
  43030. image: {
  43031. source: "./media/characters/elizabeth/front.svg",
  43032. extra: 1395/1298,
  43033. bottom: 54/1449
  43034. }
  43035. },
  43036. mouth: {
  43037. height: math.unit(1.97, "feet"),
  43038. name: "Mouth",
  43039. image: {
  43040. source: "./media/characters/elizabeth/mouth.svg"
  43041. }
  43042. },
  43043. foot: {
  43044. height: math.unit(1.17, "feet"),
  43045. name: "Foot",
  43046. image: {
  43047. source: "./media/characters/elizabeth/foot.svg"
  43048. }
  43049. },
  43050. },
  43051. [
  43052. {
  43053. name: "Normal",
  43054. height: math.unit(5 + 8/12, "feet"),
  43055. default: true
  43056. },
  43057. {
  43058. name: "Minimacro",
  43059. height: math.unit(18, "feet")
  43060. },
  43061. {
  43062. name: "Macro",
  43063. height: math.unit(180, "feet")
  43064. },
  43065. ]
  43066. ))
  43067. characterMakers.push(() => makeCharacter(
  43068. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43069. {
  43070. front: {
  43071. height: math.unit(5 + 2/12, "feet"),
  43072. name: "Front",
  43073. image: {
  43074. source: "./media/characters/october-gossamer/front.svg",
  43075. extra: 505/454,
  43076. bottom: 7/512
  43077. }
  43078. },
  43079. back: {
  43080. height: math.unit(5 + 2/12, "feet"),
  43081. name: "Back",
  43082. image: {
  43083. source: "./media/characters/october-gossamer/back.svg",
  43084. extra: 501/454,
  43085. bottom: 11/512
  43086. }
  43087. },
  43088. },
  43089. [
  43090. {
  43091. name: "Normal",
  43092. height: math.unit(5 + 2/12, "feet"),
  43093. default: true
  43094. },
  43095. ]
  43096. ))
  43097. characterMakers.push(() => makeCharacter(
  43098. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43099. {
  43100. front: {
  43101. height: math.unit(5, "feet"),
  43102. name: "Front",
  43103. image: {
  43104. source: "./media/characters/epiglottis/front.svg",
  43105. extra: 923/849,
  43106. bottom: 17/940
  43107. }
  43108. },
  43109. },
  43110. [
  43111. {
  43112. name: "Original Size",
  43113. height: math.unit(10, "inches")
  43114. },
  43115. {
  43116. name: "Human Size",
  43117. height: math.unit(5, "feet"),
  43118. default: true
  43119. },
  43120. {
  43121. name: "Big",
  43122. height: math.unit(25, "feet")
  43123. },
  43124. {
  43125. name: "Bigger",
  43126. height: math.unit(50, "feet")
  43127. },
  43128. {
  43129. name: "oh lawd",
  43130. height: math.unit(75, "feet")
  43131. },
  43132. ]
  43133. ))
  43134. characterMakers.push(() => makeCharacter(
  43135. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43136. {
  43137. front: {
  43138. height: math.unit(2 + 4/12, "feet"),
  43139. weight: math.unit(60, "lb"),
  43140. name: "Front",
  43141. image: {
  43142. source: "./media/characters/lerm/front.svg",
  43143. extra: 796/790,
  43144. bottom: 79/875
  43145. }
  43146. },
  43147. },
  43148. [
  43149. {
  43150. name: "Normal",
  43151. height: math.unit(2 + 4/12, "feet"),
  43152. default: true
  43153. },
  43154. ]
  43155. ))
  43156. characterMakers.push(() => makeCharacter(
  43157. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43158. {
  43159. front: {
  43160. height: math.unit(5.5, "feet"),
  43161. weight: math.unit(130, "lb"),
  43162. name: "Front",
  43163. image: {
  43164. source: "./media/characters/xena-nebadon/front.svg",
  43165. extra: 1828/1730,
  43166. bottom: 79/1907
  43167. }
  43168. },
  43169. },
  43170. [
  43171. {
  43172. name: "Tiny Puppy",
  43173. height: math.unit(3, "inches")
  43174. },
  43175. {
  43176. name: "Normal",
  43177. height: math.unit(5.5, "feet"),
  43178. default: true
  43179. },
  43180. {
  43181. name: "Lotta Lady",
  43182. height: math.unit(12, "feet")
  43183. },
  43184. {
  43185. name: "Pretty Big",
  43186. height: math.unit(100, "feet")
  43187. },
  43188. {
  43189. name: "Big",
  43190. height: math.unit(500, "feet")
  43191. },
  43192. {
  43193. name: "Skyscraper Toys",
  43194. height: math.unit(2500, "feet")
  43195. },
  43196. {
  43197. name: "Plane Catcher",
  43198. height: math.unit(8, "miles")
  43199. },
  43200. {
  43201. name: "Planet Toys",
  43202. height: math.unit(15, "earths")
  43203. },
  43204. {
  43205. name: "Stardust",
  43206. height: math.unit(0.25, "galaxies")
  43207. },
  43208. {
  43209. name: "Snacks",
  43210. height: math.unit(70, "universes")
  43211. },
  43212. ]
  43213. ))
  43214. characterMakers.push(() => makeCharacter(
  43215. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43216. {
  43217. front: {
  43218. height: math.unit(1.6, "meters"),
  43219. weight: math.unit(60, "kg"),
  43220. name: "Front",
  43221. image: {
  43222. source: "./media/characters/bounty/front.svg",
  43223. extra: 1426/1308,
  43224. bottom: 15/1441
  43225. }
  43226. },
  43227. back: {
  43228. height: math.unit(1.6, "meters"),
  43229. weight: math.unit(60, "kg"),
  43230. name: "Back",
  43231. image: {
  43232. source: "./media/characters/bounty/back.svg",
  43233. extra: 1417/1307,
  43234. bottom: 8/1425
  43235. }
  43236. },
  43237. },
  43238. [
  43239. {
  43240. name: "Normal",
  43241. height: math.unit(1.6, "meters"),
  43242. default: true
  43243. },
  43244. {
  43245. name: "Macro",
  43246. height: math.unit(300, "meters")
  43247. },
  43248. ]
  43249. ))
  43250. characterMakers.push(() => makeCharacter(
  43251. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43252. {
  43253. front: {
  43254. height: math.unit(2 + 8/12, "feet"),
  43255. weight: math.unit(15, "lb"),
  43256. name: "Front",
  43257. image: {
  43258. source: "./media/characters/mochi/front.svg",
  43259. extra: 1022/852,
  43260. bottom: 435/1457
  43261. }
  43262. },
  43263. back: {
  43264. height: math.unit(2 + 8/12, "feet"),
  43265. weight: math.unit(15, "lb"),
  43266. name: "Back",
  43267. image: {
  43268. source: "./media/characters/mochi/back.svg",
  43269. extra: 1335/1119,
  43270. bottom: 39/1374
  43271. }
  43272. },
  43273. bird: {
  43274. height: math.unit(2 + 8/12, "feet"),
  43275. weight: math.unit(15, "lb"),
  43276. name: "Bird",
  43277. image: {
  43278. source: "./media/characters/mochi/bird.svg",
  43279. extra: 1251/1113,
  43280. bottom: 178/1429
  43281. }
  43282. },
  43283. kaiju: {
  43284. height: math.unit(154, "feet"),
  43285. weight: math.unit(1e7, "lb"),
  43286. name: "Kaiju",
  43287. image: {
  43288. source: "./media/characters/mochi/kaiju.svg",
  43289. extra: 460/324,
  43290. bottom: 40/500
  43291. }
  43292. },
  43293. head: {
  43294. height: math.unit(1.21, "feet"),
  43295. name: "Head",
  43296. image: {
  43297. source: "./media/characters/mochi/head.svg"
  43298. }
  43299. },
  43300. alternateTail: {
  43301. height: math.unit(2 + 8/12, "feet"),
  43302. weight: math.unit(45, "lb"),
  43303. name: "Alternate Tail",
  43304. image: {
  43305. source: "./media/characters/mochi/alternate-tail.svg",
  43306. extra: 139/76,
  43307. bottom: 45/184
  43308. }
  43309. },
  43310. },
  43311. [
  43312. {
  43313. name: "Micro",
  43314. height: math.unit(2, "inches")
  43315. },
  43316. {
  43317. name: "Normal",
  43318. height: math.unit(2 + 8/12, "feet"),
  43319. default: true
  43320. },
  43321. {
  43322. name: "Macro",
  43323. height: math.unit(106, "feet")
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(5.67, "feet"),
  43332. weight: math.unit(135, "lb"),
  43333. name: "Front",
  43334. image: {
  43335. source: "./media/characters/sarel/front.svg",
  43336. extra: 865/788,
  43337. bottom: 97/962
  43338. }
  43339. },
  43340. back: {
  43341. height: math.unit(5.67, "feet"),
  43342. weight: math.unit(135, "lb"),
  43343. name: "Back",
  43344. image: {
  43345. source: "./media/characters/sarel/back.svg",
  43346. extra: 857/777,
  43347. bottom: 32/889
  43348. }
  43349. },
  43350. chozoan: {
  43351. height: math.unit(5.67, "feet"),
  43352. weight: math.unit(135, "lb"),
  43353. name: "Chozoan",
  43354. image: {
  43355. source: "./media/characters/sarel/chozoan.svg",
  43356. extra: 865/788,
  43357. bottom: 97/962
  43358. }
  43359. },
  43360. current: {
  43361. height: math.unit(5.67, "feet"),
  43362. weight: math.unit(135, "lb"),
  43363. name: "Current",
  43364. image: {
  43365. source: "./media/characters/sarel/current.svg",
  43366. extra: 865/788,
  43367. bottom: 97/962
  43368. }
  43369. },
  43370. head: {
  43371. height: math.unit(1.77, "feet"),
  43372. name: "Head",
  43373. image: {
  43374. source: "./media/characters/sarel/head.svg"
  43375. }
  43376. },
  43377. claws: {
  43378. height: math.unit(1.8, "feet"),
  43379. name: "Claws",
  43380. image: {
  43381. source: "./media/characters/sarel/claws.svg"
  43382. }
  43383. },
  43384. clawsAlt: {
  43385. height: math.unit(1.8, "feet"),
  43386. name: "Claws-alt",
  43387. image: {
  43388. source: "./media/characters/sarel/claws-alt.svg"
  43389. }
  43390. },
  43391. },
  43392. [
  43393. {
  43394. name: "Normal",
  43395. height: math.unit(5.67, "feet"),
  43396. default: true
  43397. },
  43398. ]
  43399. ))
  43400. characterMakers.push(() => makeCharacter(
  43401. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43402. {
  43403. front: {
  43404. height: math.unit(5500, "feet"),
  43405. name: "Front",
  43406. image: {
  43407. source: "./media/characters/alyonia/front.svg",
  43408. extra: 1200/1135,
  43409. bottom: 29/1229
  43410. }
  43411. },
  43412. back: {
  43413. height: math.unit(5500, "feet"),
  43414. name: "Back",
  43415. image: {
  43416. source: "./media/characters/alyonia/back.svg",
  43417. extra: 1205/1138,
  43418. bottom: 10/1215
  43419. }
  43420. },
  43421. },
  43422. [
  43423. {
  43424. name: "Small",
  43425. height: math.unit(10, "feet")
  43426. },
  43427. {
  43428. name: "Macro",
  43429. height: math.unit(500, "feet")
  43430. },
  43431. {
  43432. name: "Mega Macro",
  43433. height: math.unit(5500, "feet"),
  43434. default: true
  43435. },
  43436. {
  43437. name: "Mega Macro+",
  43438. height: math.unit(500000, "feet")
  43439. },
  43440. {
  43441. name: "Giga Macro",
  43442. height: math.unit(3000, "miles")
  43443. },
  43444. {
  43445. name: "Tera Macro",
  43446. height: math.unit(2.8e6, "miles")
  43447. },
  43448. {
  43449. name: "Galactic",
  43450. height: math.unit(120000, "lightyears")
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43456. {
  43457. werewolf: {
  43458. height: math.unit(8, "feet"),
  43459. weight: math.unit(425, "lb"),
  43460. name: "Werewolf",
  43461. image: {
  43462. source: "./media/characters/autumn/werewolf.svg",
  43463. extra: 2154/2031,
  43464. bottom: 160/2314
  43465. }
  43466. },
  43467. human: {
  43468. height: math.unit(5 + 8/12, "feet"),
  43469. weight: math.unit(150, "lb"),
  43470. name: "Human",
  43471. image: {
  43472. source: "./media/characters/autumn/human.svg",
  43473. extra: 1200/1149,
  43474. bottom: 30/1230
  43475. }
  43476. },
  43477. },
  43478. [
  43479. {
  43480. name: "Normal",
  43481. height: math.unit(8, "feet"),
  43482. default: true
  43483. },
  43484. ]
  43485. ))
  43486. characterMakers.push(() => makeCharacter(
  43487. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43488. {
  43489. front: {
  43490. height: math.unit(8 + 5/12, "feet"),
  43491. weight: math.unit(825, "lb"),
  43492. name: "Front",
  43493. image: {
  43494. source: "./media/characters/cobalt-charizard/front.svg",
  43495. extra: 1268/1155,
  43496. bottom: 122/1390
  43497. }
  43498. },
  43499. side: {
  43500. height: math.unit(8 + 5/12, "feet"),
  43501. weight: math.unit(825, "lb"),
  43502. name: "Side",
  43503. image: {
  43504. source: "./media/characters/cobalt-charizard/side.svg",
  43505. extra: 1348/1257,
  43506. bottom: 58/1406
  43507. }
  43508. },
  43509. gMax: {
  43510. height: math.unit(134 + 11/12, "feet"),
  43511. name: "G-Max",
  43512. image: {
  43513. source: "./media/characters/cobalt-charizard/g-max.svg",
  43514. extra: 1835/1541,
  43515. bottom: 151/1986
  43516. }
  43517. },
  43518. },
  43519. [
  43520. {
  43521. name: "Normal",
  43522. height: math.unit(8 + 5/12, "feet"),
  43523. default: true
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43529. {
  43530. front: {
  43531. height: math.unit(6 + 3/12, "feet"),
  43532. weight: math.unit(210, "lb"),
  43533. name: "Front",
  43534. image: {
  43535. source: "./media/characters/stella/front.svg",
  43536. extra: 3549/3335,
  43537. bottom: 51/3600
  43538. }
  43539. },
  43540. },
  43541. [
  43542. {
  43543. name: "Normal",
  43544. height: math.unit(6 + 3/12, "feet"),
  43545. default: true
  43546. },
  43547. ]
  43548. ))
  43549. characterMakers.push(() => makeCharacter(
  43550. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43551. {
  43552. front: {
  43553. height: math.unit(5, "feet"),
  43554. weight: math.unit(90, "lb"),
  43555. name: "Front",
  43556. image: {
  43557. source: "./media/characters/riley-bishop/front.svg",
  43558. extra: 1450/1428,
  43559. bottom: 152/1602
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(5, "feet"),
  43567. default: true
  43568. },
  43569. ]
  43570. ))
  43571. characterMakers.push(() => makeCharacter(
  43572. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43573. {
  43574. side: {
  43575. height: math.unit(8 + 2/12, "feet"),
  43576. weight: math.unit(500, "kg"),
  43577. name: "Side",
  43578. image: {
  43579. source: "./media/characters/theo-arcanine/side.svg",
  43580. extra: 1342/1074,
  43581. bottom: 111/1453
  43582. }
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Normal",
  43588. height: math.unit(8 + 2/12, "feet"),
  43589. default: true
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43595. {
  43596. front: {
  43597. height: math.unit(4, "feet"),
  43598. name: "Front",
  43599. image: {
  43600. source: "./media/characters/kali/front.svg",
  43601. extra: 1921/1357,
  43602. bottom: 70/1991
  43603. }
  43604. },
  43605. },
  43606. [
  43607. {
  43608. name: "Normal",
  43609. height: math.unit(4, "feet"),
  43610. default: true
  43611. },
  43612. {
  43613. name: "Macro",
  43614. height: math.unit(32, "meters")
  43615. },
  43616. {
  43617. name: "Macro+",
  43618. height: math.unit(150, "meters")
  43619. },
  43620. {
  43621. name: "Megamacro",
  43622. height: math.unit(7500, "meters")
  43623. },
  43624. {
  43625. name: "Megamacro+",
  43626. height: math.unit(80, "kilometers")
  43627. },
  43628. ]
  43629. ))
  43630. characterMakers.push(() => makeCharacter(
  43631. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43632. {
  43633. side: {
  43634. height: math.unit(5 + 11/12, "feet"),
  43635. weight: math.unit(236, "lb"),
  43636. name: "Side",
  43637. image: {
  43638. source: "./media/characters/gapp/side.svg",
  43639. extra: 775/340,
  43640. bottom: 58/833
  43641. }
  43642. },
  43643. mouth: {
  43644. height: math.unit(2.98, "feet"),
  43645. name: "Mouth",
  43646. image: {
  43647. source: "./media/characters/gapp/mouth.svg"
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Normal",
  43654. height: math.unit(5 + 1/12, "feet"),
  43655. default: true
  43656. },
  43657. ]
  43658. ))
  43659. characterMakers.push(() => makeCharacter(
  43660. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43661. {
  43662. front: {
  43663. height: math.unit(6, "feet"),
  43664. name: "Front",
  43665. image: {
  43666. source: "./media/characters/persephone/front.svg",
  43667. extra: 1895/1717,
  43668. bottom: 96/1991
  43669. }
  43670. },
  43671. back: {
  43672. height: math.unit(6, "feet"),
  43673. name: "Back",
  43674. image: {
  43675. source: "./media/characters/persephone/back.svg",
  43676. extra: 1868/1679,
  43677. bottom: 26/1894
  43678. }
  43679. },
  43680. casual: {
  43681. height: math.unit(6, "feet"),
  43682. name: "Casual",
  43683. image: {
  43684. source: "./media/characters/persephone/casual.svg",
  43685. extra: 1713/1541,
  43686. bottom: 76/1789
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Human Size",
  43693. height: math.unit(6, "feet")
  43694. },
  43695. {
  43696. name: "Big Steppy",
  43697. height: math.unit(600, "meters"),
  43698. default: true
  43699. },
  43700. {
  43701. name: "Galaxy Brain",
  43702. height: math.unit(1, "zettameter")
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(1.85, "meters"),
  43711. name: "Front",
  43712. image: {
  43713. source: "./media/characters/riley-foxthing/front.svg",
  43714. extra: 1495/1354,
  43715. bottom: 122/1617
  43716. }
  43717. },
  43718. frontAlt: {
  43719. height: math.unit(1.85, "meters"),
  43720. name: "Front (Alt)",
  43721. image: {
  43722. source: "./media/characters/riley-foxthing/front-alt.svg",
  43723. extra: 1572/1389,
  43724. bottom: 116/1688
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Normal Sized",
  43731. height: math.unit(1.85, "meters"),
  43732. default: true
  43733. },
  43734. {
  43735. name: "Quite Sizable",
  43736. height: math.unit(5, "meters")
  43737. },
  43738. {
  43739. name: "Rather Large",
  43740. height: math.unit(20, "meters")
  43741. },
  43742. {
  43743. name: "Macro",
  43744. height: math.unit(450, "meters")
  43745. },
  43746. {
  43747. name: "Giga",
  43748. height: math.unit(5, "km")
  43749. },
  43750. ]
  43751. ))
  43752. characterMakers.push(() => makeCharacter(
  43753. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43754. {
  43755. front: {
  43756. height: math.unit(6, "feet"),
  43757. weight: math.unit(200, "lb"),
  43758. name: "Front",
  43759. image: {
  43760. source: "./media/characters/blizzard/front.svg",
  43761. extra: 1136/990,
  43762. bottom: 136/1272
  43763. }
  43764. },
  43765. back: {
  43766. height: math.unit(6, "feet"),
  43767. weight: math.unit(200, "lb"),
  43768. name: "Back",
  43769. image: {
  43770. source: "./media/characters/blizzard/back.svg",
  43771. extra: 1175/1034,
  43772. bottom: 97/1272
  43773. }
  43774. },
  43775. sitting: {
  43776. height: math.unit(3.725, "feet"),
  43777. weight: math.unit(200, "lb"),
  43778. name: "Sitting",
  43779. image: {
  43780. source: "./media/characters/blizzard/sitting.svg",
  43781. extra: 581/485,
  43782. bottom: 90/671
  43783. }
  43784. },
  43785. frontWizard: {
  43786. height: math.unit(7.9, "feet"),
  43787. weight: math.unit(200, "lb"),
  43788. name: "Front (Wizard)",
  43789. image: {
  43790. source: "./media/characters/blizzard/front-wizard.svg"
  43791. }
  43792. },
  43793. backWizard: {
  43794. height: math.unit(7.9, "feet"),
  43795. weight: math.unit(200, "lb"),
  43796. name: "Back (Wizard)",
  43797. image: {
  43798. source: "./media/characters/blizzard/back-wizard.svg"
  43799. }
  43800. },
  43801. frontNsfw: {
  43802. height: math.unit(6, "feet"),
  43803. weight: math.unit(200, "lb"),
  43804. name: "Front (NSFW)",
  43805. image: {
  43806. source: "./media/characters/blizzard/front-nsfw.svg",
  43807. extra: 1136/990,
  43808. bottom: 136/1272
  43809. }
  43810. },
  43811. backNsfw: {
  43812. height: math.unit(6, "feet"),
  43813. weight: math.unit(200, "lb"),
  43814. name: "Back (NSFW)",
  43815. image: {
  43816. source: "./media/characters/blizzard/back-nsfw.svg",
  43817. extra: 1175/1034,
  43818. bottom: 97/1272
  43819. }
  43820. },
  43821. sittingNsfw: {
  43822. height: math.unit(3.725, "feet"),
  43823. weight: math.unit(200, "lb"),
  43824. name: "Sitting (NSFW)",
  43825. image: {
  43826. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43827. extra: 581/485,
  43828. bottom: 90/671
  43829. }
  43830. },
  43831. wizardFrontNsfw: {
  43832. height: math.unit(7.9, "feet"),
  43833. weight: math.unit(200, "lb"),
  43834. name: "Wizard (Front, NSFW)",
  43835. image: {
  43836. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Normal",
  43843. height: math.unit(6, "feet"),
  43844. default: true
  43845. },
  43846. ]
  43847. ))
  43848. characterMakers.push(() => makeCharacter(
  43849. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43850. {
  43851. front: {
  43852. height: math.unit(5 + 2/12, "feet"),
  43853. name: "Front",
  43854. image: {
  43855. source: "./media/characters/lumi/front.svg",
  43856. extra: 1328/1268,
  43857. bottom: 103/1431
  43858. }
  43859. },
  43860. back: {
  43861. height: math.unit(5 + 2/12, "feet"),
  43862. name: "Back",
  43863. image: {
  43864. source: "./media/characters/lumi/back.svg",
  43865. extra: 1381/1327,
  43866. bottom: 43/1424
  43867. }
  43868. },
  43869. },
  43870. [
  43871. {
  43872. name: "Normal",
  43873. height: math.unit(5 + 2/12, "feet"),
  43874. default: true
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(5 + 9/12, "feet"),
  43883. name: "Front",
  43884. image: {
  43885. source: "./media/characters/aliya-cotton/front.svg",
  43886. extra: 577/564,
  43887. bottom: 29/606
  43888. }
  43889. },
  43890. },
  43891. [
  43892. {
  43893. name: "Normal",
  43894. height: math.unit(5 + 9/12, "feet"),
  43895. default: true
  43896. },
  43897. ]
  43898. ))
  43899. characterMakers.push(() => makeCharacter(
  43900. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43901. {
  43902. front: {
  43903. height: math.unit(2.7, "meters"),
  43904. weight: math.unit(25000, "lb"),
  43905. name: "Front",
  43906. image: {
  43907. source: "./media/characters/noah-luxray/front.svg",
  43908. extra: 1644/825,
  43909. bottom: 339/1983
  43910. }
  43911. },
  43912. side: {
  43913. height: math.unit(2.97, "meters"),
  43914. weight: math.unit(25000, "lb"),
  43915. name: "Side",
  43916. image: {
  43917. source: "./media/characters/noah-luxray/side.svg",
  43918. extra: 1319/650,
  43919. bottom: 163/1482
  43920. }
  43921. },
  43922. dick: {
  43923. height: math.unit(7.4, "feet"),
  43924. weight: math.unit(2500, "lb"),
  43925. name: "Dick",
  43926. image: {
  43927. source: "./media/characters/noah-luxray/dick.svg"
  43928. }
  43929. },
  43930. dickAlt: {
  43931. height: math.unit(10.83, "feet"),
  43932. weight: math.unit(2500, "lb"),
  43933. name: "Dick-alt",
  43934. image: {
  43935. source: "./media/characters/noah-luxray/dick-alt.svg"
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "BIG",
  43942. height: math.unit(2.7, "meters"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43949. {
  43950. standing: {
  43951. height: math.unit(183, "cm"),
  43952. weight: math.unit(68, "kg"),
  43953. name: "Standing",
  43954. image: {
  43955. source: "./media/characters/arion/standing.svg",
  43956. extra: 1869/1807,
  43957. bottom: 93/1962
  43958. }
  43959. },
  43960. reclining: {
  43961. height: math.unit(70.5, "cm"),
  43962. weight: math.unit(68, "lb"),
  43963. name: "Reclining",
  43964. image: {
  43965. source: "./media/characters/arion/reclining.svg",
  43966. extra: 937/870,
  43967. bottom: 63/1000
  43968. }
  43969. },
  43970. },
  43971. [
  43972. {
  43973. name: "Colossus Size, Low",
  43974. height: math.unit(33, "meters"),
  43975. default: true
  43976. },
  43977. {
  43978. name: "Colossus Size, Mid",
  43979. height: math.unit(52, "meters")
  43980. },
  43981. {
  43982. name: "Colossus Size, High",
  43983. height: math.unit(60, "meters")
  43984. },
  43985. {
  43986. name: "Titan Size, Low",
  43987. height: math.unit(91, "meters"),
  43988. },
  43989. {
  43990. name: "Titan Size, Mid",
  43991. height: math.unit(122, "meters")
  43992. },
  43993. {
  43994. name: "Titan Size, High",
  43995. height: math.unit(162, "meters")
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44001. {
  44002. front: {
  44003. height: math.unit(53, "meters"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/stellar-marbey/front.svg",
  44007. extra: 1913/1805,
  44008. bottom: 92/2005
  44009. }
  44010. },
  44011. back: {
  44012. height: math.unit(53, "meters"),
  44013. name: "Back",
  44014. image: {
  44015. source: "./media/characters/stellar-marbey/back.svg",
  44016. extra: 1960/1851,
  44017. bottom: 28/1988
  44018. }
  44019. },
  44020. mouth: {
  44021. height: math.unit(3.5, "meters"),
  44022. name: "Mouth",
  44023. image: {
  44024. source: "./media/characters/stellar-marbey/mouth.svg"
  44025. }
  44026. },
  44027. },
  44028. [
  44029. {
  44030. name: "Macro",
  44031. height: math.unit(53, "meters"),
  44032. default: true
  44033. },
  44034. ]
  44035. ))
  44036. characterMakers.push(() => makeCharacter(
  44037. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44038. {
  44039. front: {
  44040. height: math.unit(8 + 1/12, "feet"),
  44041. weight: math.unit(233, "lb"),
  44042. name: "Front",
  44043. image: {
  44044. source: "./media/characters/matsu/front.svg",
  44045. extra: 832/772,
  44046. bottom: 40/872
  44047. }
  44048. },
  44049. back: {
  44050. height: math.unit(8 + 1/12, "feet"),
  44051. weight: math.unit(233, "lb"),
  44052. name: "Back",
  44053. image: {
  44054. source: "./media/characters/matsu/back.svg",
  44055. extra: 839/780,
  44056. bottom: 47/886
  44057. }
  44058. },
  44059. },
  44060. [
  44061. {
  44062. name: "Normal",
  44063. height: math.unit(8 + 1/12, "feet"),
  44064. default: true
  44065. },
  44066. ]
  44067. ))
  44068. characterMakers.push(() => makeCharacter(
  44069. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44070. {
  44071. front: {
  44072. height: math.unit(4, "feet"),
  44073. weight: math.unit(148, "lb"),
  44074. name: "Front",
  44075. image: {
  44076. source: "./media/characters/thiz/front.svg",
  44077. extra: 1913/1748,
  44078. bottom: 62/1975
  44079. }
  44080. },
  44081. },
  44082. [
  44083. {
  44084. name: "Normal",
  44085. height: math.unit(4, "feet"),
  44086. default: true
  44087. },
  44088. ]
  44089. ))
  44090. characterMakers.push(() => makeCharacter(
  44091. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44092. {
  44093. front: {
  44094. height: math.unit(7 + 6/12, "feet"),
  44095. weight: math.unit(267, "lb"),
  44096. name: "Front",
  44097. image: {
  44098. source: "./media/characters/marcel/front.svg",
  44099. extra: 1221/1096,
  44100. bottom: 76/1297
  44101. }
  44102. },
  44103. },
  44104. [
  44105. {
  44106. name: "Normal",
  44107. height: math.unit(7 + 6/12, "feet"),
  44108. default: true
  44109. },
  44110. ]
  44111. ))
  44112. characterMakers.push(() => makeCharacter(
  44113. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44114. {
  44115. side: {
  44116. height: math.unit(42, "meters"),
  44117. name: "Side",
  44118. image: {
  44119. source: "./media/characters/flake/side.svg",
  44120. extra: 1525/1306,
  44121. bottom: 209/1734
  44122. }
  44123. },
  44124. },
  44125. [
  44126. {
  44127. name: "Normal",
  44128. height: math.unit(42, "meters"),
  44129. default: true
  44130. },
  44131. ]
  44132. ))
  44133. characterMakers.push(() => makeCharacter(
  44134. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44135. {
  44136. dressed: {
  44137. height: math.unit(6 + 4/12, "feet"),
  44138. weight: math.unit(520, "lb"),
  44139. name: "Dressed",
  44140. image: {
  44141. source: "./media/characters/someonne/dressed.svg",
  44142. extra: 1020/1010,
  44143. bottom: 178/1198
  44144. }
  44145. },
  44146. undressed: {
  44147. height: math.unit(6 + 4/12, "feet"),
  44148. weight: math.unit(520, "lb"),
  44149. name: "Undressed",
  44150. image: {
  44151. source: "./media/characters/someonne/undressed.svg",
  44152. extra: 1019/1014,
  44153. bottom: 169/1188
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Normal",
  44160. height: math.unit(6 + 4/12, "feet"),
  44161. default: true
  44162. },
  44163. ]
  44164. ))
  44165. characterMakers.push(() => makeCharacter(
  44166. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44167. {
  44168. front: {
  44169. height: math.unit(3, "feet"),
  44170. weight: math.unit(30, "lb"),
  44171. name: "Front",
  44172. image: {
  44173. source: "./media/characters/till/front.svg",
  44174. extra: 892/823,
  44175. bottom: 55/947
  44176. }
  44177. },
  44178. },
  44179. [
  44180. {
  44181. name: "Normal",
  44182. height: math.unit(3, "feet"),
  44183. default: true
  44184. },
  44185. ]
  44186. ))
  44187. characterMakers.push(() => makeCharacter(
  44188. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44189. {
  44190. front: {
  44191. height: math.unit(9 + 8/12, "feet"),
  44192. weight: math.unit(800, "lb"),
  44193. name: "Front",
  44194. image: {
  44195. source: "./media/characters/sydney-heki/front.svg",
  44196. extra: 1360/1300,
  44197. bottom: 22/1382
  44198. }
  44199. },
  44200. back: {
  44201. height: math.unit(9 + 8/12, "feet"),
  44202. weight: math.unit(800, "lb"),
  44203. name: "Back",
  44204. image: {
  44205. source: "./media/characters/sydney-heki/back.svg",
  44206. extra: 1356/1293,
  44207. bottom: 12/1368
  44208. }
  44209. },
  44210. frontDressed: {
  44211. height: math.unit(9 + 8/12, "feet"),
  44212. weight: math.unit(800, "lb"),
  44213. name: "Front-dressed",
  44214. image: {
  44215. source: "./media/characters/sydney-heki/front-dressed.svg",
  44216. extra: 1360/1300,
  44217. bottom: 22/1382
  44218. }
  44219. },
  44220. },
  44221. [
  44222. {
  44223. name: "Normal",
  44224. height: math.unit(9 + 8/12, "feet"),
  44225. default: true
  44226. },
  44227. {
  44228. name: "Macro",
  44229. height: math.unit(500, "feet")
  44230. },
  44231. {
  44232. name: "Megamacro",
  44233. height: math.unit(3.6, "miles")
  44234. },
  44235. ]
  44236. ))
  44237. characterMakers.push(() => makeCharacter(
  44238. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44239. {
  44240. front: {
  44241. height: math.unit(200, "cm"),
  44242. weight: math.unit(250, "lb"),
  44243. name: "Front",
  44244. image: {
  44245. source: "./media/characters/fowler-karlsson/front.svg",
  44246. extra: 897/845,
  44247. bottom: 123/1020
  44248. }
  44249. },
  44250. back: {
  44251. height: math.unit(200, "cm"),
  44252. weight: math.unit(250, "lb"),
  44253. name: "Back",
  44254. image: {
  44255. source: "./media/characters/fowler-karlsson/back.svg",
  44256. extra: 999/944,
  44257. bottom: 26/1025
  44258. }
  44259. },
  44260. dick: {
  44261. height: math.unit(1.92, "feet"),
  44262. weight: math.unit(150, "lb"),
  44263. name: "Dick",
  44264. image: {
  44265. source: "./media/characters/fowler-karlsson/dick.svg"
  44266. }
  44267. },
  44268. },
  44269. [
  44270. {
  44271. name: "Normal",
  44272. height: math.unit(200, "cm"),
  44273. default: true
  44274. },
  44275. {
  44276. name: "Smaller Macro",
  44277. height: math.unit(90, "m")
  44278. },
  44279. {
  44280. name: "Macro",
  44281. height: math.unit(150, "m")
  44282. },
  44283. {
  44284. name: "Bigger Macro",
  44285. height: math.unit(300, "m")
  44286. },
  44287. ]
  44288. ))
  44289. characterMakers.push(() => makeCharacter(
  44290. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44291. {
  44292. side: {
  44293. height: math.unit(8 + 2/12, "feet"),
  44294. weight: math.unit(1, "tonne"),
  44295. name: "Side",
  44296. image: {
  44297. source: "./media/characters/rylide/side.svg",
  44298. extra: 1318/1034,
  44299. bottom: 106/1424
  44300. }
  44301. },
  44302. sitting: {
  44303. height: math.unit(303, "cm"),
  44304. weight: math.unit(1, "tonne"),
  44305. name: "Sitting",
  44306. image: {
  44307. source: "./media/characters/rylide/sitting.svg",
  44308. extra: 1303/1103,
  44309. bottom: 36/1339
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(8 + 2/12, "feet"),
  44317. default: true
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44323. {
  44324. front: {
  44325. height: math.unit(5 + 10/12, "feet"),
  44326. weight: math.unit(160, "lb"),
  44327. name: "Front",
  44328. image: {
  44329. source: "./media/characters/pudask/front.svg",
  44330. extra: 1616/1590,
  44331. bottom: 161/1777
  44332. }
  44333. },
  44334. },
  44335. [
  44336. {
  44337. name: "Ferret Height",
  44338. height: math.unit(2 + 5/12, "feet")
  44339. },
  44340. {
  44341. name: "Canon Height",
  44342. height: math.unit(5 + 10/12, "feet"),
  44343. default: true
  44344. },
  44345. ]
  44346. ))
  44347. characterMakers.push(() => makeCharacter(
  44348. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44349. {
  44350. front: {
  44351. height: math.unit(3 + 6/12, "feet"),
  44352. weight: math.unit(60, "lb"),
  44353. name: "Front",
  44354. image: {
  44355. source: "./media/characters/ramita/front.svg",
  44356. extra: 1402/1232,
  44357. bottom: 62/1464
  44358. }
  44359. },
  44360. dressed: {
  44361. height: math.unit(3 + 6/12, "feet"),
  44362. weight: math.unit(60, "lb"),
  44363. name: "Dressed",
  44364. image: {
  44365. source: "./media/characters/ramita/dressed.svg",
  44366. extra: 1534/1249,
  44367. bottom: 50/1584
  44368. }
  44369. },
  44370. },
  44371. [
  44372. {
  44373. name: "Normal",
  44374. height: math.unit(3 + 6/12, "feet"),
  44375. default: true
  44376. },
  44377. ]
  44378. ))
  44379. characterMakers.push(() => makeCharacter(
  44380. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44381. {
  44382. front: {
  44383. height: math.unit(8, "feet"),
  44384. name: "Front",
  44385. image: {
  44386. source: "./media/characters/ark/front.svg",
  44387. extra: 772/693,
  44388. bottom: 45/817
  44389. }
  44390. },
  44391. },
  44392. [
  44393. {
  44394. name: "Normal",
  44395. height: math.unit(8, "feet"),
  44396. default: true
  44397. },
  44398. ]
  44399. ))
  44400. characterMakers.push(() => makeCharacter(
  44401. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44402. {
  44403. front: {
  44404. height: math.unit(6, "feet"),
  44405. weight: math.unit(250, "lb"),
  44406. volume: math.unit(5/8, "gallons"),
  44407. name: "Front",
  44408. image: {
  44409. source: "./media/characters/ludwig-horn/front.svg",
  44410. extra: 1782/1635,
  44411. bottom: 96/1878
  44412. }
  44413. },
  44414. back: {
  44415. height: math.unit(6, "feet"),
  44416. weight: math.unit(250, "lb"),
  44417. volume: math.unit(5/8, "gallons"),
  44418. name: "Back",
  44419. image: {
  44420. source: "./media/characters/ludwig-horn/back.svg",
  44421. extra: 1874/1729,
  44422. bottom: 27/1901
  44423. }
  44424. },
  44425. dick: {
  44426. height: math.unit(1.05, "feet"),
  44427. weight: math.unit(15, "lb"),
  44428. volume: math.unit(5/8, "gallons"),
  44429. name: "Dick",
  44430. image: {
  44431. source: "./media/characters/ludwig-horn/dick.svg"
  44432. }
  44433. },
  44434. },
  44435. [
  44436. {
  44437. name: "Small",
  44438. height: math.unit(6, "feet")
  44439. },
  44440. {
  44441. name: "Typical",
  44442. height: math.unit(12, "feet"),
  44443. default: true
  44444. },
  44445. {
  44446. name: "Building",
  44447. height: math.unit(80, "feet")
  44448. },
  44449. {
  44450. name: "Town",
  44451. height: math.unit(800, "feet")
  44452. },
  44453. {
  44454. name: "Kingdom",
  44455. height: math.unit(80000, "feet")
  44456. },
  44457. {
  44458. name: "Planet",
  44459. height: math.unit(8000000, "feet")
  44460. },
  44461. {
  44462. name: "Universe",
  44463. height: math.unit(8000000000, "feet")
  44464. },
  44465. {
  44466. name: "Transcended",
  44467. height: math.unit(8e27, "feet")
  44468. },
  44469. ]
  44470. ))
  44471. characterMakers.push(() => makeCharacter(
  44472. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44473. {
  44474. front: {
  44475. height: math.unit(5, "feet"),
  44476. weight: math.unit(50, "kg"),
  44477. name: "Front",
  44478. image: {
  44479. source: "./media/characters/biot-avery/front.svg",
  44480. extra: 1295/1232,
  44481. bottom: 86/1381
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Normal",
  44488. height: math.unit(5, "feet"),
  44489. default: true
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44495. {
  44496. front: {
  44497. height: math.unit(6, "feet"),
  44498. name: "Front",
  44499. image: {
  44500. source: "./media/characters/kitsune-kiro/front.svg",
  44501. extra: 1270/1158,
  44502. bottom: 42/1312
  44503. }
  44504. },
  44505. frontAlt: {
  44506. height: math.unit(6, "feet"),
  44507. name: "Front-alt",
  44508. image: {
  44509. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44510. extra: 1130/1081,
  44511. bottom: 36/1166
  44512. }
  44513. },
  44514. },
  44515. [
  44516. {
  44517. name: "Smol",
  44518. height: math.unit(3, "feet")
  44519. },
  44520. {
  44521. name: "Normal",
  44522. height: math.unit(6, "feet"),
  44523. default: true
  44524. },
  44525. ]
  44526. ))
  44527. characterMakers.push(() => makeCharacter(
  44528. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44529. {
  44530. front: {
  44531. height: math.unit(6, "feet"),
  44532. weight: math.unit(125, "lb"),
  44533. name: "Front",
  44534. image: {
  44535. source: "./media/characters/jack-thatcher/front.svg",
  44536. extra: 1474/1370,
  44537. bottom: 26/1500
  44538. }
  44539. },
  44540. back: {
  44541. height: math.unit(6, "feet"),
  44542. weight: math.unit(125, "lb"),
  44543. name: "Back",
  44544. image: {
  44545. source: "./media/characters/jack-thatcher/back.svg",
  44546. extra: 1489/1384,
  44547. bottom: 18/1507
  44548. }
  44549. },
  44550. },
  44551. [
  44552. {
  44553. name: "Normal",
  44554. height: math.unit(6, "feet"),
  44555. default: true
  44556. },
  44557. {
  44558. name: "Macro",
  44559. height: math.unit(75, "feet")
  44560. },
  44561. {
  44562. name: "Macro-er",
  44563. height: math.unit(250, "feet")
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44569. {
  44570. front: {
  44571. height: math.unit(7, "feet"),
  44572. weight: math.unit(110, "kg"),
  44573. name: "Front",
  44574. image: {
  44575. source: "./media/characters/max-hyper/front.svg",
  44576. extra: 1969/1881,
  44577. bottom: 49/2018
  44578. }
  44579. },
  44580. },
  44581. [
  44582. {
  44583. name: "Normal",
  44584. height: math.unit(7, "feet"),
  44585. default: true
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44591. {
  44592. front: {
  44593. height: math.unit(5 + 5/12, "feet"),
  44594. weight: math.unit(160, "lb"),
  44595. name: "Front",
  44596. image: {
  44597. source: "./media/characters/spook/front.svg",
  44598. extra: 794/791,
  44599. bottom: 54/848
  44600. }
  44601. },
  44602. back: {
  44603. height: math.unit(5 + 5/12, "feet"),
  44604. weight: math.unit(160, "lb"),
  44605. name: "Back",
  44606. image: {
  44607. source: "./media/characters/spook/back.svg",
  44608. extra: 812/798,
  44609. bottom: 32/844
  44610. }
  44611. },
  44612. },
  44613. [
  44614. {
  44615. name: "Normal",
  44616. height: math.unit(5 + 5/12, "feet"),
  44617. default: true
  44618. },
  44619. ]
  44620. ))
  44621. characterMakers.push(() => makeCharacter(
  44622. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44623. {
  44624. front: {
  44625. height: math.unit(18, "feet"),
  44626. name: "Front",
  44627. image: {
  44628. source: "./media/characters/xeaduulix/front.svg",
  44629. extra: 1380/1166,
  44630. bottom: 110/1490
  44631. }
  44632. },
  44633. back: {
  44634. height: math.unit(18, "feet"),
  44635. name: "Back",
  44636. image: {
  44637. source: "./media/characters/xeaduulix/back.svg",
  44638. extra: 1592/1170,
  44639. bottom: 128/1720
  44640. }
  44641. },
  44642. frontNsfw: {
  44643. height: math.unit(18, "feet"),
  44644. name: "Front (NSFW)",
  44645. image: {
  44646. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44647. extra: 1380/1166,
  44648. bottom: 110/1490
  44649. }
  44650. },
  44651. backNsfw: {
  44652. height: math.unit(18, "feet"),
  44653. name: "Back (NSFW)",
  44654. image: {
  44655. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44656. extra: 1592/1170,
  44657. bottom: 128/1720
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(18, "feet"),
  44665. default: true
  44666. },
  44667. ]
  44668. ))
  44669. characterMakers.push(() => makeCharacter(
  44670. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44671. {
  44672. spreadWings: {
  44673. height: math.unit(20, "feet"),
  44674. name: "Spread Wings",
  44675. image: {
  44676. source: "./media/characters/fledge/spread-wings.svg",
  44677. extra: 693/635,
  44678. bottom: 26/719
  44679. }
  44680. },
  44681. front: {
  44682. height: math.unit(20, "feet"),
  44683. name: "Front",
  44684. image: {
  44685. source: "./media/characters/fledge/front.svg",
  44686. extra: 684/637,
  44687. bottom: 18/702
  44688. }
  44689. },
  44690. frontAlt: {
  44691. height: math.unit(20, "feet"),
  44692. name: "Front (Alt)",
  44693. image: {
  44694. source: "./media/characters/fledge/front-alt.svg",
  44695. extra: 708/664,
  44696. bottom: 13/721
  44697. }
  44698. },
  44699. back: {
  44700. height: math.unit(20, "feet"),
  44701. name: "Back",
  44702. image: {
  44703. source: "./media/characters/fledge/back.svg",
  44704. extra: 718/634,
  44705. bottom: 22/740
  44706. }
  44707. },
  44708. head: {
  44709. height: math.unit(5.55, "feet"),
  44710. name: "Head",
  44711. image: {
  44712. source: "./media/characters/fledge/head.svg"
  44713. }
  44714. },
  44715. headAlt: {
  44716. height: math.unit(5.1, "feet"),
  44717. name: "Head (Alt)",
  44718. image: {
  44719. source: "./media/characters/fledge/head-alt.svg"
  44720. }
  44721. },
  44722. },
  44723. [
  44724. {
  44725. name: "Small",
  44726. height: math.unit(6 + 2/12, "feet")
  44727. },
  44728. {
  44729. name: "Big",
  44730. height: math.unit(20, "feet"),
  44731. default: true
  44732. },
  44733. {
  44734. name: "Giant",
  44735. height: math.unit(100, "feet")
  44736. },
  44737. {
  44738. name: "Macro",
  44739. height: math.unit(200, "feet")
  44740. },
  44741. ]
  44742. ))
  44743. characterMakers.push(() => makeCharacter(
  44744. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44745. {
  44746. front: {
  44747. height: math.unit(1, "meter"),
  44748. name: "Front",
  44749. image: {
  44750. source: "./media/characters/atlas-morenai/front.svg",
  44751. extra: 1275/1043,
  44752. bottom: 19/1294
  44753. }
  44754. },
  44755. back: {
  44756. height: math.unit(1, "meter"),
  44757. name: "Back",
  44758. image: {
  44759. source: "./media/characters/atlas-morenai/back.svg",
  44760. extra: 1141/1001,
  44761. bottom: 25/1166
  44762. }
  44763. },
  44764. },
  44765. [
  44766. {
  44767. name: "Normal",
  44768. height: math.unit(1, "meter"),
  44769. default: true
  44770. },
  44771. {
  44772. name: "Magic-Infused",
  44773. height: math.unit(5, "meters")
  44774. },
  44775. ]
  44776. ))
  44777. characterMakers.push(() => makeCharacter(
  44778. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44779. {
  44780. front: {
  44781. height: math.unit(5, "meters"),
  44782. name: "Front",
  44783. image: {
  44784. source: "./media/characters/cintia/front.svg",
  44785. extra: 1312/1228,
  44786. bottom: 38/1350
  44787. }
  44788. },
  44789. back: {
  44790. height: math.unit(5, "meters"),
  44791. name: "Back",
  44792. image: {
  44793. source: "./media/characters/cintia/back.svg",
  44794. extra: 1260/1166,
  44795. bottom: 98/1358
  44796. }
  44797. },
  44798. frontDick: {
  44799. height: math.unit(5, "meters"),
  44800. name: "Front (Dick)",
  44801. image: {
  44802. source: "./media/characters/cintia/front-dick.svg",
  44803. extra: 1312/1228,
  44804. bottom: 38/1350
  44805. }
  44806. },
  44807. backDick: {
  44808. height: math.unit(5, "meters"),
  44809. name: "Back (Dick)",
  44810. image: {
  44811. source: "./media/characters/cintia/back-dick.svg",
  44812. extra: 1260/1166,
  44813. bottom: 98/1358
  44814. }
  44815. },
  44816. bust: {
  44817. height: math.unit(1.97, "meters"),
  44818. name: "Bust",
  44819. image: {
  44820. source: "./media/characters/cintia/bust.svg",
  44821. extra: 617/565,
  44822. bottom: 0/617
  44823. }
  44824. },
  44825. },
  44826. [
  44827. {
  44828. name: "Normal",
  44829. height: math.unit(5, "meters"),
  44830. default: true
  44831. },
  44832. ]
  44833. ))
  44834. characterMakers.push(() => makeCharacter(
  44835. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44836. {
  44837. side: {
  44838. height: math.unit(100, "feet"),
  44839. name: "Side",
  44840. image: {
  44841. source: "./media/characters/denora/side.svg",
  44842. extra: 875/803,
  44843. bottom: 9/884
  44844. }
  44845. },
  44846. },
  44847. [
  44848. {
  44849. name: "Standard",
  44850. height: math.unit(100, "feet"),
  44851. default: true
  44852. },
  44853. {
  44854. name: "Grand",
  44855. height: math.unit(1000, "feet")
  44856. },
  44857. {
  44858. name: "Conquering",
  44859. height: math.unit(10000, "feet")
  44860. },
  44861. ]
  44862. ))
  44863. characterMakers.push(() => makeCharacter(
  44864. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44865. {
  44866. dressed: {
  44867. height: math.unit(8 + 5/12, "feet"),
  44868. weight: math.unit(700, "lb"),
  44869. name: "Dressed",
  44870. image: {
  44871. source: "./media/characters/kiva/dressed.svg",
  44872. extra: 1102/1055,
  44873. bottom: 60/1162
  44874. }
  44875. },
  44876. nude: {
  44877. height: math.unit(8 + 5/12, "feet"),
  44878. weight: math.unit(700, "lb"),
  44879. name: "Nude",
  44880. image: {
  44881. source: "./media/characters/kiva/nude.svg",
  44882. extra: 1102/1055,
  44883. bottom: 60/1162
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Base Height",
  44890. height: math.unit(8 + 5/12, "feet"),
  44891. default: true
  44892. },
  44893. {
  44894. name: "Macro",
  44895. height: math.unit(100, "feet")
  44896. },
  44897. {
  44898. name: "Max",
  44899. height: math.unit(3280, "feet")
  44900. },
  44901. ]
  44902. ))
  44903. characterMakers.push(() => makeCharacter(
  44904. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44905. {
  44906. front: {
  44907. height: math.unit(6 + 8/12, "feet"),
  44908. weight: math.unit(250, "lb"),
  44909. name: "Front",
  44910. image: {
  44911. source: "./media/characters/ztragon/front.svg",
  44912. extra: 1825/1684,
  44913. bottom: 98/1923
  44914. }
  44915. },
  44916. },
  44917. [
  44918. {
  44919. name: "Normal",
  44920. height: math.unit(6 + 8/12, "feet"),
  44921. default: true
  44922. },
  44923. {
  44924. name: "Macro",
  44925. height: math.unit(80, "feet")
  44926. },
  44927. ]
  44928. ))
  44929. characterMakers.push(() => makeCharacter(
  44930. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44931. {
  44932. front: {
  44933. height: math.unit(10.4, "feet"),
  44934. weight: math.unit(2, "tons"),
  44935. name: "Front",
  44936. image: {
  44937. source: "./media/characters/yesenia/front.svg",
  44938. extra: 1479/1474,
  44939. bottom: 233/1712
  44940. }
  44941. },
  44942. },
  44943. [
  44944. {
  44945. name: "Normal",
  44946. height: math.unit(10.4, "feet"),
  44947. default: true
  44948. },
  44949. ]
  44950. ))
  44951. characterMakers.push(() => makeCharacter(
  44952. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44953. {
  44954. normal: {
  44955. height: math.unit(6 + 1/12, "feet"),
  44956. weight: math.unit(180, "lb"),
  44957. name: "Normal",
  44958. image: {
  44959. source: "./media/characters/leanne-lycheborne/normal.svg",
  44960. extra: 1748/1660,
  44961. bottom: 98/1846
  44962. }
  44963. },
  44964. were: {
  44965. height: math.unit(12, "feet"),
  44966. weight: math.unit(1600, "lb"),
  44967. name: "Were",
  44968. image: {
  44969. source: "./media/characters/leanne-lycheborne/were.svg",
  44970. extra: 1485/1432,
  44971. bottom: 66/1551
  44972. }
  44973. },
  44974. },
  44975. [
  44976. {
  44977. name: "Normal",
  44978. height: math.unit(6 + 1/12, "feet"),
  44979. default: true
  44980. },
  44981. ]
  44982. ))
  44983. characterMakers.push(() => makeCharacter(
  44984. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44985. {
  44986. side: {
  44987. height: math.unit(13, "feet"),
  44988. name: "Side",
  44989. image: {
  44990. source: "./media/characters/kira-tyler/side.svg",
  44991. extra: 693/393,
  44992. bottom: 58/751
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Normal",
  44999. height: math.unit(13, "feet"),
  45000. default: true
  45001. },
  45002. ]
  45003. ))
  45004. characterMakers.push(() => makeCharacter(
  45005. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45006. {
  45007. front: {
  45008. height: math.unit(10.3, "feet"),
  45009. weight: math.unit(150, "lb"),
  45010. name: "Front",
  45011. image: {
  45012. source: "./media/characters/blaze/front.svg",
  45013. extra: 1378/1286,
  45014. bottom: 172/1550
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Normal",
  45021. height: math.unit(10.3, "feet"),
  45022. default: true
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45028. {
  45029. side: {
  45030. height: math.unit(2, "meters"),
  45031. weight: math.unit(400, "kg"),
  45032. name: "Side",
  45033. image: {
  45034. source: "./media/characters/anu/side.svg",
  45035. extra: 506/394,
  45036. bottom: 18/524
  45037. }
  45038. },
  45039. },
  45040. [
  45041. {
  45042. name: "Humanoid",
  45043. height: math.unit(2, "meters")
  45044. },
  45045. {
  45046. name: "Normal",
  45047. height: math.unit(5, "meters"),
  45048. default: true
  45049. },
  45050. ]
  45051. ))
  45052. characterMakers.push(() => makeCharacter(
  45053. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45054. {
  45055. front: {
  45056. height: math.unit(5 + 5/12, "feet"),
  45057. weight: math.unit(170, "lb"),
  45058. name: "Front",
  45059. image: {
  45060. source: "./media/characters/synx-the-lynx/front.svg",
  45061. extra: 1893/1745,
  45062. bottom: 17/1910
  45063. }
  45064. },
  45065. side: {
  45066. height: math.unit(5 + 5/12, "feet"),
  45067. weight: math.unit(170, "lb"),
  45068. name: "Side",
  45069. image: {
  45070. source: "./media/characters/synx-the-lynx/side.svg",
  45071. extra: 1884/1740,
  45072. bottom: 39/1923
  45073. }
  45074. },
  45075. back: {
  45076. height: math.unit(5 + 5/12, "feet"),
  45077. weight: math.unit(170, "lb"),
  45078. name: "Back",
  45079. image: {
  45080. source: "./media/characters/synx-the-lynx/back.svg",
  45081. extra: 1903/1755,
  45082. bottom: 14/1917
  45083. }
  45084. },
  45085. },
  45086. [
  45087. {
  45088. name: "Normal",
  45089. height: math.unit(5 + 5/12, "feet"),
  45090. default: true
  45091. },
  45092. ]
  45093. ))
  45094. characterMakers.push(() => makeCharacter(
  45095. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45096. {
  45097. back: {
  45098. height: math.unit(15, "feet"),
  45099. name: "Back",
  45100. image: {
  45101. source: "./media/characters/nadezda-fex/back.svg",
  45102. extra: 1695/1481,
  45103. bottom: 25/1720
  45104. }
  45105. },
  45106. },
  45107. [
  45108. {
  45109. name: "Normal",
  45110. height: math.unit(15, "feet"),
  45111. default: true
  45112. },
  45113. {
  45114. name: "Macro",
  45115. height: math.unit(2.5, "miles")
  45116. },
  45117. {
  45118. name: "Goddess",
  45119. height: math.unit(2, "multiverses")
  45120. },
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45125. {
  45126. front: {
  45127. height: math.unit(216, "cm"),
  45128. name: "Front",
  45129. image: {
  45130. source: "./media/characters/lev/front.svg",
  45131. extra: 1728/1670,
  45132. bottom: 82/1810
  45133. }
  45134. },
  45135. back: {
  45136. height: math.unit(216, "cm"),
  45137. name: "Back",
  45138. image: {
  45139. source: "./media/characters/lev/back.svg",
  45140. extra: 1738/1675,
  45141. bottom: 24/1762
  45142. }
  45143. },
  45144. dressed: {
  45145. height: math.unit(216, "cm"),
  45146. name: "Dressed",
  45147. image: {
  45148. source: "./media/characters/lev/dressed.svg",
  45149. extra: 1397/1351,
  45150. bottom: 73/1470
  45151. }
  45152. },
  45153. head: {
  45154. height: math.unit(0.51, "meter"),
  45155. name: "Head",
  45156. image: {
  45157. source: "./media/characters/lev/head.svg"
  45158. }
  45159. },
  45160. },
  45161. [
  45162. {
  45163. name: "Normal",
  45164. height: math.unit(216, "cm"),
  45165. default: true
  45166. },
  45167. {
  45168. name: "Relatively Macro",
  45169. height: math.unit(80, "meters")
  45170. },
  45171. {
  45172. name: "Megamacro",
  45173. height: math.unit(21600, "meters")
  45174. },
  45175. {
  45176. name: "Megamacro+",
  45177. height: math.unit(64800, "meters")
  45178. },
  45179. ]
  45180. ))
  45181. characterMakers.push(() => makeCharacter(
  45182. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45183. {
  45184. front: {
  45185. height: math.unit(2, "meters"),
  45186. weight: math.unit(80, "kg"),
  45187. name: "Front",
  45188. image: {
  45189. source: "./media/characters/moka/front.svg",
  45190. extra: 1337/1255,
  45191. bottom: 58/1395
  45192. }
  45193. },
  45194. },
  45195. [
  45196. {
  45197. name: "Micro",
  45198. height: math.unit(15, "cm")
  45199. },
  45200. {
  45201. name: "Normal",
  45202. height: math.unit(2, "meters"),
  45203. default: true
  45204. },
  45205. {
  45206. name: "Macro",
  45207. height: math.unit(20, "meters"),
  45208. },
  45209. ]
  45210. ))
  45211. characterMakers.push(() => makeCharacter(
  45212. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45213. {
  45214. front: {
  45215. height: math.unit(9, "feet"),
  45216. weight: math.unit(240, "lb"),
  45217. name: "Front",
  45218. image: {
  45219. source: "./media/characters/kuzco/front.svg",
  45220. extra: 1593/1487,
  45221. bottom: 32/1625
  45222. }
  45223. },
  45224. side: {
  45225. height: math.unit(9, "feet"),
  45226. weight: math.unit(240, "lb"),
  45227. name: "Side",
  45228. image: {
  45229. source: "./media/characters/kuzco/side.svg",
  45230. extra: 1575/1485,
  45231. bottom: 30/1605
  45232. }
  45233. },
  45234. back: {
  45235. height: math.unit(9, "feet"),
  45236. weight: math.unit(240, "lb"),
  45237. name: "Back",
  45238. image: {
  45239. source: "./media/characters/kuzco/back.svg",
  45240. extra: 1603/1514,
  45241. bottom: 14/1617
  45242. }
  45243. },
  45244. },
  45245. [
  45246. {
  45247. name: "Normal",
  45248. height: math.unit(9, "feet"),
  45249. default: true
  45250. },
  45251. ]
  45252. ))
  45253. characterMakers.push(() => makeCharacter(
  45254. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45255. {
  45256. side: {
  45257. height: math.unit(2, "meters"),
  45258. weight: math.unit(300, "kg"),
  45259. name: "Side",
  45260. image: {
  45261. source: "./media/characters/ceruleus/side.svg",
  45262. extra: 1068/974,
  45263. bottom: 126/1194
  45264. }
  45265. },
  45266. },
  45267. [
  45268. {
  45269. name: "Normal",
  45270. height: math.unit(16, "meters"),
  45271. default: true
  45272. },
  45273. ]
  45274. ))
  45275. characterMakers.push(() => makeCharacter(
  45276. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45277. {
  45278. front: {
  45279. height: math.unit(9, "feet"),
  45280. weight: math.unit(500, "kg"),
  45281. name: "Front",
  45282. image: {
  45283. source: "./media/characters/acouya/front.svg",
  45284. extra: 1660/1473,
  45285. bottom: 28/1688
  45286. }
  45287. },
  45288. },
  45289. [
  45290. {
  45291. name: "Normal",
  45292. height: math.unit(9, "feet"),
  45293. default: true
  45294. },
  45295. ]
  45296. ))
  45297. characterMakers.push(() => makeCharacter(
  45298. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45299. {
  45300. front: {
  45301. height: math.unit(5 + 6/12, "feet"),
  45302. weight: math.unit(195, "lb"),
  45303. name: "Front",
  45304. image: {
  45305. source: "./media/characters/vant/front.svg",
  45306. extra: 1396/1320,
  45307. bottom: 20/1416
  45308. }
  45309. },
  45310. back: {
  45311. height: math.unit(5 + 6/12, "feet"),
  45312. weight: math.unit(195, "lb"),
  45313. name: "Back",
  45314. image: {
  45315. source: "./media/characters/vant/back.svg",
  45316. extra: 1396/1320,
  45317. bottom: 20/1416
  45318. }
  45319. },
  45320. maw: {
  45321. height: math.unit(0.75, "feet"),
  45322. name: "Maw",
  45323. image: {
  45324. source: "./media/characters/vant/maw.svg"
  45325. }
  45326. },
  45327. paw: {
  45328. height: math.unit(1.07, "feet"),
  45329. name: "Paw",
  45330. image: {
  45331. source: "./media/characters/vant/paw.svg"
  45332. }
  45333. },
  45334. },
  45335. [
  45336. {
  45337. name: "Micro",
  45338. height: math.unit(0.25, "inches")
  45339. },
  45340. {
  45341. name: "Normal",
  45342. height: math.unit(5 + 6/12, "feet"),
  45343. default: true
  45344. },
  45345. {
  45346. name: "Macro",
  45347. height: math.unit(75, "feet")
  45348. },
  45349. ]
  45350. ))
  45351. characterMakers.push(() => makeCharacter(
  45352. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45353. {
  45354. front: {
  45355. height: math.unit(30, "meters"),
  45356. weight: math.unit(363, "tons"),
  45357. name: "Front",
  45358. image: {
  45359. source: "./media/characters/ahra/front.svg",
  45360. extra: 1914/1814,
  45361. bottom: 46/1960
  45362. }
  45363. },
  45364. },
  45365. [
  45366. {
  45367. name: "Macro",
  45368. height: math.unit(30, "meters"),
  45369. default: true
  45370. },
  45371. ]
  45372. ))
  45373. characterMakers.push(() => makeCharacter(
  45374. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45375. {
  45376. undressed: {
  45377. height: math.unit(2, "m"),
  45378. weight: math.unit(250, "kg"),
  45379. name: "Undressed",
  45380. image: {
  45381. source: "./media/characters/coriander/undressed.svg",
  45382. extra: 1757/1606,
  45383. bottom: 107/1864
  45384. }
  45385. },
  45386. dressed: {
  45387. height: math.unit(2, "m"),
  45388. weight: math.unit(250, "kg"),
  45389. name: "Dressed",
  45390. image: {
  45391. source: "./media/characters/coriander/dressed.svg",
  45392. extra: 1757/1606,
  45393. bottom: 107/1864
  45394. }
  45395. },
  45396. },
  45397. [
  45398. {
  45399. name: "Normal",
  45400. height: math.unit(4, "meters"),
  45401. default: true
  45402. },
  45403. {
  45404. name: "XL",
  45405. height: math.unit(6, "meters")
  45406. },
  45407. {
  45408. name: "XXL",
  45409. height: math.unit(8, "meters")
  45410. },
  45411. ]
  45412. ))
  45413. characterMakers.push(() => makeCharacter(
  45414. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45415. {
  45416. front: {
  45417. height: math.unit(6, "feet"),
  45418. name: "Front",
  45419. image: {
  45420. source: "./media/characters/syrinx/front.svg",
  45421. extra: 1557/1259,
  45422. bottom: 171/1728
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(6 + 3/12, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45436. {
  45437. front: {
  45438. height: math.unit(11 + 6/12, "feet"),
  45439. weight: math.unit(1.5, "tons"),
  45440. name: "Front",
  45441. image: {
  45442. source: "./media/characters/bor/front.svg",
  45443. extra: 1189/1109,
  45444. bottom: 170/1359
  45445. }
  45446. },
  45447. },
  45448. [
  45449. {
  45450. name: "Normal",
  45451. height: math.unit(11 + 6/12, "feet"),
  45452. default: true
  45453. },
  45454. {
  45455. name: "Macro",
  45456. height: math.unit(32 + 9/12, "feet")
  45457. },
  45458. ]
  45459. ))
  45460. characterMakers.push(() => makeCharacter(
  45461. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45462. {
  45463. anthro: {
  45464. height: math.unit(9, "feet"),
  45465. weight: math.unit(2076, "lb"),
  45466. name: "Anthro",
  45467. image: {
  45468. source: "./media/characters/abacus/anthro.svg",
  45469. extra: 1540/1494,
  45470. bottom: 233/1773
  45471. }
  45472. },
  45473. pigeon: {
  45474. height: math.unit(1, "feet"),
  45475. name: "Pigeon",
  45476. image: {
  45477. source: "./media/characters/abacus/pigeon.svg",
  45478. extra: 528/525,
  45479. bottom: 46/574
  45480. }
  45481. },
  45482. },
  45483. [
  45484. {
  45485. name: "Normal",
  45486. height: math.unit(9, "feet"),
  45487. default: true
  45488. },
  45489. ]
  45490. ))
  45491. characterMakers.push(() => makeCharacter(
  45492. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45493. {
  45494. side: {
  45495. height: math.unit(6, "feet"),
  45496. name: "Side",
  45497. image: {
  45498. source: "./media/characters/delkhan/side.svg",
  45499. extra: 1884/1786,
  45500. bottom: 308/2192
  45501. }
  45502. },
  45503. head: {
  45504. height: math.unit(3.38, "feet"),
  45505. name: "Head",
  45506. image: {
  45507. source: "./media/characters/delkhan/head.svg"
  45508. }
  45509. },
  45510. },
  45511. [
  45512. {
  45513. name: "Normal",
  45514. height: math.unit(72, "feet"),
  45515. default: true
  45516. },
  45517. {
  45518. name: "Giant",
  45519. height: math.unit(172, "feet")
  45520. },
  45521. ]
  45522. ))
  45523. characterMakers.push(() => makeCharacter(
  45524. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45525. {
  45526. standing: {
  45527. height: math.unit(6, "feet"),
  45528. name: "Standing",
  45529. image: {
  45530. source: "./media/characters/euchidat/standing.svg",
  45531. extra: 1612/1553,
  45532. bottom: 116/1728
  45533. }
  45534. },
  45535. leaning: {
  45536. height: math.unit(6, "feet"),
  45537. name: "Leaning",
  45538. image: {
  45539. source: "./media/characters/euchidat/leaning.svg",
  45540. extra: 1719/1674,
  45541. bottom: 27/1746
  45542. }
  45543. },
  45544. },
  45545. [
  45546. {
  45547. name: "Normal",
  45548. height: math.unit(175, "feet"),
  45549. default: true
  45550. },
  45551. {
  45552. name: "Megamacro",
  45553. height: math.unit(190, "miles")
  45554. },
  45555. {
  45556. name: "Gigamacro",
  45557. height: math.unit(190000, "miles")
  45558. },
  45559. ]
  45560. ))
  45561. characterMakers.push(() => makeCharacter(
  45562. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45563. {
  45564. front: {
  45565. height: math.unit(6, "feet"),
  45566. weight: math.unit(150, "lb"),
  45567. name: "Front",
  45568. image: {
  45569. source: "./media/characters/rebecca-stack/front.svg",
  45570. extra: 1256/1201,
  45571. bottom: 18/1274
  45572. }
  45573. },
  45574. },
  45575. [
  45576. {
  45577. name: "Normal",
  45578. height: math.unit(5 + 8/12, "feet"),
  45579. default: true
  45580. },
  45581. {
  45582. name: "Demolitionist",
  45583. height: math.unit(200, "feet")
  45584. },
  45585. {
  45586. name: "Out of Control",
  45587. height: math.unit(2, "miles")
  45588. },
  45589. {
  45590. name: "Giga",
  45591. height: math.unit(7200, "miles")
  45592. },
  45593. ]
  45594. ))
  45595. characterMakers.push(() => makeCharacter(
  45596. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45597. {
  45598. front: {
  45599. height: math.unit(6, "feet"),
  45600. weight: math.unit(150, "lb"),
  45601. name: "Front",
  45602. image: {
  45603. source: "./media/characters/jenny-cartwright/front.svg",
  45604. extra: 1384/1376,
  45605. bottom: 58/1442
  45606. }
  45607. },
  45608. },
  45609. [
  45610. {
  45611. name: "Normal",
  45612. height: math.unit(6 + 7/12, "feet"),
  45613. default: true
  45614. },
  45615. {
  45616. name: "Librarian",
  45617. height: math.unit(55, "feet")
  45618. },
  45619. {
  45620. name: "Sightseer",
  45621. height: math.unit(50, "miles")
  45622. },
  45623. {
  45624. name: "Giga",
  45625. height: math.unit(30000, "miles")
  45626. },
  45627. ]
  45628. ))
  45629. characterMakers.push(() => makeCharacter(
  45630. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45631. {
  45632. nude: {
  45633. height: math.unit(8, "feet"),
  45634. weight: math.unit(225, "lb"),
  45635. name: "Nude",
  45636. image: {
  45637. source: "./media/characters/marvy/nude.svg",
  45638. extra: 1900/1683,
  45639. bottom: 89/1989
  45640. }
  45641. },
  45642. dressed: {
  45643. height: math.unit(8, "feet"),
  45644. weight: math.unit(225, "lb"),
  45645. name: "Dressed",
  45646. image: {
  45647. source: "./media/characters/marvy/dressed.svg",
  45648. extra: 1900/1683,
  45649. bottom: 89/1989
  45650. }
  45651. },
  45652. head: {
  45653. height: math.unit(2.85, "feet"),
  45654. name: "Head",
  45655. image: {
  45656. source: "./media/characters/marvy/head.svg"
  45657. }
  45658. },
  45659. },
  45660. [
  45661. {
  45662. name: "Normal",
  45663. height: math.unit(8, "feet"),
  45664. default: true
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45670. {
  45671. front: {
  45672. height: math.unit(8, "feet"),
  45673. weight: math.unit(250, "lb"),
  45674. name: "Front",
  45675. image: {
  45676. source: "./media/characters/leah/front.svg",
  45677. extra: 1257/1149,
  45678. bottom: 109/1366
  45679. }
  45680. },
  45681. },
  45682. [
  45683. {
  45684. name: "Normal",
  45685. height: math.unit(8, "feet"),
  45686. default: true
  45687. },
  45688. {
  45689. name: "Minimacro",
  45690. height: math.unit(40, "feet")
  45691. },
  45692. {
  45693. name: "Macro",
  45694. height: math.unit(124, "feet")
  45695. },
  45696. {
  45697. name: "Megamacro",
  45698. height: math.unit(850, "feet")
  45699. },
  45700. ]
  45701. ))
  45702. characterMakers.push(() => makeCharacter(
  45703. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45704. {
  45705. side: {
  45706. height: math.unit(13 + 6/12, "feet"),
  45707. weight: math.unit(3200, "lb"),
  45708. name: "Side",
  45709. image: {
  45710. source: "./media/characters/alvir/side.svg",
  45711. extra: 896/589,
  45712. bottom: 26/922
  45713. }
  45714. },
  45715. },
  45716. [
  45717. {
  45718. name: "Normal",
  45719. height: math.unit(13 + 6/12, "feet"),
  45720. default: true
  45721. },
  45722. ]
  45723. ))
  45724. characterMakers.push(() => makeCharacter(
  45725. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45726. {
  45727. front: {
  45728. height: math.unit(5 + 4/12, "feet"),
  45729. weight: math.unit(236, "lb"),
  45730. name: "Front",
  45731. image: {
  45732. source: "./media/characters/zaina-khalil/front.svg",
  45733. extra: 1533/1485,
  45734. bottom: 94/1627
  45735. }
  45736. },
  45737. side: {
  45738. height: math.unit(5 + 4/12, "feet"),
  45739. weight: math.unit(236, "lb"),
  45740. name: "Side",
  45741. image: {
  45742. source: "./media/characters/zaina-khalil/side.svg",
  45743. extra: 1537/1498,
  45744. bottom: 66/1603
  45745. }
  45746. },
  45747. back: {
  45748. height: math.unit(5 + 4/12, "feet"),
  45749. weight: math.unit(236, "lb"),
  45750. name: "Back",
  45751. image: {
  45752. source: "./media/characters/zaina-khalil/back.svg",
  45753. extra: 1546/1494,
  45754. bottom: 89/1635
  45755. }
  45756. },
  45757. },
  45758. [
  45759. {
  45760. name: "Normal",
  45761. height: math.unit(5 + 4/12, "feet"),
  45762. default: true
  45763. },
  45764. ]
  45765. ))
  45766. characterMakers.push(() => makeCharacter(
  45767. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45768. {
  45769. side: {
  45770. height: math.unit(12, "feet"),
  45771. weight: math.unit(4000, "lb"),
  45772. name: "Side",
  45773. image: {
  45774. source: "./media/characters/terry/side.svg",
  45775. extra: 1518/1439,
  45776. bottom: 149/1667
  45777. }
  45778. },
  45779. },
  45780. [
  45781. {
  45782. name: "Normal",
  45783. height: math.unit(12, "feet"),
  45784. default: true
  45785. },
  45786. ]
  45787. ))
  45788. characterMakers.push(() => makeCharacter(
  45789. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45790. {
  45791. front: {
  45792. height: math.unit(12, "feet"),
  45793. weight: math.unit(1500, "lb"),
  45794. name: "Front",
  45795. image: {
  45796. source: "./media/characters/kahea/front.svg",
  45797. extra: 1722/1617,
  45798. bottom: 179/1901
  45799. }
  45800. },
  45801. },
  45802. [
  45803. {
  45804. name: "Normal",
  45805. height: math.unit(12, "feet"),
  45806. default: true
  45807. },
  45808. ]
  45809. ))
  45810. characterMakers.push(() => makeCharacter(
  45811. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45812. {
  45813. demonFront: {
  45814. height: math.unit(36, "feet"),
  45815. name: "Front",
  45816. image: {
  45817. source: "./media/characters/alex-xuria/demon-front.svg",
  45818. extra: 1705/1673,
  45819. bottom: 198/1903
  45820. },
  45821. form: "demon",
  45822. default: true
  45823. },
  45824. demonBack: {
  45825. height: math.unit(36, "feet"),
  45826. name: "Back",
  45827. image: {
  45828. source: "./media/characters/alex-xuria/demon-back.svg",
  45829. extra: 1725/1693,
  45830. bottom: 70/1795
  45831. },
  45832. form: "demon"
  45833. },
  45834. demonHead: {
  45835. height: math.unit(2.14, "meters"),
  45836. name: "Head",
  45837. image: {
  45838. source: "./media/characters/alex-xuria/demon-head.svg"
  45839. },
  45840. form: "demon"
  45841. },
  45842. demonHand: {
  45843. height: math.unit(1.61, "meters"),
  45844. name: "Hand",
  45845. image: {
  45846. source: "./media/characters/alex-xuria/demon-hand.svg"
  45847. },
  45848. form: "demon"
  45849. },
  45850. demonPaw: {
  45851. height: math.unit(1.35, "meters"),
  45852. name: "Paw",
  45853. image: {
  45854. source: "./media/characters/alex-xuria/demon-paw.svg"
  45855. },
  45856. form: "demon"
  45857. },
  45858. demonFoot: {
  45859. height: math.unit(2.2, "meters"),
  45860. name: "Foot",
  45861. image: {
  45862. source: "./media/characters/alex-xuria/demon-foot.svg"
  45863. },
  45864. form: "demon"
  45865. },
  45866. demonCock: {
  45867. height: math.unit(1.74, "meters"),
  45868. name: "Cock",
  45869. image: {
  45870. source: "./media/characters/alex-xuria/demon-cock.svg"
  45871. },
  45872. form: "demon"
  45873. },
  45874. demonTailClosed: {
  45875. height: math.unit(1.47, "meters"),
  45876. name: "Tail (Closed)",
  45877. image: {
  45878. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45879. },
  45880. form: "demon"
  45881. },
  45882. demonTailOpen: {
  45883. height: math.unit(2.85, "meters"),
  45884. name: "Tail (Open)",
  45885. image: {
  45886. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45887. },
  45888. form: "demon"
  45889. },
  45890. incubusFront: {
  45891. height: math.unit(12, "feet"),
  45892. name: "Front",
  45893. image: {
  45894. source: "./media/characters/alex-xuria/incubus-front.svg",
  45895. extra: 1754/1677,
  45896. bottom: 125/1879
  45897. },
  45898. form: "incubus",
  45899. default: true
  45900. },
  45901. incubusBack: {
  45902. height: math.unit(12, "feet"),
  45903. name: "Back",
  45904. image: {
  45905. source: "./media/characters/alex-xuria/incubus-back.svg",
  45906. extra: 1702/1647,
  45907. bottom: 30/1732
  45908. },
  45909. form: "incubus"
  45910. },
  45911. incubusHead: {
  45912. height: math.unit(3.45, "feet"),
  45913. name: "Head",
  45914. image: {
  45915. source: "./media/characters/alex-xuria/incubus-head.svg"
  45916. },
  45917. form: "incubus"
  45918. },
  45919. rabbitFront: {
  45920. height: math.unit(6, "feet"),
  45921. name: "Front",
  45922. image: {
  45923. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45924. extra: 1369/1349,
  45925. bottom: 45/1414
  45926. },
  45927. form: "rabbit",
  45928. default: true
  45929. },
  45930. rabbitSide: {
  45931. height: math.unit(6, "feet"),
  45932. name: "Side",
  45933. image: {
  45934. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45935. extra: 1370/1356,
  45936. bottom: 37/1407
  45937. },
  45938. form: "rabbit"
  45939. },
  45940. rabbitBack: {
  45941. height: math.unit(6, "feet"),
  45942. name: "Back",
  45943. image: {
  45944. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45945. extra: 1375/1358,
  45946. bottom: 43/1418
  45947. },
  45948. form: "rabbit"
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(6, "feet"),
  45955. default: true,
  45956. form: "rabbit"
  45957. },
  45958. {
  45959. name: "Incubus",
  45960. height: math.unit(12, "feet"),
  45961. default: true,
  45962. form: "incubus"
  45963. },
  45964. {
  45965. name: "Demon",
  45966. height: math.unit(36, "feet"),
  45967. default: true,
  45968. form: "demon"
  45969. }
  45970. ],
  45971. {
  45972. "demon": {
  45973. name: "Demon",
  45974. default: true
  45975. },
  45976. "incubus": {
  45977. name: "Incubus",
  45978. },
  45979. "rabbit": {
  45980. name: "Rabbit"
  45981. }
  45982. }
  45983. ))
  45984. characterMakers.push(() => makeCharacter(
  45985. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45986. {
  45987. front: {
  45988. height: math.unit(7 + 5/12, "feet"),
  45989. weight: math.unit(510, "lb"),
  45990. name: "Front",
  45991. image: {
  45992. source: "./media/characters/syrup/front.svg",
  45993. extra: 932/916,
  45994. bottom: 26/958
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(7 + 5/12, "feet"),
  46002. default: true
  46003. },
  46004. {
  46005. name: "Big",
  46006. height: math.unit(50, "feet")
  46007. },
  46008. {
  46009. name: "Macro",
  46010. height: math.unit(300, "feet")
  46011. },
  46012. {
  46013. name: "Megamacro",
  46014. height: math.unit(1, "mile")
  46015. },
  46016. ]
  46017. ))
  46018. characterMakers.push(() => makeCharacter(
  46019. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46020. {
  46021. front: {
  46022. height: math.unit(6 + 9/12, "feet"),
  46023. name: "Front",
  46024. image: {
  46025. source: "./media/characters/zeimne/front.svg",
  46026. extra: 1969/1806,
  46027. bottom: 53/2022
  46028. }
  46029. },
  46030. },
  46031. [
  46032. {
  46033. name: "Normal",
  46034. height: math.unit(6 + 9/12, "feet"),
  46035. default: true
  46036. },
  46037. {
  46038. name: "Giant",
  46039. height: math.unit(550, "feet")
  46040. },
  46041. {
  46042. name: "Mega",
  46043. height: math.unit(3, "miles")
  46044. },
  46045. {
  46046. name: "Giga",
  46047. height: math.unit(250, "miles")
  46048. },
  46049. {
  46050. name: "Tera",
  46051. height: math.unit(1, "AU")
  46052. },
  46053. ]
  46054. ))
  46055. characterMakers.push(() => makeCharacter(
  46056. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46057. {
  46058. front: {
  46059. height: math.unit(5 + 2/12, "feet"),
  46060. name: "Front",
  46061. image: {
  46062. source: "./media/characters/grar/front.svg",
  46063. extra: 1331/1119,
  46064. bottom: 60/1391
  46065. }
  46066. },
  46067. back: {
  46068. height: math.unit(5 + 2/12, "feet"),
  46069. name: "Back",
  46070. image: {
  46071. source: "./media/characters/grar/back.svg",
  46072. extra: 1385/1169,
  46073. bottom: 23/1408
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Normal",
  46080. height: math.unit(5 + 2/12, "feet"),
  46081. default: true
  46082. },
  46083. ]
  46084. ))
  46085. characterMakers.push(() => makeCharacter(
  46086. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46087. {
  46088. front: {
  46089. height: math.unit(13 + 7/12, "feet"),
  46090. weight: math.unit(2200, "lb"),
  46091. name: "Front",
  46092. image: {
  46093. source: "./media/characters/endraya/front.svg",
  46094. extra: 1289/1215,
  46095. bottom: 50/1339
  46096. }
  46097. },
  46098. nude: {
  46099. height: math.unit(13 + 7/12, "feet"),
  46100. weight: math.unit(2200, "lb"),
  46101. name: "Nude",
  46102. image: {
  46103. source: "./media/characters/endraya/nude.svg",
  46104. extra: 1247/1171,
  46105. bottom: 40/1287
  46106. }
  46107. },
  46108. head: {
  46109. height: math.unit(2.6, "feet"),
  46110. name: "Head",
  46111. image: {
  46112. source: "./media/characters/endraya/head.svg"
  46113. }
  46114. },
  46115. slit: {
  46116. height: math.unit(3.4, "feet"),
  46117. name: "Slit",
  46118. image: {
  46119. source: "./media/characters/endraya/slit.svg"
  46120. }
  46121. },
  46122. },
  46123. [
  46124. {
  46125. name: "Normal",
  46126. height: math.unit(13 + 7/12, "feet"),
  46127. default: true
  46128. },
  46129. {
  46130. name: "Macro",
  46131. height: math.unit(200, "feet")
  46132. },
  46133. ]
  46134. ))
  46135. characterMakers.push(() => makeCharacter(
  46136. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46137. {
  46138. front: {
  46139. height: math.unit(1.81, "meters"),
  46140. weight: math.unit(69, "kg"),
  46141. name: "Front",
  46142. image: {
  46143. source: "./media/characters/rodryana/front.svg",
  46144. extra: 2002/1921,
  46145. bottom: 53/2055
  46146. }
  46147. },
  46148. back: {
  46149. height: math.unit(1.81, "meters"),
  46150. weight: math.unit(69, "kg"),
  46151. name: "Back",
  46152. image: {
  46153. source: "./media/characters/rodryana/back.svg",
  46154. extra: 1993/1926,
  46155. bottom: 48/2041
  46156. }
  46157. },
  46158. maw: {
  46159. height: math.unit(0.19769417475, "meters"),
  46160. name: "Maw",
  46161. image: {
  46162. source: "./media/characters/rodryana/maw.svg"
  46163. }
  46164. },
  46165. slit: {
  46166. height: math.unit(0.31631067961, "meters"),
  46167. name: "Slit",
  46168. image: {
  46169. source: "./media/characters/rodryana/slit.svg"
  46170. }
  46171. },
  46172. },
  46173. [
  46174. {
  46175. name: "Normal",
  46176. height: math.unit(1.81, "meters")
  46177. },
  46178. {
  46179. name: "Mini Macro",
  46180. height: math.unit(181, "meters")
  46181. },
  46182. {
  46183. name: "Macro",
  46184. height: math.unit(452, "meters"),
  46185. default: true
  46186. },
  46187. {
  46188. name: "Mega Macro",
  46189. height: math.unit(1.375, "km")
  46190. },
  46191. {
  46192. name: "Giga Macro",
  46193. height: math.unit(13.575, "km")
  46194. },
  46195. ]
  46196. ))
  46197. characterMakers.push(() => makeCharacter(
  46198. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46199. {
  46200. front: {
  46201. height: math.unit(6, "feet"),
  46202. weight: math.unit(1000, "lb"),
  46203. name: "Front",
  46204. image: {
  46205. source: "./media/characters/asaya/front.svg",
  46206. extra: 1460/1200,
  46207. bottom: 71/1531
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "Normal",
  46214. height: math.unit(8, "km"),
  46215. default: true
  46216. },
  46217. ]
  46218. ))
  46219. characterMakers.push(() => makeCharacter(
  46220. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46221. {
  46222. front: {
  46223. height: math.unit(3.5, "meters"),
  46224. name: "Front",
  46225. image: {
  46226. source: "./media/characters/sarzu-and-israz/front.svg",
  46227. extra: 1570/1558,
  46228. bottom: 150/1720
  46229. },
  46230. },
  46231. back: {
  46232. height: math.unit(3.5, "meters"),
  46233. name: "Back",
  46234. image: {
  46235. source: "./media/characters/sarzu-and-israz/back.svg",
  46236. extra: 1523/1509,
  46237. bottom: 132/1655
  46238. },
  46239. },
  46240. frontFemale: {
  46241. height: math.unit(3.5, "meters"),
  46242. name: "Front (Female)",
  46243. image: {
  46244. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46245. extra: 1570/1558,
  46246. bottom: 150/1720
  46247. },
  46248. },
  46249. frontHerm: {
  46250. height: math.unit(3.5, "meters"),
  46251. name: "Front (Herm)",
  46252. image: {
  46253. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46254. extra: 1570/1558,
  46255. bottom: 150/1720
  46256. },
  46257. },
  46258. },
  46259. [
  46260. {
  46261. name: "Normal",
  46262. height: math.unit(3.5, "meters"),
  46263. default: true,
  46264. },
  46265. {
  46266. name: "Macro",
  46267. height: math.unit(65.5, "meters"),
  46268. },
  46269. ],
  46270. ))
  46271. characterMakers.push(() => makeCharacter(
  46272. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46273. {
  46274. front: {
  46275. height: math.unit(6, "feet"),
  46276. weight: math.unit(250, "lb"),
  46277. name: "Front",
  46278. image: {
  46279. source: "./media/characters/zenimma/front.svg",
  46280. extra: 1346/1320,
  46281. bottom: 58/1404
  46282. }
  46283. },
  46284. back: {
  46285. height: math.unit(6, "feet"),
  46286. weight: math.unit(250, "lb"),
  46287. name: "Back",
  46288. image: {
  46289. source: "./media/characters/zenimma/back.svg",
  46290. extra: 1324/1308,
  46291. bottom: 44/1368
  46292. }
  46293. },
  46294. dick: {
  46295. height: math.unit(1.44, "feet"),
  46296. name: "Dick",
  46297. image: {
  46298. source: "./media/characters/zenimma/dick.svg"
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Canon Height",
  46305. height: math.unit(66, "miles"),
  46306. default: true
  46307. },
  46308. ]
  46309. ))
  46310. characterMakers.push(() => makeCharacter(
  46311. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46312. {
  46313. nude: {
  46314. height: math.unit(6, "feet"),
  46315. weight: math.unit(150, "lb"),
  46316. name: "Nude",
  46317. image: {
  46318. source: "./media/characters/shavon/nude.svg",
  46319. extra: 1242/1096,
  46320. bottom: 98/1340
  46321. }
  46322. },
  46323. dressed: {
  46324. height: math.unit(6, "feet"),
  46325. weight: math.unit(150, "lb"),
  46326. name: "Dressed",
  46327. image: {
  46328. source: "./media/characters/shavon/dressed.svg",
  46329. extra: 1242/1096,
  46330. bottom: 98/1340
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Macro",
  46337. height: math.unit(255, "feet"),
  46338. default: true
  46339. },
  46340. ]
  46341. ))
  46342. characterMakers.push(() => makeCharacter(
  46343. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46344. {
  46345. front: {
  46346. height: math.unit(6, "feet"),
  46347. name: "Front",
  46348. image: {
  46349. source: "./media/characters/steph/front.svg",
  46350. extra: 1430/1330,
  46351. bottom: 54/1484
  46352. }
  46353. },
  46354. },
  46355. [
  46356. {
  46357. name: "Normal",
  46358. height: math.unit(6, "feet"),
  46359. default: true
  46360. },
  46361. ]
  46362. ))
  46363. characterMakers.push(() => makeCharacter(
  46364. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46365. {
  46366. front: {
  46367. height: math.unit(9, "feet"),
  46368. weight: math.unit(400, "lb"),
  46369. name: "Front",
  46370. image: {
  46371. source: "./media/characters/kil'aman/front.svg",
  46372. extra: 1210/1159,
  46373. bottom: 109/1319
  46374. }
  46375. },
  46376. head: {
  46377. height: math.unit(2.14, "feet"),
  46378. name: "Head",
  46379. image: {
  46380. source: "./media/characters/kil'aman/head.svg"
  46381. }
  46382. },
  46383. maw: {
  46384. height: math.unit(1.21, "feet"),
  46385. name: "Maw",
  46386. image: {
  46387. source: "./media/characters/kil'aman/maw.svg"
  46388. }
  46389. },
  46390. foot: {
  46391. height: math.unit(1.7, "feet"),
  46392. name: "Foot",
  46393. image: {
  46394. source: "./media/characters/kil'aman/foot.svg"
  46395. }
  46396. },
  46397. dick: {
  46398. height: math.unit(2.1, "feet"),
  46399. name: "Dick",
  46400. image: {
  46401. source: "./media/characters/kil'aman/dick.svg"
  46402. }
  46403. },
  46404. },
  46405. [
  46406. {
  46407. name: "Normal",
  46408. height: math.unit(9, "feet")
  46409. },
  46410. {
  46411. name: "Canon Height",
  46412. height: math.unit(10, "miles"),
  46413. default: true
  46414. },
  46415. {
  46416. name: "Maximum",
  46417. height: math.unit(6e9, "miles")
  46418. },
  46419. ]
  46420. ))
  46421. characterMakers.push(() => makeCharacter(
  46422. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46423. {
  46424. front: {
  46425. height: math.unit(90, "feet"),
  46426. weight: math.unit(675000, "lb"),
  46427. name: "Front",
  46428. image: {
  46429. source: "./media/characters/qadan/front.svg",
  46430. extra: 1012/1004,
  46431. bottom: 78/1090
  46432. }
  46433. },
  46434. back: {
  46435. height: math.unit(90, "feet"),
  46436. weight: math.unit(675000, "lb"),
  46437. name: "Back",
  46438. image: {
  46439. source: "./media/characters/qadan/back.svg",
  46440. extra: 1042/1031,
  46441. bottom: 55/1097
  46442. }
  46443. },
  46444. armored: {
  46445. height: math.unit(90, "feet"),
  46446. weight: math.unit(675000, "lb"),
  46447. name: "Armored",
  46448. image: {
  46449. source: "./media/characters/qadan/armored.svg",
  46450. extra: 1047/1037,
  46451. bottom: 48/1095
  46452. }
  46453. },
  46454. },
  46455. [
  46456. {
  46457. name: "Normal",
  46458. height: math.unit(90, "feet"),
  46459. default: true
  46460. },
  46461. ]
  46462. ))
  46463. characterMakers.push(() => makeCharacter(
  46464. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46465. {
  46466. front: {
  46467. height: math.unit(6, "feet"),
  46468. weight: math.unit(225, "lb"),
  46469. name: "Front",
  46470. image: {
  46471. source: "./media/characters/brooke/front.svg",
  46472. extra: 1050/1010,
  46473. bottom: 66/1116
  46474. }
  46475. },
  46476. back: {
  46477. height: math.unit(6, "feet"),
  46478. weight: math.unit(225, "lb"),
  46479. name: "Back",
  46480. image: {
  46481. source: "./media/characters/brooke/back.svg",
  46482. extra: 1053/1013,
  46483. bottom: 41/1094
  46484. }
  46485. },
  46486. dressed: {
  46487. height: math.unit(6, "feet"),
  46488. weight: math.unit(225, "lb"),
  46489. name: "Dressed",
  46490. image: {
  46491. source: "./media/characters/brooke/dressed.svg",
  46492. extra: 1050/1010,
  46493. bottom: 66/1116
  46494. }
  46495. },
  46496. },
  46497. [
  46498. {
  46499. name: "Canon Height",
  46500. height: math.unit(500, "miles"),
  46501. default: true
  46502. },
  46503. ]
  46504. ))
  46505. characterMakers.push(() => makeCharacter(
  46506. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46507. {
  46508. front: {
  46509. height: math.unit(6 + 2/12, "feet"),
  46510. weight: math.unit(210, "lb"),
  46511. name: "Front",
  46512. image: {
  46513. source: "./media/characters/wubs/front.svg",
  46514. extra: 1345/1325,
  46515. bottom: 70/1415
  46516. }
  46517. },
  46518. back: {
  46519. height: math.unit(6 + 2/12, "feet"),
  46520. weight: math.unit(210, "lb"),
  46521. name: "Back",
  46522. image: {
  46523. source: "./media/characters/wubs/back.svg",
  46524. extra: 1296/1275,
  46525. bottom: 58/1354
  46526. }
  46527. },
  46528. },
  46529. [
  46530. {
  46531. name: "Normal",
  46532. height: math.unit(6 + 2/12, "feet"),
  46533. default: true
  46534. },
  46535. {
  46536. name: "Macro",
  46537. height: math.unit(1000, "feet")
  46538. },
  46539. {
  46540. name: "Megamacro",
  46541. height: math.unit(1, "mile")
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46547. {
  46548. front: {
  46549. height: math.unit(4, "feet"),
  46550. weight: math.unit(120, "lb"),
  46551. name: "Front",
  46552. image: {
  46553. source: "./media/characters/blue/front.svg",
  46554. extra: 1636/1525,
  46555. bottom: 43/1679
  46556. }
  46557. },
  46558. back: {
  46559. height: math.unit(4, "feet"),
  46560. weight: math.unit(120, "lb"),
  46561. name: "Back",
  46562. image: {
  46563. source: "./media/characters/blue/back.svg",
  46564. extra: 1660/1560,
  46565. bottom: 57/1717
  46566. }
  46567. },
  46568. paws: {
  46569. height: math.unit(0.826, "feet"),
  46570. name: "Paws",
  46571. image: {
  46572. source: "./media/characters/blue/paws.svg"
  46573. }
  46574. },
  46575. },
  46576. [
  46577. {
  46578. name: "Micro",
  46579. height: math.unit(3, "inches")
  46580. },
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(4, "feet"),
  46584. default: true
  46585. },
  46586. {
  46587. name: "Femenine Form",
  46588. height: math.unit(14, "feet")
  46589. },
  46590. {
  46591. name: "Werebat Form",
  46592. height: math.unit(18, "feet")
  46593. },
  46594. ]
  46595. ))
  46596. characterMakers.push(() => makeCharacter(
  46597. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46598. {
  46599. female: {
  46600. height: math.unit(7 + 4/12, "feet"),
  46601. weight: math.unit(243, "lb"),
  46602. name: "Female",
  46603. image: {
  46604. source: "./media/characters/kaya/female.svg",
  46605. extra: 975/898,
  46606. bottom: 34/1009
  46607. }
  46608. },
  46609. herm: {
  46610. height: math.unit(7 + 4/12, "feet"),
  46611. weight: math.unit(243, "lb"),
  46612. name: "Herm",
  46613. image: {
  46614. source: "./media/characters/kaya/herm.svg",
  46615. extra: 975/898,
  46616. bottom: 34/1009
  46617. }
  46618. },
  46619. },
  46620. [
  46621. {
  46622. name: "Normal",
  46623. height: math.unit(7 + 4/12, "feet"),
  46624. default: true
  46625. },
  46626. ]
  46627. ))
  46628. characterMakers.push(() => makeCharacter(
  46629. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46630. {
  46631. female: {
  46632. height: math.unit(9 + 4/12, "feet"),
  46633. weight: math.unit(398, "lb"),
  46634. name: "Female",
  46635. image: {
  46636. source: "./media/characters/kassandra/female.svg",
  46637. extra: 908/839,
  46638. bottom: 61/969
  46639. }
  46640. },
  46641. intersex: {
  46642. height: math.unit(9 + 4/12, "feet"),
  46643. weight: math.unit(398, "lb"),
  46644. name: "Intersex",
  46645. image: {
  46646. source: "./media/characters/kassandra/intersex.svg",
  46647. extra: 908/839,
  46648. bottom: 61/969
  46649. }
  46650. },
  46651. },
  46652. [
  46653. {
  46654. name: "Normal",
  46655. height: math.unit(9 + 4/12, "feet"),
  46656. default: true
  46657. },
  46658. ]
  46659. ))
  46660. characterMakers.push(() => makeCharacter(
  46661. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46662. {
  46663. front: {
  46664. height: math.unit(3, "meters"),
  46665. name: "Front",
  46666. image: {
  46667. source: "./media/characters/amy/front.svg",
  46668. extra: 1380/1343,
  46669. bottom: 70/1450
  46670. }
  46671. },
  46672. back: {
  46673. height: math.unit(3, "meters"),
  46674. name: "Back",
  46675. image: {
  46676. source: "./media/characters/amy/back.svg",
  46677. extra: 1380/1347,
  46678. bottom: 66/1446
  46679. }
  46680. },
  46681. },
  46682. [
  46683. {
  46684. name: "Normal",
  46685. height: math.unit(3, "meters"),
  46686. default: true
  46687. },
  46688. ]
  46689. ))
  46690. characterMakers.push(() => makeCharacter(
  46691. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46692. {
  46693. side: {
  46694. height: math.unit(47, "cm"),
  46695. weight: math.unit(10.8, "kg"),
  46696. name: "Side",
  46697. image: {
  46698. source: "./media/characters/alphaschakal/side.svg",
  46699. extra: 1058/568,
  46700. bottom: 62/1120
  46701. }
  46702. },
  46703. back: {
  46704. height: math.unit(78, "cm"),
  46705. weight: math.unit(10.8, "kg"),
  46706. name: "Back",
  46707. image: {
  46708. source: "./media/characters/alphaschakal/back.svg",
  46709. extra: 1102/942,
  46710. bottom: 185/1287
  46711. }
  46712. },
  46713. head: {
  46714. height: math.unit(28, "cm"),
  46715. name: "Head",
  46716. image: {
  46717. source: "./media/characters/alphaschakal/head.svg",
  46718. extra: 696/508,
  46719. bottom: 0/696
  46720. }
  46721. },
  46722. paw: {
  46723. height: math.unit(16, "cm"),
  46724. name: "Paw",
  46725. image: {
  46726. source: "./media/characters/alphaschakal/paw.svg"
  46727. }
  46728. },
  46729. },
  46730. [
  46731. {
  46732. name: "Normal",
  46733. height: math.unit(47, "cm"),
  46734. default: true
  46735. },
  46736. {
  46737. name: "Macro",
  46738. height: math.unit(340, "cm")
  46739. },
  46740. ]
  46741. ))
  46742. characterMakers.push(() => makeCharacter(
  46743. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46744. {
  46745. front: {
  46746. height: math.unit(36, "earths"),
  46747. name: "Front",
  46748. image: {
  46749. source: "./media/characters/ecobyss/front.svg",
  46750. extra: 1282/1215,
  46751. bottom: 11/1293
  46752. }
  46753. },
  46754. back: {
  46755. height: math.unit(36, "earths"),
  46756. name: "Back",
  46757. image: {
  46758. source: "./media/characters/ecobyss/back.svg",
  46759. extra: 1291/1222,
  46760. bottom: 8/1299
  46761. }
  46762. },
  46763. },
  46764. [
  46765. {
  46766. name: "Normal",
  46767. height: math.unit(36, "earths"),
  46768. default: true
  46769. },
  46770. ]
  46771. ))
  46772. characterMakers.push(() => makeCharacter(
  46773. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46774. {
  46775. front: {
  46776. height: math.unit(12, "feet"),
  46777. name: "Front",
  46778. image: {
  46779. source: "./media/characters/vasuk/front.svg",
  46780. extra: 1326/1207,
  46781. bottom: 64/1390
  46782. }
  46783. },
  46784. },
  46785. [
  46786. {
  46787. name: "Normal",
  46788. height: math.unit(12, "feet"),
  46789. default: true
  46790. },
  46791. ]
  46792. ))
  46793. characterMakers.push(() => makeCharacter(
  46794. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46795. {
  46796. side: {
  46797. height: math.unit(100, "feet"),
  46798. name: "Side",
  46799. image: {
  46800. source: "./media/characters/linneaus/side.svg",
  46801. extra: 987/807,
  46802. bottom: 47/1034
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Macro",
  46809. height: math.unit(100, "feet"),
  46810. default: true
  46811. },
  46812. ]
  46813. ))
  46814. characterMakers.push(() => makeCharacter(
  46815. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46816. {
  46817. front: {
  46818. height: math.unit(8, "feet"),
  46819. weight: math.unit(1200, "lb"),
  46820. name: "Front",
  46821. image: {
  46822. source: "./media/characters/nyterious-daligdig/front.svg",
  46823. extra: 1284/1094,
  46824. bottom: 84/1368
  46825. }
  46826. },
  46827. back: {
  46828. height: math.unit(8, "feet"),
  46829. weight: math.unit(1200, "lb"),
  46830. name: "Back",
  46831. image: {
  46832. source: "./media/characters/nyterious-daligdig/back.svg",
  46833. extra: 1301/1121,
  46834. bottom: 129/1430
  46835. }
  46836. },
  46837. mouth: {
  46838. height: math.unit(1.464, "feet"),
  46839. name: "Mouth",
  46840. image: {
  46841. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46842. }
  46843. },
  46844. },
  46845. [
  46846. {
  46847. name: "Small",
  46848. height: math.unit(8, "feet"),
  46849. default: true
  46850. },
  46851. {
  46852. name: "Normal",
  46853. height: math.unit(15, "feet")
  46854. },
  46855. {
  46856. name: "Macro",
  46857. height: math.unit(90, "feet")
  46858. },
  46859. ]
  46860. ))
  46861. characterMakers.push(() => makeCharacter(
  46862. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46863. {
  46864. front: {
  46865. height: math.unit(7 + 4/12, "feet"),
  46866. weight: math.unit(252, "lb"),
  46867. name: "Front",
  46868. image: {
  46869. source: "./media/characters/bandel/front.svg",
  46870. extra: 1946/1775,
  46871. bottom: 26/1972
  46872. }
  46873. },
  46874. back: {
  46875. height: math.unit(7 + 4/12, "feet"),
  46876. weight: math.unit(252, "lb"),
  46877. name: "Back",
  46878. image: {
  46879. source: "./media/characters/bandel/back.svg",
  46880. extra: 1940/1770,
  46881. bottom: 25/1965
  46882. }
  46883. },
  46884. maw: {
  46885. height: math.unit(2.15, "feet"),
  46886. name: "Maw",
  46887. image: {
  46888. source: "./media/characters/bandel/maw.svg"
  46889. }
  46890. },
  46891. stomach: {
  46892. height: math.unit(1.95, "feet"),
  46893. name: "Stomach",
  46894. image: {
  46895. source: "./media/characters/bandel/stomach.svg"
  46896. }
  46897. },
  46898. },
  46899. [
  46900. {
  46901. name: "Normal",
  46902. height: math.unit(7 + 4/12, "feet"),
  46903. default: true
  46904. },
  46905. ]
  46906. ))
  46907. characterMakers.push(() => makeCharacter(
  46908. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46909. {
  46910. front: {
  46911. height: math.unit(10 + 5/12, "feet"),
  46912. weight: math.unit(773.5, "kg"),
  46913. name: "Front",
  46914. image: {
  46915. source: "./media/characters/zed/front.svg",
  46916. extra: 987/941,
  46917. bottom: 52/1039
  46918. }
  46919. },
  46920. },
  46921. [
  46922. {
  46923. name: "Short",
  46924. height: math.unit(5 + 4/12, "feet")
  46925. },
  46926. {
  46927. name: "Average",
  46928. height: math.unit(10 + 5/12, "feet"),
  46929. default: true
  46930. },
  46931. {
  46932. name: "Mini-Macro",
  46933. height: math.unit(24 + 9/12, "feet")
  46934. },
  46935. {
  46936. name: "Macro",
  46937. height: math.unit(249, "feet")
  46938. },
  46939. {
  46940. name: "Mega-Macro",
  46941. height: math.unit(12490, "feet")
  46942. },
  46943. {
  46944. name: "Giga-Macro",
  46945. height: math.unit(24.9, "miles")
  46946. },
  46947. {
  46948. name: "Tera-Macro",
  46949. height: math.unit(24900, "miles")
  46950. },
  46951. {
  46952. name: "Cosmic Scale",
  46953. height: math.unit(38.9, "lightyears")
  46954. },
  46955. {
  46956. name: "Universal Scale",
  46957. height: math.unit(138e12, "lightyears")
  46958. },
  46959. ]
  46960. ))
  46961. characterMakers.push(() => makeCharacter(
  46962. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46963. {
  46964. front: {
  46965. height: math.unit(1561, "inches"),
  46966. name: "Front",
  46967. image: {
  46968. source: "./media/characters/ivan/front.svg",
  46969. extra: 1126/1071,
  46970. bottom: 26/1152
  46971. }
  46972. },
  46973. back: {
  46974. height: math.unit(1561, "inches"),
  46975. name: "Back",
  46976. image: {
  46977. source: "./media/characters/ivan/back.svg",
  46978. extra: 1134/1079,
  46979. bottom: 30/1164
  46980. }
  46981. },
  46982. },
  46983. [
  46984. {
  46985. name: "Normal",
  46986. height: math.unit(1561, "inches"),
  46987. default: true
  46988. },
  46989. ]
  46990. ))
  46991. characterMakers.push(() => makeCharacter(
  46992. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46993. {
  46994. front: {
  46995. height: math.unit(5 + 7/12, "feet"),
  46996. weight: math.unit(150, "lb"),
  46997. name: "Front",
  46998. image: {
  46999. source: "./media/characters/robin-arctic-hare/front.svg",
  47000. extra: 1148/974,
  47001. bottom: 20/1168
  47002. }
  47003. },
  47004. },
  47005. [
  47006. {
  47007. name: "Normal",
  47008. height: math.unit(5 + 7/12, "feet"),
  47009. default: true
  47010. },
  47011. ]
  47012. ))
  47013. characterMakers.push(() => makeCharacter(
  47014. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47015. {
  47016. side: {
  47017. height: math.unit(5, "feet"),
  47018. name: "Side",
  47019. image: {
  47020. source: "./media/characters/birch/side.svg",
  47021. extra: 985/796,
  47022. bottom: 111/1096
  47023. }
  47024. },
  47025. },
  47026. [
  47027. {
  47028. name: "Normal",
  47029. height: math.unit(5, "feet"),
  47030. default: true
  47031. },
  47032. ]
  47033. ))
  47034. characterMakers.push(() => makeCharacter(
  47035. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47036. {
  47037. front: {
  47038. height: math.unit(4, "feet"),
  47039. name: "Front",
  47040. image: {
  47041. source: "./media/characters/rasp/front.svg",
  47042. extra: 561/478,
  47043. bottom: 74/635
  47044. }
  47045. },
  47046. },
  47047. [
  47048. {
  47049. name: "Normal",
  47050. height: math.unit(4, "feet"),
  47051. default: true
  47052. },
  47053. ]
  47054. ))
  47055. characterMakers.push(() => makeCharacter(
  47056. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47057. {
  47058. front: {
  47059. height: math.unit(4 + 6/12, "feet"),
  47060. name: "Front",
  47061. image: {
  47062. source: "./media/characters/agatha/front.svg",
  47063. extra: 947/933,
  47064. bottom: 42/989
  47065. }
  47066. },
  47067. back: {
  47068. height: math.unit(4 + 6/12, "feet"),
  47069. name: "Back",
  47070. image: {
  47071. source: "./media/characters/agatha/back.svg",
  47072. extra: 935/922,
  47073. bottom: 48/983
  47074. }
  47075. },
  47076. },
  47077. [
  47078. {
  47079. name: "Normal",
  47080. height: math.unit(4 + 6 /12, "feet"),
  47081. default: true
  47082. },
  47083. {
  47084. name: "Max Size",
  47085. height: math.unit(500, "feet")
  47086. },
  47087. ]
  47088. ))
  47089. characterMakers.push(() => makeCharacter(
  47090. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47091. {
  47092. side: {
  47093. height: math.unit(30, "feet"),
  47094. name: "Side",
  47095. image: {
  47096. source: "./media/characters/roggy/side.svg",
  47097. extra: 909/643,
  47098. bottom: 63/972
  47099. }
  47100. },
  47101. lounging: {
  47102. height: math.unit(20, "feet"),
  47103. name: "Lounging",
  47104. image: {
  47105. source: "./media/characters/roggy/lounging.svg",
  47106. extra: 643/479,
  47107. bottom: 145/788
  47108. }
  47109. },
  47110. handpaw: {
  47111. height: math.unit(13.1, "feet"),
  47112. name: "Handpaw",
  47113. image: {
  47114. source: "./media/characters/roggy/handpaw.svg"
  47115. }
  47116. },
  47117. footpaw: {
  47118. height: math.unit(15.8, "feet"),
  47119. name: "Footpaw",
  47120. image: {
  47121. source: "./media/characters/roggy/footpaw.svg"
  47122. }
  47123. },
  47124. },
  47125. [
  47126. {
  47127. name: "Menacing",
  47128. height: math.unit(30, "feet"),
  47129. default: true
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47135. {
  47136. front: {
  47137. height: math.unit(5 + 7/12, "feet"),
  47138. weight: math.unit(135, "lb"),
  47139. name: "Front",
  47140. image: {
  47141. source: "./media/characters/naomi/front.svg",
  47142. extra: 1209/1154,
  47143. bottom: 129/1338
  47144. }
  47145. },
  47146. back: {
  47147. height: math.unit(5 + 7/12, "feet"),
  47148. weight: math.unit(135, "lb"),
  47149. name: "Back",
  47150. image: {
  47151. source: "./media/characters/naomi/back.svg",
  47152. extra: 1252/1190,
  47153. bottom: 23/1275
  47154. }
  47155. },
  47156. },
  47157. [
  47158. {
  47159. name: "Normal",
  47160. height: math.unit(5 + 7 /12, "feet"),
  47161. default: true
  47162. },
  47163. ]
  47164. ))
  47165. characterMakers.push(() => makeCharacter(
  47166. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47167. {
  47168. side: {
  47169. height: math.unit(35, "meters"),
  47170. name: "Side",
  47171. image: {
  47172. source: "./media/characters/kimpi/side.svg",
  47173. extra: 419/382,
  47174. bottom: 63/482
  47175. }
  47176. },
  47177. hand: {
  47178. height: math.unit(8.96, "meters"),
  47179. name: "Hand",
  47180. image: {
  47181. source: "./media/characters/kimpi/hand.svg"
  47182. }
  47183. },
  47184. },
  47185. [
  47186. {
  47187. name: "Normal",
  47188. height: math.unit(35, "meters"),
  47189. default: true
  47190. },
  47191. ]
  47192. ))
  47193. characterMakers.push(() => makeCharacter(
  47194. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47195. {
  47196. front: {
  47197. height: math.unit(4 + 4/12, "feet"),
  47198. name: "Front",
  47199. image: {
  47200. source: "./media/characters/pepper-purrloin/front.svg",
  47201. extra: 1141/1024,
  47202. bottom: 21/1162
  47203. }
  47204. },
  47205. },
  47206. [
  47207. {
  47208. name: "Normal",
  47209. height: math.unit(4 + 4/12, "feet"),
  47210. default: true
  47211. },
  47212. ]
  47213. ))
  47214. characterMakers.push(() => makeCharacter(
  47215. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47216. {
  47217. front: {
  47218. height: math.unit(6 + 2/12, "feet"),
  47219. name: "Front",
  47220. image: {
  47221. source: "./media/characters/raphael/front.svg",
  47222. extra: 1101/962,
  47223. bottom: 59/1160
  47224. }
  47225. },
  47226. },
  47227. [
  47228. {
  47229. name: "Normal",
  47230. height: math.unit(6 + 2/12, "feet"),
  47231. default: true
  47232. },
  47233. ]
  47234. ))
  47235. characterMakers.push(() => makeCharacter(
  47236. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47237. {
  47238. front: {
  47239. height: math.unit(6, "feet"),
  47240. weight: math.unit(150, "lb"),
  47241. name: "Front",
  47242. image: {
  47243. source: "./media/characters/victor-williams/front.svg",
  47244. extra: 1894/1825,
  47245. bottom: 67/1961
  47246. }
  47247. },
  47248. },
  47249. [
  47250. {
  47251. name: "Normal",
  47252. height: math.unit(6, "feet"),
  47253. default: true
  47254. },
  47255. ]
  47256. ))
  47257. characterMakers.push(() => makeCharacter(
  47258. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47259. {
  47260. front: {
  47261. height: math.unit(5 + 8/12, "feet"),
  47262. weight: math.unit(150, "lb"),
  47263. name: "Front",
  47264. image: {
  47265. source: "./media/characters/rachel/front.svg",
  47266. extra: 1902/1787,
  47267. bottom: 46/1948
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Base Height",
  47274. height: math.unit(5 + 8/12, "feet"),
  47275. default: true
  47276. },
  47277. {
  47278. name: "Macro",
  47279. height: math.unit(200, "feet")
  47280. },
  47281. {
  47282. name: "Mega Macro",
  47283. height: math.unit(1, "mile")
  47284. },
  47285. {
  47286. name: "Giga Macro",
  47287. height: math.unit(1500, "miles")
  47288. },
  47289. {
  47290. name: "Tera Macro",
  47291. height: math.unit(8000, "miles")
  47292. },
  47293. {
  47294. name: "Tera Macro+",
  47295. height: math.unit(2e5, "miles")
  47296. },
  47297. ]
  47298. ))
  47299. characterMakers.push(() => makeCharacter(
  47300. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47301. {
  47302. front: {
  47303. height: math.unit(6.5, "feet"),
  47304. name: "Front",
  47305. image: {
  47306. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47307. extra: 860/819,
  47308. bottom: 307/1167
  47309. }
  47310. },
  47311. back: {
  47312. height: math.unit(6.5, "feet"),
  47313. name: "Back",
  47314. image: {
  47315. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47316. extra: 880/837,
  47317. bottom: 395/1275
  47318. }
  47319. },
  47320. sleeping: {
  47321. height: math.unit(2.79, "feet"),
  47322. name: "Sleeping",
  47323. image: {
  47324. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47325. extra: 465/383,
  47326. bottom: 263/728
  47327. }
  47328. },
  47329. maw: {
  47330. height: math.unit(2.52, "feet"),
  47331. name: "Maw",
  47332. image: {
  47333. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47334. }
  47335. },
  47336. },
  47337. [
  47338. {
  47339. name: "Normal",
  47340. height: math.unit(6.5, "feet"),
  47341. default: true
  47342. },
  47343. ]
  47344. ))
  47345. characterMakers.push(() => makeCharacter(
  47346. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47347. {
  47348. front: {
  47349. height: math.unit(5, "feet"),
  47350. name: "Front",
  47351. image: {
  47352. source: "./media/characters/nova-nerium/front.svg",
  47353. extra: 1548/1392,
  47354. bottom: 374/1922
  47355. }
  47356. },
  47357. back: {
  47358. height: math.unit(5, "feet"),
  47359. name: "Back",
  47360. image: {
  47361. source: "./media/characters/nova-nerium/back.svg",
  47362. extra: 1658/1468,
  47363. bottom: 257/1915
  47364. }
  47365. },
  47366. },
  47367. [
  47368. {
  47369. name: "Normal",
  47370. height: math.unit(5, "feet"),
  47371. default: true
  47372. },
  47373. ]
  47374. ))
  47375. characterMakers.push(() => makeCharacter(
  47376. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47377. {
  47378. front: {
  47379. height: math.unit(5 + 4/12, "feet"),
  47380. name: "Front",
  47381. image: {
  47382. source: "./media/characters/ashe-pyriph/front.svg",
  47383. extra: 1935/1747,
  47384. bottom: 60/1995
  47385. }
  47386. },
  47387. },
  47388. [
  47389. {
  47390. name: "Normal",
  47391. height: math.unit(5 + 4/12, "feet"),
  47392. default: true
  47393. },
  47394. ]
  47395. ))
  47396. characterMakers.push(() => makeCharacter(
  47397. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47398. {
  47399. front: {
  47400. height: math.unit(8.7, "feet"),
  47401. name: "Front",
  47402. image: {
  47403. source: "./media/characters/flicker-wisp/front.svg",
  47404. extra: 1835/1613,
  47405. bottom: 449/2284
  47406. }
  47407. },
  47408. side: {
  47409. height: math.unit(8.7, "feet"),
  47410. name: "Side",
  47411. image: {
  47412. source: "./media/characters/flicker-wisp/side.svg",
  47413. extra: 1841/1642,
  47414. bottom: 336/2177
  47415. },
  47416. default: true
  47417. },
  47418. maw: {
  47419. height: math.unit(3.35, "feet"),
  47420. name: "Maw",
  47421. image: {
  47422. source: "./media/characters/flicker-wisp/maw.svg",
  47423. extra: 2338/1506,
  47424. bottom: 0/2338
  47425. }
  47426. },
  47427. ovipositor: {
  47428. height: math.unit(4.95, "feet"),
  47429. name: "Ovipositor",
  47430. image: {
  47431. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47432. }
  47433. },
  47434. egg: {
  47435. height: math.unit(0.385, "feet"),
  47436. weight: math.unit(2, "lb"),
  47437. name: "Egg",
  47438. image: {
  47439. source: "./media/characters/flicker-wisp/egg.svg"
  47440. }
  47441. },
  47442. },
  47443. [
  47444. {
  47445. name: "Normal",
  47446. height: math.unit(8.7, "feet"),
  47447. default: true
  47448. },
  47449. ]
  47450. ))
  47451. characterMakers.push(() => makeCharacter(
  47452. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47453. {
  47454. side: {
  47455. height: math.unit(11, "feet"),
  47456. name: "Side",
  47457. image: {
  47458. source: "./media/characters/faefnul/side.svg",
  47459. extra: 1100/1007,
  47460. bottom: 0/1100
  47461. }
  47462. },
  47463. },
  47464. [
  47465. {
  47466. name: "Normal",
  47467. height: math.unit(11, "feet"),
  47468. default: true
  47469. },
  47470. ]
  47471. ))
  47472. characterMakers.push(() => makeCharacter(
  47473. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47474. {
  47475. front: {
  47476. height: math.unit(6 + 2/12, "feet"),
  47477. name: "Front",
  47478. image: {
  47479. source: "./media/characters/shady/front.svg",
  47480. extra: 502/461,
  47481. bottom: 9/511
  47482. }
  47483. },
  47484. kneeling: {
  47485. height: math.unit(4.6, "feet"),
  47486. name: "Kneeling",
  47487. image: {
  47488. source: "./media/characters/shady/kneeling.svg",
  47489. extra: 1328/1219,
  47490. bottom: 117/1445
  47491. }
  47492. },
  47493. maw: {
  47494. height: math.unit(2, "feet"),
  47495. name: "Maw",
  47496. image: {
  47497. source: "./media/characters/shady/maw.svg"
  47498. }
  47499. },
  47500. },
  47501. [
  47502. {
  47503. name: "Nano",
  47504. height: math.unit(1, "mm")
  47505. },
  47506. {
  47507. name: "Micro",
  47508. height: math.unit(12, "mm")
  47509. },
  47510. {
  47511. name: "Tiny",
  47512. height: math.unit(3, "inches")
  47513. },
  47514. {
  47515. name: "Normal",
  47516. height: math.unit(6 + 2/12, "feet"),
  47517. default: true
  47518. },
  47519. {
  47520. name: "Big",
  47521. height: math.unit(15, "feet")
  47522. },
  47523. {
  47524. name: "Macro",
  47525. height: math.unit(150, "feet")
  47526. },
  47527. {
  47528. name: "Titanic",
  47529. height: math.unit(500, "feet")
  47530. },
  47531. ]
  47532. ))
  47533. characterMakers.push(() => makeCharacter(
  47534. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47535. {
  47536. front: {
  47537. height: math.unit(12, "feet"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/fenrir/front.svg",
  47541. extra: 968/875,
  47542. bottom: 22/990
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Big",
  47549. height: math.unit(12, "feet"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(5 + 4/12, "feet"),
  47559. name: "Front",
  47560. image: {
  47561. source: "./media/characters/makar/front.svg",
  47562. extra: 1181/1112,
  47563. bottom: 78/1259
  47564. }
  47565. },
  47566. },
  47567. [
  47568. {
  47569. name: "Normal",
  47570. height: math.unit(5 + 4/12, "feet"),
  47571. default: true
  47572. },
  47573. ]
  47574. ))
  47575. characterMakers.push(() => makeCharacter(
  47576. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47577. {
  47578. front: {
  47579. height: math.unit(5 + 7/12, "feet"),
  47580. name: "Front",
  47581. image: {
  47582. source: "./media/characters/callow/front.svg",
  47583. extra: 1482/1304,
  47584. bottom: 23/1505
  47585. }
  47586. },
  47587. back: {
  47588. height: math.unit(5 + 7/12, "feet"),
  47589. name: "Back",
  47590. image: {
  47591. source: "./media/characters/callow/back.svg",
  47592. extra: 1484/1296,
  47593. bottom: 25/1509
  47594. }
  47595. },
  47596. },
  47597. [
  47598. {
  47599. name: "Micro",
  47600. height: math.unit(3, "inches"),
  47601. default: true
  47602. },
  47603. {
  47604. name: "Normal",
  47605. height: math.unit(5 + 7/12, "feet")
  47606. },
  47607. ]
  47608. ))
  47609. characterMakers.push(() => makeCharacter(
  47610. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47611. {
  47612. front: {
  47613. height: math.unit(6 + 2/12, "feet"),
  47614. name: "Front",
  47615. image: {
  47616. source: "./media/characters/natel/front.svg",
  47617. extra: 1833/1692,
  47618. bottom: 166/1999
  47619. }
  47620. },
  47621. },
  47622. [
  47623. {
  47624. name: "Normal",
  47625. height: math.unit(6 + 2/12, "feet"),
  47626. default: true
  47627. },
  47628. ]
  47629. ))
  47630. //characters
  47631. function makeCharacters() {
  47632. const results = [];
  47633. characterMakers.forEach(character => {
  47634. results.push(character());
  47635. });
  47636. return results;
  47637. }