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

35650 строки
895 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. "turian": {
  1520. name: "Turian",
  1521. parents: ["avian"]
  1522. },
  1523. "zeraora": {
  1524. name: "Zeraora",
  1525. parents: ["pokemon"]
  1526. },
  1527. "sandshrew": {
  1528. name: "Sandshrew",
  1529. parents: ["pokemon", "pangolin"]
  1530. },
  1531. "valais-blacknose-sheep": {
  1532. name: "Valais Blacknose Sheep",
  1533. parents: ["sheep"]
  1534. },
  1535. "novaleit": {
  1536. name: "Novaleit",
  1537. parents: ["mammal"]
  1538. },
  1539. "dunnoh": {
  1540. name: "Dunnoh",
  1541. parents: ["mammal"]
  1542. },
  1543. "lunaral-dragon": {
  1544. name: "Lunaral Dragon",
  1545. parents: ["dragon"]
  1546. },
  1547. }
  1548. //species
  1549. function getSpeciesInfo(speciesList) {
  1550. let result = new Set();
  1551. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1552. result.add(entry)
  1553. });
  1554. return Array.from(result);
  1555. };
  1556. function getSpeciesInfoHelper(species) {
  1557. if (!speciesData[species]) {
  1558. console.warn(species + " doesn't exist");
  1559. return [];
  1560. }
  1561. if (speciesData[species].parents) {
  1562. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1563. } else {
  1564. return [species];
  1565. }
  1566. }
  1567. characterMakers.push(() => makeCharacter(
  1568. {
  1569. name: "Fen",
  1570. species: ["crux"],
  1571. description: {
  1572. title: "Bio",
  1573. text: "Very furry. Sheds on everything."
  1574. },
  1575. tags: [
  1576. "anthro",
  1577. "goo"
  1578. ]
  1579. },
  1580. {
  1581. back: {
  1582. height: math.unit(2.2428, "meter"),
  1583. weight: math.unit(124.738, "kg"),
  1584. name: "Back",
  1585. image: {
  1586. source: "./media/characters/fen/back.svg",
  1587. extra: 2024 / 1867,
  1588. bottom: 13 / 2037
  1589. },
  1590. info: {
  1591. description: {
  1592. mode: "append",
  1593. text: "\n\nHe is not currently looking at you."
  1594. }
  1595. }
  1596. },
  1597. full: {
  1598. height: math.unit(1.34, "meter"),
  1599. weight: math.unit(225, "kg"),
  1600. name: "Full",
  1601. image: {
  1602. source: "./media/characters/fen/full.svg"
  1603. },
  1604. info: {
  1605. description: {
  1606. mode: "append",
  1607. text: "\n\nMunch."
  1608. }
  1609. }
  1610. },
  1611. kneeling: {
  1612. height: math.unit(5.4, "feet"),
  1613. weight: math.unit(124.738, "kg"),
  1614. name: "Kneeling",
  1615. image: {
  1616. source: "./media/characters/fen/kneeling.svg",
  1617. extra: 563 / 507
  1618. }
  1619. },
  1620. goo: {
  1621. height: math.unit(2.8, "feet"),
  1622. weight: math.unit(125, "kg"),
  1623. capacity: math.unit(1, "people"),
  1624. name: "Goo",
  1625. image: {
  1626. source: "./media/characters/fen/goo.svg",
  1627. bottom: 116 / 613
  1628. }
  1629. },
  1630. lounging: {
  1631. height: math.unit(6.5, "feet"),
  1632. weight: math.unit(125, "kg"),
  1633. name: "Lounging",
  1634. image: {
  1635. source: "./media/characters/fen/lounging.svg"
  1636. }
  1637. },
  1638. },
  1639. [
  1640. {
  1641. name: "Normal",
  1642. height: math.unit(2.2428, "meter")
  1643. },
  1644. {
  1645. name: "Big",
  1646. height: math.unit(12, "feet")
  1647. },
  1648. {
  1649. name: "Minimacro",
  1650. height: math.unit(40, "feet"),
  1651. default: true,
  1652. info: {
  1653. description: {
  1654. mode: "append",
  1655. text: "\n\nTOO DAMN BIG"
  1656. }
  1657. }
  1658. },
  1659. {
  1660. name: "Macro",
  1661. height: math.unit(100, "feet"),
  1662. info: {
  1663. description: {
  1664. mode: "append",
  1665. text: "\n\nTOO DAMN BIG"
  1666. }
  1667. }
  1668. },
  1669. {
  1670. name: "Macro+",
  1671. height: math.unit(300, "feet")
  1672. },
  1673. {
  1674. name: "Megamacro",
  1675. height: math.unit(2, "miles")
  1676. }
  1677. ]
  1678. ))
  1679. characterMakers.push(() => makeCharacter(
  1680. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1681. {
  1682. front: {
  1683. height: math.unit(183, "cm"),
  1684. weight: math.unit(80, "kg"),
  1685. name: "Front",
  1686. image: {
  1687. source: "./media/characters/sofia-fluttertail/front.svg",
  1688. bottom: 0.01,
  1689. extra: 2154 / 2081
  1690. }
  1691. },
  1692. frontAlt: {
  1693. height: math.unit(183, "cm"),
  1694. weight: math.unit(80, "kg"),
  1695. name: "Front (alt)",
  1696. image: {
  1697. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1698. }
  1699. },
  1700. back: {
  1701. height: math.unit(183, "cm"),
  1702. weight: math.unit(80, "kg"),
  1703. name: "Back",
  1704. image: {
  1705. source: "./media/characters/sofia-fluttertail/back.svg"
  1706. }
  1707. },
  1708. kneeling: {
  1709. height: math.unit(125, "cm"),
  1710. weight: math.unit(80, "kg"),
  1711. name: "Kneeling",
  1712. image: {
  1713. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1714. extra: 1033 / 977,
  1715. bottom: 23.7 / 1057
  1716. }
  1717. },
  1718. maw: {
  1719. height: math.unit(183 / 5, "cm"),
  1720. name: "Maw",
  1721. image: {
  1722. source: "./media/characters/sofia-fluttertail/maw.svg"
  1723. }
  1724. },
  1725. mawcloseup: {
  1726. height: math.unit(183 / 5 * 0.41, "cm"),
  1727. name: "Maw (Closeup)",
  1728. image: {
  1729. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1730. }
  1731. },
  1732. paws: {
  1733. height: math.unit(1.17, "feet"),
  1734. name: "Paws",
  1735. image: {
  1736. source: "./media/characters/sofia-fluttertail/paws.svg",
  1737. extra: 851 / 851,
  1738. bottom: 17 / 868
  1739. }
  1740. },
  1741. },
  1742. [
  1743. {
  1744. name: "Normal",
  1745. height: math.unit(1.83, "meter")
  1746. },
  1747. {
  1748. name: "Size Thief",
  1749. height: math.unit(18, "feet")
  1750. },
  1751. {
  1752. name: "50 Foot Collie",
  1753. height: math.unit(50, "feet")
  1754. },
  1755. {
  1756. name: "Macro",
  1757. height: math.unit(96, "feet"),
  1758. default: true
  1759. },
  1760. {
  1761. name: "Megamerger",
  1762. height: math.unit(650, "feet")
  1763. },
  1764. ]
  1765. ))
  1766. characterMakers.push(() => makeCharacter(
  1767. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1768. {
  1769. front: {
  1770. height: math.unit(7, "feet"),
  1771. weight: math.unit(100, "kg"),
  1772. name: "Front",
  1773. image: {
  1774. source: "./media/characters/march/front.svg",
  1775. extra: 1,
  1776. bottom: 0.015
  1777. }
  1778. },
  1779. foot: {
  1780. height: math.unit(0.9, "feet"),
  1781. name: "Foot",
  1782. image: {
  1783. source: "./media/characters/march/foot.svg"
  1784. }
  1785. },
  1786. },
  1787. [
  1788. {
  1789. name: "Normal",
  1790. height: math.unit(7.9, "feet")
  1791. },
  1792. {
  1793. name: "Macro",
  1794. height: math.unit(220, "meters")
  1795. },
  1796. {
  1797. name: "Megamacro",
  1798. height: math.unit(2.98, "km"),
  1799. default: true
  1800. },
  1801. {
  1802. name: "Gigamacro",
  1803. height: math.unit(15963, "km")
  1804. },
  1805. {
  1806. name: "Teramacro",
  1807. height: math.unit(2980000000, "km")
  1808. },
  1809. {
  1810. name: "Examacro",
  1811. height: math.unit(250, "parsecs")
  1812. },
  1813. ]
  1814. ))
  1815. characterMakers.push(() => makeCharacter(
  1816. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1817. {
  1818. front: {
  1819. height: math.unit(6, "feet"),
  1820. weight: math.unit(60, "kg"),
  1821. name: "Front",
  1822. image: {
  1823. source: "./media/characters/noir/front.svg",
  1824. extra: 1,
  1825. bottom: 0.032
  1826. }
  1827. },
  1828. },
  1829. [
  1830. {
  1831. name: "Normal",
  1832. height: math.unit(6.6, "feet")
  1833. },
  1834. {
  1835. name: "Macro",
  1836. height: math.unit(500, "feet")
  1837. },
  1838. {
  1839. name: "Megamacro",
  1840. height: math.unit(2.5, "km"),
  1841. default: true
  1842. },
  1843. {
  1844. name: "Gigamacro",
  1845. height: math.unit(22500, "km")
  1846. },
  1847. {
  1848. name: "Teramacro",
  1849. height: math.unit(2500000000, "km")
  1850. },
  1851. {
  1852. name: "Examacro",
  1853. height: math.unit(200, "parsecs")
  1854. },
  1855. ]
  1856. ))
  1857. characterMakers.push(() => makeCharacter(
  1858. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1859. {
  1860. front: {
  1861. height: math.unit(7, "feet"),
  1862. weight: math.unit(100, "kg"),
  1863. name: "Front",
  1864. image: {
  1865. source: "./media/characters/okuri/front.svg",
  1866. extra: 1,
  1867. bottom: 0.037
  1868. }
  1869. },
  1870. back: {
  1871. height: math.unit(7, "feet"),
  1872. weight: math.unit(100, "kg"),
  1873. name: "Back",
  1874. image: {
  1875. source: "./media/characters/okuri/back.svg",
  1876. extra: 1,
  1877. bottom: 0.007
  1878. }
  1879. },
  1880. },
  1881. [
  1882. {
  1883. name: "Megamacro",
  1884. height: math.unit(100, "miles"),
  1885. default: true
  1886. },
  1887. ]
  1888. ))
  1889. characterMakers.push(() => makeCharacter(
  1890. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1891. {
  1892. front: {
  1893. height: math.unit(7, "feet"),
  1894. weight: math.unit(100, "kg"),
  1895. name: "Front",
  1896. image: {
  1897. source: "./media/characters/manny/front.svg",
  1898. extra: 1,
  1899. bottom: 0.06
  1900. }
  1901. },
  1902. back: {
  1903. height: math.unit(7, "feet"),
  1904. weight: math.unit(100, "kg"),
  1905. name: "Back",
  1906. image: {
  1907. source: "./media/characters/manny/back.svg",
  1908. extra: 1,
  1909. bottom: 0.014
  1910. }
  1911. },
  1912. },
  1913. [
  1914. {
  1915. name: "Normal",
  1916. height: math.unit(7, "feet"),
  1917. },
  1918. {
  1919. name: "Macro",
  1920. height: math.unit(78, "feet"),
  1921. default: true
  1922. },
  1923. {
  1924. name: "Macro+",
  1925. height: math.unit(300, "meters")
  1926. },
  1927. {
  1928. name: "Macro++",
  1929. height: math.unit(2400, "meters")
  1930. },
  1931. {
  1932. name: "Megamacro",
  1933. height: math.unit(5167, "meters")
  1934. },
  1935. {
  1936. name: "Gigamacro",
  1937. height: math.unit(41769, "miles")
  1938. },
  1939. ]
  1940. ))
  1941. characterMakers.push(() => makeCharacter(
  1942. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1943. {
  1944. front: {
  1945. height: math.unit(7, "feet"),
  1946. weight: math.unit(100, "kg"),
  1947. name: "Front",
  1948. image: {
  1949. source: "./media/characters/adake/front-1.svg"
  1950. }
  1951. },
  1952. frontAlt: {
  1953. height: math.unit(7, "feet"),
  1954. weight: math.unit(100, "kg"),
  1955. name: "Front (Alt)",
  1956. image: {
  1957. source: "./media/characters/adake/front-2.svg",
  1958. extra: 1,
  1959. bottom: 0.01
  1960. }
  1961. },
  1962. back: {
  1963. height: math.unit(7, "feet"),
  1964. weight: math.unit(100, "kg"),
  1965. name: "Back",
  1966. image: {
  1967. source: "./media/characters/adake/back.svg",
  1968. }
  1969. },
  1970. kneel: {
  1971. height: math.unit(5.385, "feet"),
  1972. weight: math.unit(100, "kg"),
  1973. name: "Kneeling",
  1974. image: {
  1975. source: "./media/characters/adake/kneel.svg",
  1976. bottom: 0.052
  1977. }
  1978. },
  1979. },
  1980. [
  1981. {
  1982. name: "Normal",
  1983. height: math.unit(7, "feet"),
  1984. },
  1985. {
  1986. name: "Macro",
  1987. height: math.unit(78, "feet"),
  1988. default: true
  1989. },
  1990. {
  1991. name: "Macro+",
  1992. height: math.unit(300, "meters")
  1993. },
  1994. {
  1995. name: "Macro++",
  1996. height: math.unit(2400, "meters")
  1997. },
  1998. {
  1999. name: "Megamacro",
  2000. height: math.unit(5167, "meters")
  2001. },
  2002. {
  2003. name: "Gigamacro",
  2004. height: math.unit(41769, "miles")
  2005. },
  2006. ]
  2007. ))
  2008. characterMakers.push(() => makeCharacter(
  2009. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2010. {
  2011. front: {
  2012. height: math.unit(1.65, "meters"),
  2013. weight: math.unit(50, "kg"),
  2014. name: "Front",
  2015. image: {
  2016. source: "./media/characters/elijah/front.svg",
  2017. extra: 858 / 830,
  2018. bottom: 95.5 / 953.8559
  2019. }
  2020. },
  2021. back: {
  2022. height: math.unit(1.65, "meters"),
  2023. weight: math.unit(50, "kg"),
  2024. name: "Back",
  2025. image: {
  2026. source: "./media/characters/elijah/back.svg",
  2027. extra: 895 / 850,
  2028. bottom: 5.3 / 897.956
  2029. }
  2030. },
  2031. frontNsfw: {
  2032. height: math.unit(1.65, "meters"),
  2033. weight: math.unit(50, "kg"),
  2034. name: "Front (NSFW)",
  2035. image: {
  2036. source: "./media/characters/elijah/front-nsfw.svg",
  2037. extra: 858 / 830,
  2038. bottom: 95.5 / 953.8559
  2039. }
  2040. },
  2041. backNsfw: {
  2042. height: math.unit(1.65, "meters"),
  2043. weight: math.unit(50, "kg"),
  2044. name: "Back (NSFW)",
  2045. image: {
  2046. source: "./media/characters/elijah/back-nsfw.svg",
  2047. extra: 895 / 850,
  2048. bottom: 5.3 / 897.956
  2049. }
  2050. },
  2051. dick: {
  2052. height: math.unit(1, "feet"),
  2053. name: "Dick",
  2054. image: {
  2055. source: "./media/characters/elijah/dick.svg"
  2056. }
  2057. },
  2058. beakOpen: {
  2059. height: math.unit(1.25, "feet"),
  2060. name: "Beak (Open)",
  2061. image: {
  2062. source: "./media/characters/elijah/beak-open.svg"
  2063. }
  2064. },
  2065. beakShut: {
  2066. height: math.unit(1.25, "feet"),
  2067. name: "Beak (Shut)",
  2068. image: {
  2069. source: "./media/characters/elijah/beak-shut.svg"
  2070. }
  2071. },
  2072. footFlexing: {
  2073. height: math.unit(1.61, "feet"),
  2074. name: "Foot (Flexing)",
  2075. image: {
  2076. source: "./media/characters/elijah/foot-flexing.svg"
  2077. }
  2078. },
  2079. footStepping: {
  2080. height: math.unit(1.44, "feet"),
  2081. name: "Foot (Stepping)",
  2082. image: {
  2083. source: "./media/characters/elijah/foot-stepping.svg"
  2084. }
  2085. },
  2086. plantigradeLeg: {
  2087. height: math.unit(2.34, "feet"),
  2088. name: "Plantigrade Leg",
  2089. image: {
  2090. source: "./media/characters/elijah/plantigrade-leg.svg"
  2091. }
  2092. },
  2093. plantigradeFootLeft: {
  2094. height: math.unit(0.9, "feet"),
  2095. name: "Plantigrade Foot (Left)",
  2096. image: {
  2097. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2098. }
  2099. },
  2100. plantigradeFootRight: {
  2101. height: math.unit(0.9, "feet"),
  2102. name: "Plantigrade Foot (Right)",
  2103. image: {
  2104. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2105. }
  2106. },
  2107. },
  2108. [
  2109. {
  2110. name: "Normal",
  2111. height: math.unit(1.65, "meters")
  2112. },
  2113. {
  2114. name: "Macro",
  2115. height: math.unit(55, "meters"),
  2116. default: true
  2117. },
  2118. {
  2119. name: "Macro+",
  2120. height: math.unit(105, "meters")
  2121. },
  2122. ]
  2123. ))
  2124. characterMakers.push(() => makeCharacter(
  2125. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2126. {
  2127. front: {
  2128. height: math.unit(11, "feet"),
  2129. weight: math.unit(80, "kg"),
  2130. name: "Front",
  2131. image: {
  2132. source: "./media/characters/rai/front.svg",
  2133. extra: 1,
  2134. bottom: 0.03
  2135. }
  2136. },
  2137. side: {
  2138. height: math.unit(11, "feet"),
  2139. weight: math.unit(80, "kg"),
  2140. name: "Side",
  2141. image: {
  2142. source: "./media/characters/rai/side.svg"
  2143. }
  2144. },
  2145. back: {
  2146. height: math.unit(11, "feet"),
  2147. weight: math.unit(80, "lb"),
  2148. name: "Back",
  2149. image: {
  2150. source: "./media/characters/rai/back.svg",
  2151. extra: 1,
  2152. bottom: 0.01
  2153. }
  2154. },
  2155. feral: {
  2156. height: math.unit(11, "feet"),
  2157. weight: math.unit(800, "lb"),
  2158. name: "Feral",
  2159. image: {
  2160. source: "./media/characters/rai/feral.svg",
  2161. extra: 1050 / 659,
  2162. bottom: 0.07
  2163. }
  2164. },
  2165. dragon: {
  2166. height: math.unit(23, "feet"),
  2167. weight: math.unit(50000, "lb"),
  2168. name: "Dragon",
  2169. image: {
  2170. source: "./media/characters/rai/dragon.svg",
  2171. extra: 2498 / 2030,
  2172. bottom: 85.2 / 2584
  2173. }
  2174. },
  2175. maw: {
  2176. height: math.unit(6 / 3.81416, "feet"),
  2177. name: "Maw",
  2178. image: {
  2179. source: "./media/characters/rai/maw.svg"
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(11, "feet")
  2187. },
  2188. {
  2189. name: "Macro",
  2190. height: math.unit(302, "feet"),
  2191. default: true
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2197. {
  2198. frontDressed: {
  2199. height: math.unit(216, "feet"),
  2200. weight: math.unit(7000000, "lb"),
  2201. name: "Front (Dressed)",
  2202. image: {
  2203. source: "./media/characters/jazzy/front-dressed.svg",
  2204. extra: 2738 / 2651,
  2205. bottom: 41.8 / 2786
  2206. }
  2207. },
  2208. backDressed: {
  2209. height: math.unit(216, "feet"),
  2210. weight: math.unit(7000000, "lb"),
  2211. name: "Back (Dressed)",
  2212. image: {
  2213. source: "./media/characters/jazzy/back-dressed.svg",
  2214. extra: 2775 / 2673,
  2215. bottom: 36.8 / 2817
  2216. }
  2217. },
  2218. front: {
  2219. height: math.unit(216, "feet"),
  2220. weight: math.unit(7000000, "lb"),
  2221. name: "Front",
  2222. image: {
  2223. source: "./media/characters/jazzy/front.svg",
  2224. extra: 2738 / 2651,
  2225. bottom: 41.8 / 2786
  2226. }
  2227. },
  2228. back: {
  2229. height: math.unit(216, "feet"),
  2230. weight: math.unit(7000000, "lb"),
  2231. name: "Back",
  2232. image: {
  2233. source: "./media/characters/jazzy/back.svg",
  2234. extra: 2775 / 2673,
  2235. bottom: 36.8 / 2817
  2236. }
  2237. },
  2238. maw: {
  2239. height: math.unit(20, "feet"),
  2240. name: "Maw",
  2241. image: {
  2242. source: "./media/characters/jazzy/maw.svg"
  2243. }
  2244. },
  2245. paws: {
  2246. height: math.unit(27.5, "feet"),
  2247. name: "Paws",
  2248. image: {
  2249. source: "./media/characters/jazzy/paws.svg"
  2250. }
  2251. },
  2252. eye: {
  2253. height: math.unit(4.4, "feet"),
  2254. name: "Eye",
  2255. image: {
  2256. source: "./media/characters/jazzy/eye.svg"
  2257. }
  2258. },
  2259. droneOffense: {
  2260. height: math.unit(9.5, "inches"),
  2261. name: "Drone (Offense)",
  2262. image: {
  2263. source: "./media/characters/jazzy/drone-offense.svg"
  2264. }
  2265. },
  2266. droneRecon: {
  2267. height: math.unit(9.5, "inches"),
  2268. name: "Drone (Recon)",
  2269. image: {
  2270. source: "./media/characters/jazzy/drone-recon.svg"
  2271. }
  2272. },
  2273. droneDefense: {
  2274. height: math.unit(9.5, "inches"),
  2275. name: "Drone (Defense)",
  2276. image: {
  2277. source: "./media/characters/jazzy/drone-defense.svg"
  2278. }
  2279. },
  2280. },
  2281. [
  2282. {
  2283. name: "Macro",
  2284. height: math.unit(216, "feet"),
  2285. default: true
  2286. },
  2287. ]
  2288. ))
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(7, "feet"),
  2294. weight: math.unit(80, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/flamm/front.svg",
  2298. extra: 1794 / 1677,
  2299. bottom: 31.7 / 1828.5
  2300. }
  2301. },
  2302. },
  2303. [
  2304. {
  2305. name: "Normal",
  2306. height: math.unit(9.5, "feet")
  2307. },
  2308. {
  2309. name: "Macro",
  2310. height: math.unit(200, "feet"),
  2311. default: true
  2312. },
  2313. ]
  2314. ))
  2315. characterMakers.push(() => makeCharacter(
  2316. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2317. {
  2318. front: {
  2319. height: math.unit(5 + 3/12, "feet"),
  2320. weight: math.unit(60, "kg"),
  2321. name: "Front",
  2322. image: {
  2323. source: "./media/characters/zephiro/front.svg",
  2324. extra: 2309 / 2162,
  2325. bottom: 0.069
  2326. }
  2327. },
  2328. side: {
  2329. height: math.unit(5 + 3/12, "feet"),
  2330. weight: math.unit(60, "kg"),
  2331. name: "Side",
  2332. image: {
  2333. source: "./media/characters/zephiro/side.svg",
  2334. extra: 2403 / 2279,
  2335. bottom: 0.015
  2336. }
  2337. },
  2338. back: {
  2339. height: math.unit(5 + 3/12, "feet"),
  2340. weight: math.unit(60, "kg"),
  2341. name: "Back",
  2342. image: {
  2343. source: "./media/characters/zephiro/back.svg",
  2344. extra: 2373 / 2244,
  2345. bottom: 0.013
  2346. }
  2347. },
  2348. hand: {
  2349. height: math.unit(0.68, "feet"),
  2350. name: "Hand",
  2351. image: {
  2352. source: "./media/characters/zephiro/hand.svg"
  2353. }
  2354. },
  2355. paw: {
  2356. height: math.unit(1, "feet"),
  2357. name: "Paw",
  2358. image: {
  2359. source: "./media/characters/zephiro/paw.svg"
  2360. }
  2361. },
  2362. beans: {
  2363. height: math.unit(0.93, "feet"),
  2364. name: "Beans",
  2365. image: {
  2366. source: "./media/characters/zephiro/beans.svg"
  2367. }
  2368. },
  2369. },
  2370. [
  2371. {
  2372. name: "Micro",
  2373. height: math.unit(3, "inches")
  2374. },
  2375. {
  2376. name: "Normal",
  2377. height: math.unit(5 + 3 / 12, "feet"),
  2378. default: true
  2379. },
  2380. {
  2381. name: "Macro",
  2382. height: math.unit(118, "feet")
  2383. },
  2384. ]
  2385. ))
  2386. characterMakers.push(() => makeCharacter(
  2387. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2388. {
  2389. front: {
  2390. height: math.unit(5, "feet"),
  2391. weight: math.unit(90, "kg"),
  2392. name: "Front",
  2393. image: {
  2394. source: "./media/characters/fory/front.svg",
  2395. extra: 2862 / 2674,
  2396. bottom: 180 / 3043.8
  2397. }
  2398. },
  2399. back: {
  2400. height: math.unit(5, "feet"),
  2401. weight: math.unit(90, "kg"),
  2402. name: "Back",
  2403. image: {
  2404. source: "./media/characters/fory/back.svg",
  2405. extra: 2962 / 2791,
  2406. bottom: 106 / 3071.8
  2407. }
  2408. },
  2409. foot: {
  2410. height: math.unit(2.14, "feet"),
  2411. name: "Foot",
  2412. image: {
  2413. source: "./media/characters/fory/foot.svg"
  2414. }
  2415. },
  2416. },
  2417. [
  2418. {
  2419. name: "Normal",
  2420. height: math.unit(5, "feet")
  2421. },
  2422. {
  2423. name: "Macro",
  2424. height: math.unit(50, "feet"),
  2425. default: true
  2426. },
  2427. {
  2428. name: "Megamacro",
  2429. height: math.unit(10, "miles")
  2430. },
  2431. {
  2432. name: "Gigamacro",
  2433. height: math.unit(5, "earths")
  2434. },
  2435. ]
  2436. ))
  2437. characterMakers.push(() => makeCharacter(
  2438. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2439. {
  2440. front: {
  2441. height: math.unit(7, "feet"),
  2442. weight: math.unit(90, "kg"),
  2443. name: "Front",
  2444. image: {
  2445. source: "./media/characters/kurrikage/front.svg",
  2446. extra: 1,
  2447. bottom: 0.035
  2448. }
  2449. },
  2450. back: {
  2451. height: math.unit(7, "feet"),
  2452. weight: math.unit(90, "lb"),
  2453. name: "Back",
  2454. image: {
  2455. source: "./media/characters/kurrikage/back.svg"
  2456. }
  2457. },
  2458. paw: {
  2459. height: math.unit(1.5, "feet"),
  2460. name: "Paw",
  2461. image: {
  2462. source: "./media/characters/kurrikage/paw.svg"
  2463. }
  2464. },
  2465. staff: {
  2466. height: math.unit(6.7, "feet"),
  2467. name: "Staff",
  2468. image: {
  2469. source: "./media/characters/kurrikage/staff.svg"
  2470. }
  2471. },
  2472. peek: {
  2473. height: math.unit(1.05, "feet"),
  2474. name: "Peeking",
  2475. image: {
  2476. source: "./media/characters/kurrikage/peek.svg",
  2477. bottom: 0.08
  2478. }
  2479. },
  2480. },
  2481. [
  2482. {
  2483. name: "Normal",
  2484. height: math.unit(12, "feet"),
  2485. default: true
  2486. },
  2487. {
  2488. name: "Big",
  2489. height: math.unit(20, "feet")
  2490. },
  2491. {
  2492. name: "Macro",
  2493. height: math.unit(500, "feet")
  2494. },
  2495. {
  2496. name: "Megamacro",
  2497. height: math.unit(20, "miles")
  2498. },
  2499. ]
  2500. ))
  2501. characterMakers.push(() => makeCharacter(
  2502. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2503. {
  2504. front: {
  2505. height: math.unit(6, "feet"),
  2506. weight: math.unit(75, "kg"),
  2507. name: "Front",
  2508. image: {
  2509. source: "./media/characters/shingo/front.svg",
  2510. extra: 706/681,
  2511. bottom: 11/717
  2512. }
  2513. },
  2514. frontAlt: {
  2515. height: math.unit(6, "feet"),
  2516. weight: math.unit(75, "kg"),
  2517. name: "Front (Alt)",
  2518. image: {
  2519. source: "./media/characters/shingo/front-alt.svg",
  2520. extra: 3511 / 3338,
  2521. bottom: 0.005
  2522. }
  2523. },
  2524. paw: {
  2525. height: math.unit(1, "feet"),
  2526. name: "Paw",
  2527. image: {
  2528. source: "./media/characters/shingo/paw.svg"
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Micro",
  2535. height: math.unit(4, "inches")
  2536. },
  2537. {
  2538. name: "Normal",
  2539. height: math.unit(6, "feet"),
  2540. default: true
  2541. },
  2542. {
  2543. name: "Macro",
  2544. height: math.unit(108, "feet")
  2545. },
  2546. {
  2547. name: "Macro+",
  2548. height: math.unit(1500, "feet")
  2549. },
  2550. ]
  2551. ))
  2552. characterMakers.push(() => makeCharacter(
  2553. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2554. {
  2555. side: {
  2556. height: math.unit(6, "feet"),
  2557. weight: math.unit(75, "kg"),
  2558. name: "Side",
  2559. image: {
  2560. source: "./media/characters/aigey/side.svg"
  2561. }
  2562. },
  2563. },
  2564. [
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(200, "feet"),
  2568. default: true
  2569. },
  2570. {
  2571. name: "Megamacro",
  2572. height: math.unit(100, "miles")
  2573. },
  2574. ]
  2575. )
  2576. )
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2579. {
  2580. front: {
  2581. height: math.unit(5 + 5 / 12, "feet"),
  2582. weight: math.unit(75, "kg"),
  2583. name: "Front",
  2584. image: {
  2585. source: "./media/characters/natasha/front.svg",
  2586. extra: 859 / 824,
  2587. bottom: 23 / 879.6
  2588. }
  2589. },
  2590. frontNsfw: {
  2591. height: math.unit(5 + 5 / 12, "feet"),
  2592. weight: math.unit(75, "kg"),
  2593. name: "Front (NSFW)",
  2594. image: {
  2595. source: "./media/characters/natasha/front-nsfw.svg",
  2596. extra: 859 / 824,
  2597. bottom: 23 / 879.6
  2598. }
  2599. },
  2600. frontErect: {
  2601. height: math.unit(5 + 5 / 12, "feet"),
  2602. weight: math.unit(75, "kg"),
  2603. name: "Front (Erect)",
  2604. image: {
  2605. source: "./media/characters/natasha/front-erect.svg",
  2606. extra: 859 / 824,
  2607. bottom: 23 / 879.6
  2608. }
  2609. },
  2610. back: {
  2611. height: math.unit(5 + 5 / 12, "feet"),
  2612. weight: math.unit(75, "kg"),
  2613. name: "Back",
  2614. image: {
  2615. source: "./media/characters/natasha/back.svg",
  2616. extra: 887.9 / 852.6,
  2617. bottom: 9.7 / 896.4
  2618. }
  2619. },
  2620. backAlt: {
  2621. height: math.unit(5 + 5 / 12, "feet"),
  2622. weight: math.unit(75, "kg"),
  2623. name: "Back (Alt)",
  2624. image: {
  2625. source: "./media/characters/natasha/back-alt.svg",
  2626. extra: 1236.7 / 1192,
  2627. bottom: 22.3 / 1258.2
  2628. }
  2629. },
  2630. dick: {
  2631. height: math.unit(1.772, "feet"),
  2632. name: "Dick",
  2633. image: {
  2634. source: "./media/characters/natasha/dick.svg"
  2635. }
  2636. },
  2637. paw: {
  2638. height: math.unit(0.250, "meters"),
  2639. name: "Paw",
  2640. image: {
  2641. source: "./media/characters/natasha/paw.svg"
  2642. }
  2643. },
  2644. },
  2645. [
  2646. {
  2647. name: "Normal",
  2648. height: math.unit(5 + 5 / 12, "feet")
  2649. },
  2650. {
  2651. name: "Large",
  2652. height: math.unit(12, "feet")
  2653. },
  2654. {
  2655. name: "Macro",
  2656. height: math.unit(100, "feet"),
  2657. default: true
  2658. },
  2659. {
  2660. name: "Macro+",
  2661. height: math.unit(260, "feet")
  2662. },
  2663. {
  2664. name: "Macro++",
  2665. height: math.unit(1, "mile")
  2666. },
  2667. ]
  2668. ))
  2669. characterMakers.push(() => makeCharacter(
  2670. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2671. {
  2672. front: {
  2673. height: math.unit(6, "feet"),
  2674. weight: math.unit(75, "kg"),
  2675. name: "Front",
  2676. image: {
  2677. source: "./media/characters/malik/front.svg"
  2678. }
  2679. },
  2680. side: {
  2681. height: math.unit(6, "feet"),
  2682. weight: math.unit(75, "kg"),
  2683. name: "Side",
  2684. image: {
  2685. source: "./media/characters/malik/side.svg",
  2686. extra: 1.1539
  2687. }
  2688. },
  2689. back: {
  2690. height: math.unit(6, "feet"),
  2691. weight: math.unit(75, "kg"),
  2692. name: "Back",
  2693. image: {
  2694. source: "./media/characters/malik/back.svg"
  2695. }
  2696. },
  2697. },
  2698. [
  2699. {
  2700. name: "Macro",
  2701. height: math.unit(156, "feet"),
  2702. default: true
  2703. },
  2704. {
  2705. name: "Macro+",
  2706. height: math.unit(1188, "feet")
  2707. },
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(6, "feet"),
  2715. weight: math.unit(75, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/sefer/front.svg",
  2719. extra: 848 / 659,
  2720. bottom: 28.3 / 876.442
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(6, "feet"),
  2725. weight: math.unit(75, "kg"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/sefer/back.svg",
  2729. extra: 864 / 695,
  2730. bottom: 10 / 871
  2731. }
  2732. },
  2733. frontDressed: {
  2734. height: math.unit(6, "feet"),
  2735. weight: math.unit(75, "kg"),
  2736. name: "Front (Dressed)",
  2737. image: {
  2738. source: "./media/characters/sefer/front-dressed.svg",
  2739. extra: 839 / 653,
  2740. bottom: 37.6 / 878
  2741. }
  2742. },
  2743. },
  2744. [
  2745. {
  2746. name: "Normal",
  2747. height: math.unit(6, "feet"),
  2748. default: true
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2754. {
  2755. body: {
  2756. height: math.unit(2.2428, "meter"),
  2757. weight: math.unit(124.738, "kg"),
  2758. name: "Body",
  2759. image: {
  2760. extra: 1225 / 1050,
  2761. source: "./media/characters/north/front.svg"
  2762. }
  2763. }
  2764. },
  2765. [
  2766. {
  2767. name: "Micro",
  2768. height: math.unit(4, "inches")
  2769. },
  2770. {
  2771. name: "Macro",
  2772. height: math.unit(63, "meters")
  2773. },
  2774. {
  2775. name: "Megamacro",
  2776. height: math.unit(101, "miles"),
  2777. default: true
  2778. }
  2779. ]
  2780. ))
  2781. characterMakers.push(() => makeCharacter(
  2782. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2783. {
  2784. angled: {
  2785. height: math.unit(4, "meter"),
  2786. weight: math.unit(150, "kg"),
  2787. name: "Angled",
  2788. image: {
  2789. source: "./media/characters/talan/angled-sfw.svg",
  2790. bottom: 29 / 3734
  2791. }
  2792. },
  2793. angledNsfw: {
  2794. height: math.unit(4, "meter"),
  2795. weight: math.unit(150, "kg"),
  2796. name: "Angled (NSFW)",
  2797. image: {
  2798. source: "./media/characters/talan/angled-nsfw.svg",
  2799. bottom: 29 / 3734
  2800. }
  2801. },
  2802. frontNsfw: {
  2803. height: math.unit(4, "meter"),
  2804. weight: math.unit(150, "kg"),
  2805. name: "Front (NSFW)",
  2806. image: {
  2807. source: "./media/characters/talan/front-nsfw.svg",
  2808. bottom: 29 / 3734
  2809. }
  2810. },
  2811. sideNsfw: {
  2812. height: math.unit(4, "meter"),
  2813. weight: math.unit(150, "kg"),
  2814. name: "Side (NSFW)",
  2815. image: {
  2816. source: "./media/characters/talan/side-nsfw.svg",
  2817. bottom: 29 / 3734
  2818. }
  2819. },
  2820. back: {
  2821. height: math.unit(4, "meter"),
  2822. weight: math.unit(150, "kg"),
  2823. name: "Back",
  2824. image: {
  2825. source: "./media/characters/talan/back.svg"
  2826. }
  2827. },
  2828. dickBottom: {
  2829. height: math.unit(0.621, "meter"),
  2830. name: "Dick (Bottom)",
  2831. image: {
  2832. source: "./media/characters/talan/dick-bottom.svg"
  2833. }
  2834. },
  2835. dickTop: {
  2836. height: math.unit(0.621, "meter"),
  2837. name: "Dick (Top)",
  2838. image: {
  2839. source: "./media/characters/talan/dick-top.svg"
  2840. }
  2841. },
  2842. dickSide: {
  2843. height: math.unit(0.305, "meter"),
  2844. name: "Dick (Side)",
  2845. image: {
  2846. source: "./media/characters/talan/dick-side.svg"
  2847. }
  2848. },
  2849. dickFront: {
  2850. height: math.unit(0.305, "meter"),
  2851. name: "Dick (Front)",
  2852. image: {
  2853. source: "./media/characters/talan/dick-front.svg"
  2854. }
  2855. },
  2856. },
  2857. [
  2858. {
  2859. name: "Normal",
  2860. height: math.unit(4, "meters")
  2861. },
  2862. {
  2863. name: "Macro",
  2864. height: math.unit(100, "meters")
  2865. },
  2866. {
  2867. name: "Megamacro",
  2868. height: math.unit(2, "miles"),
  2869. default: true
  2870. },
  2871. {
  2872. name: "Gigamacro",
  2873. height: math.unit(5000, "miles")
  2874. },
  2875. {
  2876. name: "Teramacro",
  2877. height: math.unit(100, "parsecs")
  2878. }
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2883. {
  2884. front: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(90, "kg"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/gael'rathus/front.svg"
  2890. }
  2891. },
  2892. frontAlt: {
  2893. height: math.unit(2, "meter"),
  2894. weight: math.unit(90, "kg"),
  2895. name: "Front (alt)",
  2896. image: {
  2897. source: "./media/characters/gael'rathus/front-alt.svg"
  2898. }
  2899. },
  2900. frontAlt2: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(90, "kg"),
  2903. name: "Front (alt 2)",
  2904. image: {
  2905. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2906. }
  2907. }
  2908. },
  2909. [
  2910. {
  2911. name: "Normal",
  2912. height: math.unit(9, "feet"),
  2913. default: true
  2914. },
  2915. {
  2916. name: "Large",
  2917. height: math.unit(25, "feet")
  2918. },
  2919. {
  2920. name: "Macro",
  2921. height: math.unit(0.25, "miles")
  2922. },
  2923. {
  2924. name: "Megamacro",
  2925. height: math.unit(10, "miles")
  2926. }
  2927. ]
  2928. ))
  2929. characterMakers.push(() => makeCharacter(
  2930. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2931. {
  2932. side: {
  2933. height: math.unit(2, "meter"),
  2934. weight: math.unit(140, "kg"),
  2935. name: "Side",
  2936. image: {
  2937. source: "./media/characters/sosha/side.svg",
  2938. bottom: 0.042
  2939. }
  2940. },
  2941. },
  2942. [
  2943. {
  2944. name: "Normal",
  2945. height: math.unit(12, "feet"),
  2946. default: true
  2947. }
  2948. ]
  2949. ))
  2950. characterMakers.push(() => makeCharacter(
  2951. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2952. {
  2953. side: {
  2954. height: math.unit(5 + 5 / 12, "feet"),
  2955. weight: math.unit(170, "kg"),
  2956. name: "Side",
  2957. image: {
  2958. source: "./media/characters/runnola/side.svg",
  2959. extra: 741 / 448,
  2960. bottom: 0.05
  2961. }
  2962. },
  2963. },
  2964. [
  2965. {
  2966. name: "Small",
  2967. height: math.unit(3, "feet")
  2968. },
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(5 + 5 / 12, "feet"),
  2972. default: true
  2973. },
  2974. {
  2975. name: "Big",
  2976. height: math.unit(10, "feet")
  2977. },
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(2, "meter"),
  2985. weight: math.unit(50, "kg"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/kurribird/front.svg",
  2989. bottom: 0.015
  2990. }
  2991. },
  2992. frontAlt: {
  2993. height: math.unit(1.5, "meter"),
  2994. weight: math.unit(50, "kg"),
  2995. name: "Front (Alt)",
  2996. image: {
  2997. source: "./media/characters/kurribird/front-alt.svg",
  2998. extra: 1.45
  2999. }
  3000. },
  3001. },
  3002. [
  3003. {
  3004. name: "Normal",
  3005. height: math.unit(7, "feet")
  3006. },
  3007. {
  3008. name: "Big",
  3009. height: math.unit(12, "feet"),
  3010. default: true
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(1500, "feet")
  3015. },
  3016. {
  3017. name: "Megamacro",
  3018. height: math.unit(2, "miles")
  3019. }
  3020. ]
  3021. ))
  3022. characterMakers.push(() => makeCharacter(
  3023. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3024. {
  3025. front: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(80, "kg"),
  3028. name: "Front",
  3029. image: {
  3030. source: "./media/characters/elbial/front.svg",
  3031. extra: 1643 / 1556,
  3032. bottom: 60.2 / 1696
  3033. }
  3034. },
  3035. side: {
  3036. height: math.unit(2, "meter"),
  3037. weight: math.unit(80, "kg"),
  3038. name: "Side",
  3039. image: {
  3040. source: "./media/characters/elbial/side.svg",
  3041. extra: 1630 / 1565,
  3042. bottom: 71.5 / 1697
  3043. }
  3044. },
  3045. back: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(80, "kg"),
  3048. name: "Back",
  3049. image: {
  3050. source: "./media/characters/elbial/back.svg",
  3051. extra: 1668 / 1595,
  3052. bottom: 5.6 / 1672
  3053. }
  3054. },
  3055. frontDressed: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(80, "kg"),
  3058. name: "Front (Dressed)",
  3059. image: {
  3060. source: "./media/characters/elbial/front-dressed.svg",
  3061. extra: 1653 / 1584,
  3062. bottom: 57 / 1708
  3063. }
  3064. },
  3065. genitals: {
  3066. height: math.unit(2 / 3.367, "meter"),
  3067. name: "Genitals",
  3068. image: {
  3069. source: "./media/characters/elbial/genitals.svg"
  3070. }
  3071. },
  3072. },
  3073. [
  3074. {
  3075. name: "Large",
  3076. height: math.unit(100, "feet")
  3077. },
  3078. {
  3079. name: "Macro",
  3080. height: math.unit(500, "feet"),
  3081. default: true
  3082. },
  3083. {
  3084. name: "Megamacro",
  3085. height: math.unit(10, "miles")
  3086. },
  3087. {
  3088. name: "Gigamacro",
  3089. height: math.unit(25000, "miles")
  3090. },
  3091. {
  3092. name: "Full-Size",
  3093. height: math.unit(8000000, "gigaparsecs")
  3094. }
  3095. ]
  3096. ))
  3097. characterMakers.push(() => makeCharacter(
  3098. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3099. {
  3100. front: {
  3101. height: math.unit(2, "meter"),
  3102. weight: math.unit(60, "kg"),
  3103. name: "Front",
  3104. image: {
  3105. source: "./media/characters/noah/front.svg"
  3106. }
  3107. },
  3108. talons: {
  3109. height: math.unit(0.315, "meter"),
  3110. name: "Talons",
  3111. image: {
  3112. source: "./media/characters/noah/talons.svg"
  3113. }
  3114. }
  3115. },
  3116. [
  3117. {
  3118. name: "Large",
  3119. height: math.unit(50, "feet")
  3120. },
  3121. {
  3122. name: "Macro",
  3123. height: math.unit(750, "feet"),
  3124. default: true
  3125. },
  3126. {
  3127. name: "Megamacro",
  3128. height: math.unit(50, "miles")
  3129. },
  3130. {
  3131. name: "Gigamacro",
  3132. height: math.unit(100000, "miles")
  3133. },
  3134. {
  3135. name: "Full-Size",
  3136. height: math.unit(3000000000, "miles")
  3137. }
  3138. ]
  3139. ))
  3140. characterMakers.push(() => makeCharacter(
  3141. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3142. {
  3143. front: {
  3144. height: math.unit(2, "meter"),
  3145. weight: math.unit(80, "kg"),
  3146. name: "Front",
  3147. image: {
  3148. source: "./media/characters/natalya/front.svg"
  3149. }
  3150. },
  3151. back: {
  3152. height: math.unit(2, "meter"),
  3153. weight: math.unit(80, "kg"),
  3154. name: "Back",
  3155. image: {
  3156. source: "./media/characters/natalya/back.svg"
  3157. }
  3158. }
  3159. },
  3160. [
  3161. {
  3162. name: "Normal",
  3163. height: math.unit(150, "feet"),
  3164. default: true
  3165. },
  3166. {
  3167. name: "Megamacro",
  3168. height: math.unit(5, "miles")
  3169. },
  3170. {
  3171. name: "Full-Size",
  3172. height: math.unit(600, "kiloparsecs")
  3173. }
  3174. ]
  3175. ))
  3176. characterMakers.push(() => makeCharacter(
  3177. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3178. {
  3179. front: {
  3180. height: math.unit(2, "meter"),
  3181. weight: math.unit(50, "kg"),
  3182. name: "Front",
  3183. image: {
  3184. source: "./media/characters/erestrebah/front.svg",
  3185. extra: 208 / 193,
  3186. bottom: 0.055
  3187. }
  3188. },
  3189. back: {
  3190. height: math.unit(2, "meter"),
  3191. weight: math.unit(50, "kg"),
  3192. name: "Back",
  3193. image: {
  3194. source: "./media/characters/erestrebah/back.svg",
  3195. extra: 1.3
  3196. }
  3197. }
  3198. },
  3199. [
  3200. {
  3201. name: "Normal",
  3202. height: math.unit(10, "feet")
  3203. },
  3204. {
  3205. name: "Large",
  3206. height: math.unit(50, "feet"),
  3207. default: true
  3208. },
  3209. {
  3210. name: "Macro",
  3211. height: math.unit(300, "feet")
  3212. },
  3213. {
  3214. name: "Macro+",
  3215. height: math.unit(750, "feet")
  3216. },
  3217. {
  3218. name: "Megamacro",
  3219. height: math.unit(3, "miles")
  3220. }
  3221. ]
  3222. ))
  3223. characterMakers.push(() => makeCharacter(
  3224. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3225. {
  3226. front: {
  3227. height: math.unit(2, "meter"),
  3228. weight: math.unit(80, "kg"),
  3229. name: "Front",
  3230. image: {
  3231. source: "./media/characters/jennifer/front.svg",
  3232. bottom: 0.11,
  3233. extra: 1.16
  3234. }
  3235. },
  3236. frontAlt: {
  3237. height: math.unit(2, "meter"),
  3238. weight: math.unit(80, "kg"),
  3239. name: "Front (Alt)",
  3240. image: {
  3241. source: "./media/characters/jennifer/front-alt.svg"
  3242. }
  3243. }
  3244. },
  3245. [
  3246. {
  3247. name: "Canon Height",
  3248. height: math.unit(120, "feet"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Macro+",
  3253. height: math.unit(300, "feet")
  3254. },
  3255. {
  3256. name: "Megamacro",
  3257. height: math.unit(20000, "feet")
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(50, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/kalista/front.svg",
  3270. extra: 1947 / 1700,
  3271. bottom: 76.6 / 1412.98
  3272. }
  3273. },
  3274. back: {
  3275. height: math.unit(2, "meter"),
  3276. weight: math.unit(50, "kg"),
  3277. name: "Back",
  3278. image: {
  3279. source: "./media/characters/kalista/back.svg",
  3280. extra: 1366 / 1156,
  3281. bottom: 33.9 / 1362.78
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Uncomfortably Small",
  3288. height: math.unit(10, "feet")
  3289. },
  3290. {
  3291. name: "Small",
  3292. height: math.unit(30, "feet")
  3293. },
  3294. {
  3295. name: "Macro",
  3296. height: math.unit(100, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Macro+",
  3301. height: math.unit(2000, "feet")
  3302. },
  3303. {
  3304. name: "True Form",
  3305. height: math.unit(8924, "miles")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(120, "kg"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/ggv/front.svg"
  3318. }
  3319. },
  3320. side: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(120, "kg"),
  3323. name: "Side",
  3324. image: {
  3325. source: "./media/characters/ggv/side.svg"
  3326. }
  3327. }
  3328. },
  3329. [
  3330. {
  3331. name: "Extremely Puny",
  3332. height: math.unit(9 + 5 / 12, "feet")
  3333. },
  3334. {
  3335. name: "Horribly Small",
  3336. height: math.unit(47.7, "miles"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Reasonably Sized",
  3341. height: math.unit(25000, "parsecs")
  3342. },
  3343. {
  3344. name: "Slightly Uncompressed",
  3345. height: math.unit(7.77e31, "parsecs")
  3346. },
  3347. {
  3348. name: "Omniversal",
  3349. height: math.unit(1e300, "meters")
  3350. },
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3355. {
  3356. front: {
  3357. height: math.unit(2, "meter"),
  3358. weight: math.unit(75, "lb"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/napalm/front.svg"
  3362. }
  3363. },
  3364. back: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(75, "lb"),
  3367. name: "Back",
  3368. image: {
  3369. source: "./media/characters/napalm/back.svg"
  3370. }
  3371. }
  3372. },
  3373. [
  3374. {
  3375. name: "Standard",
  3376. height: math.unit(55, "feet"),
  3377. default: true
  3378. }
  3379. ]
  3380. ))
  3381. characterMakers.push(() => makeCharacter(
  3382. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3383. {
  3384. front: {
  3385. height: math.unit(7 + 5 / 6, "feet"),
  3386. weight: math.unit(325, "lb"),
  3387. name: "Front",
  3388. image: {
  3389. source: "./media/characters/asana/front.svg",
  3390. extra: 1133 / 1060,
  3391. bottom: 15.2 / 1148.6
  3392. }
  3393. },
  3394. back: {
  3395. height: math.unit(7 + 5 / 6, "feet"),
  3396. weight: math.unit(325, "lb"),
  3397. name: "Back",
  3398. image: {
  3399. source: "./media/characters/asana/back.svg",
  3400. extra: 1114 / 1043,
  3401. bottom: 5 / 1120
  3402. }
  3403. },
  3404. dressedDark: {
  3405. height: math.unit(7 + 5 / 6, "feet"),
  3406. weight: math.unit(325, "lb"),
  3407. name: "Dressed (Dark)",
  3408. image: {
  3409. source: "./media/characters/asana/dressed-dark.svg",
  3410. extra: 1133 / 1060,
  3411. bottom: 15.2 / 1148.6
  3412. }
  3413. },
  3414. dressedLight: {
  3415. height: math.unit(7 + 5 / 6, "feet"),
  3416. weight: math.unit(325, "lb"),
  3417. name: "Dressed (Light)",
  3418. image: {
  3419. source: "./media/characters/asana/dressed-light.svg",
  3420. extra: 1133 / 1060,
  3421. bottom: 15.2 / 1148.6
  3422. }
  3423. },
  3424. },
  3425. [
  3426. {
  3427. name: "Standard",
  3428. height: math.unit(7 + 5 / 6, "feet"),
  3429. default: true
  3430. },
  3431. {
  3432. name: "Large",
  3433. height: math.unit(10, "meters")
  3434. },
  3435. {
  3436. name: "Macro",
  3437. height: math.unit(2500, "meters")
  3438. },
  3439. {
  3440. name: "Megamacro",
  3441. height: math.unit(5e6, "meters")
  3442. },
  3443. {
  3444. name: "Examacro",
  3445. height: math.unit(5e12, "lightyears")
  3446. },
  3447. {
  3448. name: "Max Size",
  3449. height: math.unit(1e31, "lightyears")
  3450. }
  3451. ]
  3452. ))
  3453. characterMakers.push(() => makeCharacter(
  3454. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3455. {
  3456. front: {
  3457. height: math.unit(2, "meter"),
  3458. weight: math.unit(60, "kg"),
  3459. name: "Front",
  3460. image: {
  3461. source: "./media/characters/ebony/front.svg",
  3462. bottom: 0.03,
  3463. extra: 1045 / 810 + 0.03
  3464. }
  3465. },
  3466. side: {
  3467. height: math.unit(2, "meter"),
  3468. weight: math.unit(60, "kg"),
  3469. name: "Side",
  3470. image: {
  3471. source: "./media/characters/ebony/side.svg",
  3472. bottom: 0.03,
  3473. extra: 1045 / 810 + 0.03
  3474. }
  3475. },
  3476. back: {
  3477. height: math.unit(2, "meter"),
  3478. weight: math.unit(60, "kg"),
  3479. name: "Back",
  3480. image: {
  3481. source: "./media/characters/ebony/back.svg",
  3482. bottom: 0.01,
  3483. extra: 1045 / 810 + 0.01
  3484. }
  3485. },
  3486. },
  3487. [
  3488. // TODO check why I did this lol
  3489. {
  3490. name: "Standard",
  3491. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(200, "feet")
  3497. },
  3498. {
  3499. name: "Gigamacro",
  3500. height: math.unit(13000, "km")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(6, "feet"),
  3509. weight: math.unit(175, "lb"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/mountain/front.svg",
  3513. extra: 972 / 955,
  3514. bottom: 64 / 1036.6
  3515. }
  3516. },
  3517. back: {
  3518. height: math.unit(6, "feet"),
  3519. weight: math.unit(175, "lb"),
  3520. name: "Back",
  3521. image: {
  3522. source: "./media/characters/mountain/back.svg",
  3523. extra: 970 / 950,
  3524. bottom: 28.25 / 999
  3525. }
  3526. },
  3527. },
  3528. [
  3529. {
  3530. name: "Large",
  3531. height: math.unit(20, "meters")
  3532. },
  3533. {
  3534. name: "Macro",
  3535. height: math.unit(300, "meters")
  3536. },
  3537. {
  3538. name: "Gigamacro",
  3539. height: math.unit(10000, "km"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Examacro",
  3544. height: math.unit(10e9, "lightyears")
  3545. }
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(8, "feet"),
  3553. weight: math.unit(500, "lb"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/rick/front.svg"
  3557. }
  3558. }
  3559. },
  3560. [
  3561. {
  3562. name: "Normal",
  3563. height: math.unit(8, "feet"),
  3564. default: true
  3565. },
  3566. {
  3567. name: "Macro",
  3568. height: math.unit(5, "km")
  3569. }
  3570. ]
  3571. ))
  3572. characterMakers.push(() => makeCharacter(
  3573. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3574. {
  3575. front: {
  3576. height: math.unit(8, "feet"),
  3577. weight: math.unit(120, "lb"),
  3578. name: "Front",
  3579. image: {
  3580. source: "./media/characters/ona/front.svg"
  3581. }
  3582. },
  3583. frontAlt: {
  3584. height: math.unit(8, "feet"),
  3585. weight: math.unit(120, "lb"),
  3586. name: "Front (Alt)",
  3587. image: {
  3588. source: "./media/characters/ona/front-alt.svg"
  3589. }
  3590. },
  3591. back: {
  3592. height: math.unit(8, "feet"),
  3593. weight: math.unit(120, "lb"),
  3594. name: "Back",
  3595. image: {
  3596. source: "./media/characters/ona/back.svg"
  3597. }
  3598. },
  3599. foot: {
  3600. height: math.unit(1.1, "feet"),
  3601. name: "Foot",
  3602. image: {
  3603. source: "./media/characters/ona/foot.svg"
  3604. }
  3605. }
  3606. },
  3607. [
  3608. {
  3609. name: "Megamacro",
  3610. height: math.unit(70, "km"),
  3611. default: true
  3612. },
  3613. {
  3614. name: "Gigamacro",
  3615. height: math.unit(681818, "miles")
  3616. },
  3617. {
  3618. name: "Examacro",
  3619. height: math.unit(3800000, "lightyears")
  3620. },
  3621. ]
  3622. ))
  3623. characterMakers.push(() => makeCharacter(
  3624. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3625. {
  3626. front: {
  3627. height: math.unit(12, "feet"),
  3628. weight: math.unit(3000, "lb"),
  3629. name: "Front",
  3630. image: {
  3631. source: "./media/characters/mech/front.svg",
  3632. extra: 2900 / 2770,
  3633. bottom: 110 / 3010
  3634. }
  3635. },
  3636. back: {
  3637. height: math.unit(12, "feet"),
  3638. weight: math.unit(3000, "lb"),
  3639. name: "Back",
  3640. image: {
  3641. source: "./media/characters/mech/back.svg",
  3642. extra: 3011 / 2890,
  3643. bottom: 94 / 3105
  3644. }
  3645. },
  3646. maw: {
  3647. height: math.unit(3.07, "feet"),
  3648. name: "Maw",
  3649. image: {
  3650. source: "./media/characters/mech/maw.svg"
  3651. }
  3652. },
  3653. head: {
  3654. height: math.unit(2.82, "feet"),
  3655. name: "Head",
  3656. image: {
  3657. source: "./media/characters/mech/head.svg"
  3658. }
  3659. },
  3660. dick: {
  3661. height: math.unit(1.43, "feet"),
  3662. name: "Dick",
  3663. image: {
  3664. source: "./media/characters/mech/dick.svg"
  3665. }
  3666. },
  3667. },
  3668. [
  3669. {
  3670. name: "Normal",
  3671. height: math.unit(12, "feet")
  3672. },
  3673. {
  3674. name: "Macro",
  3675. height: math.unit(300, "feet"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "Macro+",
  3680. height: math.unit(1500, "feet")
  3681. },
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3686. {
  3687. front: {
  3688. height: math.unit(1.3, "meter"),
  3689. weight: math.unit(30, "kg"),
  3690. name: "Front",
  3691. image: {
  3692. source: "./media/characters/gregory/front.svg",
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(1.3, "meter"),
  3700. default: true
  3701. },
  3702. {
  3703. name: "Macro",
  3704. height: math.unit(20, "meter")
  3705. }
  3706. ]
  3707. ))
  3708. characterMakers.push(() => makeCharacter(
  3709. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3710. {
  3711. front: {
  3712. height: math.unit(2.8, "meter"),
  3713. weight: math.unit(200, "kg"),
  3714. name: "Front",
  3715. image: {
  3716. source: "./media/characters/elory/front.svg",
  3717. }
  3718. }
  3719. },
  3720. [
  3721. {
  3722. name: "Normal",
  3723. height: math.unit(2.8, "meter"),
  3724. default: true
  3725. },
  3726. {
  3727. name: "Macro",
  3728. height: math.unit(38, "meter")
  3729. }
  3730. ]
  3731. ))
  3732. characterMakers.push(() => makeCharacter(
  3733. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3734. {
  3735. front: {
  3736. height: math.unit(470, "feet"),
  3737. weight: math.unit(924, "tons"),
  3738. name: "Front",
  3739. image: {
  3740. source: "./media/characters/angelpatamon/front.svg",
  3741. }
  3742. }
  3743. },
  3744. [
  3745. {
  3746. name: "Normal",
  3747. height: math.unit(470, "feet"),
  3748. default: true
  3749. },
  3750. {
  3751. name: "Deity Size I",
  3752. height: math.unit(28651.2, "km")
  3753. },
  3754. {
  3755. name: "Deity Size II",
  3756. height: math.unit(171907.2, "km")
  3757. }
  3758. ]
  3759. ))
  3760. characterMakers.push(() => makeCharacter(
  3761. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3762. {
  3763. side: {
  3764. height: math.unit(7.2, "meter"),
  3765. weight: math.unit(8.2, "tons"),
  3766. name: "Side",
  3767. image: {
  3768. source: "./media/characters/cryae/side.svg",
  3769. extra: 3500 / 1500
  3770. }
  3771. }
  3772. },
  3773. [
  3774. {
  3775. name: "Normal",
  3776. height: math.unit(7.2, "meter"),
  3777. default: true
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(6, "feet"),
  3786. weight: math.unit(175, "lb"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/xera/front.svg",
  3790. extra: 2377 / 1972,
  3791. bottom: 75.5 / 2452
  3792. }
  3793. },
  3794. side: {
  3795. height: math.unit(6, "feet"),
  3796. weight: math.unit(175, "lb"),
  3797. name: "Side",
  3798. image: {
  3799. source: "./media/characters/xera/side.svg",
  3800. extra: 2345 / 2019,
  3801. bottom: 39.7 / 2384
  3802. }
  3803. },
  3804. back: {
  3805. height: math.unit(6, "feet"),
  3806. weight: math.unit(175, "lb"),
  3807. name: "Back",
  3808. image: {
  3809. source: "./media/characters/xera/back.svg",
  3810. extra: 2095 / 1984,
  3811. bottom: 67 / 2166
  3812. }
  3813. },
  3814. },
  3815. [
  3816. {
  3817. name: "Small",
  3818. height: math.unit(10, "feet")
  3819. },
  3820. {
  3821. name: "Macro",
  3822. height: math.unit(500, "meters"),
  3823. default: true
  3824. },
  3825. {
  3826. name: "Macro+",
  3827. height: math.unit(10, "km")
  3828. },
  3829. {
  3830. name: "Gigamacro",
  3831. height: math.unit(25000, "km")
  3832. },
  3833. {
  3834. name: "Teramacro",
  3835. height: math.unit(3e6, "km")
  3836. }
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(6, "feet"),
  3844. weight: math.unit(175, "lb"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/nebula/front.svg",
  3848. extra: 2566 / 2362,
  3849. bottom: 81 / 2644
  3850. }
  3851. }
  3852. },
  3853. [
  3854. {
  3855. name: "Small",
  3856. height: math.unit(4.5, "meters")
  3857. },
  3858. {
  3859. name: "Macro",
  3860. height: math.unit(1500, "meters"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Megamacro",
  3865. height: math.unit(150, "km")
  3866. },
  3867. {
  3868. name: "Gigamacro",
  3869. height: math.unit(27000, "km")
  3870. }
  3871. ]
  3872. ))
  3873. characterMakers.push(() => makeCharacter(
  3874. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3875. {
  3876. front: {
  3877. height: math.unit(6, "feet"),
  3878. weight: math.unit(225, "lb"),
  3879. name: "Front",
  3880. image: {
  3881. source: "./media/characters/abysgar/front.svg"
  3882. }
  3883. }
  3884. },
  3885. [
  3886. {
  3887. name: "Small",
  3888. height: math.unit(4.5, "meters")
  3889. },
  3890. {
  3891. name: "Macro",
  3892. height: math.unit(1250, "meters"),
  3893. default: true
  3894. },
  3895. {
  3896. name: "Megamacro",
  3897. height: math.unit(125, "km")
  3898. },
  3899. {
  3900. name: "Gigamacro",
  3901. height: math.unit(26000, "km")
  3902. }
  3903. ]
  3904. ))
  3905. characterMakers.push(() => makeCharacter(
  3906. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3907. {
  3908. front: {
  3909. height: math.unit(6, "feet"),
  3910. weight: math.unit(180, "lb"),
  3911. name: "Front",
  3912. image: {
  3913. source: "./media/characters/yakuz/front.svg"
  3914. }
  3915. }
  3916. },
  3917. [
  3918. {
  3919. name: "Small",
  3920. height: math.unit(5, "meters")
  3921. },
  3922. {
  3923. name: "Macro",
  3924. height: math.unit(1500, "meters"),
  3925. default: true
  3926. },
  3927. {
  3928. name: "Megamacro",
  3929. height: math.unit(200, "km")
  3930. },
  3931. {
  3932. name: "Gigamacro",
  3933. height: math.unit(100000, "km")
  3934. }
  3935. ]
  3936. ))
  3937. characterMakers.push(() => makeCharacter(
  3938. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3939. {
  3940. front: {
  3941. height: math.unit(6, "feet"),
  3942. weight: math.unit(175, "lb"),
  3943. name: "Front",
  3944. image: {
  3945. source: "./media/characters/mirova/front.svg",
  3946. extra: 3334 / 3071,
  3947. bottom: 42 / 3375.6
  3948. }
  3949. }
  3950. },
  3951. [
  3952. {
  3953. name: "Small",
  3954. height: math.unit(5, "meters")
  3955. },
  3956. {
  3957. name: "Macro",
  3958. height: math.unit(900, "meters"),
  3959. default: true
  3960. },
  3961. {
  3962. name: "Megamacro",
  3963. height: math.unit(135, "km")
  3964. },
  3965. {
  3966. name: "Gigamacro",
  3967. height: math.unit(20000, "km")
  3968. }
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3973. {
  3974. side: {
  3975. height: math.unit(28.35, "feet"),
  3976. weight: math.unit(99.75, "tons"),
  3977. name: "Side",
  3978. image: {
  3979. source: "./media/characters/asana-mech/side.svg",
  3980. extra: 923 / 699,
  3981. bottom: 50 / 975
  3982. }
  3983. },
  3984. chaingun: {
  3985. height: math.unit(7, "feet"),
  3986. weight: math.unit(2400, "lb"),
  3987. name: "Chaingun",
  3988. image: {
  3989. source: "./media/characters/asana-mech/chaingun.svg"
  3990. }
  3991. },
  3992. laser: {
  3993. height: math.unit(7.12, "feet"),
  3994. weight: math.unit(2000, "lb"),
  3995. name: "Laser",
  3996. image: {
  3997. source: "./media/characters/asana-mech/laser.svg"
  3998. }
  3999. },
  4000. },
  4001. [
  4002. {
  4003. name: "Normal",
  4004. height: math.unit(28.35, "feet"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(2500, "feet")
  4010. },
  4011. {
  4012. name: "Megamacro",
  4013. height: math.unit(25, "miles")
  4014. },
  4015. {
  4016. name: "Examacro",
  4017. height: math.unit(6e8, "lightyears")
  4018. },
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(5, "meters"),
  4026. weight: math.unit(1000, "kg"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/asche/front.svg",
  4030. extra: 1258 / 1190,
  4031. bottom: 47 / 1305
  4032. }
  4033. },
  4034. frontUnderwear: {
  4035. height: math.unit(5, "meters"),
  4036. weight: math.unit(1000, "kg"),
  4037. name: "Front (Underwear)",
  4038. image: {
  4039. source: "./media/characters/asche/front-underwear.svg",
  4040. extra: 1258 / 1190,
  4041. bottom: 47 / 1305
  4042. }
  4043. },
  4044. frontDressed: {
  4045. height: math.unit(5, "meters"),
  4046. weight: math.unit(1000, "kg"),
  4047. name: "Front (Dressed)",
  4048. image: {
  4049. source: "./media/characters/asche/front-dressed.svg",
  4050. extra: 1258 / 1190,
  4051. bottom: 47 / 1305
  4052. }
  4053. },
  4054. frontArmor: {
  4055. height: math.unit(5, "meters"),
  4056. weight: math.unit(1000, "kg"),
  4057. name: "Front (Armored)",
  4058. image: {
  4059. source: "./media/characters/asche/front-armored.svg",
  4060. extra: 1374 / 1308,
  4061. bottom: 23 / 1397
  4062. }
  4063. },
  4064. mp724: {
  4065. height: math.unit(0.96, "meters"),
  4066. weight: math.unit(38, "kg"),
  4067. name: "H&K MP724",
  4068. image: {
  4069. source: "./media/characters/asche/h&k-mp724.svg"
  4070. }
  4071. },
  4072. side: {
  4073. height: math.unit(5, "meters"),
  4074. weight: math.unit(1000, "kg"),
  4075. name: "Side",
  4076. image: {
  4077. source: "./media/characters/asche/side.svg",
  4078. extra: 1717 / 1609,
  4079. bottom: 0.005
  4080. }
  4081. },
  4082. back: {
  4083. height: math.unit(5, "meters"),
  4084. weight: math.unit(1000, "kg"),
  4085. name: "Back",
  4086. image: {
  4087. source: "./media/characters/asche/back.svg",
  4088. extra: 1570 / 1501
  4089. }
  4090. },
  4091. },
  4092. [
  4093. {
  4094. name: "DEFCON 5",
  4095. height: math.unit(5, "meters")
  4096. },
  4097. {
  4098. name: "DEFCON 4",
  4099. height: math.unit(500, "meters"),
  4100. default: true
  4101. },
  4102. {
  4103. name: "DEFCON 3",
  4104. height: math.unit(5, "km")
  4105. },
  4106. {
  4107. name: "DEFCON 2",
  4108. height: math.unit(500, "km")
  4109. },
  4110. {
  4111. name: "DEFCON 1",
  4112. height: math.unit(500000, "km")
  4113. },
  4114. {
  4115. name: "DEFCON 0",
  4116. height: math.unit(3, "gigaparsecs")
  4117. },
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4122. {
  4123. front: {
  4124. height: math.unit(2, "meters"),
  4125. weight: math.unit(76, "kg"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/gale/front.svg"
  4129. }
  4130. },
  4131. frontAlt1: {
  4132. height: math.unit(2, "meters"),
  4133. weight: math.unit(76, "kg"),
  4134. name: "Front (Alt 1)",
  4135. image: {
  4136. source: "./media/characters/gale/front-alt-1.svg"
  4137. }
  4138. },
  4139. frontAlt2: {
  4140. height: math.unit(2, "meters"),
  4141. weight: math.unit(76, "kg"),
  4142. name: "Front (Alt 2)",
  4143. image: {
  4144. source: "./media/characters/gale/front-alt-2.svg"
  4145. }
  4146. },
  4147. },
  4148. [
  4149. {
  4150. name: "Normal",
  4151. height: math.unit(7, "feet")
  4152. },
  4153. {
  4154. name: "Macro",
  4155. height: math.unit(150, "feet"),
  4156. default: true
  4157. },
  4158. {
  4159. name: "Macro+",
  4160. height: math.unit(300, "feet")
  4161. },
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4166. {
  4167. front: {
  4168. height: math.unit(2, "meters"),
  4169. weight: math.unit(76, "kg"),
  4170. name: "Front",
  4171. image: {
  4172. source: "./media/characters/draylen/front.svg"
  4173. }
  4174. }
  4175. },
  4176. [
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(150, "feet"),
  4180. default: true
  4181. }
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4186. {
  4187. front: {
  4188. height: math.unit(7 + 9 / 12, "feet"),
  4189. weight: math.unit(379, "lbs"),
  4190. name: "Front",
  4191. image: {
  4192. source: "./media/characters/chez/front.svg"
  4193. }
  4194. },
  4195. side: {
  4196. height: math.unit(7 + 9 / 12, "feet"),
  4197. weight: math.unit(379, "lbs"),
  4198. name: "Side",
  4199. image: {
  4200. source: "./media/characters/chez/side.svg"
  4201. }
  4202. }
  4203. },
  4204. [
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(7 + 9 / 12, "feet"),
  4208. default: true
  4209. },
  4210. {
  4211. name: "God King",
  4212. height: math.unit(9750000, "meters")
  4213. }
  4214. ]
  4215. ))
  4216. characterMakers.push(() => makeCharacter(
  4217. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4218. {
  4219. front: {
  4220. height: math.unit(6, "feet"),
  4221. weight: math.unit(275, "lbs"),
  4222. name: "Front",
  4223. image: {
  4224. source: "./media/characters/kaylum/front.svg",
  4225. bottom: 0.01,
  4226. extra: 1166 / 1031
  4227. }
  4228. },
  4229. frontWingless: {
  4230. height: math.unit(6, "feet"),
  4231. weight: math.unit(275, "lbs"),
  4232. name: "Front (Wingless)",
  4233. image: {
  4234. source: "./media/characters/kaylum/front-wingless.svg",
  4235. bottom: 0.01,
  4236. extra: 1117 / 1031
  4237. }
  4238. }
  4239. },
  4240. [
  4241. {
  4242. name: "Normal",
  4243. height: math.unit(3.05, "meters")
  4244. },
  4245. {
  4246. name: "Master",
  4247. height: math.unit(5.5, "meters")
  4248. },
  4249. {
  4250. name: "Rampage",
  4251. height: math.unit(19, "meters")
  4252. },
  4253. {
  4254. name: "Macro Lite",
  4255. height: math.unit(37, "meters")
  4256. },
  4257. {
  4258. name: "Hyper Predator",
  4259. height: math.unit(61, "meters")
  4260. },
  4261. {
  4262. name: "Macro",
  4263. height: math.unit(138, "meters"),
  4264. default: true
  4265. }
  4266. ]
  4267. ))
  4268. characterMakers.push(() => makeCharacter(
  4269. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4270. {
  4271. front: {
  4272. height: math.unit(6, "feet"),
  4273. weight: math.unit(150, "lbs"),
  4274. name: "Front",
  4275. image: {
  4276. source: "./media/characters/geta/front.svg"
  4277. }
  4278. }
  4279. },
  4280. [
  4281. {
  4282. name: "Micro",
  4283. height: math.unit(3, "inches"),
  4284. default: true
  4285. },
  4286. {
  4287. name: "Normal",
  4288. height: math.unit(5 + 5 / 12, "feet")
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4294. {
  4295. front: {
  4296. height: math.unit(6, "feet"),
  4297. weight: math.unit(300, "lbs"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/tyrnn/front.svg"
  4301. }
  4302. }
  4303. },
  4304. [
  4305. {
  4306. name: "Main Height",
  4307. height: math.unit(355, "feet"),
  4308. default: true
  4309. },
  4310. {
  4311. name: "Fave. Height",
  4312. height: math.unit(2400, "feet")
  4313. }
  4314. ]
  4315. ))
  4316. characterMakers.push(() => makeCharacter(
  4317. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4318. {
  4319. front: {
  4320. height: math.unit(6, "feet"),
  4321. weight: math.unit(300, "lbs"),
  4322. name: "Front",
  4323. image: {
  4324. source: "./media/characters/appledectomy/front.svg"
  4325. }
  4326. }
  4327. },
  4328. [
  4329. {
  4330. name: "Macro",
  4331. height: math.unit(2500, "feet")
  4332. },
  4333. {
  4334. name: "Megamacro",
  4335. height: math.unit(50, "miles"),
  4336. default: true
  4337. },
  4338. {
  4339. name: "Gigamacro",
  4340. height: math.unit(5000, "miles")
  4341. },
  4342. {
  4343. name: "Teramacro",
  4344. height: math.unit(250000, "miles")
  4345. },
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4350. {
  4351. front: {
  4352. height: math.unit(6, "feet"),
  4353. weight: math.unit(200, "lbs"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/vulpes/front.svg",
  4357. extra: 573 / 543,
  4358. bottom: 0.033
  4359. }
  4360. },
  4361. side: {
  4362. height: math.unit(6, "feet"),
  4363. weight: math.unit(200, "lbs"),
  4364. name: "Side",
  4365. image: {
  4366. source: "./media/characters/vulpes/side.svg",
  4367. extra: 577 / 549,
  4368. bottom: 11 / 588
  4369. }
  4370. },
  4371. back: {
  4372. height: math.unit(6, "feet"),
  4373. weight: math.unit(200, "lbs"),
  4374. name: "Back",
  4375. image: {
  4376. source: "./media/characters/vulpes/back.svg",
  4377. extra: 573 / 549,
  4378. bottom: 20 / 593
  4379. }
  4380. },
  4381. feet: {
  4382. height: math.unit(1.276, "feet"),
  4383. name: "Feet",
  4384. image: {
  4385. source: "./media/characters/vulpes/feet.svg"
  4386. }
  4387. },
  4388. maw: {
  4389. height: math.unit(1.18, "feet"),
  4390. name: "Maw",
  4391. image: {
  4392. source: "./media/characters/vulpes/maw.svg"
  4393. }
  4394. },
  4395. },
  4396. [
  4397. {
  4398. name: "Micro",
  4399. height: math.unit(2, "inches")
  4400. },
  4401. {
  4402. name: "Normal",
  4403. height: math.unit(6.3, "feet")
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(850, "feet")
  4408. },
  4409. {
  4410. name: "Megamacro",
  4411. height: math.unit(7500, "feet"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Gigamacro",
  4416. height: math.unit(570000, "miles")
  4417. }
  4418. ]
  4419. ))
  4420. characterMakers.push(() => makeCharacter(
  4421. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4422. {
  4423. front: {
  4424. height: math.unit(6, "feet"),
  4425. weight: math.unit(210, "lbs"),
  4426. name: "Front",
  4427. image: {
  4428. source: "./media/characters/rain-fallen/front.svg"
  4429. }
  4430. },
  4431. side: {
  4432. height: math.unit(6, "feet"),
  4433. weight: math.unit(210, "lbs"),
  4434. name: "Side",
  4435. image: {
  4436. source: "./media/characters/rain-fallen/side.svg"
  4437. }
  4438. },
  4439. back: {
  4440. height: math.unit(6, "feet"),
  4441. weight: math.unit(210, "lbs"),
  4442. name: "Back",
  4443. image: {
  4444. source: "./media/characters/rain-fallen/back.svg"
  4445. }
  4446. },
  4447. feral: {
  4448. height: math.unit(9, "feet"),
  4449. weight: math.unit(700, "lbs"),
  4450. name: "Feral",
  4451. image: {
  4452. source: "./media/characters/rain-fallen/feral.svg"
  4453. }
  4454. },
  4455. },
  4456. [
  4457. {
  4458. name: "Meddling with Mortals",
  4459. height: math.unit(8 + 8/12, "feet")
  4460. },
  4461. {
  4462. name: "Normal",
  4463. height: math.unit(5, "meter")
  4464. },
  4465. {
  4466. name: "Macro",
  4467. height: math.unit(150, "meter"),
  4468. default: true
  4469. },
  4470. {
  4471. name: "Megamacro",
  4472. height: math.unit(278e6, "meter")
  4473. },
  4474. {
  4475. name: "Gigamacro",
  4476. height: math.unit(2e9, "meter")
  4477. },
  4478. {
  4479. name: "Teramacro",
  4480. height: math.unit(8e12, "meter")
  4481. },
  4482. {
  4483. name: "Devourer",
  4484. height: math.unit(14, "zettameters")
  4485. },
  4486. {
  4487. name: "Scarlet King",
  4488. height: math.unit(18, "yottameters")
  4489. },
  4490. {
  4491. name: "Void",
  4492. height: math.unit(1e88, "yottameters")
  4493. }
  4494. ]
  4495. ))
  4496. characterMakers.push(() => makeCharacter(
  4497. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4498. {
  4499. standing: {
  4500. height: math.unit(6, "feet"),
  4501. weight: math.unit(180, "lbs"),
  4502. name: "Standing",
  4503. image: {
  4504. source: "./media/characters/zaakira/standing.svg"
  4505. }
  4506. },
  4507. laying: {
  4508. height: math.unit(3, "feet"),
  4509. weight: math.unit(180, "lbs"),
  4510. name: "Laying",
  4511. image: {
  4512. source: "./media/characters/zaakira/laying.svg"
  4513. }
  4514. },
  4515. },
  4516. [
  4517. {
  4518. name: "Normal",
  4519. height: math.unit(12, "feet")
  4520. },
  4521. {
  4522. name: "Macro",
  4523. height: math.unit(279, "feet"),
  4524. default: true
  4525. }
  4526. ]
  4527. ))
  4528. characterMakers.push(() => makeCharacter(
  4529. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4530. {
  4531. femSfw: {
  4532. height: math.unit(8, "feet"),
  4533. weight: math.unit(350, "lb"),
  4534. name: "Fem",
  4535. image: {
  4536. source: "./media/characters/sigvald/fem-sfw.svg",
  4537. extra: 182 / 164,
  4538. bottom: 8.7 / 190.5
  4539. }
  4540. },
  4541. femNsfw: {
  4542. height: math.unit(8, "feet"),
  4543. weight: math.unit(350, "lb"),
  4544. name: "Fem (NSFW)",
  4545. image: {
  4546. source: "./media/characters/sigvald/fem-nsfw.svg",
  4547. extra: 182 / 164,
  4548. bottom: 8.7 / 190.5
  4549. }
  4550. },
  4551. maleNsfw: {
  4552. height: math.unit(8, "feet"),
  4553. weight: math.unit(350, "lb"),
  4554. name: "Male (NSFW)",
  4555. image: {
  4556. source: "./media/characters/sigvald/male-nsfw.svg",
  4557. extra: 182 / 164,
  4558. bottom: 8.7 / 190.5
  4559. }
  4560. },
  4561. hermNsfw: {
  4562. height: math.unit(8, "feet"),
  4563. weight: math.unit(350, "lb"),
  4564. name: "Herm (NSFW)",
  4565. image: {
  4566. source: "./media/characters/sigvald/herm-nsfw.svg",
  4567. extra: 182 / 164,
  4568. bottom: 8.7 / 190.5
  4569. }
  4570. },
  4571. dick: {
  4572. height: math.unit(2.36, "feet"),
  4573. name: "Dick",
  4574. image: {
  4575. source: "./media/characters/sigvald/dick.svg"
  4576. }
  4577. },
  4578. eye: {
  4579. height: math.unit(0.31, "feet"),
  4580. name: "Eye",
  4581. image: {
  4582. source: "./media/characters/sigvald/eye.svg"
  4583. }
  4584. },
  4585. mouth: {
  4586. height: math.unit(0.92, "feet"),
  4587. name: "Mouth",
  4588. image: {
  4589. source: "./media/characters/sigvald/mouth.svg"
  4590. }
  4591. },
  4592. paws: {
  4593. height: math.unit(2.2, "feet"),
  4594. name: "Paws",
  4595. image: {
  4596. source: "./media/characters/sigvald/paws.svg"
  4597. }
  4598. }
  4599. },
  4600. [
  4601. {
  4602. name: "Normal",
  4603. height: math.unit(8, "feet")
  4604. },
  4605. {
  4606. name: "Large",
  4607. height: math.unit(12, "feet")
  4608. },
  4609. {
  4610. name: "Larger",
  4611. height: math.unit(20, "feet")
  4612. },
  4613. {
  4614. name: "Macro",
  4615. height: math.unit(150, "feet")
  4616. },
  4617. {
  4618. name: "Macro+",
  4619. height: math.unit(200, "feet"),
  4620. default: true
  4621. },
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4626. {
  4627. side: {
  4628. height: math.unit(12, "feet"),
  4629. weight: math.unit(2000, "kg"),
  4630. name: "Side",
  4631. image: {
  4632. source: "./media/characters/scott/side.svg",
  4633. extra: 754 / 724,
  4634. bottom: 0.069
  4635. }
  4636. },
  4637. upright: {
  4638. height: math.unit(12, "feet"),
  4639. weight: math.unit(2000, "kg"),
  4640. name: "Upright",
  4641. image: {
  4642. source: "./media/characters/scott/upright.svg",
  4643. extra: 3881 / 3722,
  4644. bottom: 0.05
  4645. }
  4646. },
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(12, "feet"),
  4652. default: true
  4653. },
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4658. {
  4659. side: {
  4660. height: math.unit(8, "meters"),
  4661. weight: math.unit(84755, "lbs"),
  4662. name: "Side",
  4663. image: {
  4664. source: "./media/characters/tobias/side.svg",
  4665. extra: 1474 / 1096,
  4666. bottom: 38.9 / 1513.1235
  4667. }
  4668. },
  4669. },
  4670. [
  4671. {
  4672. name: "Normal",
  4673. height: math.unit(8, "meters"),
  4674. default: true
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4680. {
  4681. front: {
  4682. height: math.unit(5.5, "feet"),
  4683. weight: math.unit(400, "lbs"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/kieran/front.svg",
  4687. extra: 2694 / 2364,
  4688. bottom: 217 / 2908
  4689. }
  4690. },
  4691. side: {
  4692. height: math.unit(5.5, "feet"),
  4693. weight: math.unit(400, "lbs"),
  4694. name: "Side",
  4695. image: {
  4696. source: "./media/characters/kieran/side.svg",
  4697. extra: 875 / 777,
  4698. bottom: 84.6 / 959
  4699. }
  4700. },
  4701. },
  4702. [
  4703. {
  4704. name: "Normal",
  4705. height: math.unit(5.5, "feet"),
  4706. default: true
  4707. },
  4708. ]
  4709. ))
  4710. characterMakers.push(() => makeCharacter(
  4711. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4712. {
  4713. side: {
  4714. height: math.unit(2, "meters"),
  4715. weight: math.unit(70, "kg"),
  4716. name: "Side",
  4717. image: {
  4718. source: "./media/characters/sanya/side.svg",
  4719. bottom: 0.02,
  4720. extra: 1.02
  4721. }
  4722. },
  4723. },
  4724. [
  4725. {
  4726. name: "Small",
  4727. height: math.unit(2, "meters")
  4728. },
  4729. {
  4730. name: "Normal",
  4731. height: math.unit(3, "meters")
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(16, "meters"),
  4736. default: true
  4737. },
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(2, "meters"),
  4745. weight: math.unit(120, "kg"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/miranda/front.svg",
  4749. extra: 195 / 185,
  4750. bottom: 10.9 / 206.5
  4751. }
  4752. },
  4753. back: {
  4754. height: math.unit(2, "meters"),
  4755. weight: math.unit(120, "kg"),
  4756. name: "Back",
  4757. image: {
  4758. source: "./media/characters/miranda/back.svg",
  4759. extra: 201 / 193,
  4760. bottom: 2.3 / 203.7
  4761. }
  4762. },
  4763. },
  4764. [
  4765. {
  4766. name: "Normal",
  4767. height: math.unit(10, "feet"),
  4768. default: true
  4769. }
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "James", species: ["deer"], tags: ["anthro"] },
  4774. {
  4775. side: {
  4776. height: math.unit(2, "meters"),
  4777. weight: math.unit(100, "kg"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/james/front.svg",
  4781. extra: 10 / 8.5
  4782. }
  4783. },
  4784. },
  4785. [
  4786. {
  4787. name: "Normal",
  4788. height: math.unit(8.5, "feet"),
  4789. default: true
  4790. }
  4791. ]
  4792. ))
  4793. characterMakers.push(() => makeCharacter(
  4794. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4795. {
  4796. side: {
  4797. height: math.unit(9.5, "feet"),
  4798. weight: math.unit(2500, "lbs"),
  4799. name: "Side",
  4800. image: {
  4801. source: "./media/characters/heather/side.svg"
  4802. }
  4803. },
  4804. },
  4805. [
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(9.5, "feet"),
  4809. default: true
  4810. }
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4815. {
  4816. side: {
  4817. height: math.unit(6.5, "feet"),
  4818. weight: math.unit(400, "lbs"),
  4819. name: "Side",
  4820. image: {
  4821. source: "./media/characters/lukas/side.svg",
  4822. extra: 7.25 / 6.5
  4823. }
  4824. },
  4825. },
  4826. [
  4827. {
  4828. name: "Normal",
  4829. height: math.unit(6.5, "feet"),
  4830. default: true
  4831. }
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4836. {
  4837. side: {
  4838. height: math.unit(5, "feet"),
  4839. weight: math.unit(3000, "lbs"),
  4840. name: "Side",
  4841. image: {
  4842. source: "./media/characters/louise/side.svg"
  4843. }
  4844. },
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(5, "feet"),
  4850. default: true
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4856. {
  4857. side: {
  4858. height: math.unit(6, "feet"),
  4859. weight: math.unit(150, "lbs"),
  4860. name: "Side",
  4861. image: {
  4862. source: "./media/characters/ramona/side.svg"
  4863. }
  4864. },
  4865. },
  4866. [
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(5.3, "meters"),
  4870. default: true
  4871. },
  4872. {
  4873. name: "Macro",
  4874. height: math.unit(20, "stories")
  4875. },
  4876. {
  4877. name: "Macro+",
  4878. height: math.unit(50, "stories")
  4879. },
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4884. {
  4885. standing: {
  4886. height: math.unit(5.75, "feet"),
  4887. weight: math.unit(160, "lbs"),
  4888. name: "Standing",
  4889. image: {
  4890. source: "./media/characters/deerpuff/standing.svg",
  4891. extra: 682 / 624
  4892. }
  4893. },
  4894. sitting: {
  4895. height: math.unit(5.75 / 1.79, "feet"),
  4896. weight: math.unit(160, "lbs"),
  4897. name: "Sitting",
  4898. image: {
  4899. source: "./media/characters/deerpuff/sitting.svg",
  4900. bottom: 44 / 400,
  4901. extra: 1
  4902. }
  4903. },
  4904. taurLaying: {
  4905. height: math.unit(6, "feet"),
  4906. weight: math.unit(400, "lbs"),
  4907. name: "Taur (Laying)",
  4908. image: {
  4909. source: "./media/characters/deerpuff/taur-laying.svg"
  4910. }
  4911. },
  4912. },
  4913. [
  4914. {
  4915. name: "Puffball",
  4916. height: math.unit(6, "inches")
  4917. },
  4918. {
  4919. name: "Normalpuff",
  4920. height: math.unit(5.75, "feet")
  4921. },
  4922. {
  4923. name: "Macropuff",
  4924. height: math.unit(1500, "feet"),
  4925. default: true
  4926. },
  4927. {
  4928. name: "Megapuff",
  4929. height: math.unit(500, "miles")
  4930. },
  4931. {
  4932. name: "Gigapuff",
  4933. height: math.unit(250000, "miles")
  4934. },
  4935. {
  4936. name: "Omegapuff",
  4937. height: math.unit(1000, "lightyears")
  4938. },
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4943. {
  4944. stomping: {
  4945. height: math.unit(6, "feet"),
  4946. weight: math.unit(170, "lbs"),
  4947. name: "Stomping",
  4948. image: {
  4949. source: "./media/characters/vivian/stomping.svg"
  4950. }
  4951. },
  4952. sitting: {
  4953. height: math.unit(6 / 1.75, "feet"),
  4954. weight: math.unit(170, "lbs"),
  4955. name: "Sitting",
  4956. image: {
  4957. source: "./media/characters/vivian/sitting.svg",
  4958. bottom: 1 / 6.4,
  4959. extra: 1,
  4960. }
  4961. },
  4962. },
  4963. [
  4964. {
  4965. name: "Normal",
  4966. height: math.unit(7, "feet"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(10, "stories")
  4972. },
  4973. {
  4974. name: "Macro+",
  4975. height: math.unit(30, "stories")
  4976. },
  4977. {
  4978. name: "Megamacro",
  4979. height: math.unit(10, "miles")
  4980. },
  4981. {
  4982. name: "Megamacro+",
  4983. height: math.unit(2750000, "meters")
  4984. },
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(6, "feet"),
  4992. weight: math.unit(160, "lbs"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/prince/front.svg",
  4996. extra: 3400 / 3000
  4997. }
  4998. },
  4999. jumping: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(160, "lbs"),
  5002. name: "Jumping",
  5003. image: {
  5004. source: "./media/characters/prince/jump.svg",
  5005. extra: 2555 / 2134
  5006. }
  5007. },
  5008. },
  5009. [
  5010. {
  5011. name: "Normal",
  5012. height: math.unit(7.75, "feet"),
  5013. default: true
  5014. },
  5015. {
  5016. name: "Not cute",
  5017. height: math.unit(17, "feet")
  5018. },
  5019. {
  5020. name: "I said NOT",
  5021. height: math.unit(91, "feet")
  5022. },
  5023. {
  5024. name: "Please stop",
  5025. height: math.unit(560, "feet")
  5026. },
  5027. {
  5028. name: "What have you done",
  5029. height: math.unit(2200, "feet")
  5030. },
  5031. {
  5032. name: "Deer God",
  5033. height: math.unit(3.6, "miles")
  5034. },
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5039. {
  5040. standing: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(300, "lbs"),
  5043. name: "Standing",
  5044. image: {
  5045. source: "./media/characters/psymon/standing.svg",
  5046. extra: 1888 / 1810,
  5047. bottom: 0.05
  5048. }
  5049. },
  5050. slithering: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(300, "lbs"),
  5053. name: "Slithering",
  5054. image: {
  5055. source: "./media/characters/psymon/slithering.svg",
  5056. extra: 1330 / 1224
  5057. }
  5058. },
  5059. slitheringAlt: {
  5060. height: math.unit(6, "feet"),
  5061. weight: math.unit(300, "lbs"),
  5062. name: "Slithering (Alt)",
  5063. image: {
  5064. source: "./media/characters/psymon/slithering-alt.svg",
  5065. extra: 1330 / 1224
  5066. }
  5067. },
  5068. },
  5069. [
  5070. {
  5071. name: "Normal",
  5072. height: math.unit(11.25, "feet"),
  5073. default: true
  5074. },
  5075. {
  5076. name: "Large",
  5077. height: math.unit(27, "feet")
  5078. },
  5079. {
  5080. name: "Giant",
  5081. height: math.unit(87, "feet")
  5082. },
  5083. {
  5084. name: "Macro",
  5085. height: math.unit(365, "feet")
  5086. },
  5087. {
  5088. name: "Megamacro",
  5089. height: math.unit(3, "miles")
  5090. },
  5091. {
  5092. name: "World Serpent",
  5093. height: math.unit(8000, "miles")
  5094. },
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5099. {
  5100. front: {
  5101. height: math.unit(6, "feet"),
  5102. weight: math.unit(180, "lbs"),
  5103. name: "Front",
  5104. image: {
  5105. source: "./media/characters/daimos/front.svg",
  5106. extra: 4160 / 3897,
  5107. bottom: 0.021
  5108. }
  5109. }
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(8, "feet"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Big Dog",
  5119. height: math.unit(22, "feet")
  5120. },
  5121. {
  5122. name: "Macro",
  5123. height: math.unit(127, "feet")
  5124. },
  5125. {
  5126. name: "Megamacro",
  5127. height: math.unit(3600, "feet")
  5128. },
  5129. ]
  5130. ))
  5131. characterMakers.push(() => makeCharacter(
  5132. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5133. {
  5134. side: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(180, "lbs"),
  5137. name: "Side",
  5138. image: {
  5139. source: "./media/characters/blake/side.svg",
  5140. extra: 1212 / 1120,
  5141. bottom: 0.05
  5142. }
  5143. },
  5144. crouched: {
  5145. height: math.unit(6 * 0.57, "feet"),
  5146. weight: math.unit(180, "lbs"),
  5147. name: "Crouched",
  5148. image: {
  5149. source: "./media/characters/blake/crouched.svg",
  5150. extra: 840 / 587,
  5151. bottom: 0.04
  5152. }
  5153. },
  5154. bent: {
  5155. height: math.unit(6 * 0.75, "feet"),
  5156. weight: math.unit(180, "lbs"),
  5157. name: "Bent",
  5158. image: {
  5159. source: "./media/characters/blake/bent.svg",
  5160. extra: 592 / 544,
  5161. bottom: 0.035
  5162. }
  5163. },
  5164. },
  5165. [
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(8 + 1 / 6, "feet"),
  5169. default: true
  5170. },
  5171. {
  5172. name: "Big Backside",
  5173. height: math.unit(37, "feet")
  5174. },
  5175. {
  5176. name: "Subway Shredder",
  5177. height: math.unit(72, "feet")
  5178. },
  5179. {
  5180. name: "City Carver",
  5181. height: math.unit(1675, "feet")
  5182. },
  5183. {
  5184. name: "Tectonic Tweaker",
  5185. height: math.unit(2300, "miles")
  5186. },
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5191. {
  5192. front: {
  5193. height: math.unit(6, "feet"),
  5194. weight: math.unit(180, "lbs"),
  5195. name: "Front",
  5196. image: {
  5197. source: "./media/characters/guisetto/front.svg",
  5198. extra: 856 / 817,
  5199. bottom: 0.06
  5200. }
  5201. },
  5202. airborne: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(180, "lbs"),
  5205. name: "Airborne",
  5206. image: {
  5207. source: "./media/characters/guisetto/airborne.svg",
  5208. extra: 584 / 525
  5209. }
  5210. },
  5211. },
  5212. [
  5213. {
  5214. name: "Normal",
  5215. height: math.unit(10 + 11 / 12, "feet"),
  5216. default: true
  5217. },
  5218. {
  5219. name: "Large",
  5220. height: math.unit(35, "feet")
  5221. },
  5222. {
  5223. name: "Macro",
  5224. height: math.unit(475, "feet")
  5225. },
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5230. {
  5231. front: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(180, "lbs"),
  5234. name: "Front",
  5235. image: {
  5236. source: "./media/characters/luxor/front.svg",
  5237. extra: 2940 / 2152
  5238. }
  5239. },
  5240. back: {
  5241. height: math.unit(6, "feet"),
  5242. weight: math.unit(180, "lbs"),
  5243. name: "Back",
  5244. image: {
  5245. source: "./media/characters/luxor/back.svg",
  5246. extra: 1083 / 960
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(5 + 5 / 6, "feet"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Lamp",
  5258. height: math.unit(50, "feet")
  5259. },
  5260. {
  5261. name: "Lämp",
  5262. height: math.unit(300, "feet")
  5263. },
  5264. {
  5265. name: "The sun is a lamp",
  5266. height: math.unit(250000, "miles")
  5267. },
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(50, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/huoyan/front.svg"
  5279. }
  5280. },
  5281. side: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(180, "lbs"),
  5284. name: "Side",
  5285. image: {
  5286. source: "./media/characters/huoyan/side.svg"
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Chef",
  5293. height: math.unit(9, "feet")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(65, "feet"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Macro",
  5302. height: math.unit(780, "feet")
  5303. },
  5304. {
  5305. name: "Flaming Mountain",
  5306. height: math.unit(4.8, "miles")
  5307. },
  5308. {
  5309. name: "Celestial",
  5310. height: math.unit(765000, "miles")
  5311. },
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5316. {
  5317. front: {
  5318. height: math.unit(5 + 3 / 4, "feet"),
  5319. weight: math.unit(120, "lbs"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/tails/front.svg"
  5323. }
  5324. }
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(5 + 3 / 4, "feet"),
  5330. default: true
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(4, "feet"),
  5339. weight: math.unit(50, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/rainy/front.svg"
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Macro",
  5349. height: math.unit(800, "feet"),
  5350. default: true
  5351. }
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(150, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/rainier/front.svg"
  5363. }
  5364. }
  5365. },
  5366. [
  5367. {
  5368. name: "Micro",
  5369. height: math.unit(2, "mm"),
  5370. default: true
  5371. }
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5376. {
  5377. front: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(180, "lbs"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/andy/front.svg"
  5383. }
  5384. }
  5385. },
  5386. [
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(8, "feet"),
  5390. default: true
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(1000, "feet")
  5395. },
  5396. {
  5397. name: "Megamacro",
  5398. height: math.unit(5, "miles")
  5399. },
  5400. {
  5401. name: "Gigamacro",
  5402. height: math.unit(5000, "miles")
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5408. {
  5409. front: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(210, "lbs"),
  5412. name: "Front",
  5413. image: {
  5414. source: "./media/characters/cimmaron/front-sfw.svg",
  5415. extra: 701 / 676,
  5416. bottom: 0.046
  5417. }
  5418. },
  5419. back: {
  5420. height: math.unit(6, "feet"),
  5421. weight: math.unit(210, "lbs"),
  5422. name: "Back",
  5423. image: {
  5424. source: "./media/characters/cimmaron/back-sfw.svg",
  5425. extra: 701 / 676,
  5426. bottom: 0.046
  5427. }
  5428. },
  5429. frontNsfw: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(210, "lbs"),
  5432. name: "Front (NSFW)",
  5433. image: {
  5434. source: "./media/characters/cimmaron/front-nsfw.svg",
  5435. extra: 701 / 676,
  5436. bottom: 0.046
  5437. }
  5438. },
  5439. backNsfw: {
  5440. height: math.unit(6, "feet"),
  5441. weight: math.unit(210, "lbs"),
  5442. name: "Back (NSFW)",
  5443. image: {
  5444. source: "./media/characters/cimmaron/back-nsfw.svg",
  5445. extra: 701 / 676,
  5446. bottom: 0.046
  5447. }
  5448. },
  5449. dick: {
  5450. height: math.unit(1.714, "feet"),
  5451. name: "Dick",
  5452. image: {
  5453. source: "./media/characters/cimmaron/dick.svg"
  5454. }
  5455. },
  5456. },
  5457. [
  5458. {
  5459. name: "Normal",
  5460. height: math.unit(6, "feet"),
  5461. default: true
  5462. },
  5463. {
  5464. name: "Macro Mayor",
  5465. height: math.unit(350, "meters")
  5466. },
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5471. {
  5472. front: {
  5473. height: math.unit(6, "feet"),
  5474. weight: math.unit(200, "lbs"),
  5475. name: "Front",
  5476. image: {
  5477. source: "./media/characters/akari/front.svg",
  5478. extra: 962 / 901,
  5479. bottom: 0.04
  5480. }
  5481. }
  5482. },
  5483. [
  5484. {
  5485. name: "Micro",
  5486. height: math.unit(5, "inches"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "Normal",
  5491. height: math.unit(7, "feet")
  5492. },
  5493. ]
  5494. ))
  5495. characterMakers.push(() => makeCharacter(
  5496. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5497. {
  5498. front: {
  5499. height: math.unit(6, "feet"),
  5500. weight: math.unit(140, "lbs"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/cynosura/front.svg",
  5504. extra: 896 / 847
  5505. }
  5506. },
  5507. back: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(140, "lbs"),
  5510. name: "Back",
  5511. image: {
  5512. source: "./media/characters/cynosura/back.svg",
  5513. extra: 1365 / 1250
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Micro",
  5520. height: math.unit(4, "inches")
  5521. },
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(5.75, "feet"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Tall",
  5529. height: math.unit(10, "feet")
  5530. },
  5531. {
  5532. name: "Big",
  5533. height: math.unit(20, "feet")
  5534. },
  5535. {
  5536. name: "Macro",
  5537. height: math.unit(50, "feet")
  5538. },
  5539. ]
  5540. ))
  5541. characterMakers.push(() => makeCharacter(
  5542. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5543. {
  5544. front: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(170, "lbs"),
  5547. name: "Front",
  5548. image: {
  5549. source: "./media/characters/gin/front.svg",
  5550. extra: 1.053,
  5551. bottom: 0.025
  5552. }
  5553. },
  5554. foot: {
  5555. height: math.unit(6 / 4.25, "feet"),
  5556. name: "Foot",
  5557. image: {
  5558. source: "./media/characters/gin/foot.svg"
  5559. }
  5560. },
  5561. sole: {
  5562. height: math.unit(6 / 4.40, "feet"),
  5563. name: "Sole",
  5564. image: {
  5565. source: "./media/characters/gin/sole.svg"
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(13 + 2 / 12, "feet")
  5573. },
  5574. {
  5575. name: "Macro",
  5576. height: math.unit(1500, "feet")
  5577. },
  5578. {
  5579. name: "Megamacro",
  5580. height: math.unit(200, "miles"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Gigamacro",
  5585. height: math.unit(500, "megameters")
  5586. },
  5587. {
  5588. name: "Teramacro",
  5589. height: math.unit(15, "lightyears")
  5590. }
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6 + 1 / 6, "feet"),
  5598. weight: math.unit(178, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/guy/front.svg"
  5602. }
  5603. }
  5604. },
  5605. [
  5606. {
  5607. name: "Normal",
  5608. height: math.unit(6 + 1 / 6, "feet"),
  5609. default: true
  5610. },
  5611. {
  5612. name: "Large",
  5613. height: math.unit(25 + 7 / 12, "feet")
  5614. },
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(60 + 9 / 12, "feet")
  5618. },
  5619. {
  5620. name: "Macro+",
  5621. height: math.unit(246, "feet")
  5622. },
  5623. {
  5624. name: "Macro++",
  5625. height: math.unit(878, "feet")
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(9, "feet"),
  5634. weight: math.unit(800, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/tiberius/front.svg",
  5638. extra: 2295 / 2071
  5639. }
  5640. },
  5641. back: {
  5642. height: math.unit(9, "feet"),
  5643. weight: math.unit(800, "lbs"),
  5644. name: "Back",
  5645. image: {
  5646. source: "./media/characters/tiberius/back.svg",
  5647. extra: 2373 / 2160
  5648. }
  5649. },
  5650. },
  5651. [
  5652. {
  5653. name: "Normal",
  5654. height: math.unit(9, "feet"),
  5655. default: true
  5656. }
  5657. ]
  5658. ))
  5659. characterMakers.push(() => makeCharacter(
  5660. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5661. {
  5662. front: {
  5663. height: math.unit(6, "feet"),
  5664. weight: math.unit(600, "lbs"),
  5665. name: "Front",
  5666. image: {
  5667. source: "./media/characters/surgo/front.svg",
  5668. extra: 3591 / 2227
  5669. }
  5670. },
  5671. back: {
  5672. height: math.unit(6, "feet"),
  5673. weight: math.unit(600, "lbs"),
  5674. name: "Back",
  5675. image: {
  5676. source: "./media/characters/surgo/back.svg",
  5677. extra: 3557 / 2228
  5678. }
  5679. },
  5680. laying: {
  5681. height: math.unit(6 * 0.85, "feet"),
  5682. weight: math.unit(600, "lbs"),
  5683. name: "Laying",
  5684. image: {
  5685. source: "./media/characters/surgo/laying.svg"
  5686. }
  5687. },
  5688. },
  5689. [
  5690. {
  5691. name: "Normal",
  5692. height: math.unit(6, "feet"),
  5693. default: true
  5694. }
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5699. {
  5700. side: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(150, "lbs"),
  5703. name: "Side",
  5704. image: {
  5705. source: "./media/characters/cibus/side.svg",
  5706. extra: 800 / 400
  5707. }
  5708. },
  5709. },
  5710. [
  5711. {
  5712. name: "Normal",
  5713. height: math.unit(6, "feet"),
  5714. default: true
  5715. }
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(240, "lbs"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/nibbles/front.svg"
  5727. }
  5728. },
  5729. side: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(240, "lbs"),
  5732. name: "Side",
  5733. image: {
  5734. source: "./media/characters/nibbles/side.svg"
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(9, "feet"),
  5742. default: true
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5748. {
  5749. side: {
  5750. height: math.unit(5 + 1 / 6, "feet"),
  5751. weight: math.unit(130, "lbs"),
  5752. name: "Side",
  5753. image: {
  5754. source: "./media/characters/rikky/side.svg",
  5755. extra: 851 / 801
  5756. }
  5757. },
  5758. },
  5759. [
  5760. {
  5761. name: "Normal",
  5762. height: math.unit(5 + 1 / 6, "feet")
  5763. },
  5764. {
  5765. name: "Macro",
  5766. height: math.unit(152, "feet"),
  5767. default: true
  5768. },
  5769. {
  5770. name: "Megamacro",
  5771. height: math.unit(7, "miles")
  5772. }
  5773. ]
  5774. ))
  5775. characterMakers.push(() => makeCharacter(
  5776. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5777. {
  5778. side: {
  5779. height: math.unit(370, "cm"),
  5780. weight: math.unit(350, "lbs"),
  5781. name: "Side",
  5782. image: {
  5783. source: "./media/characters/malfressa/side.svg"
  5784. }
  5785. },
  5786. walking: {
  5787. height: math.unit(370, "cm"),
  5788. weight: math.unit(350, "lbs"),
  5789. name: "Walking",
  5790. image: {
  5791. source: "./media/characters/malfressa/walking.svg"
  5792. }
  5793. },
  5794. feral: {
  5795. height: math.unit(2500, "cm"),
  5796. weight: math.unit(100000, "lbs"),
  5797. name: "Feral",
  5798. image: {
  5799. source: "./media/characters/malfressa/feral.svg",
  5800. extra: 2108 / 837,
  5801. bottom: 0.02
  5802. }
  5803. },
  5804. },
  5805. [
  5806. {
  5807. name: "Normal",
  5808. height: math.unit(370, "cm")
  5809. },
  5810. {
  5811. name: "Macro",
  5812. height: math.unit(300, "meters"),
  5813. default: true
  5814. }
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5819. {
  5820. front: {
  5821. height: math.unit(6, "feet"),
  5822. weight: math.unit(60, "kg"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/jaro/front.svg"
  5826. }
  5827. },
  5828. back: {
  5829. height: math.unit(6, "feet"),
  5830. weight: math.unit(60, "kg"),
  5831. name: "Back",
  5832. image: {
  5833. source: "./media/characters/jaro/back.svg"
  5834. }
  5835. },
  5836. },
  5837. [
  5838. {
  5839. name: "Micro",
  5840. height: math.unit(7, "inches")
  5841. },
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(5.5, "feet"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Minimacro",
  5849. height: math.unit(20, "feet")
  5850. },
  5851. {
  5852. name: "Macro",
  5853. height: math.unit(200, "meters")
  5854. }
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5859. {
  5860. front: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(195, "lb"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/rogue/front.svg"
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Macro",
  5872. height: math.unit(90, "feet"),
  5873. default: true
  5874. },
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5879. {
  5880. front: {
  5881. height: math.unit(5 + 8 / 12, "feet"),
  5882. weight: math.unit(140, "lb"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/piper/front.svg",
  5886. extra: 3948/3655,
  5887. bottom: 0/3948
  5888. }
  5889. },
  5890. },
  5891. [
  5892. {
  5893. name: "Micro",
  5894. height: math.unit(2, "inches")
  5895. },
  5896. {
  5897. name: "Normal",
  5898. height: math.unit(5 + 8 / 12, "feet")
  5899. },
  5900. {
  5901. name: "Macro",
  5902. height: math.unit(250, "feet"),
  5903. default: true
  5904. },
  5905. {
  5906. name: "Megamacro",
  5907. height: math.unit(7, "miles")
  5908. },
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(6, "feet"),
  5916. weight: math.unit(220, "lb"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/gemini/front.svg"
  5920. }
  5921. },
  5922. back: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(220, "lb"),
  5925. name: "Back",
  5926. image: {
  5927. source: "./media/characters/gemini/back.svg"
  5928. }
  5929. },
  5930. kneeling: {
  5931. height: math.unit(6 / 1.5, "feet"),
  5932. weight: math.unit(220, "lb"),
  5933. name: "Kneeling",
  5934. image: {
  5935. source: "./media/characters/gemini/kneeling.svg",
  5936. bottom: 0.02
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Macro",
  5943. height: math.unit(300, "meters"),
  5944. default: true
  5945. },
  5946. {
  5947. name: "Megamacro",
  5948. height: math.unit(6900, "meters")
  5949. },
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5954. {
  5955. anthro: {
  5956. height: math.unit(2.35, "meters"),
  5957. weight: math.unit(73, "kg"),
  5958. name: "Anthro",
  5959. image: {
  5960. source: "./media/characters/alicia/anthro.svg",
  5961. extra: 2571 / 2385,
  5962. bottom: 75 / 2648
  5963. }
  5964. },
  5965. paw: {
  5966. height: math.unit(1.32, "feet"),
  5967. name: "Paw",
  5968. image: {
  5969. source: "./media/characters/alicia/paw.svg"
  5970. }
  5971. },
  5972. feral: {
  5973. height: math.unit(1.69, "meters"),
  5974. weight: math.unit(73, "kg"),
  5975. name: "Feral",
  5976. image: {
  5977. source: "./media/characters/alicia/feral.svg",
  5978. extra: 2123 / 1715,
  5979. bottom: 222 / 2349
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(2.35, "meters")
  5987. },
  5988. {
  5989. name: "Macro",
  5990. height: math.unit(60, "meters"),
  5991. default: true
  5992. },
  5993. {
  5994. name: "Megamacro",
  5995. height: math.unit(10000, "kilometers")
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(7, "feet"),
  6004. weight: math.unit(250, "lbs"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/archy/front.svg"
  6008. }
  6009. }
  6010. },
  6011. [
  6012. {
  6013. name: "Micro",
  6014. height: math.unit(1, "inch")
  6015. },
  6016. {
  6017. name: "Shorty",
  6018. height: math.unit(5, "feet")
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(7, "feet")
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(600, "meters"),
  6027. default: true
  6028. },
  6029. {
  6030. name: "Megamacro",
  6031. height: math.unit(1, "mile")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(1.65, "meters"),
  6040. weight: math.unit(74, "kg"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/berri/front.svg",
  6044. extra: 857 / 837,
  6045. bottom: 18 / 877
  6046. }
  6047. },
  6048. bum: {
  6049. height: math.unit(1.46, "feet"),
  6050. name: "Bum",
  6051. image: {
  6052. source: "./media/characters/berri/bum.svg"
  6053. }
  6054. },
  6055. mouth: {
  6056. height: math.unit(0.44, "feet"),
  6057. name: "Mouth",
  6058. image: {
  6059. source: "./media/characters/berri/mouth.svg"
  6060. }
  6061. },
  6062. paw: {
  6063. height: math.unit(0.826, "feet"),
  6064. name: "Paw",
  6065. image: {
  6066. source: "./media/characters/berri/paw.svg"
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(1.65, "meters")
  6074. },
  6075. {
  6076. name: "Macro",
  6077. height: math.unit(60, "m"),
  6078. default: true
  6079. },
  6080. {
  6081. name: "Megamacro",
  6082. height: math.unit(9.213, "km")
  6083. },
  6084. {
  6085. name: "Planet Eater",
  6086. height: math.unit(489, "megameters")
  6087. },
  6088. {
  6089. name: "Teramacro",
  6090. height: math.unit(2471635000000, "meters")
  6091. },
  6092. {
  6093. name: "Examacro",
  6094. height: math.unit(8.0624e+26, "meters")
  6095. }
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6100. {
  6101. front: {
  6102. height: math.unit(1.72, "meters"),
  6103. weight: math.unit(68, "kg"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/lexi/front.svg"
  6107. }
  6108. }
  6109. },
  6110. [
  6111. {
  6112. name: "Very Smol",
  6113. height: math.unit(10, "mm")
  6114. },
  6115. {
  6116. name: "Micro",
  6117. height: math.unit(6.8, "cm"),
  6118. default: true
  6119. },
  6120. {
  6121. name: "Normal",
  6122. height: math.unit(1.72, "m")
  6123. }
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6128. {
  6129. front: {
  6130. height: math.unit(1.69, "meters"),
  6131. weight: math.unit(68, "kg"),
  6132. name: "Front",
  6133. image: {
  6134. source: "./media/characters/martin/front.svg",
  6135. extra: 596 / 581
  6136. }
  6137. }
  6138. },
  6139. [
  6140. {
  6141. name: "Micro",
  6142. height: math.unit(6.85, "cm"),
  6143. default: true
  6144. },
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(1.69, "m")
  6148. }
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6153. {
  6154. front: {
  6155. height: math.unit(1.69, "meters"),
  6156. weight: math.unit(68, "kg"),
  6157. name: "Front",
  6158. image: {
  6159. source: "./media/characters/juno/front.svg"
  6160. }
  6161. }
  6162. },
  6163. [
  6164. {
  6165. name: "Micro",
  6166. height: math.unit(7, "cm")
  6167. },
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(1.89, "m")
  6171. },
  6172. {
  6173. name: "Macro",
  6174. height: math.unit(353, "meters"),
  6175. default: true
  6176. }
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6181. {
  6182. front: {
  6183. height: math.unit(1.93, "meters"),
  6184. weight: math.unit(83, "kg"),
  6185. name: "Front",
  6186. image: {
  6187. source: "./media/characters/samantha/front.svg"
  6188. }
  6189. },
  6190. frontClothed: {
  6191. height: math.unit(1.93, "meters"),
  6192. weight: math.unit(83, "kg"),
  6193. name: "Front (Clothed)",
  6194. image: {
  6195. source: "./media/characters/samantha/front-clothed.svg"
  6196. }
  6197. },
  6198. back: {
  6199. height: math.unit(1.93, "meters"),
  6200. weight: math.unit(83, "kg"),
  6201. name: "Back",
  6202. image: {
  6203. source: "./media/characters/samantha/back.svg"
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(1.93, "m")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(74, "meters"),
  6215. default: true
  6216. },
  6217. {
  6218. name: "Macro+",
  6219. height: math.unit(223, "meters"),
  6220. },
  6221. {
  6222. name: "Megamacro",
  6223. height: math.unit(8381, "meters"),
  6224. },
  6225. {
  6226. name: "Megamacro+",
  6227. height: math.unit(12000, "kilometers")
  6228. },
  6229. ]
  6230. ))
  6231. characterMakers.push(() => makeCharacter(
  6232. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6233. {
  6234. front: {
  6235. height: math.unit(1.92, "meters"),
  6236. weight: math.unit(80, "kg"),
  6237. name: "Front",
  6238. image: {
  6239. source: "./media/characters/dr-clay/front.svg"
  6240. }
  6241. },
  6242. frontClothed: {
  6243. height: math.unit(1.92, "meters"),
  6244. weight: math.unit(80, "kg"),
  6245. name: "Front (Clothed)",
  6246. image: {
  6247. source: "./media/characters/dr-clay/front-clothed.svg"
  6248. }
  6249. }
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(1.92, "m")
  6255. },
  6256. {
  6257. name: "Macro",
  6258. height: math.unit(214, "meters"),
  6259. default: true
  6260. },
  6261. {
  6262. name: "Macro+",
  6263. height: math.unit(12.237, "meters"),
  6264. },
  6265. {
  6266. name: "Megamacro",
  6267. height: math.unit(557, "megameters"),
  6268. },
  6269. {
  6270. name: "Unimaginable",
  6271. height: math.unit(120e9, "lightyears")
  6272. },
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6277. {
  6278. front: {
  6279. height: math.unit(2, "meters"),
  6280. weight: math.unit(80, "kg"),
  6281. name: "Front",
  6282. image: {
  6283. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6284. }
  6285. }
  6286. },
  6287. [
  6288. {
  6289. name: "Teramacro",
  6290. height: math.unit(500000, "lightyears"),
  6291. default: true
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6297. {
  6298. front: {
  6299. height: math.unit(2, "meters"),
  6300. weight: math.unit(150, "kg"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/vemus/front.svg",
  6304. extra: 2384 / 2084,
  6305. bottom: 0.0123
  6306. }
  6307. }
  6308. },
  6309. [
  6310. {
  6311. name: "Normal",
  6312. height: math.unit(3.75, "meters"),
  6313. default: true
  6314. },
  6315. {
  6316. name: "Big",
  6317. height: math.unit(8, "meters")
  6318. },
  6319. {
  6320. name: "Macro",
  6321. height: math.unit(100, "meters")
  6322. },
  6323. {
  6324. name: "Macro+",
  6325. height: math.unit(1500, "meters")
  6326. },
  6327. {
  6328. name: "Stellar",
  6329. height: math.unit(14e8, "meters")
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(2, "meters"),
  6338. weight: math.unit(70, "kg"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/beherit/front.svg",
  6342. extra: 1408 / 1242
  6343. }
  6344. }
  6345. },
  6346. [
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(6, "feet")
  6350. },
  6351. {
  6352. name: "Lorg",
  6353. height: math.unit(25, "feet"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Lorger",
  6358. height: math.unit(75, "feet")
  6359. },
  6360. {
  6361. name: "Macro",
  6362. height: math.unit(200, "meters")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6368. {
  6369. front: {
  6370. height: math.unit(2, "meters"),
  6371. weight: math.unit(150, "kg"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/everett/front.svg",
  6375. extra: 2038 / 1737,
  6376. bottom: 0.03
  6377. }
  6378. },
  6379. paw: {
  6380. height: math.unit(2 / 3.6, "meters"),
  6381. name: "Paw",
  6382. image: {
  6383. source: "./media/characters/everett/paw.svg"
  6384. }
  6385. },
  6386. },
  6387. [
  6388. {
  6389. name: "Normal",
  6390. height: math.unit(15, "feet"),
  6391. default: true
  6392. },
  6393. {
  6394. name: "Lorg",
  6395. height: math.unit(70, "feet"),
  6396. default: true
  6397. },
  6398. {
  6399. name: "Lorger",
  6400. height: math.unit(250, "feet")
  6401. },
  6402. {
  6403. name: "Macro",
  6404. height: math.unit(500, "meters")
  6405. },
  6406. ]
  6407. ))
  6408. characterMakers.push(() => makeCharacter(
  6409. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6410. {
  6411. front: {
  6412. height: math.unit(2, "meters"),
  6413. weight: math.unit(86, "kg"),
  6414. name: "Front",
  6415. image: {
  6416. source: "./media/characters/rose/front.svg",
  6417. extra: 350/335,
  6418. bottom: 10/360
  6419. }
  6420. },
  6421. frontAlt: {
  6422. height: math.unit(1.6, "meters"),
  6423. weight: math.unit(86, "kg"),
  6424. name: "Front (Alt)",
  6425. image: {
  6426. source: "./media/characters/rose/front-alt.svg",
  6427. extra: 299/283,
  6428. bottom: 3/302
  6429. }
  6430. },
  6431. plush: {
  6432. height: math.unit(2, "meters"),
  6433. weight: math.unit(86/3, "kg"),
  6434. name: "Plush",
  6435. image: {
  6436. source: "./media/characters/rose/plush.svg",
  6437. extra: 361/337,
  6438. bottom: 11/372
  6439. }
  6440. },
  6441. },
  6442. [
  6443. {
  6444. name: "Mini-Micro",
  6445. height: math.unit(1, "cm")
  6446. },
  6447. {
  6448. name: "Micro",
  6449. height: math.unit(3.5, "inches"),
  6450. default: true
  6451. },
  6452. {
  6453. name: "Normal",
  6454. height: math.unit(6 + 1 / 6, "feet")
  6455. },
  6456. {
  6457. name: "Mini-Macro",
  6458. height: math.unit(9 + 10 / 12, "feet")
  6459. },
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6464. {
  6465. front: {
  6466. height: math.unit(2, "meters"),
  6467. weight: math.unit(350, "lbs"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/regal/front.svg"
  6471. }
  6472. },
  6473. back: {
  6474. height: math.unit(2, "meters"),
  6475. weight: math.unit(350, "lbs"),
  6476. name: "Back",
  6477. image: {
  6478. source: "./media/characters/regal/back.svg"
  6479. }
  6480. },
  6481. },
  6482. [
  6483. {
  6484. name: "Macro",
  6485. height: math.unit(350, "feet"),
  6486. default: true
  6487. }
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(4 + 11 / 12, "feet"),
  6495. weight: math.unit(100, "lbs"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/opal/front.svg"
  6499. }
  6500. },
  6501. frontAlt: {
  6502. height: math.unit(4 + 11 / 12, "feet"),
  6503. weight: math.unit(100, "lbs"),
  6504. name: "Front (Alt)",
  6505. image: {
  6506. source: "./media/characters/opal/front-alt.svg"
  6507. }
  6508. },
  6509. },
  6510. [
  6511. {
  6512. name: "Small",
  6513. height: math.unit(4 + 11 / 12, "feet")
  6514. },
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(20, "feet"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Macro",
  6522. height: math.unit(120, "feet")
  6523. },
  6524. {
  6525. name: "Megamacro",
  6526. height: math.unit(80, "miles")
  6527. },
  6528. {
  6529. name: "True Size",
  6530. height: math.unit(100000, "lightyears")
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(200, "lbs"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/vector-wuff/front.svg"
  6543. }
  6544. }
  6545. },
  6546. [
  6547. {
  6548. name: "Normal",
  6549. height: math.unit(2.8, "meters")
  6550. },
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(450, "meters"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(15, "kilometers")
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(256, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/dannik/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(69.57, "meters"),
  6578. default: true
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(120, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/azura-saharah/front.svg"
  6591. }
  6592. },
  6593. back: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(120, "lbs"),
  6596. name: "Back",
  6597. image: {
  6598. source: "./media/characters/azura-saharah/back.svg"
  6599. }
  6600. },
  6601. },
  6602. [
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(100, "feet"),
  6606. default: true
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6612. {
  6613. side: {
  6614. height: math.unit(5 + 4 / 12, "feet"),
  6615. weight: math.unit(163, "lbs"),
  6616. name: "Side",
  6617. image: {
  6618. source: "./media/characters/kennedy/side.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Standard Doggo",
  6625. height: math.unit(5 + 4 / 12, "feet")
  6626. },
  6627. {
  6628. name: "Big Doggo",
  6629. height: math.unit(25 + 3 / 12, "feet"),
  6630. default: true
  6631. },
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6636. {
  6637. front: {
  6638. height: math.unit(6, "feet"),
  6639. weight: math.unit(90, "lbs"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/odi-lunar/front.svg"
  6643. }
  6644. }
  6645. },
  6646. [
  6647. {
  6648. name: "Micro",
  6649. height: math.unit(3, "inches"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(5.5, "feet")
  6655. }
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6660. {
  6661. back: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(220, "lbs"),
  6664. name: "Back",
  6665. image: {
  6666. source: "./media/characters/mandake/back.svg"
  6667. }
  6668. }
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(7, "feet"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(78, "feet")
  6679. },
  6680. {
  6681. name: "Macro+",
  6682. height: math.unit(300, "meters")
  6683. },
  6684. {
  6685. name: "Macro++",
  6686. height: math.unit(2400, "feet")
  6687. },
  6688. {
  6689. name: "Megamacro",
  6690. height: math.unit(5167, "meters")
  6691. },
  6692. {
  6693. name: "Gigamacro",
  6694. height: math.unit(41769, "miles")
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6700. {
  6701. front: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(120, "lbs"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/yozey/front.svg"
  6707. }
  6708. },
  6709. frontAlt: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(120, "lbs"),
  6712. name: "Front (Alt)",
  6713. image: {
  6714. source: "./media/characters/yozey/front-alt.svg"
  6715. }
  6716. },
  6717. side: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(120, "lbs"),
  6720. name: "Side",
  6721. image: {
  6722. source: "./media/characters/yozey/side.svg"
  6723. }
  6724. },
  6725. },
  6726. [
  6727. {
  6728. name: "Micro",
  6729. height: math.unit(3, "inches"),
  6730. default: true
  6731. },
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(6, "feet")
  6735. }
  6736. ]
  6737. ))
  6738. characterMakers.push(() => makeCharacter(
  6739. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6740. {
  6741. front: {
  6742. height: math.unit(6, "feet"),
  6743. weight: math.unit(103, "lbs"),
  6744. name: "Front",
  6745. image: {
  6746. source: "./media/characters/valeska-voss/front.svg"
  6747. }
  6748. }
  6749. },
  6750. [
  6751. {
  6752. name: "Mini-Sized Sub",
  6753. height: math.unit(3.1, "inches")
  6754. },
  6755. {
  6756. name: "Mid-Sized Sub",
  6757. height: math.unit(6.2, "inches")
  6758. },
  6759. {
  6760. name: "Full-Sized Sub",
  6761. height: math.unit(9.3, "inches")
  6762. },
  6763. {
  6764. name: "Normal",
  6765. height: math.unit(5 + 2 / 12, "foot"),
  6766. default: true
  6767. },
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(160, "lbs"),
  6776. name: "Front",
  6777. image: {
  6778. source: "./media/characters/gene-zeta/front.svg",
  6779. extra: 3006 / 2826,
  6780. bottom: 182 / 3188
  6781. }
  6782. }
  6783. },
  6784. [
  6785. {
  6786. name: "Micro",
  6787. height: math.unit(6, "inches")
  6788. },
  6789. {
  6790. name: "Normal",
  6791. height: math.unit(5 + 11 / 12, "foot"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Macro",
  6796. height: math.unit(140, "feet")
  6797. },
  6798. {
  6799. name: "Supercharged",
  6800. height: math.unit(2500, "feet")
  6801. },
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(350, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/razinox/front.svg",
  6813. extra: 1686 / 1548,
  6814. bottom: 28.2 / 1868
  6815. }
  6816. },
  6817. back: {
  6818. height: math.unit(6, "feet"),
  6819. weight: math.unit(350, "lbs"),
  6820. name: "Back",
  6821. image: {
  6822. source: "./media/characters/razinox/back.svg",
  6823. extra: 1660 / 1590,
  6824. bottom: 15 / 1665
  6825. }
  6826. },
  6827. },
  6828. [
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(10 + 8 / 12, "foot")
  6832. },
  6833. {
  6834. name: "Minimacro",
  6835. height: math.unit(15, "foot")
  6836. },
  6837. {
  6838. name: "Macro",
  6839. height: math.unit(60, "foot"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Megamacro",
  6844. height: math.unit(5, "miles")
  6845. },
  6846. {
  6847. name: "Gigamacro",
  6848. height: math.unit(6000, "miles")
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(150, "lbs"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/cobalt/front.svg"
  6861. }
  6862. }
  6863. },
  6864. [
  6865. {
  6866. name: "Normal",
  6867. height: math.unit(8 + 1 / 12, "foot")
  6868. },
  6869. {
  6870. name: "Macro",
  6871. height: math.unit(111, "foot"),
  6872. default: true
  6873. },
  6874. {
  6875. name: "Supracosmic",
  6876. height: math.unit(1e42, "feet")
  6877. },
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6882. {
  6883. front: {
  6884. height: math.unit(6, "feet"),
  6885. weight: math.unit(140, "lbs"),
  6886. name: "Front",
  6887. image: {
  6888. source: "./media/characters/amanda/front.svg"
  6889. }
  6890. }
  6891. },
  6892. [
  6893. {
  6894. name: "Micro",
  6895. height: math.unit(5, "inches"),
  6896. default: true
  6897. },
  6898. ]
  6899. ))
  6900. characterMakers.push(() => makeCharacter(
  6901. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6902. {
  6903. front: {
  6904. height: math.unit(2.75, "meters"),
  6905. weight: math.unit(1200, "lb"),
  6906. name: "Front",
  6907. image: {
  6908. source: "./media/characters/teal/front.svg",
  6909. extra: 2463 / 2320,
  6910. bottom: 166 / 2629
  6911. }
  6912. },
  6913. back: {
  6914. height: math.unit(2.75, "meters"),
  6915. weight: math.unit(1200, "lb"),
  6916. name: "Back",
  6917. image: {
  6918. source: "./media/characters/teal/back.svg",
  6919. extra: 2580 / 2489,
  6920. bottom: 151 / 2731
  6921. }
  6922. },
  6923. sitting: {
  6924. height: math.unit(1.9, "meters"),
  6925. weight: math.unit(1200, "lb"),
  6926. name: "Sitting",
  6927. image: {
  6928. source: "./media/characters/teal/sitting.svg",
  6929. extra: 623 / 590,
  6930. bottom: 121 / 744
  6931. }
  6932. },
  6933. standing: {
  6934. height: math.unit(2.75, "meters"),
  6935. weight: math.unit(1200, "lb"),
  6936. name: "Standing",
  6937. image: {
  6938. source: "./media/characters/teal/standing.svg",
  6939. extra: 923 / 893,
  6940. bottom: 60 / 983
  6941. }
  6942. },
  6943. stretching: {
  6944. height: math.unit(3.65, "meters"),
  6945. weight: math.unit(1200, "lb"),
  6946. name: "Stretching",
  6947. image: {
  6948. source: "./media/characters/teal/stretching.svg",
  6949. extra: 1276 / 1244,
  6950. bottom: 0 / 1276
  6951. }
  6952. },
  6953. legged: {
  6954. height: math.unit(1.3, "meters"),
  6955. weight: math.unit(100, "lb"),
  6956. name: "Legged",
  6957. image: {
  6958. source: "./media/characters/teal/legged.svg",
  6959. extra: 462 / 437,
  6960. bottom: 24 / 486
  6961. }
  6962. },
  6963. naga: {
  6964. height: math.unit(5.4, "meters"),
  6965. weight: math.unit(4000, "lb"),
  6966. name: "Naga",
  6967. image: {
  6968. source: "./media/characters/teal/naga.svg",
  6969. extra: 1902 / 1858,
  6970. bottom: 0 / 1902
  6971. }
  6972. },
  6973. hand: {
  6974. height: math.unit(0.52, "meters"),
  6975. name: "Hand",
  6976. image: {
  6977. source: "./media/characters/teal/hand.svg"
  6978. }
  6979. },
  6980. maw: {
  6981. height: math.unit(0.43, "meters"),
  6982. name: "Maw",
  6983. image: {
  6984. source: "./media/characters/teal/maw.svg"
  6985. }
  6986. },
  6987. slit: {
  6988. height: math.unit(0.25, "meters"),
  6989. name: "Slit",
  6990. image: {
  6991. source: "./media/characters/teal/slit.svg"
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Normal",
  6998. height: math.unit(2.75, "meters"),
  6999. default: true
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(300, "feet")
  7004. },
  7005. {
  7006. name: "Macro+",
  7007. height: math.unit(2000, "feet")
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7013. {
  7014. frontCat: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(180, "lbs"),
  7017. name: "Front (Cat)",
  7018. image: {
  7019. source: "./media/characters/ravin-amulet/front-cat.svg"
  7020. }
  7021. },
  7022. frontCatAlt: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(180, "lbs"),
  7025. name: "Front (Alt, Cat)",
  7026. image: {
  7027. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7028. }
  7029. },
  7030. frontWerewolf: {
  7031. height: math.unit(6 * 1.2, "feet"),
  7032. weight: math.unit(225, "lbs"),
  7033. name: "Front (Werewolf)",
  7034. image: {
  7035. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7036. }
  7037. },
  7038. backWerewolf: {
  7039. height: math.unit(6 * 1.2, "feet"),
  7040. weight: math.unit(225, "lbs"),
  7041. name: "Back (Werewolf)",
  7042. image: {
  7043. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7044. }
  7045. },
  7046. },
  7047. [
  7048. {
  7049. name: "Nano",
  7050. height: math.unit(1, "micrometer")
  7051. },
  7052. {
  7053. name: "Micro",
  7054. height: math.unit(1, "inch")
  7055. },
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(6, "feet"),
  7059. default: true
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(60, "feet")
  7064. }
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(165, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/fluoresce/front.svg"
  7076. }
  7077. }
  7078. },
  7079. [
  7080. {
  7081. name: "Micro",
  7082. height: math.unit(6, "cm")
  7083. },
  7084. {
  7085. name: "Normal",
  7086. height: math.unit(5 + 7 / 12, "feet"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(56, "feet")
  7092. },
  7093. {
  7094. name: "Megamacro",
  7095. height: math.unit(1.9, "miles")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(9 + 6 / 12, "feet"),
  7104. weight: math.unit(523, "lbs"),
  7105. name: "Side",
  7106. image: {
  7107. source: "./media/characters/aurora/side.svg"
  7108. }
  7109. }
  7110. },
  7111. [
  7112. {
  7113. name: "Normal",
  7114. height: math.unit(9 + 6 / 12, "feet")
  7115. },
  7116. {
  7117. name: "Macro",
  7118. height: math.unit(96, "feet"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Macro+",
  7123. height: math.unit(243, "feet")
  7124. },
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(194, "cm"),
  7132. weight: math.unit(90, "kg"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/ranek/front.svg"
  7136. }
  7137. },
  7138. side: {
  7139. height: math.unit(194, "cm"),
  7140. weight: math.unit(90, "kg"),
  7141. name: "Side",
  7142. image: {
  7143. source: "./media/characters/ranek/side.svg"
  7144. }
  7145. },
  7146. back: {
  7147. height: math.unit(194, "cm"),
  7148. weight: math.unit(90, "kg"),
  7149. name: "Back",
  7150. image: {
  7151. source: "./media/characters/ranek/back.svg"
  7152. }
  7153. },
  7154. feral: {
  7155. height: math.unit(30, "cm"),
  7156. weight: math.unit(1.6, "lbs"),
  7157. name: "Feral",
  7158. image: {
  7159. source: "./media/characters/ranek/feral.svg"
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(194, "cm"),
  7167. default: true
  7168. },
  7169. {
  7170. name: "Macro",
  7171. height: math.unit(100, "meters")
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(5 + 6 / 12, "feet"),
  7180. weight: math.unit(153, "lbs"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/andrew-cooper/front.svg"
  7184. }
  7185. },
  7186. },
  7187. [
  7188. {
  7189. name: "Nano",
  7190. height: math.unit(1, "mm")
  7191. },
  7192. {
  7193. name: "Micro",
  7194. height: math.unit(2, "inches")
  7195. },
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(5 + 6 / 12, "feet"),
  7199. default: true
  7200. }
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(180, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/akane-sato/front.svg",
  7212. extra: 1219 / 1140
  7213. }
  7214. },
  7215. back: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(180, "lbs"),
  7218. name: "Back",
  7219. image: {
  7220. source: "./media/characters/akane-sato/back.svg",
  7221. extra: 1219 / 1170
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(2.5, "meters")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(250, "meters"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(25, "km")
  7238. },
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7243. {
  7244. front: {
  7245. height: math.unit(6, "feet"),
  7246. weight: math.unit(65, "kg"),
  7247. name: "Front",
  7248. image: {
  7249. source: "./media/characters/rook/front.svg",
  7250. extra: 960 / 950
  7251. }
  7252. }
  7253. },
  7254. [
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(8.8, "feet")
  7258. },
  7259. {
  7260. name: "Macro",
  7261. height: math.unit(88, "feet"),
  7262. default: true
  7263. },
  7264. {
  7265. name: "Megamacro",
  7266. height: math.unit(8, "miles")
  7267. },
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(12 + 2 / 12, "feet"),
  7275. weight: math.unit(808, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/prodigy/front.svg"
  7279. }
  7280. }
  7281. },
  7282. [
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(12 + 2 / 12, "feet"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Macro",
  7290. height: math.unit(143, "feet")
  7291. },
  7292. {
  7293. name: "Macro+",
  7294. height: math.unit(400, "feet")
  7295. },
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(225, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/daniel/front.svg"
  7307. }
  7308. },
  7309. leaning: {
  7310. height: math.unit(6, "feet"),
  7311. weight: math.unit(225, "lbs"),
  7312. name: "Leaning",
  7313. image: {
  7314. source: "./media/characters/daniel/leaning.svg"
  7315. }
  7316. },
  7317. },
  7318. [
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(1000, "feet"),
  7322. default: true
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(88, "lbs"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/chiros/front.svg",
  7335. extra: 306 / 226
  7336. }
  7337. },
  7338. side: {
  7339. height: math.unit(6, "feet"),
  7340. weight: math.unit(88, "lbs"),
  7341. name: "Side",
  7342. image: {
  7343. source: "./media/characters/chiros/side.svg",
  7344. extra: 306 / 226
  7345. }
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(6, "cm"),
  7352. default: true
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7358. {
  7359. front: {
  7360. height: math.unit(6, "feet"),
  7361. weight: math.unit(100, "lbs"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/selka/front.svg",
  7365. extra: 947 / 887
  7366. }
  7367. }
  7368. },
  7369. [
  7370. {
  7371. name: "Normal",
  7372. height: math.unit(5, "cm"),
  7373. default: true
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(8 + 3 / 12, "feet"),
  7382. weight: math.unit(424, "lbs"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/verin/front.svg",
  7386. extra: 1845 / 1550
  7387. }
  7388. },
  7389. frontArmored: {
  7390. height: math.unit(8 + 3 / 12, "feet"),
  7391. weight: math.unit(424, "lbs"),
  7392. name: "Front (Armored)",
  7393. image: {
  7394. source: "./media/characters/verin/front-armor.svg",
  7395. extra: 1845 / 1550,
  7396. bottom: 0.01
  7397. }
  7398. },
  7399. back: {
  7400. height: math.unit(8 + 3 / 12, "feet"),
  7401. weight: math.unit(424, "lbs"),
  7402. name: "Back",
  7403. image: {
  7404. source: "./media/characters/verin/back.svg",
  7405. bottom: 0.1,
  7406. extra: 1
  7407. }
  7408. },
  7409. foot: {
  7410. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7411. name: "Foot",
  7412. image: {
  7413. source: "./media/characters/verin/foot.svg"
  7414. }
  7415. },
  7416. },
  7417. [
  7418. {
  7419. name: "Normal",
  7420. height: math.unit(8 + 3 / 12, "feet")
  7421. },
  7422. {
  7423. name: "Minimacro",
  7424. height: math.unit(21, "feet"),
  7425. default: true
  7426. },
  7427. {
  7428. name: "Macro",
  7429. height: math.unit(626, "feet")
  7430. },
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7435. {
  7436. front: {
  7437. height: math.unit(2.718, "meters"),
  7438. weight: math.unit(150, "lbs"),
  7439. name: "Front",
  7440. image: {
  7441. source: "./media/characters/sovrim-terraquian/front.svg"
  7442. }
  7443. },
  7444. back: {
  7445. height: math.unit(2.718, "meters"),
  7446. weight: math.unit(150, "lbs"),
  7447. name: "Back",
  7448. image: {
  7449. source: "./media/characters/sovrim-terraquian/back.svg"
  7450. }
  7451. }
  7452. },
  7453. [
  7454. {
  7455. name: "Micro",
  7456. height: math.unit(2, "inches")
  7457. },
  7458. {
  7459. name: "Small",
  7460. height: math.unit(1, "meter")
  7461. },
  7462. {
  7463. name: "Normal",
  7464. height: math.unit(Math.E, "meters"),
  7465. default: true
  7466. },
  7467. {
  7468. name: "Macro",
  7469. height: math.unit(20, "meters")
  7470. },
  7471. {
  7472. name: "Macro+",
  7473. height: math.unit(400, "meters")
  7474. },
  7475. ]
  7476. ))
  7477. characterMakers.push(() => makeCharacter(
  7478. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7479. {
  7480. front: {
  7481. height: math.unit(7, "feet"),
  7482. weight: math.unit(489, "lbs"),
  7483. name: "Front",
  7484. image: {
  7485. source: "./media/characters/reece-silvermane/front.svg",
  7486. bottom: 0.02,
  7487. extra: 1
  7488. }
  7489. },
  7490. },
  7491. [
  7492. {
  7493. name: "Macro",
  7494. height: math.unit(1.5, "miles"),
  7495. default: true
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(78, "kg"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/kane/front.svg",
  7508. extra: 978 / 899
  7509. }
  7510. },
  7511. },
  7512. [
  7513. {
  7514. name: "Normal",
  7515. height: math.unit(2.1, "m"),
  7516. },
  7517. {
  7518. name: "Macro",
  7519. height: math.unit(1, "km"),
  7520. default: true
  7521. },
  7522. ]
  7523. ))
  7524. characterMakers.push(() => makeCharacter(
  7525. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7526. {
  7527. front: {
  7528. height: math.unit(6, "feet"),
  7529. weight: math.unit(200, "kg"),
  7530. name: "Front",
  7531. image: {
  7532. source: "./media/characters/tegon/front.svg",
  7533. bottom: 0.01,
  7534. extra: 1
  7535. }
  7536. },
  7537. },
  7538. [
  7539. {
  7540. name: "Micro",
  7541. height: math.unit(1, "inch")
  7542. },
  7543. {
  7544. name: "Normal",
  7545. height: math.unit(6 + 3 / 12, "feet"),
  7546. default: true
  7547. },
  7548. {
  7549. name: "Macro",
  7550. height: math.unit(300, "feet")
  7551. },
  7552. {
  7553. name: "Megamacro",
  7554. height: math.unit(69, "miles")
  7555. },
  7556. ]
  7557. ))
  7558. characterMakers.push(() => makeCharacter(
  7559. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7560. {
  7561. side: {
  7562. height: math.unit(6, "feet"),
  7563. weight: math.unit(2304, "lbs"),
  7564. name: "Side",
  7565. image: {
  7566. source: "./media/characters/arcturax/side.svg",
  7567. extra: 790 / 376,
  7568. bottom: 0.01
  7569. }
  7570. },
  7571. },
  7572. [
  7573. {
  7574. name: "Micro",
  7575. height: math.unit(2, "inch")
  7576. },
  7577. {
  7578. name: "Normal",
  7579. height: math.unit(6, "feet")
  7580. },
  7581. {
  7582. name: "Macro",
  7583. height: math.unit(39, "feet"),
  7584. default: true
  7585. },
  7586. {
  7587. name: "Megamacro",
  7588. height: math.unit(7, "miles")
  7589. },
  7590. ]
  7591. ))
  7592. characterMakers.push(() => makeCharacter(
  7593. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7594. {
  7595. front: {
  7596. height: math.unit(6, "feet"),
  7597. weight: math.unit(50, "lbs"),
  7598. name: "Front",
  7599. image: {
  7600. source: "./media/characters/sentri/front.svg",
  7601. extra: 1750 / 1570,
  7602. bottom: 0.025
  7603. }
  7604. },
  7605. frontAlt: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(50, "lbs"),
  7608. name: "Front (Alt)",
  7609. image: {
  7610. source: "./media/characters/sentri/front-alt.svg",
  7611. extra: 1750 / 1570,
  7612. bottom: 0.025
  7613. }
  7614. },
  7615. },
  7616. [
  7617. {
  7618. name: "Normal",
  7619. height: math.unit(15, "feet"),
  7620. default: true
  7621. },
  7622. {
  7623. name: "Macro",
  7624. height: math.unit(2500, "feet")
  7625. }
  7626. ]
  7627. ))
  7628. characterMakers.push(() => makeCharacter(
  7629. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7630. {
  7631. front: {
  7632. height: math.unit(5 + 8 / 12, "feet"),
  7633. weight: math.unit(130, "lbs"),
  7634. name: "Front",
  7635. image: {
  7636. source: "./media/characters/corvin/front.svg",
  7637. extra: 1803 / 1629
  7638. }
  7639. },
  7640. frontShirt: {
  7641. height: math.unit(5 + 8 / 12, "feet"),
  7642. weight: math.unit(130, "lbs"),
  7643. name: "Front (Shirt)",
  7644. image: {
  7645. source: "./media/characters/corvin/front-shirt.svg",
  7646. extra: 1803 / 1629
  7647. }
  7648. },
  7649. frontPoncho: {
  7650. height: math.unit(5 + 8 / 12, "feet"),
  7651. weight: math.unit(130, "lbs"),
  7652. name: "Front (Poncho)",
  7653. image: {
  7654. source: "./media/characters/corvin/front-poncho.svg",
  7655. extra: 1803 / 1629
  7656. }
  7657. },
  7658. side: {
  7659. height: math.unit(5 + 8 / 12, "feet"),
  7660. weight: math.unit(130, "lbs"),
  7661. name: "Side",
  7662. image: {
  7663. source: "./media/characters/corvin/side.svg",
  7664. extra: 1012 / 945
  7665. }
  7666. },
  7667. back: {
  7668. height: math.unit(5 + 8 / 12, "feet"),
  7669. weight: math.unit(130, "lbs"),
  7670. name: "Back",
  7671. image: {
  7672. source: "./media/characters/corvin/back.svg",
  7673. extra: 1803 / 1629
  7674. }
  7675. },
  7676. },
  7677. [
  7678. {
  7679. name: "Micro",
  7680. height: math.unit(3, "inches")
  7681. },
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(5 + 8 / 12, "feet")
  7685. },
  7686. {
  7687. name: "Macro",
  7688. height: math.unit(300, "feet"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Megamacro",
  7693. height: math.unit(500, "miles")
  7694. }
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7699. {
  7700. front: {
  7701. height: math.unit(6, "feet"),
  7702. weight: math.unit(135, "lbs"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/q/front.svg",
  7706. extra: 854 / 752,
  7707. bottom: 0.005
  7708. }
  7709. },
  7710. back: {
  7711. height: math.unit(6, "feet"),
  7712. weight: math.unit(130, "lbs"),
  7713. name: "Back",
  7714. image: {
  7715. source: "./media/characters/q/back.svg",
  7716. extra: 854 / 752
  7717. }
  7718. },
  7719. },
  7720. [
  7721. {
  7722. name: "Macro",
  7723. height: math.unit(90, "feet"),
  7724. default: true
  7725. },
  7726. {
  7727. name: "Extra Macro",
  7728. height: math.unit(300, "feet"),
  7729. },
  7730. {
  7731. name: "BIG WALF",
  7732. height: math.unit(750, "feet"),
  7733. },
  7734. ]
  7735. ))
  7736. characterMakers.push(() => makeCharacter(
  7737. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7738. {
  7739. front: {
  7740. height: math.unit(6, "feet"),
  7741. weight: math.unit(150, "lbs"),
  7742. name: "Front",
  7743. image: {
  7744. source: "./media/characters/carley/front.svg",
  7745. extra: 3927 / 3540,
  7746. bottom: 29.2 / 735
  7747. }
  7748. }
  7749. },
  7750. [
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(6 + 3 / 12, "feet")
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(185, "feet"),
  7758. default: true
  7759. },
  7760. {
  7761. name: "Megamacro",
  7762. height: math.unit(8, "miles"),
  7763. },
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7768. {
  7769. front: {
  7770. height: math.unit(3, "feet"),
  7771. weight: math.unit(28, "lbs"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/citrine/front.svg"
  7775. }
  7776. }
  7777. },
  7778. [
  7779. {
  7780. name: "Normal",
  7781. height: math.unit(3, "feet"),
  7782. default: true
  7783. }
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7788. {
  7789. front: {
  7790. height: math.unit(14, "feet"),
  7791. weight: math.unit(1450, "kg"),
  7792. capacity: math.unit(15, "people"),
  7793. name: "Front",
  7794. image: {
  7795. source: "./media/characters/aura-starwind/front.svg",
  7796. extra: 1455 / 1335
  7797. }
  7798. },
  7799. side: {
  7800. height: math.unit(14, "feet"),
  7801. weight: math.unit(1450, "kg"),
  7802. capacity: math.unit(15, "people"),
  7803. name: "Side",
  7804. image: {
  7805. source: "./media/characters/aura-starwind/side.svg",
  7806. extra: 1654 / 1497
  7807. }
  7808. },
  7809. taur: {
  7810. height: math.unit(18, "feet"),
  7811. weight: math.unit(5500, "kg"),
  7812. capacity: math.unit(50, "people"),
  7813. name: "Taur",
  7814. image: {
  7815. source: "./media/characters/aura-starwind/taur.svg",
  7816. extra: 1760 / 1650
  7817. }
  7818. },
  7819. feral: {
  7820. height: math.unit(46, "feet"),
  7821. weight: math.unit(25000, "kg"),
  7822. capacity: math.unit(120, "people"),
  7823. name: "Feral",
  7824. image: {
  7825. source: "./media/characters/aura-starwind/feral.svg"
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Normal",
  7832. height: math.unit(14, "feet"),
  7833. default: true
  7834. },
  7835. {
  7836. name: "Macro",
  7837. height: math.unit(50, "meters")
  7838. },
  7839. {
  7840. name: "Megamacro",
  7841. height: math.unit(5000, "meters")
  7842. },
  7843. {
  7844. name: "Gigamacro",
  7845. height: math.unit(100000, "kilometers")
  7846. },
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(2 + 7 / 12, "feet"),
  7854. weight: math.unit(32, "lbs"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/rivet/front.svg",
  7858. extra: 1716 / 1658,
  7859. bottom: 0.03
  7860. }
  7861. },
  7862. foot: {
  7863. height: math.unit(0.551, "feet"),
  7864. name: "Rivet's Foot",
  7865. image: {
  7866. source: "./media/characters/rivet/foot.svg"
  7867. },
  7868. rename: true
  7869. }
  7870. },
  7871. [
  7872. {
  7873. name: "Micro",
  7874. height: math.unit(1.5, "inches"),
  7875. },
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(2 + 7 / 12, "feet"),
  7879. default: true
  7880. },
  7881. {
  7882. name: "Macro",
  7883. height: math.unit(85, "feet")
  7884. },
  7885. {
  7886. name: "Megamacro",
  7887. height: math.unit(2.2, "km")
  7888. }
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(5 + 9 / 12, "feet"),
  7896. weight: math.unit(150, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/coffee/front.svg",
  7900. extra: 3666 / 3032,
  7901. bottom: 0.04
  7902. }
  7903. },
  7904. foot: {
  7905. height: math.unit(1.29, "feet"),
  7906. name: "Foot",
  7907. image: {
  7908. source: "./media/characters/coffee/foot.svg"
  7909. }
  7910. },
  7911. },
  7912. [
  7913. {
  7914. name: "Micro",
  7915. height: math.unit(2, "inches"),
  7916. },
  7917. {
  7918. name: "Normal",
  7919. height: math.unit(5 + 9 / 12, "feet"),
  7920. default: true
  7921. },
  7922. {
  7923. name: "Macro",
  7924. height: math.unit(800, "feet")
  7925. },
  7926. {
  7927. name: "Megamacro",
  7928. height: math.unit(25, "miles")
  7929. }
  7930. ]
  7931. ))
  7932. characterMakers.push(() => makeCharacter(
  7933. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7934. {
  7935. front: {
  7936. height: math.unit(6, "feet"),
  7937. weight: math.unit(200, "lbs"),
  7938. name: "Front",
  7939. image: {
  7940. source: "./media/characters/chari-gal/front.svg",
  7941. extra: 1568 / 1385,
  7942. bottom: 0.047
  7943. }
  7944. },
  7945. gigantamax: {
  7946. height: math.unit(6 * 16, "feet"),
  7947. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7948. name: "Gigantamax",
  7949. image: {
  7950. source: "./media/characters/chari-gal/gigantamax.svg",
  7951. extra: 1124 / 888,
  7952. bottom: 0.03
  7953. }
  7954. },
  7955. },
  7956. [
  7957. {
  7958. name: "Normal",
  7959. height: math.unit(5 + 7 / 12, "feet")
  7960. },
  7961. {
  7962. name: "Macro",
  7963. height: math.unit(200, "feet"),
  7964. default: true
  7965. }
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(6, "feet"),
  7973. weight: math.unit(150, "lbs"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/nova/front.svg",
  7977. extra: 5000 / 4722,
  7978. bottom: 0.02
  7979. }
  7980. }
  7981. },
  7982. [
  7983. {
  7984. name: "Micro-",
  7985. height: math.unit(0.8, "inches")
  7986. },
  7987. {
  7988. name: "Micro",
  7989. height: math.unit(2, "inches"),
  7990. default: true
  7991. },
  7992. ]
  7993. ))
  7994. characterMakers.push(() => makeCharacter(
  7995. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7996. {
  7997. front: {
  7998. height: math.unit(3 + 1 / 12, "feet"),
  7999. weight: math.unit(21.7, "lbs"),
  8000. name: "Front",
  8001. image: {
  8002. source: "./media/characters/argent/front.svg",
  8003. extra: 1471 / 1331,
  8004. bottom: 100.8 / 1575.5
  8005. }
  8006. }
  8007. },
  8008. [
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(2, "inches")
  8012. },
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(3 + 1 / 12, "feet"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(120, "feet")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8026. {
  8027. lamp: {
  8028. height: math.unit(7 * 1559 / 989, "feet"),
  8029. name: "Magic Lamp",
  8030. image: {
  8031. source: "./media/characters/mira-al-cul/lamp.svg",
  8032. extra: 1617 / 1559
  8033. }
  8034. },
  8035. front: {
  8036. height: math.unit(7, "feet"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/mira-al-cul/front.svg",
  8040. extra: 1044 / 990
  8041. }
  8042. },
  8043. },
  8044. [
  8045. {
  8046. name: "Heavily Restricted",
  8047. height: math.unit(7 * 1559 / 989, "feet")
  8048. },
  8049. {
  8050. name: "Freshly Freed",
  8051. height: math.unit(50 * 1559 / 989, "feet")
  8052. },
  8053. {
  8054. name: "World Encompassing",
  8055. height: math.unit(10000 * 1559 / 989, "miles")
  8056. },
  8057. {
  8058. name: "Galactic",
  8059. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8060. },
  8061. {
  8062. name: "Palmed Universe",
  8063. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Multiversal Matriarch",
  8068. height: math.unit(8.87e10, "yottameters")
  8069. },
  8070. {
  8071. name: "Void Mother",
  8072. height: math.unit(3.14e110, "yottaparsecs")
  8073. },
  8074. {
  8075. name: "Toying with Transcendence",
  8076. height: math.unit(1e307, "meters")
  8077. },
  8078. ]
  8079. ))
  8080. characterMakers.push(() => makeCharacter(
  8081. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8082. {
  8083. front: {
  8084. height: math.unit(17 + 1 / 12, "feet"),
  8085. weight: math.unit(476.2 * 5, "lbs"),
  8086. name: "Front",
  8087. image: {
  8088. source: "./media/characters/kuro-shi-uchū/front.svg",
  8089. extra: 2329 / 1835,
  8090. bottom: 0.02
  8091. }
  8092. },
  8093. },
  8094. [
  8095. {
  8096. name: "Micro",
  8097. height: math.unit(2, "inches")
  8098. },
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(12, "meters")
  8102. },
  8103. {
  8104. name: "Planetary",
  8105. height: math.unit(0.00929, "AU"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Universal",
  8110. height: math.unit(20, "gigaparsecs")
  8111. },
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(5 + 2 / 12, "feet"),
  8119. weight: math.unit(120, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/katherine/front.svg",
  8123. extra: 2075 / 1969
  8124. }
  8125. },
  8126. dress: {
  8127. height: math.unit(5 + 2 / 12, "feet"),
  8128. weight: math.unit(120, "lbs"),
  8129. name: "Dress",
  8130. image: {
  8131. source: "./media/characters/katherine/dress.svg",
  8132. extra: 2258 / 2064
  8133. }
  8134. },
  8135. },
  8136. [
  8137. {
  8138. name: "Micro",
  8139. height: math.unit(1, "inches"),
  8140. default: true
  8141. },
  8142. {
  8143. name: "Normal",
  8144. height: math.unit(5 + 2 / 12, "feet")
  8145. },
  8146. {
  8147. name: "Macro",
  8148. height: math.unit(100, "meters")
  8149. },
  8150. {
  8151. name: "Megamacro",
  8152. height: math.unit(80, "miles")
  8153. },
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8158. {
  8159. front: {
  8160. height: math.unit(7 + 8 / 12, "feet"),
  8161. weight: math.unit(250, "lbs"),
  8162. name: "Front",
  8163. image: {
  8164. source: "./media/characters/yevis/front.svg",
  8165. extra: 1938 / 1755
  8166. }
  8167. }
  8168. },
  8169. [
  8170. {
  8171. name: "Mortal",
  8172. height: math.unit(7 + 8 / 12, "feet")
  8173. },
  8174. {
  8175. name: "Battle",
  8176. height: math.unit(25 + 11 / 12, "feet")
  8177. },
  8178. {
  8179. name: "Wrath",
  8180. height: math.unit(1654 + 11 / 12, "feet")
  8181. },
  8182. {
  8183. name: "Planet Destroyer",
  8184. height: math.unit(12000, "miles")
  8185. },
  8186. {
  8187. name: "Galaxy Conqueror",
  8188. height: math.unit(1.45, "zettameters"),
  8189. default: true
  8190. },
  8191. {
  8192. name: "Universal War",
  8193. height: math.unit(184, "gigaparsecs")
  8194. },
  8195. {
  8196. name: "Eternity War",
  8197. height: math.unit(1.98e55, "yottaparsecs")
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(5 + 8 / 12, "feet"),
  8206. weight: math.unit(63, "kg"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/xavier/front.svg",
  8210. extra: 944 / 883
  8211. }
  8212. },
  8213. frontStretch: {
  8214. height: math.unit(5 + 8 / 12, "feet"),
  8215. weight: math.unit(63, "kg"),
  8216. name: "Stretching",
  8217. image: {
  8218. source: "./media/characters/xavier/front-stretch.svg",
  8219. extra: 962 / 820
  8220. }
  8221. },
  8222. },
  8223. [
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(5 + 8 / 12, "feet")
  8227. },
  8228. {
  8229. name: "Macro",
  8230. height: math.unit(100, "meters"),
  8231. default: true
  8232. },
  8233. {
  8234. name: "McLargeHuge",
  8235. height: math.unit(10, "miles")
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8241. {
  8242. front: {
  8243. height: math.unit(5 + 5 / 12, "feet"),
  8244. weight: math.unit(150, "lb"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/joshii/front.svg",
  8248. extra: 765 / 653,
  8249. bottom: 51 / 816
  8250. }
  8251. },
  8252. foot: {
  8253. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8254. name: "Foot",
  8255. image: {
  8256. source: "./media/characters/joshii/foot.svg"
  8257. }
  8258. },
  8259. },
  8260. [
  8261. {
  8262. name: "Micro",
  8263. height: math.unit(2, "inches"),
  8264. default: true
  8265. },
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(5 + 5 / 12, "feet")
  8269. },
  8270. {
  8271. name: "Macro",
  8272. height: math.unit(785, "feet")
  8273. },
  8274. {
  8275. name: "Megamacro",
  8276. height: math.unit(24.5, "miles")
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(6, "feet"),
  8285. weight: math.unit(150, "lb"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/goddess-elizabeth/front.svg",
  8289. extra: 1800 / 1525,
  8290. bottom: 0.005
  8291. }
  8292. },
  8293. foot: {
  8294. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8295. name: "Foot",
  8296. image: {
  8297. source: "./media/characters/goddess-elizabeth/foot.svg"
  8298. }
  8299. },
  8300. mouth: {
  8301. height: math.unit(6, "feet"),
  8302. name: "Mouth",
  8303. image: {
  8304. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8305. }
  8306. },
  8307. },
  8308. [
  8309. {
  8310. name: "Micro",
  8311. height: math.unit(12, "feet")
  8312. },
  8313. {
  8314. name: "Normal",
  8315. height: math.unit(80, "miles"),
  8316. default: true
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(15000, "parsecs")
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(5 + 9 / 12, "feet"),
  8329. weight: math.unit(144, "lb"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/kara/front.svg"
  8333. }
  8334. },
  8335. feet: {
  8336. height: math.unit(6 / 6.765, "feet"),
  8337. name: "Kara's Feet",
  8338. rename: true,
  8339. image: {
  8340. source: "./media/characters/kara/feet.svg"
  8341. }
  8342. },
  8343. },
  8344. [
  8345. {
  8346. name: "Normal",
  8347. height: math.unit(5 + 9 / 12, "feet")
  8348. },
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(174, "feet"),
  8352. default: true
  8353. },
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(18, "feet"),
  8361. weight: math.unit(4050, "lb"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/tyrone/front.svg",
  8365. extra: 2405 / 2270,
  8366. bottom: 182 / 2587
  8367. }
  8368. },
  8369. },
  8370. [
  8371. {
  8372. name: "Normal",
  8373. height: math.unit(18, "feet"),
  8374. default: true
  8375. },
  8376. {
  8377. name: "Macro",
  8378. height: math.unit(300, "feet")
  8379. },
  8380. {
  8381. name: "Megamacro",
  8382. height: math.unit(15, "km")
  8383. },
  8384. {
  8385. name: "Gigamacro",
  8386. height: math.unit(500, "km")
  8387. },
  8388. {
  8389. name: "Teramacro",
  8390. height: math.unit(0.5, "gigameters")
  8391. },
  8392. {
  8393. name: "Omnimacro",
  8394. height: math.unit(1e252, "yottauniverse")
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(7 + 8 / 12, "feet"),
  8403. weight: math.unit(120, "lb"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/danny/front.svg",
  8407. extra: 1490 / 1350
  8408. }
  8409. },
  8410. back: {
  8411. height: math.unit(7 + 8 / 12, "feet"),
  8412. weight: math.unit(120, "lb"),
  8413. name: "Back",
  8414. image: {
  8415. source: "./media/characters/danny/back.svg",
  8416. extra: 1490 / 1350
  8417. }
  8418. },
  8419. },
  8420. [
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(7 + 8 / 12, "feet"),
  8424. default: true
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(3.5, "inches"),
  8433. weight: math.unit(19, "grams"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/mallow/front.svg",
  8437. extra: 471 / 431
  8438. }
  8439. },
  8440. back: {
  8441. height: math.unit(3.5, "inches"),
  8442. weight: math.unit(19, "grams"),
  8443. name: "Back",
  8444. image: {
  8445. source: "./media/characters/mallow/back.svg",
  8446. extra: 471 / 431
  8447. }
  8448. },
  8449. },
  8450. [
  8451. {
  8452. name: "Normal",
  8453. height: math.unit(3.5, "inches"),
  8454. default: true
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8460. {
  8461. front: {
  8462. height: math.unit(9, "feet"),
  8463. weight: math.unit(230, "kg"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/starry-aqua/front.svg"
  8467. }
  8468. },
  8469. back: {
  8470. height: math.unit(9, "feet"),
  8471. weight: math.unit(230, "kg"),
  8472. name: "Back",
  8473. image: {
  8474. source: "./media/characters/starry-aqua/back.svg"
  8475. }
  8476. },
  8477. hand: {
  8478. height: math.unit(9 * 0.1168, "feet"),
  8479. name: "Hand",
  8480. image: {
  8481. source: "./media/characters/starry-aqua/hand.svg"
  8482. }
  8483. },
  8484. foot: {
  8485. height: math.unit(9 * 0.18, "feet"),
  8486. name: "Foot",
  8487. image: {
  8488. source: "./media/characters/starry-aqua/foot.svg"
  8489. }
  8490. }
  8491. },
  8492. [
  8493. {
  8494. name: "Micro",
  8495. height: math.unit(3, "inches")
  8496. },
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(9, "feet")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(300, "feet"),
  8504. default: true
  8505. },
  8506. {
  8507. name: "Megamacro",
  8508. height: math.unit(3200, "feet")
  8509. }
  8510. ]
  8511. ))
  8512. characterMakers.push(() => makeCharacter(
  8513. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8514. {
  8515. front: {
  8516. height: math.unit(6, "feet"),
  8517. weight: math.unit(230, "lb"),
  8518. name: "Front",
  8519. image: {
  8520. source: "./media/characters/luka/front.svg",
  8521. extra: 1,
  8522. bottom: 0.025
  8523. }
  8524. },
  8525. },
  8526. [
  8527. {
  8528. name: "Normal",
  8529. height: math.unit(12 + 8 / 12, "feet"),
  8530. default: true
  8531. },
  8532. {
  8533. name: "Minimacro",
  8534. height: math.unit(20, "feet")
  8535. },
  8536. {
  8537. name: "Macro",
  8538. height: math.unit(250, "feet")
  8539. },
  8540. {
  8541. name: "Megamacro",
  8542. height: math.unit(5, "miles")
  8543. },
  8544. {
  8545. name: "Gigamacro",
  8546. height: math.unit(8000, "miles")
  8547. },
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8552. {
  8553. front: {
  8554. height: math.unit(6, "feet"),
  8555. weight: math.unit(150, "lb"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/natalie-nightring/front.svg",
  8559. extra: 1,
  8560. bottom: 0.06
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Uh Oh",
  8567. height: math.unit(0.1, "mm")
  8568. },
  8569. {
  8570. name: "Small",
  8571. height: math.unit(3, "inches")
  8572. },
  8573. {
  8574. name: "Human Scale",
  8575. height: math.unit(6, "feet")
  8576. },
  8577. {
  8578. name: "Librarian",
  8579. height: math.unit(50, "feet"),
  8580. default: true
  8581. },
  8582. {
  8583. name: "Immense",
  8584. height: math.unit(200, "miles")
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(180, "lbs"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/danni-rosie/front.svg",
  8597. extra: 1260 / 1128,
  8598. bottom: 0.022
  8599. }
  8600. },
  8601. },
  8602. [
  8603. {
  8604. name: "Micro",
  8605. height: math.unit(2, "inches"),
  8606. default: true
  8607. },
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8612. {
  8613. front: {
  8614. height: math.unit(5 + 9 / 12, "feet"),
  8615. weight: math.unit(220, "lb"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/samantha-kruse/front.svg",
  8619. extra: (985 / 935),
  8620. bottom: 0.03
  8621. }
  8622. },
  8623. frontUndressed: {
  8624. height: math.unit(5 + 9 / 12, "feet"),
  8625. weight: math.unit(220, "lb"),
  8626. name: "Front (Undressed)",
  8627. image: {
  8628. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8629. extra: (973 / 923),
  8630. bottom: 0.025
  8631. }
  8632. },
  8633. fat: {
  8634. height: math.unit(5 + 9 / 12, "feet"),
  8635. weight: math.unit(900, "lb"),
  8636. name: "Front (Fat)",
  8637. image: {
  8638. source: "./media/characters/samantha-kruse/fat.svg",
  8639. extra: 2688 / 2561
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(5 + 9 / 12, "feet"),
  8647. default: true
  8648. }
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8653. {
  8654. back: {
  8655. height: math.unit(5 + 4 / 12, "feet"),
  8656. weight: math.unit(4963, "lb"),
  8657. name: "Back",
  8658. image: {
  8659. source: "./media/characters/amelia-rosie/back.svg",
  8660. extra: 1113 / 963,
  8661. bottom: 0.01
  8662. }
  8663. },
  8664. },
  8665. [
  8666. {
  8667. name: "Level 0",
  8668. height: math.unit(5 + 4 / 12, "feet")
  8669. },
  8670. {
  8671. name: "Level 1",
  8672. height: math.unit(164597, "feet"),
  8673. default: true
  8674. },
  8675. {
  8676. name: "Level 2",
  8677. height: math.unit(956243, "miles")
  8678. },
  8679. {
  8680. name: "Level 3",
  8681. height: math.unit(29421709423, "miles")
  8682. },
  8683. {
  8684. name: "Level 4",
  8685. height: math.unit(154, "lightyears")
  8686. },
  8687. {
  8688. name: "Level 5",
  8689. height: math.unit(4738272, "lightyears")
  8690. },
  8691. {
  8692. name: "Level 6",
  8693. height: math.unit(145787152896, "lightyears")
  8694. },
  8695. ]
  8696. ))
  8697. characterMakers.push(() => makeCharacter(
  8698. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8699. {
  8700. front: {
  8701. height: math.unit(5 + 11 / 12, "feet"),
  8702. weight: math.unit(65, "kg"),
  8703. name: "Front",
  8704. image: {
  8705. source: "./media/characters/rook-kitara/front.svg",
  8706. extra: 1347 / 1274,
  8707. bottom: 0.005
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Totally Unfair",
  8714. height: math.unit(1.8, "mm")
  8715. },
  8716. {
  8717. name: "Lap Rookie",
  8718. height: math.unit(1.4, "feet")
  8719. },
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(5 + 11 / 12, "feet"),
  8723. default: true
  8724. },
  8725. {
  8726. name: "How Did This Happen",
  8727. height: math.unit(80, "miles")
  8728. }
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(7, "feet"),
  8736. weight: math.unit(300, "lb"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/pisces/front.svg",
  8740. extra: 2255 / 2115,
  8741. bottom: 0.03
  8742. }
  8743. },
  8744. back: {
  8745. height: math.unit(7, "feet"),
  8746. weight: math.unit(300, "lb"),
  8747. name: "Back",
  8748. image: {
  8749. source: "./media/characters/pisces/back.svg",
  8750. extra: 2146 / 2055,
  8751. bottom: 0.04
  8752. }
  8753. },
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(7, "feet"),
  8759. default: true
  8760. },
  8761. {
  8762. name: "Swimming Pool",
  8763. height: math.unit(12.2, "meters")
  8764. },
  8765. {
  8766. name: "Olympic Swimming Pool",
  8767. height: math.unit(56.3, "meters")
  8768. },
  8769. {
  8770. name: "Lake Superior",
  8771. height: math.unit(93900, "meters")
  8772. },
  8773. {
  8774. name: "Mediterranean Sea",
  8775. height: math.unit(644457, "meters")
  8776. },
  8777. {
  8778. name: "World's Oceans",
  8779. height: math.unit(4567491, "meters")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(2.3, "meters"),
  8788. weight: math.unit(120, "kg"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/zelas/front.svg"
  8792. }
  8793. },
  8794. side: {
  8795. height: math.unit(2.3, "meters"),
  8796. weight: math.unit(120, "kg"),
  8797. name: "Side",
  8798. image: {
  8799. source: "./media/characters/zelas/side.svg"
  8800. }
  8801. },
  8802. back: {
  8803. height: math.unit(2.3, "meters"),
  8804. weight: math.unit(120, "kg"),
  8805. name: "Back",
  8806. image: {
  8807. source: "./media/characters/zelas/back.svg"
  8808. }
  8809. },
  8810. foot: {
  8811. height: math.unit(1.116, "feet"),
  8812. name: "Foot",
  8813. image: {
  8814. source: "./media/characters/zelas/foot.svg"
  8815. }
  8816. },
  8817. },
  8818. [
  8819. {
  8820. name: "Normal",
  8821. height: math.unit(2.3, "meters")
  8822. },
  8823. {
  8824. name: "Macro",
  8825. height: math.unit(30, "meters"),
  8826. default: true
  8827. },
  8828. ]
  8829. ))
  8830. characterMakers.push(() => makeCharacter(
  8831. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8832. {
  8833. front: {
  8834. height: math.unit(1, "inch"),
  8835. weight: math.unit(0.21, "grams"),
  8836. name: "Front",
  8837. image: {
  8838. source: "./media/characters/talbot/front.svg",
  8839. extra: 594 / 544
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Micro",
  8846. height: math.unit(1, "inch"),
  8847. default: true
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8853. {
  8854. front: {
  8855. height: math.unit(3 + 3 / 12, "feet"),
  8856. weight: math.unit(51.8, "lb"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/fliss/front.svg",
  8860. extra: 840 / 640
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Teeny Tiny",
  8867. height: math.unit(1, "mm")
  8868. },
  8869. {
  8870. name: "Small",
  8871. height: math.unit(1, "inch"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Standard Sylveon",
  8876. height: math.unit(3 + 3 / 12, "feet")
  8877. },
  8878. {
  8879. name: "Large Nuisance",
  8880. height: math.unit(33, "feet")
  8881. },
  8882. {
  8883. name: "City Filler",
  8884. height: math.unit(3000, "feet")
  8885. },
  8886. {
  8887. name: "New Horizon",
  8888. height: math.unit(6000, "miles")
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(5, "cm"),
  8897. weight: math.unit(1.94, "g"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/fleta/front.svg",
  8901. extra: 835 / 803
  8902. }
  8903. },
  8904. back: {
  8905. height: math.unit(5, "cm"),
  8906. weight: math.unit(1.94, "g"),
  8907. name: "Back",
  8908. image: {
  8909. source: "./media/characters/fleta/back.svg",
  8910. extra: 835 / 803
  8911. }
  8912. },
  8913. },
  8914. [
  8915. {
  8916. name: "Micro",
  8917. height: math.unit(5, "cm"),
  8918. default: true
  8919. },
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8924. {
  8925. front: {
  8926. height: math.unit(6, "feet"),
  8927. weight: math.unit(225, "lb"),
  8928. name: "Front",
  8929. image: {
  8930. source: "./media/characters/dominic/front.svg",
  8931. extra: 1770 / 1620,
  8932. bottom: 0.025
  8933. }
  8934. },
  8935. back: {
  8936. height: math.unit(6, "feet"),
  8937. weight: math.unit(225, "lb"),
  8938. name: "Back",
  8939. image: {
  8940. source: "./media/characters/dominic/back.svg",
  8941. extra: 1745 / 1620,
  8942. bottom: 0.065
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Nano",
  8949. height: math.unit(0.1, "mm")
  8950. },
  8951. {
  8952. name: "Micro-",
  8953. height: math.unit(1, "mm")
  8954. },
  8955. {
  8956. name: "Micro",
  8957. height: math.unit(4, "inches")
  8958. },
  8959. {
  8960. name: "Normal",
  8961. height: math.unit(6 + 4 / 12, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Macro",
  8966. height: math.unit(115, "feet")
  8967. },
  8968. {
  8969. name: "Macro+",
  8970. height: math.unit(955, "feet")
  8971. },
  8972. {
  8973. name: "Megamacro",
  8974. height: math.unit(8990, "feet")
  8975. },
  8976. {
  8977. name: "Gigmacro",
  8978. height: math.unit(9310, "miles")
  8979. },
  8980. {
  8981. name: "Teramacro",
  8982. height: math.unit(1567005010, "miles")
  8983. },
  8984. {
  8985. name: "Examacro",
  8986. height: math.unit(1425, "parsecs")
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8992. {
  8993. front: {
  8994. height: math.unit(400, "feet"),
  8995. weight: math.unit(44444444, "lb"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/major-colonel/front.svg"
  8999. }
  9000. },
  9001. back: {
  9002. height: math.unit(400, "feet"),
  9003. weight: math.unit(44444444, "lb"),
  9004. name: "Back",
  9005. image: {
  9006. source: "./media/characters/major-colonel/back.svg"
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(400, "feet"),
  9014. default: true
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9020. {
  9021. catFront: {
  9022. height: math.unit(6, "feet"),
  9023. weight: math.unit(120, "lb"),
  9024. name: "Front (Cat Side)",
  9025. image: {
  9026. source: "./media/characters/axel-lycan/cat-front.svg",
  9027. extra: 430 / 402,
  9028. bottom: 43 / 472.35
  9029. }
  9030. },
  9031. catBack: {
  9032. height: math.unit(6, "feet"),
  9033. weight: math.unit(120, "lb"),
  9034. name: "Back (Cat Side)",
  9035. image: {
  9036. source: "./media/characters/axel-lycan/cat-back.svg",
  9037. extra: 447 / 419,
  9038. bottom: 23.3 / 469
  9039. }
  9040. },
  9041. wolfFront: {
  9042. height: math.unit(6, "feet"),
  9043. weight: math.unit(120, "lb"),
  9044. name: "Front (Wolf Side)",
  9045. image: {
  9046. source: "./media/characters/axel-lycan/wolf-front.svg",
  9047. extra: 485 / 456,
  9048. bottom: 19 / 504
  9049. }
  9050. },
  9051. wolfBack: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(120, "lb"),
  9054. name: "Back (Wolf Side)",
  9055. image: {
  9056. source: "./media/characters/axel-lycan/wolf-back.svg",
  9057. extra: 475 / 438,
  9058. bottom: 39.2 / 514
  9059. }
  9060. },
  9061. },
  9062. [
  9063. {
  9064. name: "Macro",
  9065. height: math.unit(1, "km"),
  9066. default: true
  9067. },
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9072. {
  9073. front: {
  9074. height: math.unit(5 + 9 / 12, "feet"),
  9075. weight: math.unit(175, "lb"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/vanrel-hyena/front.svg",
  9079. extra: 1086 / 1010,
  9080. bottom: 0.04
  9081. }
  9082. },
  9083. },
  9084. [
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(5 + 9 / 12, "feet"),
  9088. default: true
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(6, "feet"),
  9097. weight: math.unit(103, "lb"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/abbott-absol/front.svg",
  9101. extra: 2010 / 1842
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Megamicro",
  9108. height: math.unit(0.1, "mm")
  9109. },
  9110. {
  9111. name: "Micro",
  9112. height: math.unit(1, "inch")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(6, "feet"),
  9117. default: true
  9118. },
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9123. {
  9124. front: {
  9125. height: math.unit(6, "feet"),
  9126. weight: math.unit(264, "lb"),
  9127. name: "Front",
  9128. image: {
  9129. source: "./media/characters/hector/front.svg",
  9130. extra: 2280 / 2130,
  9131. bottom: 0.07
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(12.25, "foot"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(160, "feet")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(150, "lb"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/sal/front.svg",
  9156. extra: 1846 / 1699,
  9157. bottom: 0.04
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Megamacro",
  9164. height: math.unit(10, "miles"),
  9165. default: true
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9171. {
  9172. front: {
  9173. height: math.unit(3, "meters"),
  9174. weight: math.unit(450, "kg"),
  9175. name: "front",
  9176. image: {
  9177. source: "./media/characters/ranger/front.svg",
  9178. extra: 2401 / 2243,
  9179. bottom: 0.05
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(3, "meters"),
  9187. default: true
  9188. },
  9189. ]
  9190. ))
  9191. characterMakers.push(() => makeCharacter(
  9192. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9193. {
  9194. front: {
  9195. height: math.unit(14, "feet"),
  9196. weight: math.unit(800, "kg"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/theresa/front.svg",
  9200. extra: 3575 / 3346,
  9201. bottom: 0.03
  9202. }
  9203. },
  9204. },
  9205. [
  9206. {
  9207. name: "Normal",
  9208. height: math.unit(14, "feet"),
  9209. default: true
  9210. },
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9215. {
  9216. front: {
  9217. height: math.unit(6, "feet"),
  9218. weight: math.unit(3, "kg"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/ine/front.svg",
  9222. extra: 678 / 539,
  9223. bottom: 0.023
  9224. }
  9225. },
  9226. },
  9227. [
  9228. {
  9229. name: "Normal",
  9230. height: math.unit(2.265, "feet"),
  9231. default: true
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(5, "feet"),
  9240. weight: math.unit(30, "kg"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/vial/front.svg",
  9244. extra: 1365 / 1277,
  9245. bottom: 0.04
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(5, "feet"),
  9253. default: true
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9259. {
  9260. side: {
  9261. height: math.unit(3.4, "meters"),
  9262. weight: math.unit(1000, "lb"),
  9263. name: "Side",
  9264. image: {
  9265. source: "./media/characters/rovoska/side.svg",
  9266. extra: 4403 / 1515
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(3.4, "meters"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(8, "feet"),
  9283. weight: math.unit(315, "lb"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/gunner-rotthbauer/front.svg"
  9287. }
  9288. },
  9289. back: {
  9290. height: math.unit(8, "feet"),
  9291. weight: math.unit(315, "lb"),
  9292. name: "Back",
  9293. image: {
  9294. source: "./media/characters/gunner-rotthbauer/back.svg"
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(3.5, "inches")
  9302. },
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(8, "feet"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(250, "feet")
  9311. },
  9312. {
  9313. name: "Megamacro",
  9314. height: math.unit(1, "AU")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(5 + 5 / 12, "feet"),
  9323. weight: math.unit(140, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/allatia/front.svg",
  9327. extra: 1227 / 1180,
  9328. bottom: 0.027
  9329. }
  9330. },
  9331. },
  9332. [
  9333. {
  9334. name: "Normal",
  9335. height: math.unit(5 + 5 / 12, "feet")
  9336. },
  9337. {
  9338. name: "Macro",
  9339. height: math.unit(250, "feet"),
  9340. default: true
  9341. },
  9342. {
  9343. name: "Megamacro",
  9344. height: math.unit(8, "miles")
  9345. }
  9346. ]
  9347. ))
  9348. characterMakers.push(() => makeCharacter(
  9349. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9350. {
  9351. front: {
  9352. height: math.unit(6, "feet"),
  9353. weight: math.unit(120, "lb"),
  9354. name: "Front",
  9355. image: {
  9356. source: "./media/characters/tene/front.svg",
  9357. extra: 1728 / 1578,
  9358. bottom: 0.022
  9359. }
  9360. },
  9361. stomping: {
  9362. height: math.unit(2.025, "meters"),
  9363. weight: math.unit(120, "lb"),
  9364. name: "Stomping",
  9365. image: {
  9366. source: "./media/characters/tene/stomping.svg",
  9367. extra: 938 / 873,
  9368. bottom: 0.01
  9369. }
  9370. },
  9371. sitting: {
  9372. height: math.unit(1, "meter"),
  9373. weight: math.unit(120, "lb"),
  9374. name: "Sitting",
  9375. image: {
  9376. source: "./media/characters/tene/sitting.svg",
  9377. extra: 437 / 415,
  9378. bottom: 0.1
  9379. }
  9380. },
  9381. feral: {
  9382. height: math.unit(3.9, "feet"),
  9383. weight: math.unit(250, "lb"),
  9384. name: "Feral",
  9385. image: {
  9386. source: "./media/characters/tene/feral.svg",
  9387. extra: 717 / 458,
  9388. bottom: 0.179
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(6, "feet")
  9396. },
  9397. {
  9398. name: "Macro",
  9399. height: math.unit(300, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Megamacro",
  9404. height: math.unit(5, "miles")
  9405. },
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9410. {
  9411. side: {
  9412. height: math.unit(6, "feet"),
  9413. name: "Side",
  9414. image: {
  9415. source: "./media/characters/evander/side.svg",
  9416. extra: 877 / 477
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(0.83, "meters"),
  9424. default: true
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(12, "feet"),
  9433. weight: math.unit(1000, "lb"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9437. extra: 1762 / 1611
  9438. }
  9439. },
  9440. back: {
  9441. height: math.unit(12, "feet"),
  9442. weight: math.unit(1000, "lb"),
  9443. name: "Back",
  9444. image: {
  9445. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9446. extra: 1762 / 1611
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(12, "feet"),
  9454. default: true
  9455. },
  9456. {
  9457. name: "Kaiju",
  9458. height: math.unit(150, "feet")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(150, "lb"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/zero-alurus/front.svg"
  9471. }
  9472. },
  9473. back: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(150, "lb"),
  9476. name: "Back",
  9477. image: {
  9478. source: "./media/characters/zero-alurus/back.svg"
  9479. }
  9480. },
  9481. },
  9482. [
  9483. {
  9484. name: "Normal",
  9485. height: math.unit(5 + 10 / 12, "feet")
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(60, "feet"),
  9490. default: true
  9491. },
  9492. {
  9493. name: "Macro+",
  9494. height: math.unit(450, "feet")
  9495. },
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9500. {
  9501. front: {
  9502. height: math.unit(6, "feet"),
  9503. weight: math.unit(200, "lb"),
  9504. name: "Front",
  9505. image: {
  9506. source: "./media/characters/mega-shi/front.svg",
  9507. extra: 1279 / 1250,
  9508. bottom: 0.02
  9509. }
  9510. },
  9511. back: {
  9512. height: math.unit(6, "feet"),
  9513. weight: math.unit(200, "lb"),
  9514. name: "Back",
  9515. image: {
  9516. source: "./media/characters/mega-shi/back.svg",
  9517. extra: 1279 / 1250,
  9518. bottom: 0.02
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Micro",
  9525. height: math.unit(16 + 6 / 12, "feet")
  9526. },
  9527. {
  9528. name: "Third Dimension",
  9529. height: math.unit(40, "meters")
  9530. },
  9531. {
  9532. name: "Normal",
  9533. height: math.unit(660, "feet"),
  9534. default: true
  9535. },
  9536. {
  9537. name: "Megamacro",
  9538. height: math.unit(10, "miles")
  9539. },
  9540. {
  9541. name: "Planetary Launch",
  9542. height: math.unit(500, "miles")
  9543. },
  9544. {
  9545. name: "Interstellar",
  9546. height: math.unit(1e9, "miles")
  9547. },
  9548. {
  9549. name: "Leaving the Universe",
  9550. height: math.unit(1, "gigaparsec")
  9551. },
  9552. {
  9553. name: "Travelling Universes",
  9554. height: math.unit(30e15, "parsecs")
  9555. },
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9560. {
  9561. front: {
  9562. height: math.unit(6, "feet"),
  9563. weight: math.unit(150, "lb"),
  9564. name: "Front",
  9565. image: {
  9566. source: "./media/characters/odyssey/front.svg",
  9567. extra: 1782 / 1582,
  9568. bottom: 0.01
  9569. }
  9570. },
  9571. side: {
  9572. height: math.unit(5.7, "feet"),
  9573. weight: math.unit(140, "lb"),
  9574. name: "Side",
  9575. image: {
  9576. source: "./media/characters/odyssey/side.svg",
  9577. extra: 6462 / 5700
  9578. }
  9579. },
  9580. },
  9581. [
  9582. {
  9583. name: "Normal",
  9584. height: math.unit(5 + 4 / 12, "feet")
  9585. },
  9586. {
  9587. name: "Macro",
  9588. height: math.unit(1, "km")
  9589. },
  9590. {
  9591. name: "Megamacro",
  9592. height: math.unit(3000, "km")
  9593. },
  9594. {
  9595. name: "Gigamacro",
  9596. height: math.unit(1, "AU"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Omniversal",
  9601. height: math.unit(100e14, "lightyears")
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(6, "feet"),
  9610. weight: math.unit(300, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/mekuto/front.svg",
  9614. extra: 921 / 832,
  9615. bottom: 0.03
  9616. }
  9617. },
  9618. hand: {
  9619. height: math.unit(6 / 10.24, "feet"),
  9620. name: "Hand",
  9621. image: {
  9622. source: "./media/characters/mekuto/hand.svg"
  9623. }
  9624. },
  9625. foot: {
  9626. height: math.unit(6 / 5.05, "feet"),
  9627. name: "Foot",
  9628. image: {
  9629. source: "./media/characters/mekuto/foot.svg"
  9630. }
  9631. },
  9632. },
  9633. [
  9634. {
  9635. name: "Minimicro",
  9636. height: math.unit(0.2, "inches")
  9637. },
  9638. {
  9639. name: "Micro",
  9640. height: math.unit(1.5, "inches")
  9641. },
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(5 + 11 / 12, "feet"),
  9645. default: true
  9646. },
  9647. {
  9648. name: "Minimacro",
  9649. height: math.unit(17 + 9 / 12, "feet")
  9650. },
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(177.5, "feet")
  9654. },
  9655. {
  9656. name: "Megamacro",
  9657. height: math.unit(152, "miles")
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9663. {
  9664. front: {
  9665. height: math.unit(6.5, "inches"),
  9666. weight: math.unit(13, "oz"),
  9667. name: "Front",
  9668. image: {
  9669. source: "./media/characters/dafydd-tomos/front.svg",
  9670. extra: 2990 / 2603,
  9671. bottom: 0.03
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Micro",
  9678. height: math.unit(6.5, "inches"),
  9679. default: true
  9680. },
  9681. ]
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9685. {
  9686. front: {
  9687. height: math.unit(6, "feet"),
  9688. weight: math.unit(150, "lb"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/splinter/front.svg",
  9692. extra: 2990 / 2882,
  9693. bottom: 0.04
  9694. }
  9695. },
  9696. back: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(150, "lb"),
  9699. name: "Back",
  9700. image: {
  9701. source: "./media/characters/splinter/back.svg",
  9702. extra: 2990 / 2882,
  9703. bottom: 0.04
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(6, "feet")
  9711. },
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(230, "meters"),
  9715. default: true
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(4 + 10 / 12, "feet"),
  9724. weight: math.unit(480, "lb"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/snow-gabumon/front.svg",
  9728. extra: 1140 / 963,
  9729. bottom: 0.058
  9730. }
  9731. },
  9732. back: {
  9733. height: math.unit(4 + 10 / 12, "feet"),
  9734. weight: math.unit(480, "lb"),
  9735. name: "Back",
  9736. image: {
  9737. source: "./media/characters/snow-gabumon/back.svg",
  9738. extra: 1115 / 962,
  9739. bottom: 0.041
  9740. }
  9741. },
  9742. frontUndresed: {
  9743. height: math.unit(4 + 10 / 12, "feet"),
  9744. weight: math.unit(480, "lb"),
  9745. name: "Front (Undressed)",
  9746. image: {
  9747. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9748. extra: 1061 / 960,
  9749. bottom: 0.045
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(1, "inch")
  9757. },
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(4 + 10 / 12, "feet"),
  9761. default: true
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(200, "feet")
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(120, "miles")
  9770. },
  9771. {
  9772. name: "Gigamacro",
  9773. height: math.unit(9800, "miles")
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(1.7, "meters"),
  9782. weight: math.unit(140, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/moody/front.svg",
  9786. extra: 3226 / 3007,
  9787. bottom: 0.087
  9788. }
  9789. },
  9790. },
  9791. [
  9792. {
  9793. name: "Micro",
  9794. height: math.unit(1, "mm")
  9795. },
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(1.7, "meters"),
  9799. default: true
  9800. },
  9801. {
  9802. name: "Macro",
  9803. height: math.unit(80, "meters")
  9804. },
  9805. {
  9806. name: "Macro+",
  9807. height: math.unit(500, "meters")
  9808. },
  9809. ]
  9810. ))
  9811. characterMakers.push(() => makeCharacter(
  9812. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9813. {
  9814. front: {
  9815. height: math.unit(6, "feet"),
  9816. weight: math.unit(150, "lb"),
  9817. name: "Front",
  9818. image: {
  9819. source: "./media/characters/zyas/front.svg",
  9820. extra: 1180 / 1120,
  9821. bottom: 0.045
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(10, "feet"),
  9829. default: true
  9830. },
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(500, "feet")
  9834. },
  9835. {
  9836. name: "Megamacro",
  9837. height: math.unit(5, "miles")
  9838. },
  9839. {
  9840. name: "Teramacro",
  9841. height: math.unit(150000, "miles")
  9842. },
  9843. ]
  9844. ))
  9845. characterMakers.push(() => makeCharacter(
  9846. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9847. {
  9848. front: {
  9849. height: math.unit(6, "feet"),
  9850. weight: math.unit(150, "lb"),
  9851. name: "Front",
  9852. image: {
  9853. source: "./media/characters/cuon/front.svg",
  9854. extra: 1390 / 1320,
  9855. bottom: 0.008
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Micro",
  9862. height: math.unit(3, "inches")
  9863. },
  9864. {
  9865. name: "Normal",
  9866. height: math.unit(18 + 9 / 12, "feet"),
  9867. default: true
  9868. },
  9869. {
  9870. name: "Macro",
  9871. height: math.unit(360, "feet")
  9872. },
  9873. {
  9874. name: "Megamacro",
  9875. height: math.unit(360, "miles")
  9876. },
  9877. ]
  9878. ))
  9879. characterMakers.push(() => makeCharacter(
  9880. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9881. {
  9882. front: {
  9883. height: math.unit(2.4, "meters"),
  9884. weight: math.unit(70, "kg"),
  9885. name: "Front",
  9886. image: {
  9887. source: "./media/characters/nyanuxk/front.svg",
  9888. extra: 1172 / 1084,
  9889. bottom: 0.065
  9890. }
  9891. },
  9892. side: {
  9893. height: math.unit(2.4, "meters"),
  9894. weight: math.unit(70, "kg"),
  9895. name: "Side",
  9896. image: {
  9897. source: "./media/characters/nyanuxk/side.svg",
  9898. extra: 1190 / 1132,
  9899. bottom: 0.007
  9900. }
  9901. },
  9902. back: {
  9903. height: math.unit(2.4, "meters"),
  9904. weight: math.unit(70, "kg"),
  9905. name: "Back",
  9906. image: {
  9907. source: "./media/characters/nyanuxk/back.svg",
  9908. extra: 1200 / 1141,
  9909. bottom: 0.015
  9910. }
  9911. },
  9912. foot: {
  9913. height: math.unit(0.52, "meters"),
  9914. name: "Foot",
  9915. image: {
  9916. source: "./media/characters/nyanuxk/foot.svg"
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Micro",
  9923. height: math.unit(2, "cm")
  9924. },
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(2.4, "meters"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Smaller Macro",
  9932. height: math.unit(120, "meters")
  9933. },
  9934. {
  9935. name: "Bigger Macro",
  9936. height: math.unit(1.2, "km")
  9937. },
  9938. {
  9939. name: "Megamacro",
  9940. height: math.unit(15, "kilometers")
  9941. },
  9942. {
  9943. name: "Gigamacro",
  9944. height: math.unit(2000, "km")
  9945. },
  9946. {
  9947. name: "Teramacro",
  9948. height: math.unit(500000, "km")
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9954. {
  9955. side: {
  9956. height: math.unit(6, "feet"),
  9957. name: "Side",
  9958. image: {
  9959. source: "./media/characters/ailbhe/side.svg",
  9960. extra: 757 / 464,
  9961. bottom: 0.041
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Normal",
  9968. height: math.unit(1.07, "meters"),
  9969. default: true
  9970. },
  9971. ]
  9972. ))
  9973. characterMakers.push(() => makeCharacter(
  9974. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9975. {
  9976. front: {
  9977. height: math.unit(6, "feet"),
  9978. weight: math.unit(120, "kg"),
  9979. name: "Front",
  9980. image: {
  9981. source: "./media/characters/zevulfius/front.svg",
  9982. extra: 965 / 903
  9983. }
  9984. },
  9985. side: {
  9986. height: math.unit(6, "feet"),
  9987. weight: math.unit(120, "kg"),
  9988. name: "Side",
  9989. image: {
  9990. source: "./media/characters/zevulfius/side.svg",
  9991. extra: 939 / 900
  9992. }
  9993. },
  9994. back: {
  9995. height: math.unit(6, "feet"),
  9996. weight: math.unit(120, "kg"),
  9997. name: "Back",
  9998. image: {
  9999. source: "./media/characters/zevulfius/back.svg",
  10000. extra: 918 / 854,
  10001. bottom: 0.005
  10002. }
  10003. },
  10004. foot: {
  10005. height: math.unit(6 / 3.72, "feet"),
  10006. name: "Foot",
  10007. image: {
  10008. source: "./media/characters/zevulfius/foot.svg"
  10009. }
  10010. },
  10011. },
  10012. [
  10013. {
  10014. name: "Macro",
  10015. height: math.unit(750, "meters")
  10016. },
  10017. {
  10018. name: "Megamacro",
  10019. height: math.unit(20, "km"),
  10020. default: true
  10021. },
  10022. {
  10023. name: "Gigamacro",
  10024. height: math.unit(2000, "km")
  10025. },
  10026. {
  10027. name: "Teramacro",
  10028. height: math.unit(250000, "km")
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(100, "feet"),
  10037. weight: math.unit(350, "kg"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/rikes/front.svg",
  10041. extra: 1565 / 1483,
  10042. bottom: 0.017
  10043. }
  10044. },
  10045. },
  10046. [
  10047. {
  10048. name: "Macro",
  10049. height: math.unit(100, "feet"),
  10050. default: true
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10056. {
  10057. anthro: {
  10058. height: math.unit(8, "feet"),
  10059. weight: math.unit(120, "kg"),
  10060. name: "Anthro",
  10061. image: {
  10062. source: "./media/characters/adam-silver-mane/anthro.svg",
  10063. extra: 5743 / 5339,
  10064. bottom: 0.07
  10065. }
  10066. },
  10067. taur: {
  10068. height: math.unit(16, "feet"),
  10069. weight: math.unit(1500, "kg"),
  10070. name: "Taur",
  10071. image: {
  10072. source: "./media/characters/adam-silver-mane/taur.svg",
  10073. extra: 1713 / 1571,
  10074. bottom: 0.01
  10075. }
  10076. },
  10077. },
  10078. [
  10079. {
  10080. name: "Normal",
  10081. height: math.unit(8, "feet")
  10082. },
  10083. {
  10084. name: "Minimacro",
  10085. height: math.unit(80, "feet")
  10086. },
  10087. {
  10088. name: "Macro",
  10089. height: math.unit(800, "feet"),
  10090. default: true
  10091. },
  10092. {
  10093. name: "Megamacro",
  10094. height: math.unit(8000, "feet")
  10095. },
  10096. {
  10097. name: "Gigamacro",
  10098. height: math.unit(800, "miles")
  10099. },
  10100. {
  10101. name: "Teramacro",
  10102. height: math.unit(80000, "miles")
  10103. },
  10104. {
  10105. name: "Celestial",
  10106. height: math.unit(8e6, "miles")
  10107. },
  10108. {
  10109. name: "Star Dragon",
  10110. height: math.unit(800000, "parsecs")
  10111. },
  10112. {
  10113. name: "Godly",
  10114. height: math.unit(800, "teraparsecs")
  10115. },
  10116. ]
  10117. ))
  10118. characterMakers.push(() => makeCharacter(
  10119. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10120. {
  10121. front: {
  10122. height: math.unit(6, "feet"),
  10123. weight: math.unit(150, "lb"),
  10124. name: "Front",
  10125. image: {
  10126. source: "./media/characters/ky'owin/front.svg",
  10127. extra: 3888 / 3068,
  10128. bottom: 0.015
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(6 + 8 / 12, "feet")
  10136. },
  10137. {
  10138. name: "Large",
  10139. height: math.unit(68, "feet")
  10140. },
  10141. {
  10142. name: "Macro",
  10143. height: math.unit(132, "feet")
  10144. },
  10145. {
  10146. name: "Macro+",
  10147. height: math.unit(340, "feet")
  10148. },
  10149. {
  10150. name: "Macro++",
  10151. height: math.unit(680, "feet"),
  10152. default: true
  10153. },
  10154. {
  10155. name: "Megamacro",
  10156. height: math.unit(1, "mile")
  10157. },
  10158. {
  10159. name: "Megamacro+",
  10160. height: math.unit(10, "miles")
  10161. },
  10162. ]
  10163. ))
  10164. characterMakers.push(() => makeCharacter(
  10165. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10166. {
  10167. front: {
  10168. height: math.unit(4, "feet"),
  10169. weight: math.unit(50, "lb"),
  10170. name: "Front",
  10171. image: {
  10172. source: "./media/characters/mal/front.svg",
  10173. extra: 785 / 724,
  10174. bottom: 0.07
  10175. }
  10176. },
  10177. },
  10178. [
  10179. {
  10180. name: "Micro",
  10181. height: math.unit(4, "inches")
  10182. },
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(4, "feet"),
  10186. default: true
  10187. },
  10188. {
  10189. name: "Macro",
  10190. height: math.unit(200, "feet")
  10191. },
  10192. ]
  10193. ))
  10194. characterMakers.push(() => makeCharacter(
  10195. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10196. {
  10197. front: {
  10198. height: math.unit(6, "feet"),
  10199. weight: math.unit(150, "lb"),
  10200. name: "Front",
  10201. image: {
  10202. source: "./media/characters/jordan-deware/front.svg",
  10203. extra: 1191 / 1012
  10204. }
  10205. },
  10206. },
  10207. [
  10208. {
  10209. name: "Nano",
  10210. height: math.unit(0.01, "mm")
  10211. },
  10212. {
  10213. name: "Minimicro",
  10214. height: math.unit(1, "mm")
  10215. },
  10216. {
  10217. name: "Micro",
  10218. height: math.unit(0.5, "inches")
  10219. },
  10220. {
  10221. name: "Normal",
  10222. height: math.unit(4, "feet"),
  10223. default: true
  10224. },
  10225. {
  10226. name: "Minimacro",
  10227. height: math.unit(40, "meters")
  10228. },
  10229. {
  10230. name: "Small Macro",
  10231. height: math.unit(400, "meters")
  10232. },
  10233. {
  10234. name: "Macro",
  10235. height: math.unit(4, "miles")
  10236. },
  10237. {
  10238. name: "Megamacro",
  10239. height: math.unit(40, "miles")
  10240. },
  10241. {
  10242. name: "Megamacro+",
  10243. height: math.unit(400, "miles")
  10244. },
  10245. {
  10246. name: "Gigamacro",
  10247. height: math.unit(400000, "miles")
  10248. },
  10249. ]
  10250. ))
  10251. characterMakers.push(() => makeCharacter(
  10252. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10253. {
  10254. side: {
  10255. height: math.unit(6, "feet"),
  10256. weight: math.unit(150, "lb"),
  10257. name: "Side",
  10258. image: {
  10259. source: "./media/characters/kimiko/side.svg",
  10260. extra: 600 / 358
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(15, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(220, "feet")
  10273. },
  10274. {
  10275. name: "Macro+",
  10276. height: math.unit(1450, "feet")
  10277. },
  10278. {
  10279. name: "Megamacro",
  10280. height: math.unit(11500, "feet")
  10281. },
  10282. {
  10283. name: "Gigamacro",
  10284. height: math.unit(9500, "miles")
  10285. },
  10286. {
  10287. name: "Teramacro",
  10288. height: math.unit(2208005005, "miles")
  10289. },
  10290. {
  10291. name: "Examacro",
  10292. height: math.unit(2750, "parsecs")
  10293. },
  10294. {
  10295. name: "Zettamacro",
  10296. height: math.unit(101500, "parsecs")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(70, "kg"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/andrew-sleepy/front.svg"
  10309. }
  10310. },
  10311. side: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(70, "kg"),
  10314. name: "Side",
  10315. image: {
  10316. source: "./media/characters/andrew-sleepy/side.svg"
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Micro",
  10323. height: math.unit(1, "mm"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(150, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/judio/front.svg",
  10337. extra: 1258 / 1110
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Normal",
  10344. height: math.unit(5 + 6 / 12, "feet")
  10345. },
  10346. {
  10347. name: "Macro",
  10348. height: math.unit(1000, "feet"),
  10349. default: true
  10350. },
  10351. {
  10352. name: "Megamacro",
  10353. height: math.unit(10, "miles")
  10354. },
  10355. ]
  10356. ))
  10357. characterMakers.push(() => makeCharacter(
  10358. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10359. {
  10360. front: {
  10361. height: math.unit(6, "feet"),
  10362. weight: math.unit(68, "kg"),
  10363. name: "Front",
  10364. image: {
  10365. source: "./media/characters/nomaxice/front.svg",
  10366. extra: 1498 / 1073,
  10367. bottom: 0.075
  10368. }
  10369. },
  10370. foot: {
  10371. height: math.unit(1.1, "feet"),
  10372. name: "Foot",
  10373. image: {
  10374. source: "./media/characters/nomaxice/foot.svg"
  10375. }
  10376. },
  10377. },
  10378. [
  10379. {
  10380. name: "Micro",
  10381. height: math.unit(8, "cm")
  10382. },
  10383. {
  10384. name: "Norm",
  10385. height: math.unit(1.82, "m")
  10386. },
  10387. {
  10388. name: "Norm+",
  10389. height: math.unit(8.8, "feet")
  10390. },
  10391. {
  10392. name: "Big",
  10393. height: math.unit(8, "meters"),
  10394. default: true
  10395. },
  10396. {
  10397. name: "Macro",
  10398. height: math.unit(18, "meters")
  10399. },
  10400. {
  10401. name: "Macro+",
  10402. height: math.unit(88, "meters")
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(12, "feet"),
  10411. weight: math.unit(1.5, "tons"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/dydros/front.svg",
  10415. extra: 863 / 800,
  10416. bottom: 0.015
  10417. }
  10418. },
  10419. back: {
  10420. height: math.unit(12, "feet"),
  10421. weight: math.unit(1.5, "tons"),
  10422. name: "Back",
  10423. image: {
  10424. source: "./media/characters/dydros/back.svg",
  10425. extra: 900 / 843,
  10426. bottom: 0.005
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(12, "feet"),
  10434. default: true
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(6, "feet"),
  10443. weight: math.unit(100, "kg"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/riggi/front.svg",
  10447. extra: 5787 / 5303
  10448. }
  10449. },
  10450. hyper: {
  10451. height: math.unit(6 * 5 / 3, "feet"),
  10452. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10453. name: "Hyper",
  10454. image: {
  10455. source: "./media/characters/riggi/hyper.svg",
  10456. extra: 3595 / 3485
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Small Macro",
  10463. height: math.unit(50, "feet")
  10464. },
  10465. {
  10466. name: "Default",
  10467. height: math.unit(200, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Loom",
  10472. height: math.unit(10000, "feet")
  10473. },
  10474. {
  10475. name: "Cruising Altitude",
  10476. height: math.unit(30000, "feet")
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(100, "miles")
  10481. },
  10482. {
  10483. name: "Continent Sized",
  10484. height: math.unit(2800, "miles")
  10485. },
  10486. {
  10487. name: "Earth Sized",
  10488. height: math.unit(8000, "miles")
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(6, "feet"),
  10497. weight: math.unit(250, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/alexi/front.svg",
  10501. extra: 3483 / 3291,
  10502. bottom: 0.04
  10503. }
  10504. },
  10505. back: {
  10506. height: math.unit(6, "feet"),
  10507. weight: math.unit(250, "lb"),
  10508. name: "Back",
  10509. image: {
  10510. source: "./media/characters/alexi/back.svg",
  10511. extra: 3533 / 3356,
  10512. bottom: 0.021
  10513. }
  10514. },
  10515. frontTransforming: {
  10516. height: math.unit(8.58, "feet"),
  10517. weight: math.unit(1300, "lb"),
  10518. name: "Transforming",
  10519. image: {
  10520. source: "./media/characters/alexi/front-transforming.svg",
  10521. extra: 437 / 409,
  10522. bottom: 19 / 458.66
  10523. }
  10524. },
  10525. frontTransformed: {
  10526. height: math.unit(12.5, "feet"),
  10527. weight: math.unit(4000, "lb"),
  10528. name: "Transformed",
  10529. image: {
  10530. source: "./media/characters/alexi/front-transformed.svg",
  10531. extra: 639 / 614,
  10532. bottom: 30.55 / 671
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(14, "feet"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Minimacro",
  10544. height: math.unit(30, "meters")
  10545. },
  10546. {
  10547. name: "Macro",
  10548. height: math.unit(500, "meters")
  10549. },
  10550. {
  10551. name: "Megamacro",
  10552. height: math.unit(9000, "km")
  10553. },
  10554. {
  10555. name: "Teramacro",
  10556. height: math.unit(384000, "km")
  10557. },
  10558. ]
  10559. ))
  10560. characterMakers.push(() => makeCharacter(
  10561. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10562. {
  10563. front: {
  10564. height: math.unit(6, "feet"),
  10565. weight: math.unit(150, "lb"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/kayroo/front.svg",
  10569. extra: 1153 / 1038,
  10570. bottom: 0.06
  10571. }
  10572. },
  10573. foot: {
  10574. height: math.unit(6, "feet"),
  10575. weight: math.unit(150, "lb"),
  10576. name: "Foot",
  10577. image: {
  10578. source: "./media/characters/kayroo/foot.svg"
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(8, "feet"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Minimacro",
  10590. height: math.unit(250, "feet")
  10591. },
  10592. {
  10593. name: "Macro",
  10594. height: math.unit(2800, "feet")
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(5200, "feet")
  10599. },
  10600. {
  10601. name: "Gigamacro",
  10602. height: math.unit(27000, "feet")
  10603. },
  10604. {
  10605. name: "Omega",
  10606. height: math.unit(45000, "feet")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(18, "feet"),
  10615. weight: math.unit(5800, "lb"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/rhys/front.svg",
  10619. extra: 3386 / 3090,
  10620. bottom: 0.07
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Normal",
  10627. height: math.unit(18, "feet"),
  10628. default: true
  10629. },
  10630. {
  10631. name: "Working Size",
  10632. height: math.unit(200, "feet")
  10633. },
  10634. {
  10635. name: "Demolition Size",
  10636. height: math.unit(2000, "feet")
  10637. },
  10638. {
  10639. name: "Maximum Licensed Size",
  10640. height: math.unit(5, "miles")
  10641. },
  10642. {
  10643. name: "Maximum Observed Size",
  10644. height: math.unit(10, "yottameters")
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10650. {
  10651. front: {
  10652. height: math.unit(6, "feet"),
  10653. weight: math.unit(250, "lb"),
  10654. name: "Front",
  10655. image: {
  10656. source: "./media/characters/toto/front.svg",
  10657. extra: 527 / 479,
  10658. bottom: 0.05
  10659. }
  10660. },
  10661. },
  10662. [
  10663. {
  10664. name: "Micro",
  10665. height: math.unit(3, "feet")
  10666. },
  10667. {
  10668. name: "Normal",
  10669. height: math.unit(10, "feet")
  10670. },
  10671. {
  10672. name: "Macro",
  10673. height: math.unit(150, "feet"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Megamacro",
  10678. height: math.unit(1200, "feet")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "King", species: ["lion"], tags: ["anthro"] },
  10684. {
  10685. back: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(150, "lb"),
  10688. name: "Back",
  10689. image: {
  10690. source: "./media/characters/king/back.svg"
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Micro",
  10697. height: math.unit(2, "inches")
  10698. },
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(8, "feet")
  10702. },
  10703. {
  10704. name: "Macro",
  10705. height: math.unit(200, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Megamacro",
  10710. height: math.unit(50, "miles")
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10716. {
  10717. anthro: {
  10718. height: math.unit(6 + 5 / 12, "feet"),
  10719. weight: math.unit(280, "lb"),
  10720. name: "Anthro",
  10721. image: {
  10722. source: "./media/characters/cordite/anthro.svg",
  10723. extra: 1986 / 1905,
  10724. bottom: 0.025
  10725. }
  10726. },
  10727. feral: {
  10728. height: math.unit(2, "feet"),
  10729. weight: math.unit(90, "lb"),
  10730. name: "Feral",
  10731. image: {
  10732. source: "./media/characters/cordite/feral.svg",
  10733. extra: 1260 / 755,
  10734. bottom: 0.05
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(6 + 5 / 12, "feet"),
  10742. default: true
  10743. },
  10744. ]
  10745. ))
  10746. characterMakers.push(() => makeCharacter(
  10747. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10748. {
  10749. front: {
  10750. height: math.unit(6, "feet"),
  10751. weight: math.unit(150, "lb"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/pianostrong/front.svg",
  10755. extra: 6577 / 6254,
  10756. bottom: 0.02
  10757. }
  10758. },
  10759. side: {
  10760. height: math.unit(6, "feet"),
  10761. weight: math.unit(150, "lb"),
  10762. name: "Side",
  10763. image: {
  10764. source: "./media/characters/pianostrong/side.svg",
  10765. extra: 6106 / 5730
  10766. }
  10767. },
  10768. back: {
  10769. height: math.unit(6, "feet"),
  10770. weight: math.unit(150, "lb"),
  10771. name: "Back",
  10772. image: {
  10773. source: "./media/characters/pianostrong/back.svg",
  10774. extra: 6085 / 5733,
  10775. bottom: 0.01
  10776. }
  10777. },
  10778. },
  10779. [
  10780. {
  10781. name: "Macro",
  10782. height: math.unit(100, "feet")
  10783. },
  10784. {
  10785. name: "Macro+",
  10786. height: math.unit(300, "feet"),
  10787. default: true
  10788. },
  10789. {
  10790. name: "Macro++",
  10791. height: math.unit(1000, "feet")
  10792. },
  10793. ]
  10794. ))
  10795. characterMakers.push(() => makeCharacter(
  10796. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10797. {
  10798. front: {
  10799. height: math.unit(6, "feet"),
  10800. weight: math.unit(150, "lb"),
  10801. name: "Front",
  10802. image: {
  10803. source: "./media/characters/kona/front.svg",
  10804. extra: 2960 / 2629,
  10805. bottom: 0.005
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Normal",
  10812. height: math.unit(11 + 8 / 12, "feet")
  10813. },
  10814. {
  10815. name: "Macro",
  10816. height: math.unit(850, "feet"),
  10817. default: true
  10818. },
  10819. {
  10820. name: "Macro+",
  10821. height: math.unit(1.5, "km"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Megamacro",
  10826. height: math.unit(80, "miles")
  10827. },
  10828. {
  10829. name: "Gigamacro",
  10830. height: math.unit(3500, "miles")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10836. {
  10837. side: {
  10838. height: math.unit(1.9, "meters"),
  10839. weight: math.unit(326, "kg"),
  10840. name: "Side",
  10841. image: {
  10842. source: "./media/characters/levi/side.svg",
  10843. extra: 1704 / 1334,
  10844. bottom: 0.02
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Normal",
  10851. height: math.unit(1.9, "meters"),
  10852. default: true
  10853. },
  10854. {
  10855. name: "Macro",
  10856. height: math.unit(20, "meters")
  10857. },
  10858. {
  10859. name: "Macro+",
  10860. height: math.unit(200, "meters")
  10861. },
  10862. {
  10863. name: "Megamacro",
  10864. height: math.unit(2, "km")
  10865. },
  10866. {
  10867. name: "Megamacro+",
  10868. height: math.unit(20, "km")
  10869. },
  10870. {
  10871. name: "Gigamacro",
  10872. height: math.unit(2500, "km")
  10873. },
  10874. {
  10875. name: "Gigamacro+",
  10876. height: math.unit(120000, "km")
  10877. },
  10878. {
  10879. name: "Teramacro",
  10880. height: math.unit(7.77e6, "km")
  10881. },
  10882. ]
  10883. ))
  10884. characterMakers.push(() => makeCharacter(
  10885. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10886. {
  10887. front: {
  10888. height: math.unit(6 + 4 / 12, "feet"),
  10889. weight: math.unit(188, "lb"),
  10890. name: "Front",
  10891. image: {
  10892. source: "./media/characters/bmc/front.svg",
  10893. extra: 1067 / 1022,
  10894. bottom: 0.047
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Human-sized",
  10901. height: math.unit(6 + 4 / 12, "feet")
  10902. },
  10903. {
  10904. name: "Small",
  10905. height: math.unit(250, "feet")
  10906. },
  10907. {
  10908. name: "Normal",
  10909. height: math.unit(1250, "feet"),
  10910. default: true
  10911. },
  10912. {
  10913. name: "Good Day",
  10914. height: math.unit(88, "miles")
  10915. },
  10916. {
  10917. name: "Largest Measured Size",
  10918. height: math.unit(11.2e6, "lightyears")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(20, "feet"),
  10927. weight: math.unit(2016, "kg"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/sven-the-kaiju/front.svg",
  10931. extra: 1479 / 1449,
  10932. bottom: 0.05
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Fairy",
  10939. height: math.unit(6, "inches")
  10940. },
  10941. {
  10942. name: "Normal",
  10943. height: math.unit(20, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Rampage",
  10948. height: math.unit(200, "feet")
  10949. },
  10950. {
  10951. name: "Archfey Forest Guardian",
  10952. height: math.unit(1, "mile")
  10953. },
  10954. ]
  10955. ))
  10956. characterMakers.push(() => makeCharacter(
  10957. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10958. {
  10959. front: {
  10960. height: math.unit(4, "meters"),
  10961. weight: math.unit(2, "tons"),
  10962. name: "Front",
  10963. image: {
  10964. source: "./media/characters/marik/front.svg",
  10965. extra: 1057 / 1003,
  10966. bottom: 0.08
  10967. }
  10968. },
  10969. },
  10970. [
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(4, "meters"),
  10974. default: true
  10975. },
  10976. {
  10977. name: "Macro",
  10978. height: math.unit(20, "meters")
  10979. },
  10980. {
  10981. name: "Megamacro",
  10982. height: math.unit(50, "km")
  10983. },
  10984. {
  10985. name: "Gigamacro",
  10986. height: math.unit(100, "km")
  10987. },
  10988. {
  10989. name: "Alpha Macro",
  10990. height: math.unit(7.88e7, "yottameters")
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(6, "feet"),
  10999. weight: math.unit(110, "lb"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/mel/front.svg",
  11003. extra: 736 / 617,
  11004. bottom: 0.017
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Pico",
  11011. height: math.unit(3, "pm")
  11012. },
  11013. {
  11014. name: "Nano",
  11015. height: math.unit(3, "nm")
  11016. },
  11017. {
  11018. name: "Micro",
  11019. height: math.unit(0.3, "mm"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Micro+",
  11024. height: math.unit(3, "mm")
  11025. },
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(5 + 10.5 / 12, "feet")
  11029. },
  11030. ]
  11031. ))
  11032. characterMakers.push(() => makeCharacter(
  11033. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11034. {
  11035. kaiju: {
  11036. height: math.unit(1.75, "meters"),
  11037. weight: math.unit(55, "kg"),
  11038. name: "Kaiju",
  11039. image: {
  11040. source: "./media/characters/lykonous/kaiju.svg",
  11041. extra: 1055 / 946,
  11042. bottom: 0.135
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Normal",
  11049. height: math.unit(2.5, "meters"),
  11050. default: true
  11051. },
  11052. {
  11053. name: "Kaiju Dragon",
  11054. height: math.unit(60, "meters")
  11055. },
  11056. {
  11057. name: "Mega Kaiju",
  11058. height: math.unit(120, "km")
  11059. },
  11060. {
  11061. name: "Giga Kaiju",
  11062. height: math.unit(200, "megameters")
  11063. },
  11064. {
  11065. name: "Terra Kaiju",
  11066. height: math.unit(400, "gigameters")
  11067. },
  11068. {
  11069. name: "Kaiju Dragon God",
  11070. height: math.unit(13000, "exaparsecs")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(150, "lb"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/blü/front.svg",
  11083. extra: 1883 / 1564,
  11084. bottom: 0.031
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(13, "feet"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Big Boi",
  11096. height: math.unit(150, "meters")
  11097. },
  11098. {
  11099. name: "Mini Stomper",
  11100. height: math.unit(300, "meters")
  11101. },
  11102. {
  11103. name: "Macro",
  11104. height: math.unit(1000, "meters")
  11105. },
  11106. {
  11107. name: "Megamacro",
  11108. height: math.unit(11000, "meters")
  11109. },
  11110. {
  11111. name: "Gigamacro",
  11112. height: math.unit(11000, "km")
  11113. },
  11114. {
  11115. name: "Teramacro",
  11116. height: math.unit(420000, "km")
  11117. },
  11118. {
  11119. name: "Examacro",
  11120. height: math.unit(120, "parsecs")
  11121. },
  11122. {
  11123. name: "God Tho",
  11124. height: math.unit(98000000000, "parsecs")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11130. {
  11131. taurFront: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(200, "lb"),
  11134. name: "Taur (Front)",
  11135. image: {
  11136. source: "./media/characters/scales/taur-front.svg",
  11137. extra: 1,
  11138. bottom: 0.05
  11139. }
  11140. },
  11141. taurBack: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(200, "lb"),
  11144. name: "Taur (Back)",
  11145. image: {
  11146. source: "./media/characters/scales/taur-back.svg",
  11147. extra: 1,
  11148. bottom: 0.08
  11149. }
  11150. },
  11151. anthro: {
  11152. height: math.unit(6 * 7 / 12, "feet"),
  11153. weight: math.unit(100, "lb"),
  11154. name: "Anthro",
  11155. image: {
  11156. source: "./media/characters/scales/anthro.svg",
  11157. extra: 1,
  11158. bottom: 0.06
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(12, "feet"),
  11166. default: true
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11172. {
  11173. front: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(150, "lb"),
  11176. name: "Front",
  11177. image: {
  11178. source: "./media/characters/koragos/front.svg",
  11179. extra: 841 / 794,
  11180. bottom: 0.035
  11181. }
  11182. },
  11183. back: {
  11184. height: math.unit(6, "feet"),
  11185. weight: math.unit(150, "lb"),
  11186. name: "Back",
  11187. image: {
  11188. source: "./media/characters/koragos/back.svg",
  11189. extra: 841 / 810,
  11190. bottom: 0.022
  11191. }
  11192. },
  11193. },
  11194. [
  11195. {
  11196. name: "Normal",
  11197. height: math.unit(6 + 11 / 12, "feet"),
  11198. default: true
  11199. },
  11200. {
  11201. name: "Macro",
  11202. height: math.unit(490, "feet")
  11203. },
  11204. {
  11205. name: "Megamacro",
  11206. height: math.unit(10, "miles")
  11207. },
  11208. {
  11209. name: "Gigamacro",
  11210. height: math.unit(50, "miles")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11216. {
  11217. front: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(250, "lb"),
  11220. name: "Front",
  11221. image: {
  11222. source: "./media/characters/xylrem/front.svg",
  11223. extra: 3323 / 3050,
  11224. bottom: 0.065
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Micro",
  11231. height: math.unit(4, "feet")
  11232. },
  11233. {
  11234. name: "Normal",
  11235. height: math.unit(16, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Macro",
  11240. height: math.unit(2720, "feet")
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(25000, "miles")
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11250. {
  11251. front: {
  11252. height: math.unit(8, "feet"),
  11253. weight: math.unit(250, "kg"),
  11254. name: "Front",
  11255. image: {
  11256. source: "./media/characters/ikideru/front.svg",
  11257. extra: 930 / 870,
  11258. bottom: 0.087
  11259. }
  11260. },
  11261. back: {
  11262. height: math.unit(8, "feet"),
  11263. weight: math.unit(250, "kg"),
  11264. name: "Back",
  11265. image: {
  11266. source: "./media/characters/ikideru/back.svg",
  11267. extra: 919 / 852,
  11268. bottom: 0.055
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Rare",
  11275. height: math.unit(8, "feet"),
  11276. default: true
  11277. },
  11278. {
  11279. name: "Playful Loom",
  11280. height: math.unit(80, "feet")
  11281. },
  11282. {
  11283. name: "City Leaner",
  11284. height: math.unit(230, "feet")
  11285. },
  11286. {
  11287. name: "Megamacro",
  11288. height: math.unit(2500, "feet")
  11289. },
  11290. {
  11291. name: "Gigamacro",
  11292. height: math.unit(26400, "feet")
  11293. },
  11294. {
  11295. name: "Tectonic Shifter",
  11296. height: math.unit(1.7, "megameters")
  11297. },
  11298. {
  11299. name: "Planet Carer",
  11300. height: math.unit(21, "megameters")
  11301. },
  11302. {
  11303. name: "God",
  11304. height: math.unit(11157.22, "parsecs")
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(120, "lb"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/neo/front.svg"
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Micro",
  11323. height: math.unit(2, "inches"),
  11324. default: true
  11325. },
  11326. {
  11327. name: "Human Size",
  11328. height: math.unit(5 + 8 / 12, "feet")
  11329. },
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11334. {
  11335. front: {
  11336. height: math.unit(13 + 10 / 12, "feet"),
  11337. weight: math.unit(5320, "lb"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/chauncey-chantz/front.svg",
  11341. extra: 1587 / 1435,
  11342. bottom: 0.02
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(13 + 10 / 12, "feet"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Macro",
  11354. height: math.unit(45, "feet")
  11355. },
  11356. {
  11357. name: "Megamacro",
  11358. height: math.unit(250, "miles")
  11359. },
  11360. {
  11361. name: "Planetary",
  11362. height: math.unit(10000, "miles")
  11363. },
  11364. {
  11365. name: "Galactic",
  11366. height: math.unit(40000, "parsecs")
  11367. },
  11368. {
  11369. name: "Universal",
  11370. height: math.unit(1, "yottameter")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11376. {
  11377. front: {
  11378. height: math.unit(6, "feet"),
  11379. weight: math.unit(150, "lb"),
  11380. name: "Front",
  11381. image: {
  11382. source: "./media/characters/epifox/front.svg",
  11383. extra: 1,
  11384. bottom: 0.075
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Micro",
  11391. height: math.unit(6, "inches")
  11392. },
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(12, "feet"),
  11396. default: true
  11397. },
  11398. {
  11399. name: "Macro",
  11400. height: math.unit(3810, "feet")
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(500, "miles")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(1.8796, "m"),
  11413. weight: math.unit(230, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/colin-t/front.svg",
  11417. extra: 1272 / 1193,
  11418. bottom: 0.07
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Micro",
  11425. height: math.unit(0.571, "meters")
  11426. },
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(1.8796, "meters"),
  11430. default: true
  11431. },
  11432. {
  11433. name: "Tall",
  11434. height: math.unit(4, "meters")
  11435. },
  11436. {
  11437. name: "Macro",
  11438. height: math.unit(67.241, "meters")
  11439. },
  11440. {
  11441. name: "Megamacro",
  11442. height: math.unit(371.856, "meters")
  11443. },
  11444. {
  11445. name: "Planetary",
  11446. height: math.unit(12631.5689, "km")
  11447. },
  11448. ]
  11449. ))
  11450. characterMakers.push(() => makeCharacter(
  11451. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11452. {
  11453. front: {
  11454. height: math.unit(1.85, "meters"),
  11455. weight: math.unit(80, "kg"),
  11456. name: "Front",
  11457. image: {
  11458. source: "./media/characters/matvei/front.svg",
  11459. extra: 614 / 594,
  11460. bottom: 0.01
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(1.85, "meters"),
  11468. default: true
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(5 + 9 / 12, "feet"),
  11477. weight: math.unit(70, "lb"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/quincy/front.svg",
  11481. extra: 3041 / 2751
  11482. }
  11483. },
  11484. back: {
  11485. height: math.unit(5 + 9 / 12, "feet"),
  11486. weight: math.unit(70, "lb"),
  11487. name: "Back",
  11488. image: {
  11489. source: "./media/characters/quincy/back.svg",
  11490. extra: 3041 / 2751
  11491. }
  11492. },
  11493. flying: {
  11494. height: math.unit(5 + 4 / 12, "feet"),
  11495. weight: math.unit(70, "lb"),
  11496. name: "Flying",
  11497. image: {
  11498. source: "./media/characters/quincy/flying.svg",
  11499. extra: 1044 / 930
  11500. }
  11501. },
  11502. },
  11503. [
  11504. {
  11505. name: "Micro",
  11506. height: math.unit(3, "cm")
  11507. },
  11508. {
  11509. name: "Normal",
  11510. height: math.unit(5 + 9 / 12, "feet")
  11511. },
  11512. {
  11513. name: "Macro",
  11514. height: math.unit(200, "meters"),
  11515. default: true
  11516. },
  11517. {
  11518. name: "Megamacro",
  11519. height: math.unit(1000, "meters")
  11520. },
  11521. ]
  11522. ))
  11523. characterMakers.push(() => makeCharacter(
  11524. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11525. {
  11526. front: {
  11527. height: math.unit(4 + 7 / 12, "feet"),
  11528. weight: math.unit(50, "lb"),
  11529. name: "Front",
  11530. image: {
  11531. source: "./media/characters/vanrel/front.svg",
  11532. extra: 1,
  11533. bottom: 0.02
  11534. }
  11535. },
  11536. frontAlt: {
  11537. height: math.unit(4 + 7 / 12, "feet"),
  11538. weight: math.unit(50, "lb"),
  11539. name: "Front-alt",
  11540. image: {
  11541. source: "./media/characters/vanrel/front-alt.svg",
  11542. extra: 1,
  11543. bottom: 15 / 1511
  11544. }
  11545. },
  11546. elemental: {
  11547. height: math.unit(3, "feet"),
  11548. weight: math.unit(50, "lb"),
  11549. name: "Elemental",
  11550. image: {
  11551. source: "./media/characters/vanrel/elemental.svg",
  11552. extra: 192.3 / 162.8,
  11553. bottom: 1.79 / 194.17
  11554. }
  11555. },
  11556. side: {
  11557. height: math.unit(4 + 7 / 12, "feet"),
  11558. weight: math.unit(50, "lb"),
  11559. name: "Side",
  11560. image: {
  11561. source: "./media/characters/vanrel/side.svg",
  11562. extra: 1,
  11563. bottom: 0.025
  11564. }
  11565. },
  11566. tome: {
  11567. height: math.unit(1.35, "feet"),
  11568. weight: math.unit(10, "lb"),
  11569. name: "Vanrel's Tome",
  11570. rename: true,
  11571. image: {
  11572. source: "./media/characters/vanrel/tome.svg"
  11573. }
  11574. },
  11575. beans: {
  11576. height: math.unit(0.89, "feet"),
  11577. name: "Beans",
  11578. image: {
  11579. source: "./media/characters/vanrel/beans.svg"
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(4 + 7 / 12, "feet"),
  11587. default: true
  11588. },
  11589. ]
  11590. ))
  11591. characterMakers.push(() => makeCharacter(
  11592. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11593. {
  11594. front: {
  11595. height: math.unit(7 + 5 / 12, "feet"),
  11596. weight: math.unit(150, "lb"),
  11597. name: "Front",
  11598. image: {
  11599. source: "./media/characters/kuiper-vanrel/front.svg",
  11600. extra: 1118 / 1068,
  11601. bottom: 0.09
  11602. }
  11603. },
  11604. foot: {
  11605. height: math.unit(0.55, "meters"),
  11606. name: "Foot",
  11607. image: {
  11608. source: "./media/characters/kuiper-vanrel/foot.svg",
  11609. }
  11610. },
  11611. battle: {
  11612. height: math.unit(6.824, "feet"),
  11613. weight: math.unit(150, "lb"),
  11614. name: "Battle",
  11615. image: {
  11616. source: "./media/characters/kuiper-vanrel/battle.svg",
  11617. extra: 1466 / 1327,
  11618. bottom: 29 / 1492.5
  11619. }
  11620. },
  11621. battleAlt: {
  11622. height: math.unit(6.824, "feet"),
  11623. weight: math.unit(150, "lb"),
  11624. name: "Battle (Alt)",
  11625. image: {
  11626. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11627. extra: 2081 / 1965,
  11628. bottom: 40 / 2121
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(7 + 5 / 12, "feet"),
  11636. default: true
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(8 + 5 / 12, "feet"),
  11645. weight: math.unit(150, "lb"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/keset-vanrel/front.svg",
  11649. extra: 1150 / 1084,
  11650. bottom: 0.05
  11651. }
  11652. },
  11653. hand: {
  11654. height: math.unit(0.6, "meters"),
  11655. name: "Hand",
  11656. image: {
  11657. source: "./media/characters/keset-vanrel/hand.svg"
  11658. }
  11659. },
  11660. foot: {
  11661. height: math.unit(0.94978, "meters"),
  11662. name: "Foot",
  11663. image: {
  11664. source: "./media/characters/keset-vanrel/foot.svg"
  11665. }
  11666. },
  11667. battle: {
  11668. height: math.unit(7.408, "feet"),
  11669. weight: math.unit(150, "lb"),
  11670. name: "Battle",
  11671. image: {
  11672. source: "./media/characters/keset-vanrel/battle.svg",
  11673. extra: 1890 / 1386,
  11674. bottom: 73.28 / 1970
  11675. }
  11676. },
  11677. },
  11678. [
  11679. {
  11680. name: "Normal",
  11681. height: math.unit(8 + 5 / 12, "feet"),
  11682. default: true
  11683. },
  11684. ]
  11685. ))
  11686. characterMakers.push(() => makeCharacter(
  11687. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11688. {
  11689. front: {
  11690. height: math.unit(6, "feet"),
  11691. weight: math.unit(150, "lb"),
  11692. name: "Front",
  11693. image: {
  11694. source: "./media/characters/neos/front.svg",
  11695. extra: 1696 / 992,
  11696. bottom: 0.14
  11697. }
  11698. },
  11699. },
  11700. [
  11701. {
  11702. name: "Normal",
  11703. height: math.unit(54, "cm"),
  11704. default: true
  11705. },
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(100, "m")
  11709. },
  11710. {
  11711. name: "Megamacro",
  11712. height: math.unit(10, "km")
  11713. },
  11714. {
  11715. name: "Megamacro+",
  11716. height: math.unit(100, "km")
  11717. },
  11718. {
  11719. name: "Gigamacro",
  11720. height: math.unit(100, "Mm")
  11721. },
  11722. {
  11723. name: "Teramacro",
  11724. height: math.unit(100, "Gm")
  11725. },
  11726. {
  11727. name: "Examacro",
  11728. height: math.unit(100, "Em")
  11729. },
  11730. {
  11731. name: "Godly",
  11732. height: math.unit(10000, "Ym")
  11733. },
  11734. {
  11735. name: "Beyond Godly",
  11736. height: math.unit(25, "multiverses")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11742. {
  11743. feminine: {
  11744. height: math.unit(5, "feet"),
  11745. weight: math.unit(100, "lb"),
  11746. name: "Feminine",
  11747. image: {
  11748. source: "./media/characters/sammy-mouse/feminine.svg",
  11749. extra: 2526 / 2425,
  11750. bottom: 0.123
  11751. }
  11752. },
  11753. masculine: {
  11754. height: math.unit(5, "feet"),
  11755. weight: math.unit(100, "lb"),
  11756. name: "Masculine",
  11757. image: {
  11758. source: "./media/characters/sammy-mouse/masculine.svg",
  11759. extra: 2526 / 2425,
  11760. bottom: 0.123
  11761. }
  11762. },
  11763. },
  11764. [
  11765. {
  11766. name: "Micro",
  11767. height: math.unit(5, "inches")
  11768. },
  11769. {
  11770. name: "Normal",
  11771. height: math.unit(5, "feet"),
  11772. default: true
  11773. },
  11774. {
  11775. name: "Macro",
  11776. height: math.unit(60, "feet")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(4, "feet"),
  11785. weight: math.unit(50, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/kole/front.svg",
  11789. extra: 1423 / 1303,
  11790. bottom: 0.025
  11791. }
  11792. },
  11793. back: {
  11794. height: math.unit(4, "feet"),
  11795. weight: math.unit(50, "lb"),
  11796. name: "Back",
  11797. image: {
  11798. source: "./media/characters/kole/back.svg",
  11799. extra: 1426 / 1280,
  11800. bottom: 0.02
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Normal",
  11807. height: math.unit(4, "feet"),
  11808. default: true
  11809. },
  11810. ]
  11811. ))
  11812. characterMakers.push(() => makeCharacter(
  11813. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11814. {
  11815. front: {
  11816. height: math.unit(2 + 6 / 12, "feet"),
  11817. weight: math.unit(20, "lb"),
  11818. name: "Front",
  11819. image: {
  11820. source: "./media/characters/rufran/front.svg",
  11821. extra: 2041 / 1839,
  11822. bottom: 0.055
  11823. }
  11824. },
  11825. back: {
  11826. height: math.unit(2 + 6 / 12, "feet"),
  11827. weight: math.unit(20, "lb"),
  11828. name: "Back",
  11829. image: {
  11830. source: "./media/characters/rufran/back.svg",
  11831. extra: 2054 / 1839,
  11832. bottom: 0.01
  11833. }
  11834. },
  11835. hand: {
  11836. height: math.unit(0.2166, "meters"),
  11837. name: "Hand",
  11838. image: {
  11839. source: "./media/characters/rufran/hand.svg"
  11840. }
  11841. },
  11842. foot: {
  11843. height: math.unit(0.185, "meters"),
  11844. name: "Foot",
  11845. image: {
  11846. source: "./media/characters/rufran/foot.svg"
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Micro",
  11853. height: math.unit(1, "inch")
  11854. },
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(2 + 6 / 12, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Big",
  11862. height: math.unit(60, "feet")
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(325, "feet")
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(0.3, "meters"),
  11875. weight: math.unit(3.5, "kg"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/chip/front.svg",
  11879. extra: 748 / 674
  11880. }
  11881. },
  11882. },
  11883. [
  11884. {
  11885. name: "Micro",
  11886. height: math.unit(1, "inch"),
  11887. default: true
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11893. {
  11894. side: {
  11895. height: math.unit(2.3, "meters"),
  11896. weight: math.unit(3500, "lb"),
  11897. name: "Side",
  11898. image: {
  11899. source: "./media/characters/torvid/side.svg",
  11900. extra: 1972 / 722,
  11901. bottom: 0.035
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(2.3, "meters"),
  11909. default: true
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(2, "meters"),
  11918. weight: math.unit(150.5, "kg"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/susan/front.svg",
  11922. extra: 693 / 635,
  11923. bottom: 0.05
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Megamacro",
  11930. height: math.unit(505, "miles"),
  11931. default: true
  11932. },
  11933. ]
  11934. ))
  11935. characterMakers.push(() => makeCharacter(
  11936. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11937. {
  11938. front: {
  11939. height: math.unit(6, "feet"),
  11940. weight: math.unit(150, "lb"),
  11941. name: "Front",
  11942. image: {
  11943. source: "./media/characters/raindrops/front.svg",
  11944. extra: 2655 / 2461,
  11945. bottom: 49 / 2705
  11946. }
  11947. },
  11948. back: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Back",
  11952. image: {
  11953. source: "./media/characters/raindrops/back.svg",
  11954. extra: 2574 / 2400,
  11955. bottom: 65 / 2634
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Micro",
  11962. height: math.unit(6, "inches")
  11963. },
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(6 + 2 / 12, "feet")
  11967. },
  11968. {
  11969. name: "Macro",
  11970. height: math.unit(131, "feet"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(15, "miles")
  11976. },
  11977. {
  11978. name: "Gigamacro",
  11979. height: math.unit(4000, "miles")
  11980. },
  11981. {
  11982. name: "Teramacro",
  11983. height: math.unit(315000, "miles")
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(2.794, "meters"),
  11992. weight: math.unit(325, "kg"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/tezwa/front.svg",
  11996. extra: 2083 / 1906,
  11997. bottom: 0.031
  11998. }
  11999. },
  12000. foot: {
  12001. height: math.unit(0.687, "meters"),
  12002. name: "Foot",
  12003. image: {
  12004. source: "./media/characters/tezwa/foot.svg"
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(9 + 2 / 12, "feet"),
  12012. default: true
  12013. },
  12014. ]
  12015. ))
  12016. characterMakers.push(() => makeCharacter(
  12017. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12018. {
  12019. front: {
  12020. height: math.unit(58, "feet"),
  12021. weight: math.unit(89000, "lb"),
  12022. name: "Front",
  12023. image: {
  12024. source: "./media/characters/typhus/front.svg",
  12025. extra: 816 / 800,
  12026. bottom: 0.065
  12027. }
  12028. },
  12029. },
  12030. [
  12031. {
  12032. name: "Macro",
  12033. height: math.unit(58, "feet"),
  12034. default: true
  12035. },
  12036. ]
  12037. ))
  12038. characterMakers.push(() => makeCharacter(
  12039. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12040. {
  12041. front: {
  12042. height: math.unit(12, "feet"),
  12043. weight: math.unit(6, "tonnes"),
  12044. name: "Front",
  12045. image: {
  12046. source: "./media/characters/lyra-von-wulf/front.svg",
  12047. extra: 1,
  12048. bottom: 0.10
  12049. }
  12050. },
  12051. frontMecha: {
  12052. height: math.unit(12, "feet"),
  12053. weight: math.unit(12, "tonnes"),
  12054. name: "Front (Mecha)",
  12055. image: {
  12056. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12057. extra: 1,
  12058. bottom: 0.042
  12059. }
  12060. },
  12061. maw: {
  12062. height: math.unit(2.2, "feet"),
  12063. name: "Maw",
  12064. image: {
  12065. source: "./media/characters/lyra-von-wulf/maw.svg"
  12066. }
  12067. },
  12068. },
  12069. [
  12070. {
  12071. name: "Normal",
  12072. height: math.unit(12, "feet"),
  12073. default: true
  12074. },
  12075. {
  12076. name: "Classic",
  12077. height: math.unit(50, "feet")
  12078. },
  12079. {
  12080. name: "Macro",
  12081. height: math.unit(500, "feet")
  12082. },
  12083. {
  12084. name: "Megamacro",
  12085. height: math.unit(1, "mile")
  12086. },
  12087. {
  12088. name: "Gigamacro",
  12089. height: math.unit(400, "miles")
  12090. },
  12091. {
  12092. name: "Teramacro",
  12093. height: math.unit(22000, "miles")
  12094. },
  12095. {
  12096. name: "Solarmacro",
  12097. height: math.unit(8600000, "miles")
  12098. },
  12099. {
  12100. name: "Galactic",
  12101. height: math.unit(1057000, "lightyears")
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12107. {
  12108. front: {
  12109. height: math.unit(6 + 10 / 12, "feet"),
  12110. weight: math.unit(150, "lb"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/dixon/front.svg",
  12114. extra: 3361 / 3209,
  12115. bottom: 0.01
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Normal",
  12122. height: math.unit(6 + 10 / 12, "feet"),
  12123. default: true
  12124. },
  12125. {
  12126. name: "Big",
  12127. height: math.unit(12, "meters")
  12128. },
  12129. {
  12130. name: "Macro",
  12131. height: math.unit(500, "meters")
  12132. },
  12133. {
  12134. name: "Megamacro",
  12135. height: math.unit(2, "km")
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12141. {
  12142. front: {
  12143. height: math.unit(185, "cm"),
  12144. weight: math.unit(68, "kg"),
  12145. name: "Front",
  12146. image: {
  12147. source: "./media/characters/kauko/front.svg",
  12148. extra: 1455 / 1421,
  12149. bottom: 0.03
  12150. }
  12151. },
  12152. back: {
  12153. height: math.unit(185, "cm"),
  12154. weight: math.unit(68, "kg"),
  12155. name: "Back",
  12156. image: {
  12157. source: "./media/characters/kauko/back.svg",
  12158. extra: 1455 / 1421,
  12159. bottom: 0.004
  12160. }
  12161. },
  12162. },
  12163. [
  12164. {
  12165. name: "Normal",
  12166. height: math.unit(185, "cm"),
  12167. default: true
  12168. },
  12169. ]
  12170. ))
  12171. characterMakers.push(() => makeCharacter(
  12172. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12173. {
  12174. front: {
  12175. height: math.unit(6, "feet"),
  12176. weight: math.unit(150, "kg"),
  12177. name: "Front",
  12178. image: {
  12179. source: "./media/characters/varg/front.svg",
  12180. extra: 1108 / 1018,
  12181. bottom: 0.0375
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(5, "meters")
  12189. },
  12190. {
  12191. name: "Macro",
  12192. height: math.unit(200, "meters")
  12193. },
  12194. {
  12195. name: "Megamacro",
  12196. height: math.unit(20, "kilometers")
  12197. },
  12198. {
  12199. name: "True Size",
  12200. height: math.unit(211, "km"),
  12201. default: true
  12202. },
  12203. {
  12204. name: "Gigamacro",
  12205. height: math.unit(1000, "km")
  12206. },
  12207. {
  12208. name: "Gigamacro+",
  12209. height: math.unit(8000, "km")
  12210. },
  12211. {
  12212. name: "Teramacro",
  12213. height: math.unit(1000000, "km")
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(7 + 7 / 12, "feet"),
  12222. weight: math.unit(267, "lb"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/dayza/front.svg",
  12226. extra: 1262 / 1200,
  12227. bottom: 0.035
  12228. }
  12229. },
  12230. side: {
  12231. height: math.unit(7 + 7 / 12, "feet"),
  12232. weight: math.unit(267, "lb"),
  12233. name: "Side",
  12234. image: {
  12235. source: "./media/characters/dayza/side.svg",
  12236. extra: 1295 / 1245,
  12237. bottom: 0.05
  12238. }
  12239. },
  12240. back: {
  12241. height: math.unit(7 + 7 / 12, "feet"),
  12242. weight: math.unit(267, "lb"),
  12243. name: "Back",
  12244. image: {
  12245. source: "./media/characters/dayza/back.svg",
  12246. extra: 1241 / 1170
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Normal",
  12253. height: math.unit(7 + 7 / 12, "feet"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Macro",
  12258. height: math.unit(155, "feet")
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(6 + 5 / 12, "feet"),
  12267. weight: math.unit(160, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/xanthos/front.svg",
  12271. extra: 1,
  12272. bottom: 0.04
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(6 + 5 / 12, "feet"),
  12277. weight: math.unit(160, "lb"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/xanthos/back.svg",
  12281. extra: 1,
  12282. bottom: 0.03
  12283. }
  12284. },
  12285. hand: {
  12286. height: math.unit(0.928, "feet"),
  12287. name: "Hand",
  12288. image: {
  12289. source: "./media/characters/xanthos/hand.svg"
  12290. }
  12291. },
  12292. foot: {
  12293. height: math.unit(1.286, "feet"),
  12294. name: "Foot",
  12295. image: {
  12296. source: "./media/characters/xanthos/foot.svg"
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(6 + 5 / 12, "feet"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Normal+",
  12308. height: math.unit(6, "meters")
  12309. },
  12310. {
  12311. name: "Macro",
  12312. height: math.unit(40, "feet")
  12313. },
  12314. {
  12315. name: "Macro+",
  12316. height: math.unit(200, "meters")
  12317. },
  12318. {
  12319. name: "Megamacro",
  12320. height: math.unit(20, "km")
  12321. },
  12322. {
  12323. name: "Megamacro+",
  12324. height: math.unit(100, "km")
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(6 + 3 / 12, "feet"),
  12333. weight: math.unit(215, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/grynn/front.svg",
  12337. extra: 4627 / 4209,
  12338. bottom: 0.047
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Micro",
  12345. height: math.unit(6, "inches")
  12346. },
  12347. {
  12348. name: "Normal",
  12349. height: math.unit(6 + 3 / 12, "feet"),
  12350. default: true
  12351. },
  12352. {
  12353. name: "Big",
  12354. height: math.unit(104, "feet")
  12355. },
  12356. {
  12357. name: "Macro",
  12358. height: math.unit(944, "feet")
  12359. },
  12360. {
  12361. name: "Macro+",
  12362. height: math.unit(9480, "feet")
  12363. },
  12364. {
  12365. name: "Megamacro",
  12366. height: math.unit(78752, "feet")
  12367. },
  12368. {
  12369. name: "Megamacro+",
  12370. height: math.unit(630128, "feet")
  12371. },
  12372. {
  12373. name: "Megamacro++",
  12374. height: math.unit(3150695, "feet")
  12375. },
  12376. ]
  12377. ))
  12378. characterMakers.push(() => makeCharacter(
  12379. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12380. {
  12381. front: {
  12382. height: math.unit(7 + 5 / 12, "feet"),
  12383. weight: math.unit(450, "lb"),
  12384. name: "Front",
  12385. image: {
  12386. source: "./media/characters/mocha-aura/front.svg",
  12387. extra: 1907 / 1817,
  12388. bottom: 0.04
  12389. }
  12390. },
  12391. back: {
  12392. height: math.unit(7 + 5 / 12, "feet"),
  12393. weight: math.unit(450, "lb"),
  12394. name: "Back",
  12395. image: {
  12396. source: "./media/characters/mocha-aura/back.svg",
  12397. extra: 1900 / 1825,
  12398. bottom: 0.045
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Nano",
  12405. height: math.unit(1, "nm")
  12406. },
  12407. {
  12408. name: "Megamicro",
  12409. height: math.unit(1, "mm")
  12410. },
  12411. {
  12412. name: "Micro",
  12413. height: math.unit(3, "inches")
  12414. },
  12415. {
  12416. name: "Normal",
  12417. height: math.unit(7 + 5 / 12, "feet"),
  12418. default: true
  12419. },
  12420. {
  12421. name: "Macro",
  12422. height: math.unit(30, "feet")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(3500, "feet")
  12427. },
  12428. {
  12429. name: "Teramacro",
  12430. height: math.unit(500000, "miles")
  12431. },
  12432. {
  12433. name: "Petamacro",
  12434. height: math.unit(50000000000000000, "parsecs")
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12440. {
  12441. front: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(150, "lb"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/ilisha-devya/front.svg",
  12447. extra: 1,
  12448. bottom: 0.175
  12449. }
  12450. },
  12451. back: {
  12452. height: math.unit(6, "feet"),
  12453. weight: math.unit(150, "lb"),
  12454. name: "Back",
  12455. image: {
  12456. source: "./media/characters/ilisha-devya/back.svg",
  12457. extra: 1,
  12458. bottom: 0.015
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Macro",
  12465. height: math.unit(500, "feet"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Megamacro",
  12470. height: math.unit(10, "miles")
  12471. },
  12472. {
  12473. name: "Gigamacro",
  12474. height: math.unit(100000, "miles")
  12475. },
  12476. {
  12477. name: "Examacro",
  12478. height: math.unit(1e9, "lightyears")
  12479. },
  12480. {
  12481. name: "Omniversal",
  12482. height: math.unit(1e33, "lightyears")
  12483. },
  12484. {
  12485. name: "Beyond Infinite",
  12486. height: math.unit(1e100, "lightyears")
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12492. {
  12493. Side: {
  12494. height: math.unit(6, "feet"),
  12495. weight: math.unit(150, "lb"),
  12496. name: "Side",
  12497. image: {
  12498. source: "./media/characters/mira/side.svg",
  12499. extra: 900 / 799,
  12500. bottom: 0.02
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Human Size",
  12507. height: math.unit(6, "feet")
  12508. },
  12509. {
  12510. name: "Macro",
  12511. height: math.unit(100, "feet"),
  12512. default: true
  12513. },
  12514. {
  12515. name: "Megamacro",
  12516. height: math.unit(10, "miles")
  12517. },
  12518. {
  12519. name: "Gigamacro",
  12520. height: math.unit(25000, "miles")
  12521. },
  12522. {
  12523. name: "Teramacro",
  12524. height: math.unit(300, "AU")
  12525. },
  12526. {
  12527. name: "Full Size",
  12528. height: math.unit(4.5e10, "lightyears")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/holly/front.svg",
  12541. extra: 639 / 606
  12542. }
  12543. },
  12544. back: {
  12545. height: math.unit(6, "feet"),
  12546. weight: math.unit(150, "lb"),
  12547. name: "Back",
  12548. image: {
  12549. source: "./media/characters/holly/back.svg",
  12550. extra: 623 / 598
  12551. }
  12552. },
  12553. frontWorking: {
  12554. height: math.unit(6, "feet"),
  12555. weight: math.unit(150, "lb"),
  12556. name: "Front (Working)",
  12557. image: {
  12558. source: "./media/characters/holly/front-working.svg",
  12559. extra: 607 / 577,
  12560. bottom: 0.048
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Normal",
  12567. height: math.unit(12 + 3 / 12, "feet"),
  12568. default: true
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12574. {
  12575. front: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Front",
  12579. image: {
  12580. source: "./media/characters/porter/front.svg",
  12581. extra: 1,
  12582. bottom: 0.01
  12583. }
  12584. },
  12585. frontRobes: {
  12586. height: math.unit(6, "feet"),
  12587. weight: math.unit(150, "lb"),
  12588. name: "Front (Robes)",
  12589. image: {
  12590. source: "./media/characters/porter/front-robes.svg",
  12591. extra: 1.01,
  12592. bottom: 0.01
  12593. }
  12594. },
  12595. },
  12596. [
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(11 + 9 / 12, "feet"),
  12600. default: true
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12606. {
  12607. legendary: {
  12608. height: math.unit(6, "feet"),
  12609. weight: math.unit(150, "lb"),
  12610. name: "Legendary",
  12611. image: {
  12612. source: "./media/characters/lucy/legendary.svg",
  12613. extra: 1355 / 1100,
  12614. bottom: 0.045
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Legendary",
  12621. height: math.unit(86882 * 2, "miles"),
  12622. default: true
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(6, "feet"),
  12631. weight: math.unit(150, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/drusilla/front.svg",
  12635. extra: 678 / 635,
  12636. bottom: 0.03
  12637. }
  12638. },
  12639. back: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(150, "lb"),
  12642. name: "Back",
  12643. image: {
  12644. source: "./media/characters/drusilla/back.svg",
  12645. extra: 678 / 635,
  12646. bottom: 0.005
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(100, "feet")
  12654. },
  12655. {
  12656. name: "Canon Height",
  12657. height: math.unit(2000, "feet"),
  12658. default: true
  12659. },
  12660. ]
  12661. ))
  12662. characterMakers.push(() => makeCharacter(
  12663. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12664. {
  12665. front: {
  12666. height: math.unit(6, "feet"),
  12667. weight: math.unit(180, "lb"),
  12668. name: "Front",
  12669. image: {
  12670. source: "./media/characters/renard-thatch/front.svg",
  12671. extra: 2411 / 2275,
  12672. bottom: 0.01
  12673. }
  12674. },
  12675. frontPosing: {
  12676. height: math.unit(6, "feet"),
  12677. weight: math.unit(180, "lb"),
  12678. name: "Front (Posing)",
  12679. image: {
  12680. source: "./media/characters/renard-thatch/front-posing.svg",
  12681. extra: 2381 / 2261,
  12682. bottom: 0.01
  12683. }
  12684. },
  12685. back: {
  12686. height: math.unit(6, "feet"),
  12687. weight: math.unit(180, "lb"),
  12688. name: "Back",
  12689. image: {
  12690. source: "./media/characters/renard-thatch/back.svg",
  12691. extra: 2428 / 2288
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Micro",
  12698. height: math.unit(3, "inches")
  12699. },
  12700. {
  12701. name: "Default",
  12702. height: math.unit(6, "feet"),
  12703. default: true
  12704. },
  12705. {
  12706. name: "Macro",
  12707. height: math.unit(75, "feet")
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12713. {
  12714. front: {
  12715. height: math.unit(1450, "feet"),
  12716. weight: math.unit(1.21e6, "tons"),
  12717. name: "Front",
  12718. image: {
  12719. source: "./media/characters/sekvra/front.svg",
  12720. extra: 1,
  12721. bottom: 0.03
  12722. }
  12723. },
  12724. frontClothed: {
  12725. height: math.unit(1450, "feet"),
  12726. weight: math.unit(1.21e6, "tons"),
  12727. name: "Front (Clothed)",
  12728. image: {
  12729. source: "./media/characters/sekvra/front-clothed.svg",
  12730. extra: 1,
  12731. bottom: 0.03
  12732. }
  12733. },
  12734. side: {
  12735. height: math.unit(1450, "feet"),
  12736. weight: math.unit(1.21e6, "tons"),
  12737. name: "Side",
  12738. image: {
  12739. source: "./media/characters/sekvra/side.svg",
  12740. extra: 1,
  12741. bottom: 0.025
  12742. }
  12743. },
  12744. back: {
  12745. height: math.unit(1450, "feet"),
  12746. weight: math.unit(1.21e6, "tons"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/sekvra/back.svg",
  12750. extra: 1,
  12751. bottom: 0.005
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Macro",
  12758. height: math.unit(1450, "feet"),
  12759. default: true
  12760. },
  12761. {
  12762. name: "Megamacro",
  12763. height: math.unit(15000, "feet")
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12769. {
  12770. front: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(150, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/carmine/front.svg",
  12776. extra: 1,
  12777. bottom: 0.035
  12778. }
  12779. },
  12780. frontArmor: {
  12781. height: math.unit(6, "feet"),
  12782. weight: math.unit(150, "lb"),
  12783. name: "Front (Armor)",
  12784. image: {
  12785. source: "./media/characters/carmine/front-armor.svg",
  12786. extra: 1,
  12787. bottom: 0.035
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Large",
  12794. height: math.unit(1, "mile")
  12795. },
  12796. {
  12797. name: "Huge",
  12798. height: math.unit(40, "miles"),
  12799. default: true
  12800. },
  12801. {
  12802. name: "Colossal",
  12803. height: math.unit(2500, "miles")
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12809. {
  12810. front: {
  12811. height: math.unit(6, "feet"),
  12812. weight: math.unit(150, "lb"),
  12813. name: "Front",
  12814. image: {
  12815. source: "./media/characters/elyssia/front.svg",
  12816. extra: 2201 / 2035,
  12817. bottom: 0.05
  12818. }
  12819. },
  12820. frontClothed: {
  12821. height: math.unit(6, "feet"),
  12822. weight: math.unit(150, "lb"),
  12823. name: "Front (Clothed)",
  12824. image: {
  12825. source: "./media/characters/elyssia/front-clothed.svg",
  12826. extra: 2201 / 2035,
  12827. bottom: 0.05
  12828. }
  12829. },
  12830. back: {
  12831. height: math.unit(6, "feet"),
  12832. weight: math.unit(150, "lb"),
  12833. name: "Back",
  12834. image: {
  12835. source: "./media/characters/elyssia/back.svg",
  12836. extra: 2201 / 2035,
  12837. bottom: 0.013
  12838. }
  12839. },
  12840. },
  12841. [
  12842. {
  12843. name: "Smaller",
  12844. height: math.unit(150, "feet")
  12845. },
  12846. {
  12847. name: "Standard",
  12848. height: math.unit(1400, "feet"),
  12849. default: true
  12850. },
  12851. {
  12852. name: "Distracted",
  12853. height: math.unit(15000, "feet")
  12854. },
  12855. ]
  12856. ))
  12857. characterMakers.push(() => makeCharacter(
  12858. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12859. {
  12860. front: {
  12861. height: math.unit(7 + 4 / 12, "feet"),
  12862. weight: math.unit(500, "lb"),
  12863. name: "Front",
  12864. image: {
  12865. source: "./media/characters/geno-maxwell/front.svg",
  12866. extra: 2207 / 2040,
  12867. bottom: 0.015
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Micro",
  12874. height: math.unit(3, "inches")
  12875. },
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(7 + 4 / 12, "feet"),
  12879. default: true
  12880. },
  12881. {
  12882. name: "Macro",
  12883. height: math.unit(220, "feet")
  12884. },
  12885. {
  12886. name: "Megamacro",
  12887. height: math.unit(11, "miles")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(7 + 4 / 12, "feet"),
  12896. weight: math.unit(500, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/regena-maxwell/front.svg",
  12900. extra: 3115 / 2770,
  12901. bottom: 0.02
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Normal",
  12908. height: math.unit(7 + 4 / 12, "feet"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Macro",
  12913. height: math.unit(220, "feet")
  12914. },
  12915. {
  12916. name: "Megamacro",
  12917. height: math.unit(11, "miles")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12923. {
  12924. front: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(150, "lb"),
  12927. name: "Front",
  12928. image: {
  12929. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12930. extra: 860 / 690,
  12931. bottom: 0.03
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Normal",
  12938. height: math.unit(1.7, "meters"),
  12939. default: true
  12940. },
  12941. ]
  12942. ))
  12943. characterMakers.push(() => makeCharacter(
  12944. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12945. {
  12946. front: {
  12947. height: math.unit(6, "feet"),
  12948. weight: math.unit(150, "lb"),
  12949. name: "Front",
  12950. image: {
  12951. source: "./media/characters/quilly/front.svg",
  12952. extra: 890 / 776
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Gigamacro",
  12959. height: math.unit(404090, "miles"),
  12960. default: true
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(7 + 8 / 12, "feet"),
  12969. weight: math.unit(350, "lb"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/tempest/front.svg",
  12973. extra: 1175 / 1086,
  12974. bottom: 0.02
  12975. }
  12976. },
  12977. },
  12978. [
  12979. {
  12980. name: "Normal",
  12981. height: math.unit(7 + 8 / 12, "feet"),
  12982. default: true
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12988. {
  12989. side: {
  12990. height: math.unit(4 + 5 / 12, "feet"),
  12991. weight: math.unit(80, "lb"),
  12992. name: "Side",
  12993. image: {
  12994. source: "./media/characters/rodger/side.svg",
  12995. extra: 1235 / 1118
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Micro",
  13002. height: math.unit(1, "inch")
  13003. },
  13004. {
  13005. name: "Normal",
  13006. height: math.unit(4 + 5 / 12, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(120, "feet")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(150, "lb"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/danyel/front.svg",
  13024. extra: 1185 / 1123,
  13025. bottom: 0.05
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Shrunken",
  13032. height: math.unit(0.5, "mm")
  13033. },
  13034. {
  13035. name: "Micro",
  13036. height: math.unit(1, "mm"),
  13037. default: true
  13038. },
  13039. {
  13040. name: "Upsized",
  13041. height: math.unit(5 + 5 / 12, "feet")
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(5 + 6 / 12, "feet"),
  13050. weight: math.unit(200, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/vivian-bijoux/front.svg",
  13054. extra: 1,
  13055. bottom: 0.072
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Normal",
  13062. height: math.unit(5 + 6 / 12, "feet"),
  13063. default: true
  13064. },
  13065. {
  13066. name: "Bad Dream",
  13067. height: math.unit(500, "feet")
  13068. },
  13069. {
  13070. name: "Nightmare",
  13071. height: math.unit(500, "miles")
  13072. },
  13073. ]
  13074. ))
  13075. characterMakers.push(() => makeCharacter(
  13076. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13077. {
  13078. front: {
  13079. height: math.unit(6 + 1 / 12, "feet"),
  13080. weight: math.unit(260, "lb"),
  13081. name: "Front",
  13082. image: {
  13083. source: "./media/characters/zeta/front.svg",
  13084. extra: 1968 / 1889,
  13085. bottom: 0.06
  13086. }
  13087. },
  13088. back: {
  13089. height: math.unit(6 + 1 / 12, "feet"),
  13090. weight: math.unit(260, "lb"),
  13091. name: "Back",
  13092. image: {
  13093. source: "./media/characters/zeta/back.svg",
  13094. extra: 1944 / 1858,
  13095. bottom: 0.03
  13096. }
  13097. },
  13098. hand: {
  13099. height: math.unit(1.112, "feet"),
  13100. name: "Hand",
  13101. image: {
  13102. source: "./media/characters/zeta/hand.svg"
  13103. }
  13104. },
  13105. foot: {
  13106. height: math.unit(1.48, "feet"),
  13107. name: "Foot",
  13108. image: {
  13109. source: "./media/characters/zeta/foot.svg"
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Micro",
  13116. height: math.unit(6, "inches")
  13117. },
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(6 + 1 / 12, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(20, "feet")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6, "feet"),
  13134. weight: math.unit(150, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/jamie-larsen/front.svg",
  13138. extra: 962 / 933,
  13139. bottom: 0.02
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(6, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/jamie-larsen/back.svg",
  13148. extra: 997 / 946
  13149. }
  13150. },
  13151. },
  13152. [
  13153. {
  13154. name: "Macro",
  13155. height: math.unit(28 + 7 / 12, "feet"),
  13156. default: true
  13157. },
  13158. {
  13159. name: "Macro+",
  13160. height: math.unit(180, "feet")
  13161. },
  13162. {
  13163. name: "Megamacro",
  13164. height: math.unit(10, "miles")
  13165. },
  13166. {
  13167. name: "Gigamacro",
  13168. height: math.unit(200000, "miles")
  13169. },
  13170. ]
  13171. ))
  13172. characterMakers.push(() => makeCharacter(
  13173. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13174. {
  13175. front: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(120, "lb"),
  13178. name: "Front",
  13179. image: {
  13180. source: "./media/characters/vance/front.svg",
  13181. extra: 1980 / 1890,
  13182. bottom: 0.09
  13183. }
  13184. },
  13185. back: {
  13186. height: math.unit(6, "feet"),
  13187. weight: math.unit(120, "lb"),
  13188. name: "Back",
  13189. image: {
  13190. source: "./media/characters/vance/back.svg",
  13191. extra: 2081 / 1994,
  13192. bottom: 0.014
  13193. }
  13194. },
  13195. hand: {
  13196. height: math.unit(0.88, "feet"),
  13197. name: "Hand",
  13198. image: {
  13199. source: "./media/characters/vance/hand.svg"
  13200. }
  13201. },
  13202. foot: {
  13203. height: math.unit(0.64, "feet"),
  13204. name: "Foot",
  13205. image: {
  13206. source: "./media/characters/vance/foot.svg"
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Small",
  13213. height: math.unit(90, "feet"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(100, "meters")
  13219. },
  13220. {
  13221. name: "Megamacro",
  13222. height: math.unit(15, "miles")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(180, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/xochitl/front.svg",
  13235. extra: 2297 / 2261,
  13236. bottom: 0.065
  13237. }
  13238. },
  13239. back: {
  13240. height: math.unit(6, "feet"),
  13241. weight: math.unit(180, "lb"),
  13242. name: "Back",
  13243. image: {
  13244. source: "./media/characters/xochitl/back.svg",
  13245. extra: 2386 / 2354,
  13246. bottom: 0.01
  13247. }
  13248. },
  13249. foot: {
  13250. height: math.unit(6 / 5 * 1.15, "feet"),
  13251. weight: math.unit(150, "lb"),
  13252. name: "Foot",
  13253. image: {
  13254. source: "./media/characters/xochitl/foot.svg"
  13255. }
  13256. },
  13257. },
  13258. [
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(80, "feet")
  13262. },
  13263. {
  13264. name: "Macro+",
  13265. height: math.unit(400, "feet"),
  13266. default: true
  13267. },
  13268. {
  13269. name: "Gigamacro",
  13270. height: math.unit(80000, "miles")
  13271. },
  13272. {
  13273. name: "Gigamacro+",
  13274. height: math.unit(400000, "miles")
  13275. },
  13276. {
  13277. name: "Teramacro",
  13278. height: math.unit(300, "AU")
  13279. },
  13280. ]
  13281. ))
  13282. characterMakers.push(() => makeCharacter(
  13283. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13284. {
  13285. front: {
  13286. height: math.unit(6, "feet"),
  13287. weight: math.unit(150, "lb"),
  13288. name: "Front",
  13289. image: {
  13290. source: "./media/characters/vincent/front.svg",
  13291. extra: 1130 / 1080,
  13292. bottom: 0.055
  13293. }
  13294. },
  13295. beak: {
  13296. height: math.unit(6 * 0.1, "feet"),
  13297. name: "Beak",
  13298. image: {
  13299. source: "./media/characters/vincent/beak.svg"
  13300. }
  13301. },
  13302. hand: {
  13303. height: math.unit(6 * 0.85, "feet"),
  13304. weight: math.unit(150, "lb"),
  13305. name: "Hand",
  13306. image: {
  13307. source: "./media/characters/vincent/hand.svg"
  13308. }
  13309. },
  13310. foot: {
  13311. height: math.unit(6 * 0.19, "feet"),
  13312. weight: math.unit(150, "lb"),
  13313. name: "Foot",
  13314. image: {
  13315. source: "./media/characters/vincent/foot.svg"
  13316. }
  13317. },
  13318. },
  13319. [
  13320. {
  13321. name: "Base",
  13322. height: math.unit(6 + 5 / 12, "feet"),
  13323. default: true
  13324. },
  13325. {
  13326. name: "Macro",
  13327. height: math.unit(300, "feet")
  13328. },
  13329. {
  13330. name: "Megamacro",
  13331. height: math.unit(2, "miles")
  13332. },
  13333. {
  13334. name: "Gigamacro",
  13335. height: math.unit(1000, "miles")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(6 + 2 / 12, "feet"),
  13344. weight: math.unit(265, "lb"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/jay/front.svg",
  13348. extra: 1510 / 1430,
  13349. bottom: 0.042
  13350. }
  13351. },
  13352. back: {
  13353. height: math.unit(6 + 2 / 12, "feet"),
  13354. weight: math.unit(265, "lb"),
  13355. name: "Back",
  13356. image: {
  13357. source: "./media/characters/jay/back.svg",
  13358. extra: 1510 / 1430,
  13359. bottom: 0.025
  13360. }
  13361. },
  13362. clothed: {
  13363. height: math.unit(6 + 2 / 12, "feet"),
  13364. weight: math.unit(265, "lb"),
  13365. name: "Front (Clothed)",
  13366. image: {
  13367. source: "./media/characters/jay/clothed.svg",
  13368. extra: 744 / 699,
  13369. bottom: 0.043
  13370. }
  13371. },
  13372. head: {
  13373. height: math.unit(1.772, "feet"),
  13374. name: "Head",
  13375. image: {
  13376. source: "./media/characters/jay/head.svg"
  13377. }
  13378. },
  13379. sizeRay: {
  13380. height: math.unit(1.331, "feet"),
  13381. name: "Size Ray",
  13382. image: {
  13383. source: "./media/characters/jay/size-ray.svg"
  13384. }
  13385. },
  13386. },
  13387. [
  13388. {
  13389. name: "Micro",
  13390. height: math.unit(1, "inch")
  13391. },
  13392. {
  13393. name: "Normal",
  13394. height: math.unit(6 + 2 / 12, "feet"),
  13395. default: true
  13396. },
  13397. {
  13398. name: "Macro",
  13399. height: math.unit(1, "mile")
  13400. },
  13401. {
  13402. name: "Megamacro",
  13403. height: math.unit(100, "miles")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(2, "meters"),
  13412. weight: math.unit(500, "kg"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/coatl/front.svg",
  13416. extra: 3948 / 3500,
  13417. bottom: 0.082
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Normal",
  13424. height: math.unit(4, "meters")
  13425. },
  13426. {
  13427. name: "Macro",
  13428. height: math.unit(100, "meters"),
  13429. default: true
  13430. },
  13431. {
  13432. name: "Macro+",
  13433. height: math.unit(300, "meters")
  13434. },
  13435. {
  13436. name: "Megamacro",
  13437. height: math.unit(3, "gigameters")
  13438. },
  13439. {
  13440. name: "Megamacro+",
  13441. height: math.unit(300, "terameters")
  13442. },
  13443. {
  13444. name: "Megamacro++",
  13445. height: math.unit(3, "lightyears")
  13446. },
  13447. ]
  13448. ))
  13449. characterMakers.push(() => makeCharacter(
  13450. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13451. {
  13452. front: {
  13453. height: math.unit(6, "feet"),
  13454. weight: math.unit(50, "kg"),
  13455. name: "front",
  13456. image: {
  13457. source: "./media/characters/shiroryu/front.svg",
  13458. extra: 1990 / 1935
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Mortal Mingling",
  13465. height: math.unit(3, "meters")
  13466. },
  13467. {
  13468. name: "Kaiju-ish",
  13469. height: math.unit(250, "meters")
  13470. },
  13471. {
  13472. name: "Somewhat Godly",
  13473. height: math.unit(400, "km"),
  13474. default: true
  13475. },
  13476. {
  13477. name: "Planetary",
  13478. height: math.unit(300, "megameters")
  13479. },
  13480. {
  13481. name: "Galaxy-dwarfing",
  13482. height: math.unit(450, "kiloparsecs")
  13483. },
  13484. {
  13485. name: "Universe Eater",
  13486. height: math.unit(150, "gigaparsecs")
  13487. },
  13488. {
  13489. name: "Almost Immeasurable",
  13490. height: math.unit(1.3e266, "yottaparsecs")
  13491. },
  13492. ]
  13493. ))
  13494. characterMakers.push(() => makeCharacter(
  13495. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13496. {
  13497. front: {
  13498. height: math.unit(6, "feet"),
  13499. weight: math.unit(150, "lb"),
  13500. name: "Front",
  13501. image: {
  13502. source: "./media/characters/umeko/front.svg",
  13503. extra: 1,
  13504. bottom: 0.019
  13505. }
  13506. },
  13507. frontArmored: {
  13508. height: math.unit(6, "feet"),
  13509. weight: math.unit(150, "lb"),
  13510. name: "Front (Armored)",
  13511. image: {
  13512. source: "./media/characters/umeko/front-armored.svg",
  13513. extra: 1,
  13514. bottom: 0.021
  13515. }
  13516. },
  13517. },
  13518. [
  13519. {
  13520. name: "Macro",
  13521. height: math.unit(220, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Guardian Dragon",
  13526. height: math.unit(50, "miles")
  13527. },
  13528. {
  13529. name: "Cosmic",
  13530. height: math.unit(800000, "miles")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(6, "feet"),
  13539. weight: math.unit(150, "lb"),
  13540. name: "Front",
  13541. image: {
  13542. source: "./media/characters/cassidy/front.svg",
  13543. extra: 1,
  13544. bottom: 0.043
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Canon Height",
  13551. height: math.unit(120, "feet"),
  13552. default: true
  13553. },
  13554. {
  13555. name: "Macro+",
  13556. height: math.unit(400, "feet")
  13557. },
  13558. {
  13559. name: "Macro++",
  13560. height: math.unit(4000, "feet")
  13561. },
  13562. {
  13563. name: "Megamacro",
  13564. height: math.unit(3, "miles")
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(6, "feet"),
  13573. weight: math.unit(150, "lb"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/isaac/front.svg",
  13577. extra: 896 / 815,
  13578. bottom: 0.11
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Human Size",
  13585. height: math.unit(8, "feet"),
  13586. default: true
  13587. },
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(400, "feet")
  13591. },
  13592. {
  13593. name: "Megamacro",
  13594. height: math.unit(50, "miles")
  13595. },
  13596. {
  13597. name: "Canon Height",
  13598. height: math.unit(200, "AU")
  13599. },
  13600. ]
  13601. ))
  13602. characterMakers.push(() => makeCharacter(
  13603. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13604. {
  13605. front: {
  13606. height: math.unit(6, "feet"),
  13607. weight: math.unit(72, "kg"),
  13608. name: "Front",
  13609. image: {
  13610. source: "./media/characters/sleekit/front.svg",
  13611. extra: 4693 / 4487,
  13612. bottom: 0.012
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Minimum Height",
  13619. height: math.unit(10, "meters")
  13620. },
  13621. {
  13622. name: "Smaller",
  13623. height: math.unit(25, "meters")
  13624. },
  13625. {
  13626. name: "Larger",
  13627. height: math.unit(38, "meters"),
  13628. default: true
  13629. },
  13630. {
  13631. name: "Maximum height",
  13632. height: math.unit(100, "meters")
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13638. {
  13639. front: {
  13640. height: math.unit(6, "feet"),
  13641. weight: math.unit(150, "lb"),
  13642. name: "Front",
  13643. image: {
  13644. source: "./media/characters/nillia/front.svg",
  13645. extra: 2195 / 2037,
  13646. bottom: 0.005
  13647. }
  13648. },
  13649. back: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Back",
  13653. image: {
  13654. source: "./media/characters/nillia/back.svg",
  13655. extra: 2195 / 2037,
  13656. bottom: 0.005
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Canon Height",
  13663. height: math.unit(489, "feet"),
  13664. default: true
  13665. }
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(6, "feet"),
  13673. weight: math.unit(150, "lb"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/mesmyriza/front.svg",
  13677. extra: 2067 / 1784,
  13678. bottom: 0.035
  13679. }
  13680. },
  13681. foot: {
  13682. height: math.unit(6 / (250 / 35), "feet"),
  13683. name: "Foot",
  13684. image: {
  13685. source: "./media/characters/mesmyriza/foot.svg"
  13686. }
  13687. },
  13688. },
  13689. [
  13690. {
  13691. name: "Macro",
  13692. height: math.unit(457, "meters"),
  13693. default: true
  13694. },
  13695. {
  13696. name: "Megamacro",
  13697. height: math.unit(8, "megameters")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(250, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/saudade/front.svg",
  13710. extra: 1172 / 1139,
  13711. bottom: 0.035
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Micro",
  13718. height: math.unit(3, "inches")
  13719. },
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(6, "feet"),
  13723. default: true
  13724. },
  13725. {
  13726. name: "Macro",
  13727. height: math.unit(50, "feet")
  13728. },
  13729. {
  13730. name: "Megamacro",
  13731. height: math.unit(2800, "feet")
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(5 + 4 / 12, "feet"),
  13740. weight: math.unit(100, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/keireer/front.svg",
  13744. extra: 716 / 666,
  13745. bottom: 0.05
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Normal",
  13752. height: math.unit(5 + 4 / 12, "feet"),
  13753. default: true
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(90, "kg"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/mirja/front.svg",
  13766. extra: 1789 / 1683,
  13767. bottom: 0.05
  13768. }
  13769. },
  13770. frontDressed: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(90, "lb"),
  13773. name: "Front (Dressed)",
  13774. image: {
  13775. source: "./media/characters/mirja/front-dressed.svg",
  13776. extra: 1789 / 1683,
  13777. bottom: 0.05
  13778. }
  13779. },
  13780. back: {
  13781. height: math.unit(6, "feet"),
  13782. weight: math.unit(90, "lb"),
  13783. name: "Back",
  13784. image: {
  13785. source: "./media/characters/mirja/back.svg",
  13786. extra: 953 / 917,
  13787. bottom: 0.017
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "\"Incognito\"",
  13794. height: math.unit(3, "meters")
  13795. },
  13796. {
  13797. name: "Strolling Size",
  13798. height: math.unit(15, "km")
  13799. },
  13800. {
  13801. name: "Larger Strolling Size",
  13802. height: math.unit(400, "km")
  13803. },
  13804. {
  13805. name: "Preferred Size",
  13806. height: math.unit(5000, "km")
  13807. },
  13808. {
  13809. name: "True Size",
  13810. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13811. default: true
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(15, "feet"),
  13820. weight: math.unit(880, "kg"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/nightraver/front.svg",
  13824. extra: 2444 / 2160,
  13825. bottom: 0.027
  13826. }
  13827. },
  13828. back: {
  13829. height: math.unit(15, "feet"),
  13830. weight: math.unit(880, "kg"),
  13831. name: "Back",
  13832. image: {
  13833. source: "./media/characters/nightraver/back.svg",
  13834. extra: 2309 / 2180,
  13835. bottom: 0.005
  13836. }
  13837. },
  13838. sole: {
  13839. height: math.unit(2.878, "feet"),
  13840. name: "Sole",
  13841. image: {
  13842. source: "./media/characters/nightraver/sole.svg"
  13843. }
  13844. },
  13845. foot: {
  13846. height: math.unit(2.285, "feet"),
  13847. name: "Foot",
  13848. image: {
  13849. source: "./media/characters/nightraver/foot.svg"
  13850. }
  13851. },
  13852. maw: {
  13853. height: math.unit(2.67, "feet"),
  13854. name: "Maw",
  13855. image: {
  13856. source: "./media/characters/nightraver/maw.svg"
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Micro",
  13863. height: math.unit(1, "cm")
  13864. },
  13865. {
  13866. name: "Normal",
  13867. height: math.unit(15, "feet"),
  13868. default: true
  13869. },
  13870. {
  13871. name: "Macro",
  13872. height: math.unit(300, "feet")
  13873. },
  13874. {
  13875. name: "Megamacro",
  13876. height: math.unit(300, "miles")
  13877. },
  13878. {
  13879. name: "Gigamacro",
  13880. height: math.unit(10000, "miles")
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13886. {
  13887. side: {
  13888. height: math.unit(2, "inches"),
  13889. weight: math.unit(5, "grams"),
  13890. name: "Side",
  13891. image: {
  13892. source: "./media/characters/arc/side.svg"
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Micro",
  13899. height: math.unit(2, "inches"),
  13900. default: true
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13906. {
  13907. front: {
  13908. height: math.unit(1.1938, "meters"),
  13909. weight: math.unit(54, "kg"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/nebula-shahar/front.svg",
  13913. extra: 1642 / 1436,
  13914. bottom: 0.06
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Megamicro",
  13921. height: math.unit(0.3, "mm")
  13922. },
  13923. {
  13924. name: "Micro",
  13925. height: math.unit(3, "cm")
  13926. },
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(138, "cm"),
  13930. default: true
  13931. },
  13932. {
  13933. name: "Macro",
  13934. height: math.unit(30, "m")
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13940. {
  13941. front: {
  13942. height: math.unit(5.24, "feet"),
  13943. weight: math.unit(150, "lb"),
  13944. name: "Front",
  13945. image: {
  13946. source: "./media/characters/shayla/front.svg",
  13947. extra: 1512 / 1414,
  13948. bottom: 0.01
  13949. }
  13950. },
  13951. back: {
  13952. height: math.unit(5.24, "feet"),
  13953. weight: math.unit(150, "lb"),
  13954. name: "Back",
  13955. image: {
  13956. source: "./media/characters/shayla/back.svg",
  13957. extra: 1512 / 1414
  13958. }
  13959. },
  13960. hand: {
  13961. height: math.unit(0.7781496062992126, "feet"),
  13962. name: "Hand",
  13963. image: {
  13964. source: "./media/characters/shayla/hand.svg"
  13965. }
  13966. },
  13967. foot: {
  13968. height: math.unit(1.4206036745406823, "feet"),
  13969. name: "Foot",
  13970. image: {
  13971. source: "./media/characters/shayla/foot.svg"
  13972. }
  13973. },
  13974. },
  13975. [
  13976. {
  13977. name: "Micro",
  13978. height: math.unit(0.32, "feet")
  13979. },
  13980. {
  13981. name: "Normal",
  13982. height: math.unit(5.24, "feet"),
  13983. default: true
  13984. },
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(492.12, "feet")
  13988. },
  13989. {
  13990. name: "Megamacro",
  13991. height: math.unit(186.41, "miles")
  13992. },
  13993. ]
  13994. ))
  13995. characterMakers.push(() => makeCharacter(
  13996. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13997. {
  13998. front: {
  13999. height: math.unit(2.2, "m"),
  14000. weight: math.unit(120, "kg"),
  14001. name: "Front",
  14002. image: {
  14003. source: "./media/characters/pia-jr/front.svg",
  14004. extra: 1000 / 970,
  14005. bottom: 0.035
  14006. }
  14007. },
  14008. hand: {
  14009. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14010. name: "Hand",
  14011. image: {
  14012. source: "./media/characters/pia-jr/hand.svg"
  14013. }
  14014. },
  14015. paw: {
  14016. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14017. name: "Paw",
  14018. image: {
  14019. source: "./media/characters/pia-jr/paw.svg"
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Micro",
  14026. height: math.unit(1.2, "cm")
  14027. },
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(2.2, "m"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(180, "m")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(420, "km")
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(2, "m"),
  14048. weight: math.unit(115, "kg"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/pia-sr/front.svg",
  14052. extra: 760 / 730,
  14053. bottom: 0.015
  14054. }
  14055. },
  14056. back: {
  14057. height: math.unit(2, "m"),
  14058. weight: math.unit(115, "kg"),
  14059. name: "Back",
  14060. image: {
  14061. source: "./media/characters/pia-sr/back.svg",
  14062. extra: 760 / 730,
  14063. bottom: 0.01
  14064. }
  14065. },
  14066. hand: {
  14067. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14068. name: "Hand",
  14069. image: {
  14070. source: "./media/characters/pia-sr/hand.svg"
  14071. }
  14072. },
  14073. foot: {
  14074. height: math.unit(1.83, "feet"),
  14075. name: "Foot",
  14076. image: {
  14077. source: "./media/characters/pia-sr/foot.svg"
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Micro",
  14084. height: math.unit(88, "mm")
  14085. },
  14086. {
  14087. name: "Normal",
  14088. height: math.unit(2, "m"),
  14089. default: true
  14090. },
  14091. {
  14092. name: "Macro",
  14093. height: math.unit(200, "m")
  14094. },
  14095. {
  14096. name: "Megamacro",
  14097. height: math.unit(420, "km")
  14098. },
  14099. ]
  14100. ))
  14101. characterMakers.push(() => makeCharacter(
  14102. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14103. {
  14104. front: {
  14105. height: math.unit(8 + 2 / 12, "feet"),
  14106. weight: math.unit(300, "lb"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/kibibyte/front.svg",
  14110. extra: 2221 / 2098,
  14111. bottom: 0.04
  14112. }
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Normal",
  14118. height: math.unit(8 + 2 / 12, "feet"),
  14119. default: true
  14120. },
  14121. {
  14122. name: "Socialable Macro",
  14123. height: math.unit(50, "feet")
  14124. },
  14125. {
  14126. name: "Macro",
  14127. height: math.unit(300, "feet")
  14128. },
  14129. {
  14130. name: "Megamacro",
  14131. height: math.unit(500, "miles")
  14132. },
  14133. ]
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14137. {
  14138. front: {
  14139. height: math.unit(6, "feet"),
  14140. weight: math.unit(150, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/felix/front.svg",
  14144. extra: 762 / 722,
  14145. bottom: 0.02
  14146. }
  14147. },
  14148. frontClothed: {
  14149. height: math.unit(6, "feet"),
  14150. weight: math.unit(150, "lb"),
  14151. name: "Front (Clothed)",
  14152. image: {
  14153. source: "./media/characters/felix/front-clothed.svg",
  14154. extra: 762 / 722,
  14155. bottom: 0.02
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(6 + 8 / 12, "feet"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Macro",
  14167. height: math.unit(2600, "feet")
  14168. },
  14169. {
  14170. name: "Megamacro",
  14171. height: math.unit(450, "miles")
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(6 + 1 / 12, "feet"),
  14180. weight: math.unit(250, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/tobo/front.svg",
  14184. extra: 608 / 586,
  14185. bottom: 0.023
  14186. }
  14187. },
  14188. back: {
  14189. height: math.unit(6 + 1 / 12, "feet"),
  14190. weight: math.unit(250, "lb"),
  14191. name: "Back",
  14192. image: {
  14193. source: "./media/characters/tobo/back.svg",
  14194. extra: 608 / 586
  14195. }
  14196. },
  14197. },
  14198. [
  14199. {
  14200. name: "Nano",
  14201. height: math.unit(2, "nm")
  14202. },
  14203. {
  14204. name: "Megamicro",
  14205. height: math.unit(0.1, "mm")
  14206. },
  14207. {
  14208. name: "Micro",
  14209. height: math.unit(1, "inch"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Human-sized",
  14214. height: math.unit(6 + 1 / 12, "feet")
  14215. },
  14216. {
  14217. name: "Macro",
  14218. height: math.unit(250, "feet")
  14219. },
  14220. {
  14221. name: "Megamacro",
  14222. height: math.unit(75, "miles")
  14223. },
  14224. {
  14225. name: "Texas-sized",
  14226. height: math.unit(750, "miles")
  14227. },
  14228. {
  14229. name: "Teramacro",
  14230. height: math.unit(50000, "miles")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(6, "feet"),
  14239. weight: math.unit(269, "lb"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/danny-kapowsky/front.svg",
  14243. extra: 766 / 736,
  14244. bottom: 0.044
  14245. }
  14246. },
  14247. back: {
  14248. height: math.unit(6, "feet"),
  14249. weight: math.unit(269, "lb"),
  14250. name: "Back",
  14251. image: {
  14252. source: "./media/characters/danny-kapowsky/back.svg",
  14253. extra: 797 / 760,
  14254. bottom: 0.025
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Macro",
  14261. height: math.unit(150, "feet"),
  14262. default: true
  14263. },
  14264. {
  14265. name: "Macro+",
  14266. height: math.unit(200, "feet")
  14267. },
  14268. {
  14269. name: "Macro++",
  14270. height: math.unit(300, "feet")
  14271. },
  14272. {
  14273. name: "Macro+++",
  14274. height: math.unit(400, "feet")
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14280. {
  14281. side: {
  14282. height: math.unit(6, "feet"),
  14283. weight: math.unit(170, "lb"),
  14284. name: "Side",
  14285. image: {
  14286. source: "./media/characters/finn/side.svg",
  14287. extra: 1953 / 1807,
  14288. bottom: 0.057
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Megamacro",
  14295. height: math.unit(14445, "feet"),
  14296. default: true
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14302. {
  14303. front: {
  14304. height: math.unit(5 + 6 / 12, "feet"),
  14305. weight: math.unit(125, "lb"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/roy/front.svg",
  14309. extra: 1,
  14310. bottom: 0.11
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Micro",
  14317. height: math.unit(3, "inches"),
  14318. default: true
  14319. },
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(5 + 6 / 12, "feet")
  14323. },
  14324. {
  14325. name: "Lesser Macro",
  14326. height: math.unit(60, "feet")
  14327. },
  14328. {
  14329. name: "Greater Macro",
  14330. height: math.unit(120, "feet")
  14331. },
  14332. ]
  14333. ))
  14334. characterMakers.push(() => makeCharacter(
  14335. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14336. {
  14337. front: {
  14338. height: math.unit(6, "feet"),
  14339. weight: math.unit(100, "lb"),
  14340. name: "Front",
  14341. image: {
  14342. source: "./media/characters/aevsivs/front.svg",
  14343. extra: 1,
  14344. bottom: 0.03
  14345. }
  14346. },
  14347. back: {
  14348. height: math.unit(6, "feet"),
  14349. weight: math.unit(100, "lb"),
  14350. name: "Back",
  14351. image: {
  14352. source: "./media/characters/aevsivs/back.svg"
  14353. }
  14354. },
  14355. },
  14356. [
  14357. {
  14358. name: "Micro",
  14359. height: math.unit(2, "inches"),
  14360. default: true
  14361. },
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(5, "feet")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(5 + 7 / 12, "feet"),
  14373. weight: math.unit(159, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/hildegard/front.svg",
  14377. extra: 289 / 269,
  14378. bottom: 7.63 / 297.8
  14379. }
  14380. },
  14381. back: {
  14382. height: math.unit(5 + 7 / 12, "feet"),
  14383. weight: math.unit(159, "lb"),
  14384. name: "Back",
  14385. image: {
  14386. source: "./media/characters/hildegard/back.svg",
  14387. extra: 280 / 260,
  14388. bottom: 2.3 / 282
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Normal",
  14395. height: math.unit(5 + 7 / 12, "feet"),
  14396. default: true
  14397. },
  14398. ]
  14399. ))
  14400. characterMakers.push(() => makeCharacter(
  14401. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14402. {
  14403. bernard: {
  14404. height: math.unit(2 + 7 / 12, "feet"),
  14405. weight: math.unit(66, "lb"),
  14406. name: "Bernard",
  14407. rename: true,
  14408. image: {
  14409. source: "./media/characters/bernard-wilder/bernard.svg",
  14410. extra: 192 / 128,
  14411. bottom: 0.05
  14412. }
  14413. },
  14414. wilder: {
  14415. height: math.unit(5 + 8 / 12, "feet"),
  14416. weight: math.unit(143, "lb"),
  14417. name: "Wilder",
  14418. rename: true,
  14419. image: {
  14420. source: "./media/characters/bernard-wilder/wilder.svg",
  14421. extra: 361 / 312,
  14422. bottom: 0.02
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(2 + 7 / 12, "feet"),
  14430. default: true
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14436. {
  14437. anthro: {
  14438. height: math.unit(6 + 1 / 12, "feet"),
  14439. weight: math.unit(155, "lb"),
  14440. name: "Anthro",
  14441. image: {
  14442. source: "./media/characters/hearth/anthro.svg",
  14443. extra: 260 / 250,
  14444. bottom: 0.02
  14445. }
  14446. },
  14447. feral: {
  14448. height: math.unit(3.78, "feet"),
  14449. weight: math.unit(35, "kg"),
  14450. name: "Feral",
  14451. image: {
  14452. source: "./media/characters/hearth/feral.svg",
  14453. extra: 153 / 135,
  14454. bottom: 0.03
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Normal",
  14461. height: math.unit(6 + 1 / 12, "feet"),
  14462. default: true
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14468. {
  14469. front: {
  14470. height: math.unit(6, "feet"),
  14471. weight: math.unit(182, "lb"),
  14472. name: "Front",
  14473. image: {
  14474. source: "./media/characters/ingrid/front.svg",
  14475. extra: 294 / 268,
  14476. bottom: 0.027
  14477. }
  14478. },
  14479. },
  14480. [
  14481. {
  14482. name: "Normal",
  14483. height: math.unit(6, "feet"),
  14484. default: true
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14490. {
  14491. eevee: {
  14492. height: math.unit(2 + 10 / 12, "feet"),
  14493. weight: math.unit(86, "lb"),
  14494. name: "Malgam",
  14495. image: {
  14496. source: "./media/characters/malgam/eevee.svg",
  14497. extra: 218 / 180,
  14498. bottom: 0.2
  14499. }
  14500. },
  14501. sylveon: {
  14502. height: math.unit(4, "feet"),
  14503. weight: math.unit(101, "lb"),
  14504. name: "Future Malgam",
  14505. rename: true,
  14506. image: {
  14507. source: "./media/characters/malgam/sylveon.svg",
  14508. extra: 371 / 325,
  14509. bottom: 0.015
  14510. }
  14511. },
  14512. gigantamax: {
  14513. height: math.unit(50, "feet"),
  14514. name: "Gigantamax Malgam",
  14515. rename: true,
  14516. image: {
  14517. source: "./media/characters/malgam/gigantamax.svg"
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(2 + 10 / 12, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(5 + 11 / 12, "feet"),
  14534. weight: math.unit(188, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/fleur/front.svg",
  14538. extra: 309 / 283,
  14539. bottom: 0.007
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(5 + 11 / 12, "feet"),
  14547. default: true
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14553. {
  14554. front: {
  14555. height: math.unit(5 + 4 / 12, "feet"),
  14556. weight: math.unit(122, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/jude/front.svg",
  14560. extra: 288 / 273,
  14561. bottom: 0.03
  14562. }
  14563. },
  14564. },
  14565. [
  14566. {
  14567. name: "Normal",
  14568. height: math.unit(5 + 4 / 12, "feet"),
  14569. default: true
  14570. },
  14571. ]
  14572. ))
  14573. characterMakers.push(() => makeCharacter(
  14574. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14575. {
  14576. front: {
  14577. height: math.unit(5 + 11 / 12, "feet"),
  14578. weight: math.unit(190, "lb"),
  14579. name: "Front",
  14580. image: {
  14581. source: "./media/characters/seara/front.svg",
  14582. extra: 1,
  14583. bottom: 0.05
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Normal",
  14590. height: math.unit(5 + 11 / 12, "feet"),
  14591. default: true
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14597. {
  14598. front: {
  14599. height: math.unit(16 + 5 / 12, "feet"),
  14600. weight: math.unit(524, "lb"),
  14601. name: "Front",
  14602. image: {
  14603. source: "./media/characters/caspian/front.svg",
  14604. extra: 1,
  14605. bottom: 0.04
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(16 + 5 / 12, "feet"),
  14613. default: true
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(5 + 7 / 12, "feet"),
  14622. weight: math.unit(170, "lb"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/mika/front.svg",
  14626. extra: 1,
  14627. bottom: 0.016
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Normal",
  14634. height: math.unit(5 + 7 / 12, "feet"),
  14635. default: true
  14636. },
  14637. ]
  14638. ))
  14639. characterMakers.push(() => makeCharacter(
  14640. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14641. {
  14642. front: {
  14643. height: math.unit(6 + 2 / 12, "feet"),
  14644. weight: math.unit(268, "lb"),
  14645. name: "Front",
  14646. image: {
  14647. source: "./media/characters/sol/front.svg",
  14648. extra: 247 / 231,
  14649. bottom: 0.05
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(6 + 2 / 12, "feet"),
  14657. default: true
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14663. {
  14664. buizel: {
  14665. height: math.unit(2 + 5 / 12, "feet"),
  14666. weight: math.unit(87, "lb"),
  14667. name: "Buizel",
  14668. image: {
  14669. source: "./media/characters/umiko/buizel.svg",
  14670. extra: 172 / 157,
  14671. bottom: 0.01
  14672. }
  14673. },
  14674. floatzel: {
  14675. height: math.unit(5 + 9 / 12, "feet"),
  14676. weight: math.unit(250, "lb"),
  14677. name: "Floatzel",
  14678. image: {
  14679. source: "./media/characters/umiko/floatzel.svg",
  14680. extra: 262 / 248
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(2 + 5 / 12, "feet"),
  14688. default: true
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(6 + 2 / 12, "feet"),
  14697. weight: math.unit(146, "lb"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/iliac/front.svg",
  14701. extra: 389 / 365,
  14702. bottom: 0.035
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Normal",
  14709. height: math.unit(6 + 2 / 12, "feet"),
  14710. default: true
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14716. {
  14717. front: {
  14718. height: math.unit(6, "feet"),
  14719. weight: math.unit(170, "lb"),
  14720. name: "Front",
  14721. image: {
  14722. source: "./media/characters/topaz/front.svg",
  14723. extra: 317 / 303,
  14724. bottom: 0.055
  14725. }
  14726. },
  14727. },
  14728. [
  14729. {
  14730. name: "Normal",
  14731. height: math.unit(6, "feet"),
  14732. default: true
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14738. {
  14739. front: {
  14740. height: math.unit(5 + 11 / 12, "feet"),
  14741. weight: math.unit(144, "lb"),
  14742. name: "Front",
  14743. image: {
  14744. source: "./media/characters/gabriel/front.svg",
  14745. extra: 285 / 262,
  14746. bottom: 0.004
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Normal",
  14753. height: math.unit(5 + 11 / 12, "feet"),
  14754. default: true
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14760. {
  14761. side: {
  14762. height: math.unit(6 + 5 / 12, "feet"),
  14763. weight: math.unit(300, "lb"),
  14764. name: "Side",
  14765. image: {
  14766. source: "./media/characters/tempest-suicune/side.svg",
  14767. extra: 195 / 154,
  14768. bottom: 0.04
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(6 + 5 / 12, "feet"),
  14776. default: true
  14777. },
  14778. ]
  14779. ))
  14780. characterMakers.push(() => makeCharacter(
  14781. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14782. {
  14783. front: {
  14784. height: math.unit(7 + 2 / 12, "feet"),
  14785. weight: math.unit(322, "lb"),
  14786. name: "Front",
  14787. image: {
  14788. source: "./media/characters/vulcan/front.svg",
  14789. extra: 154 / 147,
  14790. bottom: 0.04
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Normal",
  14797. height: math.unit(7 + 2 / 12, "feet"),
  14798. default: true
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(5 + 10 / 12, "feet"),
  14807. weight: math.unit(264, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/gault/front.svg",
  14811. extra: 161 / 140,
  14812. bottom: 0.028
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(5 + 10 / 12, "feet"),
  14820. default: true
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14826. {
  14827. front: {
  14828. height: math.unit(6, "feet"),
  14829. weight: math.unit(150, "lb"),
  14830. name: "Front",
  14831. image: {
  14832. source: "./media/characters/shard/front.svg",
  14833. extra: 273 / 238,
  14834. bottom: 0.02
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(3 + 6 / 12, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(5 + 11 / 12, "feet"),
  14851. weight: math.unit(146, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/ashe/front.svg",
  14855. extra: 400 / 373,
  14856. bottom: 0.01
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(5 + 11 / 12, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(5 + 5 / 12, "feet"),
  14873. weight: math.unit(135, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/beatrix/front.svg",
  14877. extra: 392 / 379,
  14878. bottom: 0.01
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(6, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14892. {
  14893. front: {
  14894. height: math.unit(6, "feet"),
  14895. weight: math.unit(150, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/ignatius/front.svg",
  14899. extra: 245 / 222,
  14900. bottom: 0.01
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(5 + 5 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6 + 2 / 12, "feet"),
  14917. weight: math.unit(138, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/mei-li/front.svg",
  14921. extra: 237 / 229,
  14922. bottom: 0.03
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(6 + 2 / 12, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(2 + 4 / 12, "feet"),
  14939. weight: math.unit(62, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/puru/front.svg",
  14943. extra: 206 / 149,
  14944. bottom: 0.06
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(2 + 4 / 12, "feet"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14958. {
  14959. taur: {
  14960. height: math.unit(11, "feet"),
  14961. weight: math.unit(500, "lb"),
  14962. name: "Taur",
  14963. image: {
  14964. source: "./media/characters/kee/taur.svg",
  14965. extra: 1,
  14966. bottom: 0.04
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(11, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14980. {
  14981. anthro: {
  14982. height: math.unit(7, "feet"),
  14983. weight: math.unit(190, "lb"),
  14984. name: "Anthro",
  14985. image: {
  14986. source: "./media/characters/cobalt-dracha/anthro.svg",
  14987. extra: 231 / 225,
  14988. bottom: 0.04
  14989. }
  14990. },
  14991. feral: {
  14992. height: math.unit(9 + 7 / 12, "feet"),
  14993. weight: math.unit(294, "lb"),
  14994. name: "Feral",
  14995. image: {
  14996. source: "./media/characters/cobalt-dracha/feral.svg",
  14997. extra: 692 / 633,
  14998. bottom: 0.05
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(7, "feet"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15012. {
  15013. fallen: {
  15014. height: math.unit(11 + 8 / 12, "feet"),
  15015. weight: math.unit(485, "lb"),
  15016. name: "Java (Fallen)",
  15017. rename: true,
  15018. image: {
  15019. source: "./media/characters/java/fallen.svg",
  15020. extra: 226 / 208,
  15021. bottom: 0.005
  15022. }
  15023. },
  15024. godkin: {
  15025. height: math.unit(10 + 6 / 12, "feet"),
  15026. weight: math.unit(328, "lb"),
  15027. name: "Java (Godkin)",
  15028. rename: true,
  15029. image: {
  15030. source: "./media/characters/java/godkin.svg",
  15031. extra: 270 / 262,
  15032. bottom: 0.02
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(11 + 8 / 12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(7 + 8 / 12, "feet"),
  15049. weight: math.unit(320, "lb"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/skoll/front.svg",
  15053. extra: 232 / 220,
  15054. bottom: 0.02
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(7 + 8 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(5 + 9 / 12, "feet"),
  15071. weight: math.unit(170, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/purna/front.svg",
  15075. extra: 239 / 229,
  15076. bottom: 0.01
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(5 + 9 / 12, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15090. {
  15091. front: {
  15092. height: math.unit(5 + 9 / 12, "feet"),
  15093. weight: math.unit(142, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/kuva/front.svg",
  15097. extra: 281 / 271,
  15098. bottom: 0.006
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(5 + 9 / 12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15112. {
  15113. anthro: {
  15114. height: math.unit(9 + 2 / 12, "feet"),
  15115. weight: math.unit(270, "lb"),
  15116. name: "Anthro",
  15117. image: {
  15118. source: "./media/characters/embra/anthro.svg",
  15119. extra: 200 / 187,
  15120. bottom: 0.02
  15121. }
  15122. },
  15123. feral: {
  15124. height: math.unit(18 + 8 / 12, "feet"),
  15125. weight: math.unit(576, "lb"),
  15126. name: "Feral",
  15127. image: {
  15128. source: "./media/characters/embra/feral.svg",
  15129. extra: 152 / 137,
  15130. bottom: 0.037
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(9 + 2 / 12, "feet"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15144. {
  15145. anthro: {
  15146. height: math.unit(10 + 9 / 12, "feet"),
  15147. weight: math.unit(224, "lb"),
  15148. name: "Anthro",
  15149. image: {
  15150. source: "./media/characters/grottos/anthro.svg",
  15151. extra: 350 / 332,
  15152. bottom: 0.045
  15153. }
  15154. },
  15155. feral: {
  15156. height: math.unit(20 + 7 / 12, "feet"),
  15157. weight: math.unit(629, "lb"),
  15158. name: "Feral",
  15159. image: {
  15160. source: "./media/characters/grottos/feral.svg",
  15161. extra: 207 / 190,
  15162. bottom: 0.05
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(10 + 9 / 12, "feet"),
  15170. default: true
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15176. {
  15177. anthro: {
  15178. height: math.unit(9 + 6 / 12, "feet"),
  15179. weight: math.unit(298, "lb"),
  15180. name: "Anthro",
  15181. image: {
  15182. source: "./media/characters/frifna/anthro.svg",
  15183. extra: 282 / 269,
  15184. bottom: 0.015
  15185. }
  15186. },
  15187. feral: {
  15188. height: math.unit(16 + 2 / 12, "feet"),
  15189. weight: math.unit(624, "lb"),
  15190. name: "Feral",
  15191. image: {
  15192. source: "./media/characters/frifna/feral.svg"
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(9 + 6 / 12, "feet"),
  15200. default: true
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(6 + 2 / 12, "feet"),
  15209. weight: math.unit(168, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/elise/front.svg",
  15213. extra: 276 / 271
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Normal",
  15220. height: math.unit(6 + 2 / 12, "feet"),
  15221. default: true
  15222. },
  15223. ]
  15224. ))
  15225. characterMakers.push(() => makeCharacter(
  15226. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15227. {
  15228. front: {
  15229. height: math.unit(5 + 10 / 12, "feet"),
  15230. weight: math.unit(210, "lb"),
  15231. name: "Front",
  15232. image: {
  15233. source: "./media/characters/glade/front.svg",
  15234. extra: 258 / 247,
  15235. bottom: 0.008
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(5 + 10 / 12, "feet"),
  15243. default: true
  15244. },
  15245. ]
  15246. ))
  15247. characterMakers.push(() => makeCharacter(
  15248. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15249. {
  15250. front: {
  15251. height: math.unit(5 + 10 / 12, "feet"),
  15252. weight: math.unit(129, "lb"),
  15253. name: "Front",
  15254. image: {
  15255. source: "./media/characters/rina/front.svg",
  15256. extra: 266 / 255,
  15257. bottom: 0.005
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(5 + 10 / 12, "feet"),
  15265. default: true
  15266. },
  15267. ]
  15268. ))
  15269. characterMakers.push(() => makeCharacter(
  15270. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15271. {
  15272. front: {
  15273. height: math.unit(6 + 1 / 12, "feet"),
  15274. weight: math.unit(192, "lb"),
  15275. name: "Front",
  15276. image: {
  15277. source: "./media/characters/veronica/front.svg",
  15278. extra: 319 / 309,
  15279. bottom: 0.005
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Normal",
  15286. height: math.unit(6 + 1 / 12, "feet"),
  15287. default: true
  15288. },
  15289. ]
  15290. ))
  15291. characterMakers.push(() => makeCharacter(
  15292. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15293. {
  15294. front: {
  15295. height: math.unit(9 + 3 / 12, "feet"),
  15296. weight: math.unit(1100, "lb"),
  15297. name: "Front",
  15298. image: {
  15299. source: "./media/characters/braxton/front.svg",
  15300. extra: 1057 / 984,
  15301. bottom: 0.05
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(9 + 3 / 12, "feet")
  15309. },
  15310. {
  15311. name: "Giant",
  15312. height: math.unit(300, "feet"),
  15313. default: true
  15314. },
  15315. {
  15316. name: "Macro",
  15317. height: math.unit(700, "feet")
  15318. },
  15319. {
  15320. name: "Megamacro",
  15321. height: math.unit(6000, "feet")
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(6 + 7 / 12, "feet"),
  15330. weight: math.unit(150, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/blue-feyonics/front.svg",
  15334. extra: 1403 / 1306,
  15335. bottom: 0.047
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(6 + 7 / 12, "feet"),
  15343. default: true
  15344. },
  15345. ]
  15346. ))
  15347. characterMakers.push(() => makeCharacter(
  15348. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15349. {
  15350. front: {
  15351. height: math.unit(1.8, "meters"),
  15352. weight: math.unit(60, "kg"),
  15353. name: "Front",
  15354. image: {
  15355. source: "./media/characters/maxwell/front.svg",
  15356. extra: 2060 / 1873
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Micro",
  15363. height: math.unit(1, "mm")
  15364. },
  15365. {
  15366. name: "Normal",
  15367. height: math.unit(1.8, "meter"),
  15368. default: true
  15369. },
  15370. {
  15371. name: "Macro",
  15372. height: math.unit(30, "meters")
  15373. },
  15374. {
  15375. name: "Megamacro",
  15376. height: math.unit(10, "km")
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15382. {
  15383. front: {
  15384. height: math.unit(6, "feet"),
  15385. weight: math.unit(150, "lb"),
  15386. name: "Front",
  15387. image: {
  15388. source: "./media/characters/jack/front.svg",
  15389. extra: 1754 / 1640,
  15390. bottom: 0.01
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Normal",
  15397. height: math.unit(80000, "feet"),
  15398. default: true
  15399. },
  15400. {
  15401. name: "Max size",
  15402. height: math.unit(10, "lightyears")
  15403. },
  15404. ]
  15405. ))
  15406. characterMakers.push(() => makeCharacter(
  15407. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15408. {
  15409. upright: {
  15410. height: math.unit(7, "feet"),
  15411. weight: math.unit(170, "lb"),
  15412. name: "Upright",
  15413. image: {
  15414. source: "./media/characters/cafat/upright.svg",
  15415. bottom: 0.01
  15416. }
  15417. },
  15418. uprightFull: {
  15419. height: math.unit(7, "feet"),
  15420. weight: math.unit(170, "lb"),
  15421. name: "Upright (Full)",
  15422. image: {
  15423. source: "./media/characters/cafat/upright-full.svg",
  15424. bottom: 0.01
  15425. }
  15426. },
  15427. side: {
  15428. height: math.unit(5, "feet"),
  15429. weight: math.unit(150, "lb"),
  15430. name: "Side",
  15431. image: {
  15432. source: "./media/characters/cafat/side.svg"
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Small",
  15439. height: math.unit(7, "feet"),
  15440. default: true
  15441. },
  15442. {
  15443. name: "Large",
  15444. height: math.unit(15.5, "feet")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(150, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/verin-raharra/front.svg",
  15457. extra: 5019 / 4835,
  15458. bottom: 0.023
  15459. }
  15460. },
  15461. },
  15462. [
  15463. {
  15464. name: "Normal",
  15465. height: math.unit(7 + 5 / 12, "feet"),
  15466. default: true
  15467. },
  15468. {
  15469. name: "Upsized",
  15470. height: math.unit(20, "feet")
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(7, "feet"),
  15479. weight: math.unit(230, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/nakata/front.svg",
  15483. extra: 1.005,
  15484. bottom: 0.01
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(7, "feet"),
  15492. default: true
  15493. },
  15494. {
  15495. name: "Big",
  15496. height: math.unit(14, "feet")
  15497. },
  15498. {
  15499. name: "Macro",
  15500. height: math.unit(400, "feet")
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(4.91, "feet"),
  15509. weight: math.unit(100, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/lily/front.svg",
  15513. extra: 1585 / 1415,
  15514. bottom: 0.02
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(4.91, "feet"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15528. {
  15529. laying: {
  15530. height: math.unit(4 + 4 / 12, "feet"),
  15531. weight: math.unit(600, "lb"),
  15532. name: "Laying",
  15533. image: {
  15534. source: "./media/characters/sheila/laying.svg",
  15535. extra: 1333 / 1265,
  15536. bottom: 0.16
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(4 + 4 / 12, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15550. {
  15551. front: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(190, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/sax/front.svg",
  15557. extra: 1187 / 973,
  15558. bottom: 0.042
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Micro",
  15565. height: math.unit(4, "inches"),
  15566. default: true
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15572. {
  15573. front: {
  15574. height: math.unit(6, "feet"),
  15575. weight: math.unit(150, "lb"),
  15576. name: "Front",
  15577. image: {
  15578. source: "./media/characters/pandora/front.svg",
  15579. extra: 2720 / 2556,
  15580. bottom: 0.015
  15581. }
  15582. },
  15583. back: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(150, "lb"),
  15586. name: "Back",
  15587. image: {
  15588. source: "./media/characters/pandora/back.svg",
  15589. extra: 2720 / 2556,
  15590. bottom: 0.01
  15591. }
  15592. },
  15593. beans: {
  15594. height: math.unit(6 / 8, "feet"),
  15595. name: "Beans",
  15596. image: {
  15597. source: "./media/characters/pandora/beans.svg"
  15598. }
  15599. },
  15600. skirt: {
  15601. height: math.unit(6, "feet"),
  15602. weight: math.unit(150, "lb"),
  15603. name: "Skirt",
  15604. image: {
  15605. source: "./media/characters/pandora/skirt.svg",
  15606. extra: 1622 / 1525,
  15607. bottom: 0.015
  15608. }
  15609. },
  15610. hoodie: {
  15611. height: math.unit(6, "feet"),
  15612. weight: math.unit(150, "lb"),
  15613. name: "Hoodie",
  15614. image: {
  15615. source: "./media/characters/pandora/hoodie.svg",
  15616. extra: 1622 / 1525,
  15617. bottom: 0.015
  15618. }
  15619. },
  15620. casual: {
  15621. height: math.unit(6, "feet"),
  15622. weight: math.unit(150, "lb"),
  15623. name: "Casual",
  15624. image: {
  15625. source: "./media/characters/pandora/casual.svg",
  15626. extra: 1622 / 1525,
  15627. bottom: 0.015
  15628. }
  15629. },
  15630. },
  15631. [
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(6, "feet")
  15635. },
  15636. {
  15637. name: "Big Steppy",
  15638. height: math.unit(1, "km"),
  15639. default: true
  15640. },
  15641. ]
  15642. ))
  15643. characterMakers.push(() => makeCharacter(
  15644. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15645. {
  15646. side: {
  15647. height: math.unit(10, "feet"),
  15648. weight: math.unit(800, "kg"),
  15649. name: "Side",
  15650. image: {
  15651. source: "./media/characters/venio-darcony/side.svg",
  15652. extra: 1373 / 1003,
  15653. bottom: 0.037
  15654. }
  15655. },
  15656. front: {
  15657. height: math.unit(19, "feet"),
  15658. weight: math.unit(800, "kg"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/venio-darcony/front.svg"
  15662. }
  15663. },
  15664. back: {
  15665. height: math.unit(19, "feet"),
  15666. weight: math.unit(800, "kg"),
  15667. name: "Back",
  15668. image: {
  15669. source: "./media/characters/venio-darcony/back.svg"
  15670. }
  15671. },
  15672. sideNsfw: {
  15673. height: math.unit(10, "feet"),
  15674. weight: math.unit(800, "kg"),
  15675. name: "Side (NSFW)",
  15676. image: {
  15677. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15678. extra: 1373 / 1003,
  15679. bottom: 0.037
  15680. }
  15681. },
  15682. frontNsfw: {
  15683. height: math.unit(19, "feet"),
  15684. weight: math.unit(800, "kg"),
  15685. name: "Front (NSFW)",
  15686. image: {
  15687. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15688. }
  15689. },
  15690. backNsfw: {
  15691. height: math.unit(19, "feet"),
  15692. weight: math.unit(800, "kg"),
  15693. name: "Back (NSFW)",
  15694. image: {
  15695. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15696. }
  15697. },
  15698. sideArmored: {
  15699. height: math.unit(10, "feet"),
  15700. weight: math.unit(800, "kg"),
  15701. name: "Side (Armored)",
  15702. image: {
  15703. source: "./media/characters/venio-darcony/side-armored.svg",
  15704. extra: 1373 / 1003,
  15705. bottom: 0.037
  15706. }
  15707. },
  15708. frontArmored: {
  15709. height: math.unit(19, "feet"),
  15710. weight: math.unit(900, "kg"),
  15711. name: "Front (Armored)",
  15712. image: {
  15713. source: "./media/characters/venio-darcony/front-armored.svg"
  15714. }
  15715. },
  15716. backArmored: {
  15717. height: math.unit(19, "feet"),
  15718. weight: math.unit(900, "kg"),
  15719. name: "Back (Armored)",
  15720. image: {
  15721. source: "./media/characters/venio-darcony/back-armored.svg"
  15722. }
  15723. },
  15724. sword: {
  15725. height: math.unit(10, "feet"),
  15726. weight: math.unit(50, "lb"),
  15727. name: "Sword",
  15728. image: {
  15729. source: "./media/characters/venio-darcony/sword.svg"
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Normal",
  15736. height: math.unit(10, "feet")
  15737. },
  15738. {
  15739. name: "Macro",
  15740. height: math.unit(130, "feet"),
  15741. default: true
  15742. },
  15743. {
  15744. name: "Macro+",
  15745. height: math.unit(240, "feet")
  15746. },
  15747. ]
  15748. ))
  15749. characterMakers.push(() => makeCharacter(
  15750. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15751. {
  15752. front: {
  15753. height: math.unit(6, "feet"),
  15754. weight: math.unit(150, "lb"),
  15755. name: "Front",
  15756. image: {
  15757. source: "./media/characters/veski/front.svg",
  15758. extra: 1299 / 1225,
  15759. bottom: 0.04
  15760. }
  15761. },
  15762. back: {
  15763. height: math.unit(6, "feet"),
  15764. weight: math.unit(150, "lb"),
  15765. name: "Back",
  15766. image: {
  15767. source: "./media/characters/veski/back.svg",
  15768. extra: 1299 / 1225,
  15769. bottom: 0.008
  15770. }
  15771. },
  15772. maw: {
  15773. height: math.unit(1.5 * 1.21, "feet"),
  15774. name: "Maw",
  15775. image: {
  15776. source: "./media/characters/veski/maw.svg"
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Macro",
  15783. height: math.unit(2, "km"),
  15784. default: true
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15790. {
  15791. front: {
  15792. height: math.unit(5 + 7 / 12, "feet"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/isabelle/front.svg",
  15796. extra: 2130 / 1976,
  15797. bottom: 0.05
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Supermicro",
  15804. height: math.unit(10, "micrometers")
  15805. },
  15806. {
  15807. name: "Micro",
  15808. height: math.unit(1, "inch")
  15809. },
  15810. {
  15811. name: "Tiny",
  15812. height: math.unit(5, "inches")
  15813. },
  15814. {
  15815. name: "Standard",
  15816. height: math.unit(5 + 7 / 12, "inches")
  15817. },
  15818. {
  15819. name: "Macro",
  15820. height: math.unit(80, "meters"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "Megamacro",
  15825. height: math.unit(250, "meters")
  15826. },
  15827. {
  15828. name: "Gigamacro",
  15829. height: math.unit(5, "km")
  15830. },
  15831. {
  15832. name: "Cosmic",
  15833. height: math.unit(2.5e6, "miles")
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15839. {
  15840. front: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/hanzo/front.svg",
  15846. extra: 374 / 344,
  15847. bottom: 0.02
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Normal",
  15854. height: math.unit(8, "feet"),
  15855. default: true
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(7, "feet"),
  15864. weight: math.unit(130, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/anna/front.svg",
  15868. extra: 169 / 145,
  15869. bottom: 0.06
  15870. }
  15871. },
  15872. full: {
  15873. height: math.unit(4.96, "feet"),
  15874. weight: math.unit(220, "lb"),
  15875. name: "Full",
  15876. image: {
  15877. source: "./media/characters/anna/full.svg",
  15878. extra: 138 / 114,
  15879. bottom: 0.15
  15880. }
  15881. },
  15882. tongue: {
  15883. height: math.unit(2.53, "feet"),
  15884. name: "Tongue",
  15885. image: {
  15886. source: "./media/characters/anna/tongue.svg"
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Normal",
  15893. height: math.unit(7, "feet"),
  15894. default: true
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15900. {
  15901. front: {
  15902. height: math.unit(7, "feet"),
  15903. weight: math.unit(150, "lb"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/ian-corvid/front.svg",
  15907. extra: 150 / 142,
  15908. bottom: 0.02
  15909. }
  15910. },
  15911. back: {
  15912. height: math.unit(7, "feet"),
  15913. weight: math.unit(150, "lb"),
  15914. name: "Back",
  15915. image: {
  15916. source: "./media/characters/ian-corvid/back.svg",
  15917. extra: 150 / 143,
  15918. bottom: 0.01
  15919. }
  15920. },
  15921. stomping: {
  15922. height: math.unit(7, "feet"),
  15923. weight: math.unit(150, "lb"),
  15924. name: "Stomping",
  15925. image: {
  15926. source: "./media/characters/ian-corvid/stomping.svg",
  15927. extra: 76 / 72
  15928. }
  15929. },
  15930. sitting: {
  15931. height: math.unit(7 / 1.8, "feet"),
  15932. weight: math.unit(150, "lb"),
  15933. name: "Sitting",
  15934. image: {
  15935. source: "./media/characters/ian-corvid/sitting.svg",
  15936. extra: 1400 / 1269,
  15937. bottom: 0.15
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Tiny Microw",
  15944. height: math.unit(1, "inch")
  15945. },
  15946. {
  15947. name: "Microw",
  15948. height: math.unit(6, "inches")
  15949. },
  15950. {
  15951. name: "Crow",
  15952. height: math.unit(7 + 1 / 12, "feet"),
  15953. default: true
  15954. },
  15955. {
  15956. name: "Macrow",
  15957. height: math.unit(176, "feet")
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15963. {
  15964. front: {
  15965. height: math.unit(5 + 7 / 12, "feet"),
  15966. weight: math.unit(147, "lb"),
  15967. name: "Front",
  15968. image: {
  15969. source: "./media/characters/natalie-kellon/front.svg",
  15970. extra: 1214 / 1141,
  15971. bottom: 0.02
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Micro",
  15978. height: math.unit(1 / 16, "inch")
  15979. },
  15980. {
  15981. name: "Tiny",
  15982. height: math.unit(4, "inches")
  15983. },
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(5 + 7 / 12, "feet"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Amazon",
  15991. height: math.unit(12, "feet")
  15992. },
  15993. {
  15994. name: "Giantess",
  15995. height: math.unit(160, "meters")
  15996. },
  15997. {
  15998. name: "Titaness",
  15999. height: math.unit(800, "meters")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/alluria/front.svg",
  16012. extra: 806 / 738,
  16013. bottom: 0.01
  16014. }
  16015. },
  16016. side: {
  16017. height: math.unit(6, "feet"),
  16018. weight: math.unit(150, "lb"),
  16019. name: "Side",
  16020. image: {
  16021. source: "./media/characters/alluria/side.svg",
  16022. extra: 800 / 750,
  16023. }
  16024. },
  16025. back: {
  16026. height: math.unit(6, "feet"),
  16027. weight: math.unit(150, "lb"),
  16028. name: "Back",
  16029. image: {
  16030. source: "./media/characters/alluria/back.svg",
  16031. extra: 806 / 738,
  16032. }
  16033. },
  16034. frontMaid: {
  16035. height: math.unit(6, "feet"),
  16036. weight: math.unit(150, "lb"),
  16037. name: "Front (Maid)",
  16038. image: {
  16039. source: "./media/characters/alluria/front-maid.svg",
  16040. extra: 806 / 738,
  16041. bottom: 0.01
  16042. }
  16043. },
  16044. sideMaid: {
  16045. height: math.unit(6, "feet"),
  16046. weight: math.unit(150, "lb"),
  16047. name: "Side (Maid)",
  16048. image: {
  16049. source: "./media/characters/alluria/side-maid.svg",
  16050. extra: 800 / 750,
  16051. bottom: 0.005
  16052. }
  16053. },
  16054. backMaid: {
  16055. height: math.unit(6, "feet"),
  16056. weight: math.unit(150, "lb"),
  16057. name: "Back (Maid)",
  16058. image: {
  16059. source: "./media/characters/alluria/back-maid.svg",
  16060. extra: 806 / 738,
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Micro",
  16067. height: math.unit(6, "inches"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(6, "feet"),
  16077. weight: math.unit(150, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/kyle/front.svg",
  16081. extra: 1069 / 962,
  16082. bottom: 77.228 / 1727.45
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Macro",
  16089. height: math.unit(150, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(6, "feet"),
  16099. weight: math.unit(300, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/duncan/front.svg",
  16103. extra: 1650 / 1482,
  16104. bottom: 0.05
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Macro",
  16111. height: math.unit(100, "feet"),
  16112. default: true
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16118. {
  16119. front: {
  16120. height: math.unit(5 + 4 / 12, "feet"),
  16121. weight: math.unit(220, "lb"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/memory/front.svg",
  16125. extra: 3641 / 3545,
  16126. bottom: 0.03
  16127. }
  16128. },
  16129. back: {
  16130. height: math.unit(5 + 4 / 12, "feet"),
  16131. weight: math.unit(220, "lb"),
  16132. name: "Back",
  16133. image: {
  16134. source: "./media/characters/memory/back.svg",
  16135. extra: 3641 / 3545,
  16136. bottom: 0.025
  16137. }
  16138. },
  16139. frontSkirt: {
  16140. height: math.unit(5 + 4 / 12, "feet"),
  16141. weight: math.unit(220, "lb"),
  16142. name: "Front (Skirt)",
  16143. image: {
  16144. source: "./media/characters/memory/front-skirt.svg",
  16145. extra: 3641 / 3545,
  16146. bottom: 0.03
  16147. }
  16148. },
  16149. frontDress: {
  16150. height: math.unit(5 + 4 / 12, "feet"),
  16151. weight: math.unit(220, "lb"),
  16152. name: "Front (Dress)",
  16153. image: {
  16154. source: "./media/characters/memory/front-dress.svg",
  16155. extra: 3641 / 3545,
  16156. bottom: 0.03
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Micro",
  16163. height: math.unit(6, "inches"),
  16164. default: true
  16165. },
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(5 + 4 / 12, "feet")
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(4 + 11 / 12, "feet"),
  16177. weight: math.unit(100, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/luno/front.svg",
  16181. extra: 1535 / 1487,
  16182. bottom: 0.03
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Micro",
  16189. height: math.unit(3, "inches")
  16190. },
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(4 + 11 / 12, "feet"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Macro",
  16198. height: math.unit(300, "feet")
  16199. },
  16200. {
  16201. name: "Megamacro",
  16202. height: math.unit(700, "miles")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(6 + 2 / 12, "feet"),
  16211. weight: math.unit(170, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/jamesy/front.svg",
  16215. extra: 440 / 382,
  16216. bottom: 0.005
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Micro",
  16223. height: math.unit(3, "inches")
  16224. },
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(6 + 2 / 12, "feet"),
  16228. default: true
  16229. },
  16230. {
  16231. name: "Macro",
  16232. height: math.unit(300, "feet")
  16233. },
  16234. {
  16235. name: "Megamacro",
  16236. height: math.unit(700, "miles")
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(6, "feet"),
  16245. weight: math.unit(160, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/mark/front.svg",
  16249. extra: 3300 / 3100,
  16250. bottom: 136.42 / 3440.47
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Macro",
  16257. height: math.unit(120, "meters")
  16258. },
  16259. {
  16260. name: "Bigger Macro",
  16261. height: math.unit(350, "meters")
  16262. },
  16263. {
  16264. name: "Megamacro",
  16265. height: math.unit(8, "km"),
  16266. default: true
  16267. },
  16268. {
  16269. name: "Continental",
  16270. height: math.unit(4550, "km")
  16271. },
  16272. {
  16273. name: "Planetary",
  16274. height: math.unit(65000, "km")
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16280. {
  16281. front: {
  16282. height: math.unit(6, "feet"),
  16283. weight: math.unit(400, "lb"),
  16284. name: "Front",
  16285. image: {
  16286. source: "./media/characters/mac/front.svg",
  16287. extra: 1048 / 987.7,
  16288. bottom: 60 / 1107.6,
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Macro",
  16295. height: math.unit(500, "feet"),
  16296. default: true
  16297. },
  16298. ]
  16299. ))
  16300. characterMakers.push(() => makeCharacter(
  16301. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16302. {
  16303. front: {
  16304. height: math.unit(5 + 2 / 12, "feet"),
  16305. weight: math.unit(190, "lb"),
  16306. name: "Front",
  16307. image: {
  16308. source: "./media/characters/bari/front.svg",
  16309. extra: 3156 / 2880,
  16310. bottom: 0.03
  16311. }
  16312. },
  16313. back: {
  16314. height: math.unit(5 + 2 / 12, "feet"),
  16315. weight: math.unit(190, "lb"),
  16316. name: "Back",
  16317. image: {
  16318. source: "./media/characters/bari/back.svg",
  16319. extra: 3260 / 2834,
  16320. bottom: 0.025
  16321. }
  16322. },
  16323. frontPlush: {
  16324. height: math.unit(5 + 2 / 12, "feet"),
  16325. weight: math.unit(190, "lb"),
  16326. name: "Front (Plush)",
  16327. image: {
  16328. source: "./media/characters/bari/front-plush.svg",
  16329. extra: 1112 / 1061,
  16330. bottom: 0.002
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Micro",
  16337. height: math.unit(3, "inches")
  16338. },
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(5 + 2 / 12, "feet"),
  16342. default: true
  16343. },
  16344. {
  16345. name: "Macro",
  16346. height: math.unit(20, "feet")
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(6 + 1 / 12, "feet"),
  16355. weight: math.unit(275, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/hunter-misha-raven/front.svg"
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Mortal",
  16365. height: math.unit(6 + 1 / 12, "feet")
  16366. },
  16367. {
  16368. name: "Divine",
  16369. height: math.unit(1.12134e34, "parsecs"),
  16370. default: true
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16376. {
  16377. front: {
  16378. height: math.unit(6 + 3 / 12, "feet"),
  16379. weight: math.unit(220, "lb"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/max-calore/front.svg",
  16383. extra: 1700 / 1648,
  16384. bottom: 0.01
  16385. }
  16386. },
  16387. back: {
  16388. height: math.unit(6 + 3 / 12, "feet"),
  16389. weight: math.unit(220, "lb"),
  16390. name: "Back",
  16391. image: {
  16392. source: "./media/characters/max-calore/back.svg",
  16393. extra: 1700 / 1648,
  16394. bottom: 0.01
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(6 + 3 / 12, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16408. {
  16409. side: {
  16410. height: math.unit(2 + 8 / 12, "feet"),
  16411. weight: math.unit(99, "lb"),
  16412. name: "Side",
  16413. image: {
  16414. source: "./media/characters/aspen/side.svg",
  16415. extra: 152 / 138,
  16416. bottom: 0.032
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(2 + 8 / 12, "feet"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16430. {
  16431. side: {
  16432. height: math.unit(3 + 2 / 12, "feet"),
  16433. weight: math.unit(224, "lb"),
  16434. name: "Side",
  16435. image: {
  16436. source: "./media/characters/sheila-feral-wolf/side.svg",
  16437. extra: 179 / 166,
  16438. bottom: 0.03
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(3 + 2 / 12, "feet"),
  16446. default: true
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16452. {
  16453. side: {
  16454. height: math.unit(1 + 9 / 12, "feet"),
  16455. weight: math.unit(38, "lb"),
  16456. name: "Side",
  16457. image: {
  16458. source: "./media/characters/michelle/side.svg",
  16459. extra: 147 / 136.7,
  16460. bottom: 0.03
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(1 + 9 / 12, "feet"),
  16468. default: true
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16474. {
  16475. front: {
  16476. height: math.unit(1 + 1 / 12, "feet"),
  16477. weight: math.unit(18, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/nino/front.svg"
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(1 + 1 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(1, "feet"),
  16497. weight: math.unit(16, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/viola/front.svg"
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(1, "feet"),
  16508. default: true
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16514. {
  16515. front: {
  16516. height: math.unit(6 + 5 / 12, "feet"),
  16517. weight: math.unit(580, "lb"),
  16518. name: "Front",
  16519. image: {
  16520. source: "./media/characters/atlas/front.svg",
  16521. extra: 298.5 / 290,
  16522. bottom: 0.015
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(6 + 5 / 12, "feet"),
  16530. default: true
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16536. {
  16537. side: {
  16538. height: math.unit(1 + 10 / 12, "feet"),
  16539. weight: math.unit(25, "lb"),
  16540. name: "Side",
  16541. image: {
  16542. source: "./media/characters/davy/side.svg",
  16543. extra: 200 / 170,
  16544. bottom: 0.01
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(1 + 10 / 12, "feet"),
  16552. default: true
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16558. {
  16559. side: {
  16560. height: math.unit(4 + 8 / 12, "feet"),
  16561. weight: math.unit(166, "lb"),
  16562. name: "Side",
  16563. image: {
  16564. source: "./media/characters/fiona/side.svg",
  16565. extra: 232 / 220,
  16566. bottom: 0.03
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(4 + 8 / 12, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16580. {
  16581. front: {
  16582. height: math.unit(2, "feet"),
  16583. weight: math.unit(62, "lb"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/lyla/front.svg",
  16587. bottom: 0.1
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(2, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16601. {
  16602. side: {
  16603. height: math.unit(1.8, "feet"),
  16604. weight: math.unit(44, "lb"),
  16605. name: "Side",
  16606. image: {
  16607. source: "./media/characters/perseus/side.svg",
  16608. bottom: 0.21
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(1.8, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16622. {
  16623. side: {
  16624. height: math.unit(4 + 2 / 12, "feet"),
  16625. weight: math.unit(20, "lb"),
  16626. name: "Side",
  16627. image: {
  16628. source: "./media/characters/remus/side.svg"
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(4 + 2 / 12, "feet"),
  16636. default: true
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16642. {
  16643. front: {
  16644. height: math.unit(4 + 11 / 12, "feet"),
  16645. weight: math.unit(114, "lb"),
  16646. name: "Front",
  16647. image: {
  16648. source: "./media/characters/raf/front.svg",
  16649. bottom: 20.5 / 1863
  16650. }
  16651. },
  16652. side: {
  16653. height: math.unit(4 + 11 / 12, "feet"),
  16654. weight: math.unit(114, "lb"),
  16655. name: "Side",
  16656. image: {
  16657. source: "./media/characters/raf/side.svg",
  16658. bottom: 22 / 1822
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Micro",
  16665. height: math.unit(2, "inches")
  16666. },
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(4 + 11 / 12, "feet"),
  16670. default: true
  16671. },
  16672. {
  16673. name: "Macro",
  16674. height: math.unit(70, "feet")
  16675. },
  16676. ]
  16677. ))
  16678. characterMakers.push(() => makeCharacter(
  16679. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16680. {
  16681. front: {
  16682. height: math.unit(1.5, "meters"),
  16683. weight: math.unit(68, "kg"),
  16684. name: "Front",
  16685. image: {
  16686. source: "./media/characters/liam-einarr/front.svg",
  16687. extra: 2822 / 2666
  16688. }
  16689. },
  16690. back: {
  16691. height: math.unit(1.5, "meters"),
  16692. weight: math.unit(68, "kg"),
  16693. name: "Back",
  16694. image: {
  16695. source: "./media/characters/liam-einarr/back.svg",
  16696. extra: 2822 / 2666,
  16697. bottom: 0.015
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(1.5, "meters"),
  16705. default: true
  16706. },
  16707. {
  16708. name: "Macro",
  16709. height: math.unit(150, "meters")
  16710. },
  16711. {
  16712. name: "Megamacro",
  16713. height: math.unit(35, "km")
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(6, "feet"),
  16722. weight: math.unit(75, "kg"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/linda/front.svg",
  16726. extra: 930 / 874,
  16727. bottom: 0.004
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(6, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(6 + 8 / 12, "feet"),
  16744. weight: math.unit(220, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/caylex/front.svg",
  16748. extra: 821 / 772,
  16749. bottom: 0.07
  16750. }
  16751. },
  16752. back: {
  16753. height: math.unit(6 + 8 / 12, "feet"),
  16754. weight: math.unit(220, "lb"),
  16755. name: "Back",
  16756. image: {
  16757. source: "./media/characters/caylex/back.svg",
  16758. extra: 821 / 772,
  16759. bottom: 0.022
  16760. }
  16761. },
  16762. hand: {
  16763. height: math.unit(1.25, "feet"),
  16764. name: "Hand",
  16765. image: {
  16766. source: "./media/characters/caylex/hand.svg"
  16767. }
  16768. },
  16769. foot: {
  16770. height: math.unit(1.6, "feet"),
  16771. name: "Foot",
  16772. image: {
  16773. source: "./media/characters/caylex/foot.svg"
  16774. }
  16775. },
  16776. armored: {
  16777. height: math.unit(6 + 8 / 12, "feet"),
  16778. weight: math.unit(250, "lb"),
  16779. name: "Armored",
  16780. image: {
  16781. source: "./media/characters/caylex/armored.svg",
  16782. extra: 1420 / 1310,
  16783. bottom: 0.045
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(6 + 8 / 12, "feet"),
  16791. default: true
  16792. },
  16793. {
  16794. name: "Normal+",
  16795. height: math.unit(12, "feet")
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16801. {
  16802. front: {
  16803. height: math.unit(7 + 6 / 12, "feet"),
  16804. weight: math.unit(288, "lb"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/alana/front.svg",
  16808. extra: 679 / 653,
  16809. bottom: 22.5 / 701
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(7 + 6 / 12, "feet")
  16817. },
  16818. {
  16819. name: "Large",
  16820. height: math.unit(50, "feet")
  16821. },
  16822. {
  16823. name: "Macro",
  16824. height: math.unit(100, "feet"),
  16825. default: true
  16826. },
  16827. {
  16828. name: "Macro+",
  16829. height: math.unit(200, "feet")
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(6 + 1 / 12, "feet"),
  16838. weight: math.unit(210, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/hasani/front.svg",
  16842. extra: 244 / 232,
  16843. bottom: 0.01
  16844. }
  16845. },
  16846. back: {
  16847. height: math.unit(6 + 1 / 12, "feet"),
  16848. weight: math.unit(210, "lb"),
  16849. name: "Back",
  16850. image: {
  16851. source: "./media/characters/hasani/back.svg",
  16852. extra: 244 / 232,
  16853. bottom: 0.01
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(6 + 1 / 12, "feet")
  16861. },
  16862. {
  16863. name: "Macro",
  16864. height: math.unit(175, "feet"),
  16865. default: true
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(1.82, "meters"),
  16874. weight: math.unit(140, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/nita/front.svg",
  16878. extra: 2473 / 2363,
  16879. bottom: 0.01
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(1.82, "m")
  16887. },
  16888. {
  16889. name: "Macro",
  16890. height: math.unit(300, "m")
  16891. },
  16892. {
  16893. name: "Mistake Canon",
  16894. height: math.unit(0.5, "miles"),
  16895. default: true
  16896. },
  16897. {
  16898. name: "Big Mistake",
  16899. height: math.unit(13, "miles")
  16900. },
  16901. {
  16902. name: "Playing God",
  16903. height: math.unit(2450, "miles")
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(4, "feet"),
  16912. weight: math.unit(120, "lb"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/shiriko/front.svg",
  16916. extra: 195 / 188
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(4, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(6, "feet"),
  16933. name: "front",
  16934. image: {
  16935. source: "./media/characters/deja/front.svg",
  16936. extra: 926 / 840,
  16937. bottom: 0.07
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Planck Length",
  16944. height: math.unit(1.6e-35, "meters")
  16945. },
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(30.48, "meters"),
  16949. default: true
  16950. },
  16951. {
  16952. name: "Universal",
  16953. height: math.unit(8.8e26, "meters")
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16959. {
  16960. side: {
  16961. height: math.unit(8, "feet"),
  16962. weight: math.unit(6300, "lb"),
  16963. name: "Side",
  16964. image: {
  16965. source: "./media/characters/anima/side.svg",
  16966. bottom: 0.035
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(8, "feet"),
  16974. default: true
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(8, "feet"),
  16983. weight: math.unit(350, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/bianca/front.svg",
  16987. extra: 234 / 225,
  16988. bottom: 0.03
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(8, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(6, "feet"),
  17005. weight: math.unit(150, "lb"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/adinia/front.svg",
  17009. extra: 1845 / 1672,
  17010. bottom: 0.02
  17011. }
  17012. },
  17013. back: {
  17014. height: math.unit(6, "feet"),
  17015. weight: math.unit(150, "lb"),
  17016. name: "Back",
  17017. image: {
  17018. source: "./media/characters/adinia/back.svg",
  17019. extra: 1845 / 1672,
  17020. bottom: 0.002
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(11 + 5 / 12, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(3, "meters"),
  17037. weight: math.unit(200, "kg"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/lykasa/front.svg",
  17041. extra: 1076 / 976,
  17042. bottom: 0.06
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(3, "meters")
  17050. },
  17051. {
  17052. name: "Kaiju",
  17053. height: math.unit(120, "meters"),
  17054. default: true
  17055. },
  17056. {
  17057. name: "Mega Kaiju",
  17058. height: math.unit(240, "km")
  17059. },
  17060. {
  17061. name: "Giga Kaiju",
  17062. height: math.unit(400, "megameters")
  17063. },
  17064. {
  17065. name: "Tera Kaiju",
  17066. height: math.unit(800, "gigameters")
  17067. },
  17068. {
  17069. name: "Kaiju Dragon Goddess",
  17070. height: math.unit(26, "zettaparsecs")
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17076. {
  17077. side: {
  17078. height: math.unit(283 / 124 * 6, "feet"),
  17079. weight: math.unit(35000, "lb"),
  17080. name: "Side",
  17081. image: {
  17082. source: "./media/characters/malfaren/side.svg",
  17083. extra: 2500 / 1010,
  17084. bottom: 0.01
  17085. }
  17086. },
  17087. front: {
  17088. height: math.unit(22.36, "feet"),
  17089. weight: math.unit(35000, "lb"),
  17090. name: "Front",
  17091. image: {
  17092. source: "./media/characters/malfaren/front.svg",
  17093. extra: 1631 / 1476,
  17094. bottom: 0.01
  17095. }
  17096. },
  17097. maw: {
  17098. height: math.unit(6.9, "feet"),
  17099. name: "Maw",
  17100. image: {
  17101. source: "./media/characters/malfaren/maw.svg"
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Big",
  17108. height: math.unit(283 / 162 * 6, "feet"),
  17109. },
  17110. {
  17111. name: "Bigger",
  17112. height: math.unit(283 / 124 * 6, "feet")
  17113. },
  17114. {
  17115. name: "Massive",
  17116. height: math.unit(283 / 92 * 6, "feet"),
  17117. default: true
  17118. },
  17119. {
  17120. name: "👀💦",
  17121. height: math.unit(283 / 73 * 6, "feet"),
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17127. {
  17128. front: {
  17129. height: math.unit(1.7, "m"),
  17130. weight: math.unit(70, "kg"),
  17131. name: "Front",
  17132. image: {
  17133. source: "./media/characters/kernel/front.svg",
  17134. extra: 222 / 210,
  17135. bottom: 0.007
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Nano",
  17142. height: math.unit(17, "micrometers")
  17143. },
  17144. {
  17145. name: "Micro",
  17146. height: math.unit(1.7, "mm")
  17147. },
  17148. {
  17149. name: "Small",
  17150. height: math.unit(1.7, "cm")
  17151. },
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(1.7, "m"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(1.75, "meters"),
  17164. weight: math.unit(65, "kg"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/jayne-folest/front.svg",
  17168. extra: 2115 / 2007,
  17169. bottom: 0.02
  17170. }
  17171. },
  17172. back: {
  17173. height: math.unit(1.75, "meters"),
  17174. weight: math.unit(65, "kg"),
  17175. name: "Back",
  17176. image: {
  17177. source: "./media/characters/jayne-folest/back.svg",
  17178. extra: 2115 / 2007,
  17179. bottom: 0.005
  17180. }
  17181. },
  17182. frontClothed: {
  17183. height: math.unit(1.75, "meters"),
  17184. weight: math.unit(65, "kg"),
  17185. name: "Front (Clothed)",
  17186. image: {
  17187. source: "./media/characters/jayne-folest/front-clothed.svg",
  17188. extra: 2115 / 2007,
  17189. bottom: 0.035
  17190. }
  17191. },
  17192. hand: {
  17193. height: math.unit(1 / 1.260, "feet"),
  17194. name: "Hand",
  17195. image: {
  17196. source: "./media/characters/jayne-folest/hand.svg"
  17197. }
  17198. },
  17199. foot: {
  17200. height: math.unit(1 / 0.918, "feet"),
  17201. name: "Foot",
  17202. image: {
  17203. source: "./media/characters/jayne-folest/foot.svg"
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Micro",
  17210. height: math.unit(4, "cm")
  17211. },
  17212. {
  17213. name: "Normal",
  17214. height: math.unit(1.75, "meters")
  17215. },
  17216. {
  17217. name: "Macro",
  17218. height: math.unit(47.5, "meters"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(180, "cm"),
  17228. weight: math.unit(70, "kg"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/algier/front.svg",
  17232. extra: 596 / 572,
  17233. bottom: 0.04
  17234. }
  17235. },
  17236. back: {
  17237. height: math.unit(180, "cm"),
  17238. weight: math.unit(70, "kg"),
  17239. name: "Back",
  17240. image: {
  17241. source: "./media/characters/algier/back.svg",
  17242. extra: 596 / 572,
  17243. bottom: 0.025
  17244. }
  17245. },
  17246. frontdressed: {
  17247. height: math.unit(180, "cm"),
  17248. weight: math.unit(150, "kg"),
  17249. name: "Front-dressed",
  17250. image: {
  17251. source: "./media/characters/algier/front-dressed.svg",
  17252. extra: 596 / 572,
  17253. bottom: 0.038
  17254. }
  17255. },
  17256. },
  17257. [
  17258. {
  17259. name: "Micro",
  17260. height: math.unit(5, "cm")
  17261. },
  17262. {
  17263. name: "Normal",
  17264. height: math.unit(180, "cm"),
  17265. default: true
  17266. },
  17267. {
  17268. name: "Macro",
  17269. height: math.unit(64, "m")
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17275. {
  17276. upright: {
  17277. height: math.unit(7, "feet"),
  17278. weight: math.unit(300, "lb"),
  17279. name: "Upright",
  17280. image: {
  17281. source: "./media/characters/pretzel/upright.svg",
  17282. extra: 534 / 522,
  17283. bottom: 0.065
  17284. }
  17285. },
  17286. sprawling: {
  17287. height: math.unit(3.75, "feet"),
  17288. weight: math.unit(300, "lb"),
  17289. name: "Sprawling",
  17290. image: {
  17291. source: "./media/characters/pretzel/sprawling.svg",
  17292. extra: 314 / 281,
  17293. bottom: 0.1
  17294. }
  17295. },
  17296. tongue: {
  17297. height: math.unit(2, "feet"),
  17298. name: "Tongue",
  17299. image: {
  17300. source: "./media/characters/pretzel/tongue.svg"
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(7, "feet"),
  17308. default: true
  17309. },
  17310. {
  17311. name: "Oversized",
  17312. height: math.unit(15, "feet")
  17313. },
  17314. {
  17315. name: "Huge",
  17316. height: math.unit(30, "feet")
  17317. },
  17318. {
  17319. name: "Macro",
  17320. height: math.unit(250, "feet")
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17326. {
  17327. sideFront: {
  17328. height: math.unit(5 + 2 / 12, "feet"),
  17329. weight: math.unit(120, "lb"),
  17330. name: "Front Side",
  17331. image: {
  17332. source: "./media/characters/roxi/side-front.svg",
  17333. extra: 2924 / 2717,
  17334. bottom: 0.08
  17335. }
  17336. },
  17337. sideBack: {
  17338. height: math.unit(5 + 2 / 12, "feet"),
  17339. weight: math.unit(120, "lb"),
  17340. name: "Back Side",
  17341. image: {
  17342. source: "./media/characters/roxi/side-back.svg",
  17343. extra: 2904 / 2693,
  17344. bottom: 0.06
  17345. }
  17346. },
  17347. front: {
  17348. height: math.unit(5 + 2 / 12, "feet"),
  17349. weight: math.unit(120, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/roxi/front.svg",
  17353. extra: 2028 / 1907,
  17354. bottom: 0.01
  17355. }
  17356. },
  17357. frontAlt: {
  17358. height: math.unit(5 + 2 / 12, "feet"),
  17359. weight: math.unit(120, "lb"),
  17360. name: "Front (Alt)",
  17361. image: {
  17362. source: "./media/characters/roxi/front-alt.svg",
  17363. extra: 1828 / 1798,
  17364. bottom: 0.01
  17365. }
  17366. },
  17367. sitting: {
  17368. height: math.unit(2.8, "feet"),
  17369. weight: math.unit(120, "lb"),
  17370. name: "Sitting",
  17371. image: {
  17372. source: "./media/characters/roxi/sitting.svg",
  17373. extra: 2660 / 2462,
  17374. bottom: 0.1
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(5 + 2 / 12, "feet"),
  17382. default: true
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17388. {
  17389. side: {
  17390. height: math.unit(55, "feet"),
  17391. weight: math.unit(153, "tons"),
  17392. name: "Side",
  17393. image: {
  17394. source: "./media/characters/shadow/side.svg",
  17395. extra: 701 / 628,
  17396. bottom: 0.02
  17397. }
  17398. },
  17399. flying: {
  17400. height: math.unit(145, "feet"),
  17401. weight: math.unit(153, "tons"),
  17402. name: "Flying",
  17403. image: {
  17404. source: "./media/characters/shadow/flying.svg"
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(55, "feet"),
  17412. default: true
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(6, "feet"),
  17421. weight: math.unit(200, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/marcie/front.svg",
  17425. extra: 960 / 876,
  17426. bottom: 58 / 1017.87
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Macro",
  17433. height: math.unit(1, "mile"),
  17434. default: true
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17440. {
  17441. front: {
  17442. height: math.unit(7, "feet"),
  17443. weight: math.unit(200, "lb"),
  17444. name: "Front",
  17445. image: {
  17446. source: "./media/characters/kachina/front.svg",
  17447. extra: 1290.68 / 1119,
  17448. bottom: 36.5 / 1327.18
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Normal",
  17455. height: math.unit(7, "feet"),
  17456. default: true
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17462. {
  17463. looking: {
  17464. height: math.unit(2, "meters"),
  17465. weight: math.unit(300, "kg"),
  17466. name: "Looking",
  17467. image: {
  17468. source: "./media/characters/kash/looking.svg",
  17469. extra: 474 / 344,
  17470. bottom: 0.03
  17471. }
  17472. },
  17473. side: {
  17474. height: math.unit(2, "meters"),
  17475. weight: math.unit(300, "kg"),
  17476. name: "Side",
  17477. image: {
  17478. source: "./media/characters/kash/side.svg",
  17479. extra: 302 / 251,
  17480. bottom: 0.03
  17481. }
  17482. },
  17483. front: {
  17484. height: math.unit(2, "meters"),
  17485. weight: math.unit(300, "kg"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/kash/front.svg",
  17489. extra: 495 / 360,
  17490. bottom: 0.015
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Normal",
  17497. height: math.unit(2, "meters"),
  17498. default: true
  17499. },
  17500. {
  17501. name: "Big",
  17502. height: math.unit(3, "meters")
  17503. },
  17504. {
  17505. name: "Large",
  17506. height: math.unit(5, "meters")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17512. {
  17513. feeding: {
  17514. height: math.unit(6.7, "feet"),
  17515. weight: math.unit(350, "lb"),
  17516. name: "Feeding",
  17517. image: {
  17518. source: "./media/characters/lalim/feeding.svg",
  17519. }
  17520. },
  17521. },
  17522. [
  17523. {
  17524. name: "Normal",
  17525. height: math.unit(6.7, "feet"),
  17526. default: true
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17532. {
  17533. front: {
  17534. height: math.unit(9.5, "feet"),
  17535. weight: math.unit(600, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/de'vout/front.svg",
  17539. extra: 1443 / 1328,
  17540. bottom: 0.025
  17541. }
  17542. },
  17543. back: {
  17544. height: math.unit(9.5, "feet"),
  17545. weight: math.unit(600, "lb"),
  17546. name: "Back",
  17547. image: {
  17548. source: "./media/characters/de'vout/back.svg",
  17549. extra: 1443 / 1328
  17550. }
  17551. },
  17552. frontDressed: {
  17553. height: math.unit(9.5, "feet"),
  17554. weight: math.unit(600, "lb"),
  17555. name: "Front (Dressed",
  17556. image: {
  17557. source: "./media/characters/de'vout/front-dressed.svg",
  17558. extra: 1443 / 1328,
  17559. bottom: 0.025
  17560. }
  17561. },
  17562. backDressed: {
  17563. height: math.unit(9.5, "feet"),
  17564. weight: math.unit(600, "lb"),
  17565. name: "Back (Dressed",
  17566. image: {
  17567. source: "./media/characters/de'vout/back-dressed.svg",
  17568. extra: 1443 / 1328
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(9.5, "feet"),
  17576. default: true
  17577. },
  17578. ]
  17579. ))
  17580. characterMakers.push(() => makeCharacter(
  17581. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17582. {
  17583. front: {
  17584. height: math.unit(8, "feet"),
  17585. weight: math.unit(225, "lb"),
  17586. name: "Front",
  17587. image: {
  17588. source: "./media/characters/talana/front.svg",
  17589. extra: 1410 / 1300,
  17590. bottom: 0.015
  17591. }
  17592. },
  17593. frontDressed: {
  17594. height: math.unit(8, "feet"),
  17595. weight: math.unit(225, "lb"),
  17596. name: "Front (Dressed",
  17597. image: {
  17598. source: "./media/characters/talana/front-dressed.svg",
  17599. extra: 1410 / 1300,
  17600. bottom: 0.015
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(8, "feet"),
  17608. default: true
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17614. {
  17615. side: {
  17616. height: math.unit(7.2, "feet"),
  17617. weight: math.unit(150, "lb"),
  17618. name: "Side",
  17619. image: {
  17620. source: "./media/characters/xeauvok/side.svg",
  17621. extra: 1975 / 1523,
  17622. bottom: 0.07
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(7.2, "feet"),
  17630. default: true
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17636. {
  17637. side: {
  17638. height: math.unit(10, "feet"),
  17639. weight: math.unit(900, "kg"),
  17640. name: "Side",
  17641. image: {
  17642. source: "./media/characters/zara/side.svg",
  17643. extra: 504 / 498
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(10, "feet"),
  17651. default: true
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17657. {
  17658. side: {
  17659. height: math.unit(6, "feet"),
  17660. weight: math.unit(150, "lb"),
  17661. name: "Side",
  17662. image: {
  17663. source: "./media/characters/richard-dragon/side.svg",
  17664. extra: 845 / 340,
  17665. bottom: 0.017
  17666. }
  17667. },
  17668. maw: {
  17669. height: math.unit(2.97, "feet"),
  17670. name: "Maw",
  17671. image: {
  17672. source: "./media/characters/richard-dragon/maw.svg"
  17673. }
  17674. },
  17675. },
  17676. [
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17681. {
  17682. front: {
  17683. height: math.unit(4, "feet"),
  17684. weight: math.unit(100, "lb"),
  17685. name: "Front",
  17686. image: {
  17687. source: "./media/characters/richard-smeargle/front.svg",
  17688. extra: 2952 / 2820,
  17689. bottom: 0.028
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Normal",
  17696. height: math.unit(4, "feet"),
  17697. default: true
  17698. },
  17699. {
  17700. name: "Dynamax",
  17701. height: math.unit(20, "meters")
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(6, "feet"),
  17710. weight: math.unit(110, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/klay/front.svg",
  17714. extra: 962 / 883,
  17715. bottom: 0.04
  17716. }
  17717. },
  17718. back: {
  17719. height: math.unit(6, "feet"),
  17720. weight: math.unit(110, "lb"),
  17721. name: "Back",
  17722. image: {
  17723. source: "./media/characters/klay/back.svg",
  17724. extra: 962 / 883
  17725. }
  17726. },
  17727. beans: {
  17728. height: math.unit(1.15, "feet"),
  17729. name: "Beans",
  17730. image: {
  17731. source: "./media/characters/klay/beans.svg"
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Micro",
  17738. height: math.unit(6, "inches")
  17739. },
  17740. {
  17741. name: "Mini",
  17742. height: math.unit(3, "feet")
  17743. },
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(6, "feet"),
  17747. default: true
  17748. },
  17749. {
  17750. name: "Big",
  17751. height: math.unit(25, "feet")
  17752. },
  17753. {
  17754. name: "Macro",
  17755. height: math.unit(100, "feet")
  17756. },
  17757. {
  17758. name: "Megamacro",
  17759. height: math.unit(400, "feet")
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(6, "feet"),
  17768. weight: math.unit(160, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/marcus/front.svg",
  17772. extra: 734 / 676,
  17773. bottom: 0.03
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Little",
  17780. height: math.unit(6, "feet")
  17781. },
  17782. {
  17783. name: "Normal",
  17784. height: math.unit(110, "feet"),
  17785. default: true
  17786. },
  17787. {
  17788. name: "Macro",
  17789. height: math.unit(250, "feet")
  17790. },
  17791. {
  17792. name: "Megamacro",
  17793. height: math.unit(1000, "feet")
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(7, "feet"),
  17802. weight: math.unit(275, "lb"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/claude-delroute/front.svg",
  17806. extra: 230 / 214,
  17807. bottom: 0.007
  17808. }
  17809. },
  17810. side: {
  17811. height: math.unit(7, "feet"),
  17812. weight: math.unit(275, "lb"),
  17813. name: "Side",
  17814. image: {
  17815. source: "./media/characters/claude-delroute/side.svg",
  17816. extra: 222 / 214,
  17817. bottom: 0.01
  17818. }
  17819. },
  17820. back: {
  17821. height: math.unit(7, "feet"),
  17822. weight: math.unit(275, "lb"),
  17823. name: "Back",
  17824. image: {
  17825. source: "./media/characters/claude-delroute/back.svg",
  17826. extra: 230 / 214,
  17827. bottom: 0.015
  17828. }
  17829. },
  17830. maw: {
  17831. height: math.unit(0.6407, "meters"),
  17832. name: "Maw",
  17833. image: {
  17834. source: "./media/characters/claude-delroute/maw.svg"
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(7, "feet"),
  17842. default: true
  17843. },
  17844. {
  17845. name: "Lorge",
  17846. height: math.unit(20, "feet")
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(8 + 4 / 12, "feet"),
  17855. weight: math.unit(600, "lb"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/dragonien/front.svg",
  17859. extra: 100 / 94,
  17860. bottom: 3.3 / 103.3445
  17861. }
  17862. },
  17863. back: {
  17864. height: math.unit(8 + 4 / 12, "feet"),
  17865. weight: math.unit(600, "lb"),
  17866. name: "Back",
  17867. image: {
  17868. source: "./media/characters/dragonien/back.svg",
  17869. extra: 776 / 746,
  17870. bottom: 6.4 / 782.0616
  17871. }
  17872. },
  17873. foot: {
  17874. height: math.unit(1.54, "feet"),
  17875. name: "Foot",
  17876. image: {
  17877. source: "./media/characters/dragonien/foot.svg",
  17878. }
  17879. },
  17880. },
  17881. [
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(8 + 4 / 12, "feet"),
  17885. default: true
  17886. },
  17887. {
  17888. name: "Macro",
  17889. height: math.unit(200, "feet")
  17890. },
  17891. {
  17892. name: "Megamacro",
  17893. height: math.unit(1, "mile")
  17894. },
  17895. {
  17896. name: "Gigamacro",
  17897. height: math.unit(1000, "miles")
  17898. },
  17899. ]
  17900. ))
  17901. characterMakers.push(() => makeCharacter(
  17902. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17903. {
  17904. front: {
  17905. height: math.unit(5 + 2 / 12, "feet"),
  17906. weight: math.unit(110, "lb"),
  17907. name: "Front",
  17908. image: {
  17909. source: "./media/characters/desta/front.svg",
  17910. extra: 767 / 726,
  17911. bottom: 11.7 / 779
  17912. }
  17913. },
  17914. back: {
  17915. height: math.unit(5 + 2 / 12, "feet"),
  17916. weight: math.unit(110, "lb"),
  17917. name: "Back",
  17918. image: {
  17919. source: "./media/characters/desta/back.svg",
  17920. extra: 777 / 728,
  17921. bottom: 6 / 784
  17922. }
  17923. },
  17924. frontAlt: {
  17925. height: math.unit(5 + 2 / 12, "feet"),
  17926. weight: math.unit(110, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/desta/front-alt.svg",
  17930. extra: 1482 / 1417
  17931. }
  17932. },
  17933. side: {
  17934. height: math.unit(5 + 2 / 12, "feet"),
  17935. weight: math.unit(110, "lb"),
  17936. name: "Side",
  17937. image: {
  17938. source: "./media/characters/desta/side.svg",
  17939. extra: 2579 / 2491,
  17940. bottom: 0.053
  17941. }
  17942. },
  17943. },
  17944. [
  17945. {
  17946. name: "Micro",
  17947. height: math.unit(6, "inches")
  17948. },
  17949. {
  17950. name: "Normal",
  17951. height: math.unit(5 + 2 / 12, "feet"),
  17952. default: true
  17953. },
  17954. {
  17955. name: "Macro",
  17956. height: math.unit(62, "feet")
  17957. },
  17958. {
  17959. name: "Megamacro",
  17960. height: math.unit(1800, "feet")
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17966. {
  17967. front: {
  17968. height: math.unit(10, "feet"),
  17969. weight: math.unit(700, "lb"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/storm-alystar/front.svg",
  17973. extra: 2112 / 1898,
  17974. bottom: 0.034
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Micro",
  17981. height: math.unit(3.5, "inches")
  17982. },
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(10, "feet"),
  17986. default: true
  17987. },
  17988. {
  17989. name: "Macro",
  17990. height: math.unit(400, "feet")
  17991. },
  17992. {
  17993. name: "Deific",
  17994. height: math.unit(60, "miles")
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(2.35, "meters"),
  18003. weight: math.unit(119, "kg"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/ilia/front.svg",
  18007. extra: 1285 / 1255,
  18008. bottom: 0.06
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Normal",
  18015. height: math.unit(2.35, "meters")
  18016. },
  18017. {
  18018. name: "Macro",
  18019. height: math.unit(140, "meters"),
  18020. default: true
  18021. },
  18022. {
  18023. name: "Megamacro",
  18024. height: math.unit(100, "miles")
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18030. {
  18031. front: {
  18032. height: math.unit(6 + 5 / 12, "feet"),
  18033. weight: math.unit(190, "lb"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/kingdead/front.svg",
  18037. extra: 1228 / 1177
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Micro",
  18044. height: math.unit(7, "inches")
  18045. },
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(6 + 5 / 12, "feet")
  18049. },
  18050. {
  18051. name: "Macro",
  18052. height: math.unit(150, "feet"),
  18053. default: true
  18054. },
  18055. {
  18056. name: "Megamacro",
  18057. height: math.unit(200, "miles")
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18063. {
  18064. front: {
  18065. height: math.unit(8, "feet"),
  18066. weight: math.unit(600, "lb"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/kyrehx/front.svg",
  18070. extra: 1195 / 1095,
  18071. bottom: 0.034
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Micro",
  18078. height: math.unit(2, "inches")
  18079. },
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(8, "feet"),
  18083. default: true
  18084. },
  18085. {
  18086. name: "Macro",
  18087. height: math.unit(255, "feet")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18093. {
  18094. front: {
  18095. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18096. weight: math.unit(184, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/xang/front.svg",
  18100. extra: 845 / 755
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Normal",
  18107. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18108. default: true
  18109. },
  18110. {
  18111. name: "Macro",
  18112. height: math.unit(0.935 * 146, "feet")
  18113. },
  18114. {
  18115. name: "Megamacro",
  18116. height: math.unit(0.935 * 3, "miles")
  18117. },
  18118. ]
  18119. ))
  18120. characterMakers.push(() => makeCharacter(
  18121. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18122. {
  18123. frontDressed: {
  18124. height: math.unit(5 + 7 / 12, "feet"),
  18125. weight: math.unit(140, "lb"),
  18126. name: "Front (Dressed)",
  18127. image: {
  18128. source: "./media/characters/doc-weardno/front-dressed.svg",
  18129. extra: 263 / 234
  18130. }
  18131. },
  18132. backDressed: {
  18133. height: math.unit(5 + 7 / 12, "feet"),
  18134. weight: math.unit(140, "lb"),
  18135. name: "Back (Dressed)",
  18136. image: {
  18137. source: "./media/characters/doc-weardno/back-dressed.svg",
  18138. extra: 266 / 238
  18139. }
  18140. },
  18141. front: {
  18142. height: math.unit(5 + 7 / 12, "feet"),
  18143. weight: math.unit(140, "lb"),
  18144. name: "Front",
  18145. image: {
  18146. source: "./media/characters/doc-weardno/front.svg",
  18147. extra: 254 / 233
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Micro",
  18154. height: math.unit(3, "inches")
  18155. },
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(5 + 7 / 12, "feet"),
  18159. default: true
  18160. },
  18161. {
  18162. name: "Macro",
  18163. height: math.unit(25, "feet")
  18164. },
  18165. {
  18166. name: "Megamacro",
  18167. height: math.unit(2, "miles")
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18173. {
  18174. front: {
  18175. height: math.unit(6 + 2 / 12, "feet"),
  18176. weight: math.unit(153, "lb"),
  18177. name: "Front",
  18178. image: {
  18179. source: "./media/characters/seth-whilst/front.svg",
  18180. bottom: 0.07
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Micro",
  18187. height: math.unit(5, "inches")
  18188. },
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(6 + 2 / 12, "feet"),
  18192. default: true
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18198. {
  18199. front: {
  18200. height: math.unit(3, "inches"),
  18201. weight: math.unit(8, "grams"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/pocket-jabari/front.svg",
  18205. extra: 1024 / 974,
  18206. bottom: 0.039
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Minimicro",
  18213. height: math.unit(8, "mm")
  18214. },
  18215. {
  18216. name: "Micro",
  18217. height: math.unit(3, "inches"),
  18218. default: true
  18219. },
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(3, "feet")
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(15, "feet"),
  18231. weight: math.unit(3280, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/sapphy/front.svg",
  18235. extra: 671 / 577,
  18236. bottom: 0.085
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(15, "feet"),
  18241. weight: math.unit(3280, "lb"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/sapphy/back.svg",
  18245. extra: 631 / 607,
  18246. bottom: 0.045
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Normal",
  18253. height: math.unit(15, "feet")
  18254. },
  18255. {
  18256. name: "Casual Macro",
  18257. height: math.unit(120, "feet")
  18258. },
  18259. {
  18260. name: "Macro",
  18261. height: math.unit(2150, "feet"),
  18262. default: true
  18263. },
  18264. {
  18265. name: "Megamacro",
  18266. height: math.unit(8, "miles")
  18267. },
  18268. {
  18269. name: "Galaxy Mom",
  18270. height: math.unit(6, "megalightyears")
  18271. },
  18272. ]
  18273. ))
  18274. characterMakers.push(() => makeCharacter(
  18275. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18276. {
  18277. front: {
  18278. height: math.unit(6, "feet"),
  18279. weight: math.unit(170, "lb"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/kiro/front.svg",
  18283. extra: 1064 / 1012,
  18284. bottom: 0.052
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Micro",
  18291. height: math.unit(6, "inches")
  18292. },
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(6, "feet"),
  18296. default: true
  18297. },
  18298. {
  18299. name: "Macro",
  18300. height: math.unit(72, "feet")
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(5 + 9 / 12, "feet"),
  18309. weight: math.unit(175, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/irishfox/front.svg",
  18313. extra: 1912 / 1680,
  18314. bottom: 0.02
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Nano",
  18321. height: math.unit(1, "mm")
  18322. },
  18323. {
  18324. name: "Micro",
  18325. height: math.unit(2, "inches")
  18326. },
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(5 + 9 / 12, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Macro",
  18334. height: math.unit(45, "feet")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(6 + 1 / 12, "feet"),
  18343. weight: math.unit(75, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/aronai-sieyes/front.svg",
  18347. extra: 1556 / 1480,
  18348. bottom: 0.015
  18349. }
  18350. },
  18351. side: {
  18352. height: math.unit(6 + 1 / 12, "feet"),
  18353. weight: math.unit(75, "lb"),
  18354. name: "Side",
  18355. image: {
  18356. source: "./media/characters/aronai-sieyes/side.svg",
  18357. extra: 1433 / 1390,
  18358. bottom: 0.0393
  18359. }
  18360. },
  18361. back: {
  18362. height: math.unit(6 + 1 / 12, "feet"),
  18363. weight: math.unit(75, "lb"),
  18364. name: "Back",
  18365. image: {
  18366. source: "./media/characters/aronai-sieyes/back.svg",
  18367. extra: 1544 / 1494,
  18368. bottom: 0.02
  18369. }
  18370. },
  18371. frontClothed: {
  18372. height: math.unit(6 + 1 / 12, "feet"),
  18373. weight: math.unit(75, "lb"),
  18374. name: "Front (Clothed)",
  18375. image: {
  18376. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18377. extra: 1582 / 1527
  18378. }
  18379. },
  18380. feral: {
  18381. height: math.unit(18, "feet"),
  18382. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18383. name: "Feral",
  18384. image: {
  18385. source: "./media/characters/aronai-sieyes/feral.svg",
  18386. extra: 1530 / 1240,
  18387. bottom: 0.035
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Micro",
  18394. height: math.unit(2, "inches")
  18395. },
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(6 + 1 / 12, "feet"),
  18399. default: true
  18400. }
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18405. {
  18406. front: {
  18407. height: math.unit(12, "feet"),
  18408. weight: math.unit(410, "kg"),
  18409. name: "Front",
  18410. image: {
  18411. source: "./media/characters/xuna/front.svg",
  18412. extra: 2184 / 1980
  18413. }
  18414. },
  18415. side: {
  18416. height: math.unit(12, "feet"),
  18417. weight: math.unit(410, "kg"),
  18418. name: "Side",
  18419. image: {
  18420. source: "./media/characters/xuna/side.svg",
  18421. extra: 2184 / 1980
  18422. }
  18423. },
  18424. back: {
  18425. height: math.unit(12, "feet"),
  18426. weight: math.unit(410, "kg"),
  18427. name: "Back",
  18428. image: {
  18429. source: "./media/characters/xuna/back.svg",
  18430. extra: 2184 / 1980
  18431. }
  18432. },
  18433. },
  18434. [
  18435. {
  18436. name: "Nano glow",
  18437. height: math.unit(10, "nm")
  18438. },
  18439. {
  18440. name: "Micro floof",
  18441. height: math.unit(0.3, "m")
  18442. },
  18443. {
  18444. name: "Huggable softy boi",
  18445. height: math.unit(3.6576, "m"),
  18446. default: true
  18447. },
  18448. {
  18449. name: "Admirable floof",
  18450. height: math.unit(80, "meters")
  18451. },
  18452. {
  18453. name: "Gentle macro",
  18454. height: math.unit(300, "meters")
  18455. },
  18456. {
  18457. name: "Very careful floof",
  18458. height: math.unit(3200, "meters")
  18459. },
  18460. {
  18461. name: "The mega floof",
  18462. height: math.unit(36000, "meters")
  18463. },
  18464. {
  18465. name: "Giga-fur-Wicker",
  18466. height: math.unit(4800000, "meters")
  18467. },
  18468. {
  18469. name: "Licky world",
  18470. height: math.unit(20000000, "meters")
  18471. },
  18472. {
  18473. name: "Floofy cyan sun",
  18474. height: math.unit(1500000000, "meters")
  18475. },
  18476. {
  18477. name: "Milky Wicker",
  18478. height: math.unit(1000000000000000000000, "meters")
  18479. },
  18480. {
  18481. name: "The observing Wicker",
  18482. height: math.unit(999999999999999999999999999, "meters")
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(5 + 9 / 12, "feet"),
  18491. weight: math.unit(150, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/arokha-sieyes/front.svg",
  18495. extra: 1425 / 1284,
  18496. bottom: 0.05
  18497. }
  18498. },
  18499. },
  18500. [
  18501. {
  18502. name: "Normal",
  18503. height: math.unit(5 + 9 / 12, "feet")
  18504. },
  18505. {
  18506. name: "Macro",
  18507. height: math.unit(30, "meters"),
  18508. default: true
  18509. },
  18510. ]
  18511. ))
  18512. characterMakers.push(() => makeCharacter(
  18513. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18514. {
  18515. front: {
  18516. height: math.unit(6, "feet"),
  18517. weight: math.unit(180, "lb"),
  18518. name: "Front",
  18519. image: {
  18520. source: "./media/characters/arokh-sieyes/front.svg",
  18521. extra: 1830 / 1769,
  18522. bottom: 0.01
  18523. }
  18524. },
  18525. },
  18526. [
  18527. {
  18528. name: "Normal",
  18529. height: math.unit(6, "feet")
  18530. },
  18531. {
  18532. name: "Macro",
  18533. height: math.unit(30, "meters"),
  18534. default: true
  18535. },
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18540. {
  18541. side: {
  18542. height: math.unit(13 + 1 / 12, "feet"),
  18543. weight: math.unit(8.5, "tonnes"),
  18544. name: "Side",
  18545. image: {
  18546. source: "./media/characters/goldeneye/side.svg",
  18547. extra: 1182 / 778,
  18548. bottom: 0.067
  18549. }
  18550. },
  18551. paw: {
  18552. height: math.unit(3.4, "feet"),
  18553. name: "Paw",
  18554. image: {
  18555. source: "./media/characters/goldeneye/paw.svg"
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(13 + 1 / 12, "feet"),
  18563. default: true
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18569. {
  18570. front: {
  18571. height: math.unit(6 + 1 / 12, "feet"),
  18572. weight: math.unit(210, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/leonardo-lycheborne/front.svg",
  18576. extra: 390 / 365,
  18577. bottom: 0.032
  18578. }
  18579. },
  18580. side: {
  18581. height: math.unit(6 + 1 / 12, "feet"),
  18582. weight: math.unit(210, "lb"),
  18583. name: "Side",
  18584. image: {
  18585. source: "./media/characters/leonardo-lycheborne/side.svg",
  18586. extra: 390 / 365,
  18587. bottom: 0.005
  18588. }
  18589. },
  18590. back: {
  18591. height: math.unit(6 + 1 / 12, "feet"),
  18592. weight: math.unit(210, "lb"),
  18593. name: "Back",
  18594. image: {
  18595. source: "./media/characters/leonardo-lycheborne/back.svg",
  18596. extra: 392 / 366,
  18597. bottom: 0.01
  18598. }
  18599. },
  18600. hand: {
  18601. height: math.unit(1.08, "feet"),
  18602. name: "Hand",
  18603. image: {
  18604. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18605. }
  18606. },
  18607. foot: {
  18608. height: math.unit(1.32, "feet"),
  18609. name: "Foot",
  18610. image: {
  18611. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18612. }
  18613. },
  18614. were: {
  18615. height: math.unit(20, "feet"),
  18616. weight: math.unit(7800, "lb"),
  18617. name: "Were",
  18618. image: {
  18619. source: "./media/characters/leonardo-lycheborne/were.svg",
  18620. extra: 308 / 294,
  18621. bottom: 0.048
  18622. }
  18623. },
  18624. feral: {
  18625. height: math.unit(7.5, "feet"),
  18626. weight: math.unit(600, "lb"),
  18627. name: "Feral",
  18628. image: {
  18629. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18630. extra: 210 / 186,
  18631. bottom: 0.108
  18632. }
  18633. },
  18634. taur: {
  18635. height: math.unit(11, "feet"),
  18636. weight: math.unit(3300, "lb"),
  18637. name: "Taur",
  18638. image: {
  18639. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18640. extra: 320 / 303,
  18641. bottom: 0.025
  18642. }
  18643. },
  18644. barghest: {
  18645. height: math.unit(11, "feet"),
  18646. weight: math.unit(1300, "lb"),
  18647. name: "Barghest",
  18648. image: {
  18649. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18650. extra: 323 / 302,
  18651. bottom: 0.027
  18652. }
  18653. },
  18654. dick: {
  18655. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18656. name: "Dick",
  18657. image: {
  18658. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18659. }
  18660. },
  18661. dickWere: {
  18662. height: math.unit((20) / 3.8, "feet"),
  18663. name: "Dick (Were)",
  18664. image: {
  18665. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(6 + 1 / 12, "feet"),
  18673. default: true
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18679. {
  18680. front: {
  18681. height: math.unit(10, "feet"),
  18682. weight: math.unit(350, "lb"),
  18683. name: "Front",
  18684. image: {
  18685. source: "./media/characters/jet/front.svg",
  18686. extra: 2050 / 1980,
  18687. bottom: 0.013
  18688. }
  18689. },
  18690. back: {
  18691. height: math.unit(10, "feet"),
  18692. weight: math.unit(350, "lb"),
  18693. name: "Back",
  18694. image: {
  18695. source: "./media/characters/jet/back.svg",
  18696. extra: 2050 / 1980,
  18697. bottom: 0.013
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Micro",
  18704. height: math.unit(6, "inches")
  18705. },
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(10, "feet"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Macro",
  18713. height: math.unit(100, "feet")
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18719. {
  18720. front: {
  18721. height: math.unit(15, "feet"),
  18722. weight: math.unit(2800, "lb"),
  18723. name: "Front",
  18724. image: {
  18725. source: "./media/characters/tanarath/front.svg",
  18726. extra: 2392 / 2220,
  18727. bottom: 0.03
  18728. }
  18729. },
  18730. back: {
  18731. height: math.unit(15, "feet"),
  18732. weight: math.unit(2800, "lb"),
  18733. name: "Back",
  18734. image: {
  18735. source: "./media/characters/tanarath/back.svg",
  18736. extra: 2392 / 2220,
  18737. bottom: 0.03
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(15, "feet"),
  18745. default: true
  18746. },
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18751. {
  18752. front: {
  18753. height: math.unit(7 + 1 / 12, "feet"),
  18754. weight: math.unit(175, "lb"),
  18755. name: "Front",
  18756. image: {
  18757. source: "./media/characters/patty-cattybatty/front.svg",
  18758. extra: 908 / 874,
  18759. bottom: 0.025
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Micro",
  18766. height: math.unit(1, "inch")
  18767. },
  18768. {
  18769. name: "Normal",
  18770. height: math.unit(7 + 1 / 12, "feet")
  18771. },
  18772. {
  18773. name: "Mini Macro",
  18774. height: math.unit(155, "feet")
  18775. },
  18776. {
  18777. name: "Macro",
  18778. height: math.unit(1077, "feet")
  18779. },
  18780. {
  18781. name: "Mega Macro",
  18782. height: math.unit(47650, "feet"),
  18783. default: true
  18784. },
  18785. {
  18786. name: "Giga Macro",
  18787. height: math.unit(440, "miles")
  18788. },
  18789. {
  18790. name: "Tera Macro",
  18791. height: math.unit(8700, "miles")
  18792. },
  18793. {
  18794. name: "Planetary Macro",
  18795. height: math.unit(32700, "miles")
  18796. },
  18797. {
  18798. name: "Solar Macro",
  18799. height: math.unit(550000, "miles")
  18800. },
  18801. {
  18802. name: "Celestial Macro",
  18803. height: math.unit(2.5, "AU")
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(4 + 5 / 12, "feet"),
  18812. weight: math.unit(90, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/cappu/front.svg",
  18816. extra: 1247 / 1152,
  18817. bottom: 0.012
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(4 + 5 / 12, "feet"),
  18825. default: true
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18831. {
  18832. frontDressed: {
  18833. height: math.unit(70, "cm"),
  18834. weight: math.unit(6, "kg"),
  18835. name: "Front (Dressed)",
  18836. image: {
  18837. source: "./media/characters/sebi/front-dressed.svg",
  18838. extra: 713.5 / 686.5,
  18839. bottom: 0.003
  18840. }
  18841. },
  18842. front: {
  18843. height: math.unit(70, "cm"),
  18844. weight: math.unit(5, "kg"),
  18845. name: "Front",
  18846. image: {
  18847. source: "./media/characters/sebi/front.svg",
  18848. extra: 713.5 / 686.5,
  18849. bottom: 0.003
  18850. }
  18851. }
  18852. },
  18853. [
  18854. {
  18855. name: "Normal",
  18856. height: math.unit(70, "cm"),
  18857. default: true
  18858. },
  18859. {
  18860. name: "Macro",
  18861. height: math.unit(8, "meters")
  18862. },
  18863. ]
  18864. ))
  18865. characterMakers.push(() => makeCharacter(
  18866. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18867. {
  18868. front: {
  18869. height: math.unit(6, "feet"),
  18870. weight: math.unit(150, "lb"),
  18871. name: "Front",
  18872. image: {
  18873. source: "./media/characters/typhek/front.svg",
  18874. extra: 1948 / 1929,
  18875. bottom: 0.025
  18876. }
  18877. },
  18878. side: {
  18879. height: math.unit(6, "feet"),
  18880. weight: math.unit(150, "lb"),
  18881. name: "Side",
  18882. image: {
  18883. source: "./media/characters/typhek/side.svg",
  18884. extra: 2034 / 2010,
  18885. bottom: 0.003
  18886. }
  18887. },
  18888. back: {
  18889. height: math.unit(6, "feet"),
  18890. weight: math.unit(150, "lb"),
  18891. name: "Back",
  18892. image: {
  18893. source: "./media/characters/typhek/back.svg",
  18894. extra: 2005 / 1978,
  18895. bottom: 0.004
  18896. }
  18897. },
  18898. palm: {
  18899. height: math.unit(1.2, "feet"),
  18900. name: "Palm",
  18901. image: {
  18902. source: "./media/characters/typhek/palm.svg"
  18903. }
  18904. },
  18905. fist: {
  18906. height: math.unit(1.1, "feet"),
  18907. name: "Fist",
  18908. image: {
  18909. source: "./media/characters/typhek/fist.svg"
  18910. }
  18911. },
  18912. foot: {
  18913. height: math.unit(1.57, "feet"),
  18914. name: "Foot",
  18915. image: {
  18916. source: "./media/characters/typhek/foot.svg"
  18917. }
  18918. },
  18919. sole: {
  18920. height: math.unit(2.05, "feet"),
  18921. name: "Sole",
  18922. image: {
  18923. source: "./media/characters/typhek/sole.svg"
  18924. }
  18925. },
  18926. },
  18927. [
  18928. {
  18929. name: "Macro",
  18930. height: math.unit(40, "stories"),
  18931. default: true
  18932. },
  18933. {
  18934. name: "Megamacro",
  18935. height: math.unit(1, "mile")
  18936. },
  18937. {
  18938. name: "Gigamacro",
  18939. height: math.unit(4000, "solarradii")
  18940. },
  18941. {
  18942. name: "Universal",
  18943. height: math.unit(1.1, "universes")
  18944. }
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18949. {
  18950. side: {
  18951. height: math.unit(5 + 7 / 12, "feet"),
  18952. weight: math.unit(150, "lb"),
  18953. name: "Side",
  18954. image: {
  18955. source: "./media/characters/kassy/side.svg",
  18956. extra: 1280 / 1225,
  18957. bottom: 0.002
  18958. }
  18959. },
  18960. front: {
  18961. height: math.unit(5 + 7 / 12, "feet"),
  18962. weight: math.unit(150, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/kassy/front.svg",
  18966. extra: 1280 / 1225,
  18967. bottom: 0.025
  18968. }
  18969. },
  18970. back: {
  18971. height: math.unit(5 + 7 / 12, "feet"),
  18972. weight: math.unit(150, "lb"),
  18973. name: "Back",
  18974. image: {
  18975. source: "./media/characters/kassy/back.svg",
  18976. extra: 1280 / 1225,
  18977. bottom: 0.002
  18978. }
  18979. },
  18980. foot: {
  18981. height: math.unit(1.266, "feet"),
  18982. name: "Foot",
  18983. image: {
  18984. source: "./media/characters/kassy/foot.svg"
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(5 + 7 / 12, "feet")
  18992. },
  18993. {
  18994. name: "Macro",
  18995. height: math.unit(137, "feet"),
  18996. default: true
  18997. },
  18998. {
  18999. name: "Megamacro",
  19000. height: math.unit(1, "mile")
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(6 + 1 / 12, "feet"),
  19009. weight: math.unit(200, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/neil/front.svg",
  19013. extra: 1326 / 1250,
  19014. bottom: 0.023
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(6 + 1 / 12, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Macro",
  19026. height: math.unit(200, "feet")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(5 + 9 / 12, "feet"),
  19035. weight: math.unit(190, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/atticus/front.svg",
  19039. extra: 2934 / 2785,
  19040. bottom: 0.025
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(5 + 9 / 12, "feet"),
  19048. default: true
  19049. },
  19050. {
  19051. name: "Macro",
  19052. height: math.unit(180, "feet")
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19058. {
  19059. side: {
  19060. height: math.unit(9, "feet"),
  19061. weight: math.unit(650, "lb"),
  19062. name: "Side",
  19063. image: {
  19064. source: "./media/characters/milo/side.svg",
  19065. extra: 2644 / 2310,
  19066. bottom: 0.032
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(9, "feet"),
  19074. default: true
  19075. },
  19076. {
  19077. name: "Macro",
  19078. height: math.unit(300, "feet")
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19084. {
  19085. side: {
  19086. height: math.unit(8, "meters"),
  19087. weight: math.unit(90000, "kg"),
  19088. name: "Side",
  19089. image: {
  19090. source: "./media/characters/ijzer/side.svg",
  19091. extra: 2756 / 1600,
  19092. bottom: 0.01
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Small",
  19099. height: math.unit(3, "meters")
  19100. },
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(8, "meters"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Normal+",
  19108. height: math.unit(10, "meters")
  19109. },
  19110. {
  19111. name: "Bigger",
  19112. height: math.unit(24, "meters")
  19113. },
  19114. {
  19115. name: "Huge",
  19116. height: math.unit(80, "meters")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(6 + 2 / 12, "feet"),
  19125. weight: math.unit(153, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/luca-cervicum/front.svg",
  19129. extra: 370 / 327,
  19130. bottom: 0.015
  19131. }
  19132. },
  19133. back: {
  19134. height: math.unit(6 + 2 / 12, "feet"),
  19135. weight: math.unit(153, "lb"),
  19136. name: "Back",
  19137. image: {
  19138. source: "./media/characters/luca-cervicum/back.svg",
  19139. extra: 367 / 333,
  19140. bottom: 0.005
  19141. }
  19142. },
  19143. frontGear: {
  19144. height: math.unit(6 + 2 / 12, "feet"),
  19145. weight: math.unit(173, "lb"),
  19146. name: "Front (Gear)",
  19147. image: {
  19148. source: "./media/characters/luca-cervicum/front-gear.svg",
  19149. extra: 377 / 333,
  19150. bottom: 0.006
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(6 + 2 / 12, "feet"),
  19158. default: true
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(6 + 1 / 12, "feet"),
  19167. weight: math.unit(304, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/oliver/front.svg",
  19171. extra: 157 / 143,
  19172. bottom: 0.08
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(6 + 1 / 12, "feet"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(5 + 7 / 12, "feet"),
  19189. weight: math.unit(140, "lb"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/shane/front.svg",
  19193. extra: 304 / 289,
  19194. bottom: 0.005
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(5 + 7 / 12, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(5 + 9 / 12, "feet"),
  19211. weight: math.unit(178, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/shin/front.svg",
  19215. extra: 159 / 151,
  19216. bottom: 0.015
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(5 + 9 / 12, "feet"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19230. {
  19231. front: {
  19232. height: math.unit(5 + 10 / 12, "feet"),
  19233. weight: math.unit(168, "lb"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/xerxes/front.svg",
  19237. extra: 282 / 260,
  19238. bottom: 0.045
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(5 + 10 / 12, "feet"),
  19246. default: true
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19252. {
  19253. front: {
  19254. height: math.unit(6 + 7 / 12, "feet"),
  19255. weight: math.unit(208, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/chaska/front.svg",
  19259. extra: 332 / 319,
  19260. bottom: 0.015
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(6 + 7 / 12, "feet"),
  19268. default: true
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19274. {
  19275. front: {
  19276. height: math.unit(5 + 8 / 12, "feet"),
  19277. weight: math.unit(208, "lb"),
  19278. name: "Front",
  19279. image: {
  19280. source: "./media/characters/enuk/front.svg",
  19281. extra: 437 / 406,
  19282. bottom: 0.02
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(5 + 8 / 12, "feet"),
  19290. default: true
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(5 + 10 / 12, "feet"),
  19299. weight: math.unit(252, "lb"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/bruun/front.svg",
  19303. extra: 197 / 187,
  19304. bottom: 0.012
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(5 + 10 / 12, "feet"),
  19312. default: true
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19318. {
  19319. front: {
  19320. height: math.unit(6 + 10 / 12, "feet"),
  19321. weight: math.unit(255, "lb"),
  19322. name: "Front",
  19323. image: {
  19324. source: "./media/characters/alexeev/front.svg",
  19325. extra: 213 / 200,
  19326. bottom: 0.05
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(6 + 10 / 12, "feet"),
  19334. default: true
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19340. {
  19341. front: {
  19342. height: math.unit(2 + 8 / 12, "feet"),
  19343. weight: math.unit(22, "lb"),
  19344. name: "Front",
  19345. image: {
  19346. source: "./media/characters/evelyn/front.svg",
  19347. extra: 208 / 180
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(2 + 8 / 12, "feet"),
  19355. default: true
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(5 + 9 / 12, "feet"),
  19364. weight: math.unit(139, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/inca/front.svg",
  19368. extra: 294 / 291,
  19369. bottom: 0.03
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Normal",
  19376. height: math.unit(5 + 9 / 12, "feet"),
  19377. default: true
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(5 + 1 / 12, "feet"),
  19386. weight: math.unit(84, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/magdalene/front.svg",
  19390. extra: 293 / 273
  19391. }
  19392. },
  19393. },
  19394. [
  19395. {
  19396. name: "Normal",
  19397. height: math.unit(5 + 1 / 12, "feet"),
  19398. default: true
  19399. },
  19400. ]
  19401. ))
  19402. characterMakers.push(() => makeCharacter(
  19403. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19404. {
  19405. front: {
  19406. height: math.unit(6 + 3 / 12, "feet"),
  19407. weight: math.unit(185, "lb"),
  19408. name: "Front",
  19409. image: {
  19410. source: "./media/characters/mera/front.svg",
  19411. extra: 291 / 277,
  19412. bottom: 0.03
  19413. }
  19414. },
  19415. },
  19416. [
  19417. {
  19418. name: "Normal",
  19419. height: math.unit(6 + 3 / 12, "feet"),
  19420. default: true
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(6 + 7 / 12, "feet"),
  19429. weight: math.unit(160, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/ceres/front.svg",
  19433. extra: 1023 / 950,
  19434. bottom: 0.027
  19435. }
  19436. },
  19437. back: {
  19438. height: math.unit(6 + 7 / 12, "feet"),
  19439. weight: math.unit(160, "lb"),
  19440. name: "Back",
  19441. image: {
  19442. source: "./media/characters/ceres/back.svg",
  19443. extra: 1023 / 950
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(6 + 7 / 12, "feet"),
  19451. default: true
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19457. {
  19458. front: {
  19459. height: math.unit(5 + 10 / 12, "feet"),
  19460. weight: math.unit(150, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/kris/front.svg",
  19464. extra: 885 / 803,
  19465. bottom: 0.03
  19466. }
  19467. },
  19468. },
  19469. [
  19470. {
  19471. name: "Normal",
  19472. height: math.unit(5 + 10 / 12, "feet"),
  19473. default: true
  19474. },
  19475. ]
  19476. ))
  19477. characterMakers.push(() => makeCharacter(
  19478. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19479. {
  19480. front: {
  19481. height: math.unit(7, "feet"),
  19482. weight: math.unit(120, "kg"),
  19483. name: "Front",
  19484. image: {
  19485. source: "./media/characters/taluthus/front.svg",
  19486. extra: 903 / 833,
  19487. bottom: 0.015
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(7, "feet"),
  19495. default: true
  19496. },
  19497. {
  19498. name: "Macro",
  19499. height: math.unit(300, "feet")
  19500. },
  19501. ]
  19502. ))
  19503. characterMakers.push(() => makeCharacter(
  19504. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19505. {
  19506. front: {
  19507. height: math.unit(5 + 9 / 12, "feet"),
  19508. weight: math.unit(145, "lb"),
  19509. name: "Front",
  19510. image: {
  19511. source: "./media/characters/dawn/front.svg",
  19512. extra: 2094 / 2016,
  19513. bottom: 0.025
  19514. }
  19515. },
  19516. back: {
  19517. height: math.unit(5 + 9 / 12, "feet"),
  19518. weight: math.unit(160, "lb"),
  19519. name: "Back",
  19520. image: {
  19521. source: "./media/characters/dawn/back.svg",
  19522. extra: 2112 / 2080,
  19523. bottom: 0.005
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(6 + 7 / 12, "feet"),
  19531. default: true
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19537. {
  19538. anthro: {
  19539. height: math.unit(8 + 3 / 12, "feet"),
  19540. weight: math.unit(450, "lb"),
  19541. name: "Anthro",
  19542. image: {
  19543. source: "./media/characters/arador/anthro.svg",
  19544. extra: 1835 / 1718,
  19545. bottom: 0.025
  19546. }
  19547. },
  19548. feral: {
  19549. height: math.unit(4, "feet"),
  19550. weight: math.unit(200, "lb"),
  19551. name: "Feral",
  19552. image: {
  19553. source: "./media/characters/arador/feral.svg",
  19554. extra: 1683 / 1514,
  19555. bottom: 0.07
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(8 + 3 / 12, "feet")
  19563. },
  19564. {
  19565. name: "Macro",
  19566. height: math.unit(82.5, "feet"),
  19567. default: true
  19568. },
  19569. ]
  19570. ))
  19571. characterMakers.push(() => makeCharacter(
  19572. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19573. {
  19574. front: {
  19575. height: math.unit(5 + 10 / 12, "feet"),
  19576. weight: math.unit(125, "lb"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/dharsi/front.svg",
  19580. extra: 716 / 630,
  19581. bottom: 0.035
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Nano",
  19588. height: math.unit(100, "nm")
  19589. },
  19590. {
  19591. name: "Micro",
  19592. height: math.unit(2, "inches")
  19593. },
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(5 + 10 / 12, "feet"),
  19597. default: true
  19598. },
  19599. {
  19600. name: "Macro",
  19601. height: math.unit(1000, "feet")
  19602. },
  19603. {
  19604. name: "Megamacro",
  19605. height: math.unit(10, "miles")
  19606. },
  19607. {
  19608. name: "Gigamacro",
  19609. height: math.unit(3000, "miles")
  19610. },
  19611. {
  19612. name: "Teramacro",
  19613. height: math.unit(500000, "miles")
  19614. },
  19615. {
  19616. name: "Teramacro+",
  19617. height: math.unit(30, "galaxies")
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19623. {
  19624. front: {
  19625. height: math.unit(6, "feet"),
  19626. weight: math.unit(150, "lb"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/deathy/front.svg",
  19630. extra: 1552 / 1463,
  19631. bottom: 0.025
  19632. }
  19633. },
  19634. side: {
  19635. height: math.unit(6, "feet"),
  19636. weight: math.unit(150, "lb"),
  19637. name: "Side",
  19638. image: {
  19639. source: "./media/characters/deathy/side.svg",
  19640. extra: 1604 / 1455,
  19641. bottom: 0.025
  19642. }
  19643. },
  19644. back: {
  19645. height: math.unit(6, "feet"),
  19646. weight: math.unit(150, "lb"),
  19647. name: "Back",
  19648. image: {
  19649. source: "./media/characters/deathy/back.svg",
  19650. extra: 1580 / 1463,
  19651. bottom: 0.005
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Micro",
  19658. height: math.unit(5, "millimeters")
  19659. },
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(6 + 5 / 12, "feet"),
  19663. default: true
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19669. {
  19670. front: {
  19671. height: math.unit(16, "feet"),
  19672. weight: math.unit(4000, "lb"),
  19673. name: "Front",
  19674. image: {
  19675. source: "./media/characters/juniper/front.svg",
  19676. bottom: 0.04
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Normal",
  19683. height: math.unit(16, "feet"),
  19684. default: true
  19685. },
  19686. ]
  19687. ))
  19688. characterMakers.push(() => makeCharacter(
  19689. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19690. {
  19691. front: {
  19692. height: math.unit(6, "feet"),
  19693. weight: math.unit(150, "lb"),
  19694. name: "Front",
  19695. image: {
  19696. source: "./media/characters/hipster/front.svg",
  19697. extra: 1312 / 1209,
  19698. bottom: 0.025
  19699. }
  19700. },
  19701. back: {
  19702. height: math.unit(6, "feet"),
  19703. weight: math.unit(150, "lb"),
  19704. name: "Back",
  19705. image: {
  19706. source: "./media/characters/hipster/back.svg",
  19707. extra: 1281 / 1196,
  19708. bottom: 0.01
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Micro",
  19715. height: math.unit(1, "mm")
  19716. },
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(4, "inches"),
  19720. default: true
  19721. },
  19722. {
  19723. name: "Macro",
  19724. height: math.unit(500, "feet")
  19725. },
  19726. {
  19727. name: "Megamacro",
  19728. height: math.unit(1000, "miles")
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19734. {
  19735. front: {
  19736. height: math.unit(6, "feet"),
  19737. weight: math.unit(150, "lb"),
  19738. name: "Front",
  19739. image: {
  19740. source: "./media/characters/tendirmuldr/front.svg",
  19741. extra: 1878 / 1772,
  19742. bottom: 0.015
  19743. }
  19744. },
  19745. },
  19746. [
  19747. {
  19748. name: "Megamacro",
  19749. height: math.unit(1500, "miles"),
  19750. default: true
  19751. },
  19752. ]
  19753. ))
  19754. characterMakers.push(() => makeCharacter(
  19755. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19756. {
  19757. front: {
  19758. height: math.unit(14, "feet"),
  19759. weight: math.unit(12000, "lb"),
  19760. name: "Front",
  19761. image: {
  19762. source: "./media/characters/mort/front.svg",
  19763. extra: 365 / 318,
  19764. bottom: 0.01
  19765. }
  19766. },
  19767. side: {
  19768. height: math.unit(14, "feet"),
  19769. weight: math.unit(12000, "lb"),
  19770. name: "Side",
  19771. image: {
  19772. source: "./media/characters/mort/side.svg",
  19773. extra: 365 / 318,
  19774. bottom: 0.052
  19775. },
  19776. default: true
  19777. },
  19778. back: {
  19779. height: math.unit(14, "feet"),
  19780. weight: math.unit(12000, "lb"),
  19781. name: "Back",
  19782. image: {
  19783. source: "./media/characters/mort/back.svg",
  19784. extra: 371 / 332,
  19785. bottom: 0.18
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(14, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19799. {
  19800. front: {
  19801. height: math.unit(8, "feet"),
  19802. weight: math.unit(1, "ton"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/lycoa/front.svg",
  19806. extra: 1875 / 1789,
  19807. bottom: 0.022
  19808. }
  19809. },
  19810. back: {
  19811. height: math.unit(8, "feet"),
  19812. weight: math.unit(1, "ton"),
  19813. name: "Back",
  19814. image: {
  19815. source: "./media/characters/lycoa/back.svg",
  19816. extra: 1835 / 1781,
  19817. bottom: 0.03
  19818. }
  19819. },
  19820. head: {
  19821. height: math.unit(2.1, "feet"),
  19822. name: "Head",
  19823. image: {
  19824. source: "./media/characters/lycoa/head.svg"
  19825. }
  19826. },
  19827. tailmaw: {
  19828. height: math.unit(1.9, "feet"),
  19829. name: "Tailmaw",
  19830. image: {
  19831. source: "./media/characters/lycoa/tailmaw.svg"
  19832. }
  19833. },
  19834. tentacles: {
  19835. height: math.unit(2.1, "feet"),
  19836. name: "Tentacles",
  19837. image: {
  19838. source: "./media/characters/lycoa/tentacles.svg"
  19839. }
  19840. },
  19841. dick: {
  19842. height: math.unit(1.73, "feet"),
  19843. name: "Dick",
  19844. image: {
  19845. source: "./media/characters/lycoa/dick.svg"
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(8, "feet"),
  19853. default: true
  19854. },
  19855. {
  19856. name: "Macro",
  19857. height: math.unit(30, "feet")
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19863. {
  19864. front: {
  19865. height: math.unit(4 + 2 / 12, "feet"),
  19866. weight: math.unit(70, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/naldara/front.svg",
  19870. extra: 841 / 720,
  19871. bottom: 0.04
  19872. }
  19873. },
  19874. naga: {
  19875. height: math.unit(23, "feet"),
  19876. weight: math.unit(15000, "kg"),
  19877. name: "Naga",
  19878. image: {
  19879. source: "./media/characters/naldara/naga.svg",
  19880. extra: 3290 / 2959,
  19881. bottom: 124 / 3432
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(4 + 2 / 12, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(13 + 7 / 12, "feet"),
  19898. weight: math.unit(1500, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/briar/front.svg",
  19902. extra: 626 / 596,
  19903. bottom: 0.08
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(13 + 7 / 12, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19917. {
  19918. side: {
  19919. height: math.unit(10, "feet"),
  19920. weight: math.unit(500, "lb"),
  19921. name: "Side",
  19922. image: {
  19923. source: "./media/characters/vanguard/side.svg",
  19924. extra: 502 / 425,
  19925. bottom: 0.087
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(10, "feet"),
  19933. default: true
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19939. {
  19940. front: {
  19941. height: math.unit(7.5, "feet"),
  19942. weight: math.unit(2, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/artemis/front.svg",
  19946. extra: 1192 / 1075,
  19947. bottom: 0.07
  19948. }
  19949. },
  19950. frontNsfw: {
  19951. height: math.unit(7.5, "feet"),
  19952. weight: math.unit(2, "lb"),
  19953. name: "Front (NSFW)",
  19954. image: {
  19955. source: "./media/characters/artemis/front-nsfw.svg",
  19956. extra: 1192 / 1075,
  19957. bottom: 0.07
  19958. }
  19959. },
  19960. frontNsfwer: {
  19961. height: math.unit(7.5, "feet"),
  19962. weight: math.unit(2, "lb"),
  19963. name: "Front (NSFW-er)",
  19964. image: {
  19965. source: "./media/characters/artemis/front-nsfwer.svg",
  19966. extra: 1192 / 1075,
  19967. bottom: 0.07
  19968. }
  19969. },
  19970. side: {
  19971. height: math.unit(7.5, "feet"),
  19972. weight: math.unit(2, "lb"),
  19973. name: "Side",
  19974. image: {
  19975. source: "./media/characters/artemis/side.svg",
  19976. extra: 1192 / 1075,
  19977. bottom: 0.07
  19978. }
  19979. },
  19980. sideNsfw: {
  19981. height: math.unit(7.5, "feet"),
  19982. weight: math.unit(2, "lb"),
  19983. name: "Side (NSFW)",
  19984. image: {
  19985. source: "./media/characters/artemis/side-nsfw.svg",
  19986. extra: 1192 / 1075,
  19987. bottom: 0.07
  19988. }
  19989. },
  19990. sideNsfwer: {
  19991. height: math.unit(7.5, "feet"),
  19992. weight: math.unit(2, "lb"),
  19993. name: "Side (NSFW-er)",
  19994. image: {
  19995. source: "./media/characters/artemis/side-nsfwer.svg",
  19996. extra: 1192 / 1075,
  19997. bottom: 0.07
  19998. }
  19999. },
  20000. maw: {
  20001. height: math.unit(1.1, "feet"),
  20002. name: "Maw",
  20003. image: {
  20004. source: "./media/characters/artemis/maw.svg"
  20005. }
  20006. },
  20007. stomach: {
  20008. height: math.unit(0.95, "feet"),
  20009. name: "Stomach",
  20010. image: {
  20011. source: "./media/characters/artemis/stomach.svg"
  20012. }
  20013. },
  20014. dickCanine: {
  20015. height: math.unit(1, "feet"),
  20016. name: "Dick (Canine)",
  20017. image: {
  20018. source: "./media/characters/artemis/dick-canine.svg"
  20019. }
  20020. },
  20021. dickEquine: {
  20022. height: math.unit(0.85, "feet"),
  20023. name: "Dick (Equine)",
  20024. image: {
  20025. source: "./media/characters/artemis/dick-equine.svg"
  20026. }
  20027. },
  20028. dickExotic: {
  20029. height: math.unit(0.85, "feet"),
  20030. name: "Dick (Exotic)",
  20031. image: {
  20032. source: "./media/characters/artemis/dick-exotic.svg"
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Normal",
  20039. height: math.unit(7.5, "feet"),
  20040. default: true
  20041. },
  20042. {
  20043. name: "Enlarged",
  20044. height: math.unit(12, "feet")
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20050. {
  20051. front: {
  20052. height: math.unit(5 + 3 / 12, "feet"),
  20053. weight: math.unit(160, "lb"),
  20054. name: "Front",
  20055. image: {
  20056. source: "./media/characters/kira/front.svg",
  20057. extra: 906 / 786,
  20058. bottom: 0.01
  20059. }
  20060. },
  20061. back: {
  20062. height: math.unit(5 + 3 / 12, "feet"),
  20063. weight: math.unit(160, "lb"),
  20064. name: "Back",
  20065. image: {
  20066. source: "./media/characters/kira/back.svg",
  20067. extra: 882 / 757,
  20068. bottom: 0.005
  20069. }
  20070. },
  20071. frontDressed: {
  20072. height: math.unit(5 + 3 / 12, "feet"),
  20073. weight: math.unit(160, "lb"),
  20074. name: "Front (Dressed)",
  20075. image: {
  20076. source: "./media/characters/kira/front-dressed.svg",
  20077. extra: 906 / 786,
  20078. bottom: 0.01
  20079. }
  20080. },
  20081. beans: {
  20082. height: math.unit(0.92, "feet"),
  20083. name: "Beans",
  20084. image: {
  20085. source: "./media/characters/kira/beans.svg"
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(5 + 3 / 12, "feet"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(5 + 4 / 12, "feet"),
  20102. weight: math.unit(145, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/scramble/front.svg",
  20106. extra: 763 / 727,
  20107. bottom: 0.05
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(5 + 4 / 12, "feet"),
  20112. weight: math.unit(145, "lb"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/scramble/back.svg",
  20116. extra: 826 / 737,
  20117. bottom: 0.002
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(5 + 4 / 12, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20131. {
  20132. side: {
  20133. height: math.unit(6 + 2 / 12, "feet"),
  20134. weight: math.unit(190, "lb"),
  20135. name: "Side",
  20136. image: {
  20137. source: "./media/characters/biscuit/side.svg",
  20138. extra: 858 / 791,
  20139. bottom: 0.044
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(6 + 2 / 12, "feet"),
  20147. default: true
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(5 + 2 / 12, "feet"),
  20156. weight: math.unit(120, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/poffin/front.svg",
  20160. extra: 786 / 680,
  20161. bottom: 0.005
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(5 + 2 / 12, "feet"),
  20169. default: true
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20175. {
  20176. front: {
  20177. height: math.unit(6 + 3 / 12, "feet"),
  20178. weight: math.unit(519, "lb"),
  20179. name: "Front",
  20180. image: {
  20181. source: "./media/characters/dhari/front.svg",
  20182. extra: 1048 / 946,
  20183. bottom: 0.015
  20184. }
  20185. },
  20186. back: {
  20187. height: math.unit(6 + 3 / 12, "feet"),
  20188. weight: math.unit(519, "lb"),
  20189. name: "Back",
  20190. image: {
  20191. source: "./media/characters/dhari/back.svg",
  20192. extra: 1048 / 931,
  20193. bottom: 0.005
  20194. }
  20195. },
  20196. frontDressed: {
  20197. height: math.unit(6 + 3 / 12, "feet"),
  20198. weight: math.unit(519, "lb"),
  20199. name: "Front (Dressed)",
  20200. image: {
  20201. source: "./media/characters/dhari/front-dressed.svg",
  20202. extra: 1713 / 1546,
  20203. bottom: 0.02
  20204. }
  20205. },
  20206. backDressed: {
  20207. height: math.unit(6 + 3 / 12, "feet"),
  20208. weight: math.unit(519, "lb"),
  20209. name: "Back (Dressed)",
  20210. image: {
  20211. source: "./media/characters/dhari/back-dressed.svg",
  20212. extra: 1699 / 1537,
  20213. bottom: 0.01
  20214. }
  20215. },
  20216. maw: {
  20217. height: math.unit(0.95, "feet"),
  20218. name: "Maw",
  20219. image: {
  20220. source: "./media/characters/dhari/maw.svg"
  20221. }
  20222. },
  20223. wereFront: {
  20224. height: math.unit(12 + 8 / 12, "feet"),
  20225. weight: math.unit(4000, "lb"),
  20226. name: "Front (Were)",
  20227. image: {
  20228. source: "./media/characters/dhari/were-front.svg",
  20229. extra: 1065 / 969,
  20230. bottom: 0.015
  20231. }
  20232. },
  20233. wereBack: {
  20234. height: math.unit(12 + 8 / 12, "feet"),
  20235. weight: math.unit(4000, "lb"),
  20236. name: "Back (Were)",
  20237. image: {
  20238. source: "./media/characters/dhari/were-back.svg",
  20239. extra: 1065 / 969,
  20240. bottom: 0.012
  20241. }
  20242. },
  20243. wereMaw: {
  20244. height: math.unit(0.625, "meters"),
  20245. name: "Maw (Were)",
  20246. image: {
  20247. source: "./media/characters/dhari/were-maw.svg"
  20248. }
  20249. },
  20250. },
  20251. [
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(6 + 3 / 12, "feet"),
  20255. default: true
  20256. },
  20257. ]
  20258. ))
  20259. characterMakers.push(() => makeCharacter(
  20260. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20261. {
  20262. anthro: {
  20263. height: math.unit(5 + 7 / 12, "feet"),
  20264. weight: math.unit(175, "lb"),
  20265. name: "Anthro",
  20266. image: {
  20267. source: "./media/characters/rena-dyne/anthro.svg",
  20268. extra: 1849 / 1785,
  20269. bottom: 0.005
  20270. }
  20271. },
  20272. taur: {
  20273. height: math.unit(15 + 6 / 12, "feet"),
  20274. weight: math.unit(8000, "lb"),
  20275. name: "Taur",
  20276. image: {
  20277. source: "./media/characters/rena-dyne/taur.svg",
  20278. extra: 2315 / 2234,
  20279. bottom: 0.033
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Normal",
  20286. height: math.unit(5 + 7 / 12, "feet"),
  20287. default: true
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20293. {
  20294. front: {
  20295. height: math.unit(8, "feet"),
  20296. weight: math.unit(600, "lb"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/weremeep/front.svg",
  20300. extra: 967 / 862,
  20301. bottom: 0.01
  20302. }
  20303. },
  20304. },
  20305. [
  20306. {
  20307. name: "Normal",
  20308. height: math.unit(8, "feet"),
  20309. default: true
  20310. },
  20311. {
  20312. name: "Lorg",
  20313. height: math.unit(12, "feet")
  20314. },
  20315. {
  20316. name: "Oh Lawd She Comin'",
  20317. height: math.unit(20, "feet")
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20323. {
  20324. front: {
  20325. height: math.unit(4, "feet"),
  20326. weight: math.unit(90, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/reza/front.svg",
  20330. extra: 1183 / 1111,
  20331. bottom: 0.017
  20332. }
  20333. },
  20334. back: {
  20335. height: math.unit(4, "feet"),
  20336. weight: math.unit(90, "lb"),
  20337. name: "Back",
  20338. image: {
  20339. source: "./media/characters/reza/back.svg",
  20340. extra: 1183 / 1111,
  20341. bottom: 0.01
  20342. }
  20343. },
  20344. drake: {
  20345. height: math.unit(30, "feet"),
  20346. weight: math.unit(246960, "lb"),
  20347. name: "Drake",
  20348. image: {
  20349. source: "./media/characters/reza/drake.svg",
  20350. extra: 2350 / 2024,
  20351. bottom: 60.7 / 2403
  20352. }
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Normal",
  20358. height: math.unit(4, "feet"),
  20359. default: true
  20360. },
  20361. ]
  20362. ))
  20363. characterMakers.push(() => makeCharacter(
  20364. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20365. {
  20366. side: {
  20367. height: math.unit(15, "feet"),
  20368. weight: math.unit(14, "tons"),
  20369. name: "Side",
  20370. image: {
  20371. source: "./media/characters/athea/side.svg",
  20372. extra: 960 / 540,
  20373. bottom: 0.003
  20374. }
  20375. },
  20376. sitting: {
  20377. height: math.unit(6 * 2.85, "feet"),
  20378. weight: math.unit(14, "tons"),
  20379. name: "Sitting",
  20380. image: {
  20381. source: "./media/characters/athea/sitting.svg",
  20382. extra: 621 / 581,
  20383. bottom: 0.075
  20384. }
  20385. },
  20386. maw: {
  20387. height: math.unit(7.59498031496063, "feet"),
  20388. name: "Maw",
  20389. image: {
  20390. source: "./media/characters/athea/maw.svg"
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Lap Cat",
  20397. height: math.unit(2.5, "feet")
  20398. },
  20399. {
  20400. name: "Minimacro",
  20401. height: math.unit(15, "feet"),
  20402. default: true
  20403. },
  20404. {
  20405. name: "Macro",
  20406. height: math.unit(120, "feet")
  20407. },
  20408. {
  20409. name: "Macro+",
  20410. height: math.unit(640, "feet")
  20411. },
  20412. {
  20413. name: "Colossus",
  20414. height: math.unit(2.2, "miles")
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20420. {
  20421. front: {
  20422. height: math.unit(8 + 8 / 12, "feet"),
  20423. weight: math.unit(130, "kg"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/seroko/front.svg",
  20427. extra: 1385 / 1280,
  20428. bottom: 0.025
  20429. }
  20430. },
  20431. back: {
  20432. height: math.unit(8 + 8 / 12, "feet"),
  20433. weight: math.unit(130, "kg"),
  20434. name: "Back",
  20435. image: {
  20436. source: "./media/characters/seroko/back.svg",
  20437. extra: 1369 / 1238,
  20438. bottom: 0.018
  20439. }
  20440. },
  20441. frontDressed: {
  20442. height: math.unit(8 + 8 / 12, "feet"),
  20443. weight: math.unit(130, "kg"),
  20444. name: "Front (Dressed)",
  20445. image: {
  20446. source: "./media/characters/seroko/front-dressed.svg",
  20447. extra: 1366 / 1275,
  20448. bottom: 0.03
  20449. }
  20450. },
  20451. },
  20452. [
  20453. {
  20454. name: "Normal",
  20455. height: math.unit(8 + 8 / 12, "feet"),
  20456. default: true
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20462. {
  20463. front: {
  20464. height: math.unit(5.5, "feet"),
  20465. weight: math.unit(160, "lb"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/quatzi/front.svg",
  20469. extra: 2346 / 2242,
  20470. bottom: 0.015
  20471. }
  20472. },
  20473. },
  20474. [
  20475. {
  20476. name: "Normal",
  20477. height: math.unit(5.5, "feet"),
  20478. default: true
  20479. },
  20480. {
  20481. name: "Big",
  20482. height: math.unit(7.7, "feet")
  20483. },
  20484. ]
  20485. ))
  20486. characterMakers.push(() => makeCharacter(
  20487. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20488. {
  20489. front: {
  20490. height: math.unit(5 + 11 / 12, "feet"),
  20491. weight: math.unit(180, "lb"),
  20492. name: "Front",
  20493. image: {
  20494. source: "./media/characters/sen/front.svg",
  20495. extra: 1321 / 1254,
  20496. bottom: 0.015
  20497. }
  20498. },
  20499. side: {
  20500. height: math.unit(5 + 11 / 12, "feet"),
  20501. weight: math.unit(180, "lb"),
  20502. name: "Side",
  20503. image: {
  20504. source: "./media/characters/sen/side.svg",
  20505. extra: 1321 / 1254,
  20506. bottom: 0.007
  20507. }
  20508. },
  20509. back: {
  20510. height: math.unit(5 + 11 / 12, "feet"),
  20511. weight: math.unit(180, "lb"),
  20512. name: "Back",
  20513. image: {
  20514. source: "./media/characters/sen/back.svg",
  20515. extra: 1321 / 1254
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(5 + 11 / 12, "feet"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(166.6, "cm"),
  20532. weight: math.unit(66.6, "kg"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/fruity/front.svg",
  20536. extra: 1510 / 1386,
  20537. bottom: 0.04
  20538. }
  20539. },
  20540. back: {
  20541. height: math.unit(166.6, "cm"),
  20542. weight: math.unit(66.6, "lb"),
  20543. name: "Back",
  20544. image: {
  20545. source: "./media/characters/fruity/back.svg",
  20546. extra: 1563 / 1435,
  20547. bottom: 0.005
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(166.6, "cm"),
  20555. default: true
  20556. },
  20557. {
  20558. name: "Demonic",
  20559. height: math.unit(166.6, "feet")
  20560. },
  20561. ]
  20562. ))
  20563. characterMakers.push(() => makeCharacter(
  20564. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20565. {
  20566. side: {
  20567. height: math.unit(10, "feet"),
  20568. weight: math.unit(500, "lb"),
  20569. name: "Side",
  20570. image: {
  20571. source: "./media/characters/zost/side.svg",
  20572. extra: 966 / 880,
  20573. bottom: 0.075
  20574. }
  20575. },
  20576. mawFront: {
  20577. height: math.unit(1.08, "meters"),
  20578. name: "Maw (Front)",
  20579. image: {
  20580. source: "./media/characters/zost/maw-front.svg"
  20581. }
  20582. },
  20583. mawSide: {
  20584. height: math.unit(2.66, "feet"),
  20585. name: "Maw (Side)",
  20586. image: {
  20587. source: "./media/characters/zost/maw-side.svg"
  20588. }
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(10, "feet"),
  20595. default: true
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20601. {
  20602. front: {
  20603. height: math.unit(5 + 4 / 12, "feet"),
  20604. weight: math.unit(120, "lb"),
  20605. name: "Front",
  20606. image: {
  20607. source: "./media/characters/luci/front.svg",
  20608. extra: 1985 / 1884,
  20609. bottom: 0.04
  20610. }
  20611. },
  20612. back: {
  20613. height: math.unit(5 + 4 / 12, "feet"),
  20614. weight: math.unit(120, "lb"),
  20615. name: "Back",
  20616. image: {
  20617. source: "./media/characters/luci/back.svg",
  20618. extra: 1892 / 1791,
  20619. bottom: 0.002
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(5 + 4 / 12, "feet"),
  20627. default: true
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20633. {
  20634. front: {
  20635. height: math.unit(1500, "feet"),
  20636. weight: math.unit(3.8e6, "tons"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/2th/front.svg",
  20640. extra: 3489 / 3350,
  20641. bottom: 0.1
  20642. }
  20643. },
  20644. foot: {
  20645. height: math.unit(461, "feet"),
  20646. name: "Foot",
  20647. image: {
  20648. source: "./media/characters/2th/foot.svg"
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "\"Micro\"",
  20655. height: math.unit(15 + 7 / 12, "feet")
  20656. },
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(1500, "feet"),
  20660. default: true
  20661. },
  20662. {
  20663. name: "Macro",
  20664. height: math.unit(5000, "feet")
  20665. },
  20666. {
  20667. name: "Megamacro",
  20668. height: math.unit(15, "miles")
  20669. },
  20670. {
  20671. name: "Gigamacro",
  20672. height: math.unit(4000, "miles")
  20673. },
  20674. {
  20675. name: "Galactic",
  20676. height: math.unit(50, "AU")
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20682. {
  20683. front: {
  20684. height: math.unit(5 + 6 / 12, "feet"),
  20685. weight: math.unit(220, "lb"),
  20686. name: "Front",
  20687. image: {
  20688. source: "./media/characters/amethyst/front.svg",
  20689. extra: 2078 / 2040,
  20690. bottom: 0.045
  20691. }
  20692. },
  20693. back: {
  20694. height: math.unit(5 + 6 / 12, "feet"),
  20695. weight: math.unit(220, "lb"),
  20696. name: "Back",
  20697. image: {
  20698. source: "./media/characters/amethyst/back.svg",
  20699. extra: 2021 / 1989,
  20700. bottom: 0.02
  20701. }
  20702. },
  20703. },
  20704. [
  20705. {
  20706. name: "Normal",
  20707. height: math.unit(5 + 6 / 12, "feet"),
  20708. default: true
  20709. },
  20710. ]
  20711. ))
  20712. characterMakers.push(() => makeCharacter(
  20713. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20714. {
  20715. front: {
  20716. height: math.unit(4 + 11 / 12, "feet"),
  20717. weight: math.unit(120, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/yumi-akiyama/front.svg",
  20721. extra: 1327 / 1235,
  20722. bottom: 0.02
  20723. }
  20724. },
  20725. back: {
  20726. height: math.unit(4 + 11 / 12, "feet"),
  20727. weight: math.unit(120, "lb"),
  20728. name: "Back",
  20729. image: {
  20730. source: "./media/characters/yumi-akiyama/back.svg",
  20731. extra: 1287 / 1245,
  20732. bottom: 0.002
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Galactic",
  20739. height: math.unit(50, "galaxies"),
  20740. default: true
  20741. },
  20742. {
  20743. name: "Universal",
  20744. height: math.unit(100, "universes")
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20750. {
  20751. front: {
  20752. height: math.unit(8, "feet"),
  20753. weight: math.unit(500, "lb"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/rifter-yrmori/front.svg",
  20757. extra: 1180 / 1125,
  20758. bottom: 0.02
  20759. }
  20760. },
  20761. back: {
  20762. height: math.unit(8, "feet"),
  20763. weight: math.unit(500, "lb"),
  20764. name: "Back",
  20765. image: {
  20766. source: "./media/characters/rifter-yrmori/back.svg",
  20767. extra: 1190 / 1145,
  20768. bottom: 0.001
  20769. }
  20770. },
  20771. wings: {
  20772. height: math.unit(7.75, "feet"),
  20773. weight: math.unit(500, "lb"),
  20774. name: "Wings",
  20775. image: {
  20776. source: "./media/characters/rifter-yrmori/wings.svg",
  20777. extra: 1357 / 1285
  20778. }
  20779. },
  20780. maw: {
  20781. height: math.unit(0.8, "feet"),
  20782. name: "Maw",
  20783. image: {
  20784. source: "./media/characters/rifter-yrmori/maw.svg"
  20785. }
  20786. },
  20787. mawfront: {
  20788. height: math.unit(1.45, "feet"),
  20789. name: "Maw (Front)",
  20790. image: {
  20791. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20792. }
  20793. },
  20794. },
  20795. [
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(8, "feet"),
  20799. default: true
  20800. },
  20801. {
  20802. name: "Macro",
  20803. height: math.unit(42, "meters")
  20804. },
  20805. ]
  20806. ))
  20807. characterMakers.push(() => makeCharacter(
  20808. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20809. {
  20810. were: {
  20811. height: math.unit(25 + 6 / 12, "feet"),
  20812. weight: math.unit(10000, "lb"),
  20813. name: "Were",
  20814. image: {
  20815. source: "./media/characters/tahajin/were.svg",
  20816. extra: 801 / 770,
  20817. bottom: 0.042
  20818. }
  20819. },
  20820. aquatic: {
  20821. height: math.unit(6 + 4 / 12, "feet"),
  20822. weight: math.unit(160, "lb"),
  20823. name: "Aquatic",
  20824. image: {
  20825. source: "./media/characters/tahajin/aquatic.svg",
  20826. extra: 572 / 542,
  20827. bottom: 0.04
  20828. }
  20829. },
  20830. chow: {
  20831. height: math.unit(8 + 11 / 12, "feet"),
  20832. weight: math.unit(450, "lb"),
  20833. name: "Chow",
  20834. image: {
  20835. source: "./media/characters/tahajin/chow.svg",
  20836. extra: 660 / 640,
  20837. bottom: 0.015
  20838. }
  20839. },
  20840. demiNaga: {
  20841. height: math.unit(6 + 8 / 12, "feet"),
  20842. weight: math.unit(300, "lb"),
  20843. name: "Demi Naga",
  20844. image: {
  20845. source: "./media/characters/tahajin/demi-naga.svg",
  20846. extra: 643 / 615,
  20847. bottom: 0.1
  20848. }
  20849. },
  20850. data: {
  20851. height: math.unit(5, "inches"),
  20852. weight: math.unit(0.1, "lb"),
  20853. name: "Data",
  20854. image: {
  20855. source: "./media/characters/tahajin/data.svg"
  20856. }
  20857. },
  20858. fluu: {
  20859. height: math.unit(5 + 7 / 12, "feet"),
  20860. weight: math.unit(140, "lb"),
  20861. name: "Fluu",
  20862. image: {
  20863. source: "./media/characters/tahajin/fluu.svg",
  20864. extra: 628 / 592,
  20865. bottom: 0.02
  20866. }
  20867. },
  20868. starWarrior: {
  20869. height: math.unit(4 + 5 / 12, "feet"),
  20870. weight: math.unit(50, "lb"),
  20871. name: "Star Warrior",
  20872. image: {
  20873. source: "./media/characters/tahajin/star-warrior.svg"
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(25 + 6 / 12, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20887. {
  20888. front: {
  20889. height: math.unit(8, "feet"),
  20890. weight: math.unit(350, "lb"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/gabira/front.svg",
  20894. extra: 608 / 580,
  20895. bottom: 0.03
  20896. }
  20897. },
  20898. back: {
  20899. height: math.unit(8, "feet"),
  20900. weight: math.unit(350, "lb"),
  20901. name: "Back",
  20902. image: {
  20903. source: "./media/characters/gabira/back.svg",
  20904. extra: 608 / 580,
  20905. bottom: 0.03
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(8, "feet"),
  20913. default: true
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20919. {
  20920. front: {
  20921. height: math.unit(5 + 3 / 12, "feet"),
  20922. weight: math.unit(137, "lb"),
  20923. name: "Front",
  20924. image: {
  20925. source: "./media/characters/sasha-katraine/front.svg",
  20926. bottom: 0.045
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Micro",
  20933. height: math.unit(5, "inches")
  20934. },
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(5 + 3 / 12, "feet"),
  20938. default: true
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20944. {
  20945. side: {
  20946. height: math.unit(4, "inches"),
  20947. weight: math.unit(200, "grams"),
  20948. name: "Side",
  20949. image: {
  20950. source: "./media/characters/der/side.svg",
  20951. extra: 719 / 400,
  20952. bottom: 30.6 / 749.9187
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Micro",
  20959. height: math.unit(4, "inches"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20966. {
  20967. side: {
  20968. height: math.unit(30, "meters"),
  20969. weight: math.unit(700, "tonnes"),
  20970. name: "Side",
  20971. image: {
  20972. source: "./media/characters/fixerdragon/side.svg",
  20973. extra: (1293.0514 - 116.03) / 1106.86,
  20974. bottom: 116.03 / 1293.0514
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Planck",
  20981. height: math.unit(1.6e-35, "meters")
  20982. },
  20983. {
  20984. name: "Micro",
  20985. height: math.unit(0.4, "meters")
  20986. },
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(30, "meters"),
  20990. default: true
  20991. },
  20992. {
  20993. name: "Megamacro",
  20994. height: math.unit(1.2, "megameters")
  20995. },
  20996. {
  20997. name: "Teramacro",
  20998. height: math.unit(130, "terameters")
  20999. },
  21000. {
  21001. name: "Yottamacro",
  21002. height: math.unit(6200, "yottameters")
  21003. },
  21004. ]
  21005. ));
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21008. {
  21009. front: {
  21010. height: math.unit(8, "feet"),
  21011. weight: math.unit(250, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/kite/front.svg",
  21015. extra: 2796 / 2659,
  21016. bottom: 0.002
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(8, "feet"),
  21024. default: true
  21025. },
  21026. {
  21027. name: "Macro",
  21028. height: math.unit(360, "feet")
  21029. },
  21030. {
  21031. name: "Megamacro",
  21032. height: math.unit(1500, "feet")
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21038. {
  21039. front: {
  21040. height: math.unit(5 + 10 / 12, "feet"),
  21041. weight: math.unit(150, "lb"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/poojawa-vynar/front.svg",
  21045. extra: (1506.1547 - 55) / 1356.6,
  21046. bottom: 55 / 1506.1547
  21047. }
  21048. },
  21049. frontTailless: {
  21050. height: math.unit(5 + 10 / 12, "feet"),
  21051. weight: math.unit(150, "lb"),
  21052. name: "Front (Tailless)",
  21053. image: {
  21054. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21055. extra: (1506.1547 - 55) / 1356.6,
  21056. bottom: 55 / 1506.1547
  21057. }
  21058. },
  21059. },
  21060. [
  21061. {
  21062. name: "Normal",
  21063. height: math.unit(5 + 10 / 12, "feet"),
  21064. default: true
  21065. },
  21066. ]
  21067. ))
  21068. characterMakers.push(() => makeCharacter(
  21069. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21070. {
  21071. front: {
  21072. height: math.unit(293, "meters"),
  21073. weight: math.unit(70400, "tons"),
  21074. name: "Front",
  21075. image: {
  21076. source: "./media/characters/violette/front.svg",
  21077. extra: 1227 / 1180,
  21078. bottom: 0.005
  21079. }
  21080. },
  21081. back: {
  21082. height: math.unit(293, "meters"),
  21083. weight: math.unit(70400, "tons"),
  21084. name: "Back",
  21085. image: {
  21086. source: "./media/characters/violette/back.svg",
  21087. extra: 1227 / 1180,
  21088. bottom: 0.005
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Macro",
  21095. height: math.unit(293, "meters"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(1050, "feet"),
  21105. weight: math.unit(200000, "tons"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/alessandra/front.svg",
  21109. extra: 960 / 912,
  21110. bottom: 0.06
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Macro",
  21117. height: math.unit(1050, "feet")
  21118. },
  21119. {
  21120. name: "Macro+",
  21121. height: math.unit(900, "meters"),
  21122. default: true
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(5, "feet"),
  21131. weight: math.unit(187, "lb"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/person/front.svg",
  21135. extra: 3087 / 2945,
  21136. bottom: 91 / 3181
  21137. }
  21138. },
  21139. },
  21140. [
  21141. {
  21142. name: "Micro",
  21143. height: math.unit(3, "inches")
  21144. },
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(5, "feet"),
  21148. default: true
  21149. },
  21150. {
  21151. name: "Macro",
  21152. height: math.unit(90, "feet")
  21153. },
  21154. {
  21155. name: "Max Size",
  21156. height: math.unit(280, "feet")
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(4.5, "meters"),
  21165. weight: math.unit(3200, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/ty/front.svg",
  21169. extra: 1038 / 960,
  21170. bottom: 31.156 / 1068
  21171. }
  21172. },
  21173. back: {
  21174. height: math.unit(4.5, "meters"),
  21175. weight: math.unit(3200, "lb"),
  21176. name: "Back",
  21177. image: {
  21178. source: "./media/characters/ty/back.svg",
  21179. extra: 1044 / 966,
  21180. bottom: 7.48 / 1049
  21181. }
  21182. },
  21183. },
  21184. [
  21185. {
  21186. name: "Normal",
  21187. height: math.unit(4.5, "meters"),
  21188. default: true
  21189. },
  21190. ]
  21191. ))
  21192. characterMakers.push(() => makeCharacter(
  21193. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21194. {
  21195. front: {
  21196. height: math.unit(5 + 4 / 12, "feet"),
  21197. weight: math.unit(115, "lb"),
  21198. name: "Front",
  21199. image: {
  21200. source: "./media/characters/rocky/front.svg",
  21201. extra: 1012 / 975,
  21202. bottom: 54 / 1066
  21203. }
  21204. },
  21205. },
  21206. [
  21207. {
  21208. name: "Normal",
  21209. height: math.unit(5 + 4 / 12, "feet"),
  21210. default: true
  21211. },
  21212. ]
  21213. ))
  21214. characterMakers.push(() => makeCharacter(
  21215. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21216. {
  21217. upright: {
  21218. height: math.unit(6, "meters"),
  21219. weight: math.unit(4000, "kg"),
  21220. name: "Upright",
  21221. image: {
  21222. source: "./media/characters/ruin/upright.svg",
  21223. extra: 668 / 661,
  21224. bottom: 42 / 799.8396
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Normal",
  21231. height: math.unit(6, "meters"),
  21232. default: true
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(5, "feet"),
  21241. weight: math.unit(106, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/robin/front.svg",
  21245. extra: 862 / 799,
  21246. bottom: 42.4 / 914.8856
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(5, "feet"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21260. {
  21261. side: {
  21262. height: math.unit(3, "feet"),
  21263. weight: math.unit(225, "lb"),
  21264. name: "Side",
  21265. image: {
  21266. source: "./media/characters/saian/side.svg",
  21267. extra: 566 / 356,
  21268. bottom: 79.7 / 643
  21269. }
  21270. },
  21271. maw: {
  21272. height: math.unit(2.85, "feet"),
  21273. name: "Maw",
  21274. image: {
  21275. source: "./media/characters/saian/maw.svg"
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(3, "feet"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21289. {
  21290. side: {
  21291. height: math.unit(8, "feet"),
  21292. weight: math.unit(300, "lb"),
  21293. name: "Side",
  21294. image: {
  21295. source: "./media/characters/equus-silvermane/side.svg",
  21296. extra: 2176 / 2050,
  21297. bottom: 65.7 / 2245
  21298. }
  21299. },
  21300. front: {
  21301. height: math.unit(8, "feet"),
  21302. weight: math.unit(300, "lb"),
  21303. name: "Front",
  21304. image: {
  21305. source: "./media/characters/equus-silvermane/front.svg",
  21306. extra: 4633 / 4400,
  21307. bottom: 71.3 / 4706.915
  21308. }
  21309. },
  21310. sideStepping: {
  21311. height: math.unit(8, "feet"),
  21312. weight: math.unit(300, "lb"),
  21313. name: "Side (Stepping)",
  21314. image: {
  21315. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21316. extra: 1968 / 1860,
  21317. bottom: 16.4 / 1989
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(8, "feet")
  21325. },
  21326. {
  21327. name: "Minimacro",
  21328. height: math.unit(75, "feet"),
  21329. default: true
  21330. },
  21331. {
  21332. name: "Macro",
  21333. height: math.unit(150, "feet")
  21334. },
  21335. {
  21336. name: "Macro+",
  21337. height: math.unit(1000, "feet")
  21338. },
  21339. {
  21340. name: "Megamacro",
  21341. height: math.unit(1, "mile")
  21342. },
  21343. ]
  21344. ))
  21345. characterMakers.push(() => makeCharacter(
  21346. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21347. {
  21348. side: {
  21349. height: math.unit(20, "feet"),
  21350. weight: math.unit(30000, "kg"),
  21351. name: "Side",
  21352. image: {
  21353. source: "./media/characters/windar/side.svg",
  21354. extra: 1491 / 1248,
  21355. bottom: 82.56 / 1568
  21356. }
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(20, "feet"),
  21363. default: true
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21369. {
  21370. side: {
  21371. height: math.unit(15.66, "feet"),
  21372. weight: math.unit(150, "lb"),
  21373. name: "Side",
  21374. image: {
  21375. source: "./media/characters/melody/side.svg",
  21376. extra: 1097 / 944,
  21377. bottom: 11.8 / 1109
  21378. }
  21379. },
  21380. sideOutfit: {
  21381. height: math.unit(15.66, "feet"),
  21382. weight: math.unit(150, "lb"),
  21383. name: "Side (Outfit)",
  21384. image: {
  21385. source: "./media/characters/melody/side-outfit.svg",
  21386. extra: 1097 / 944,
  21387. bottom: 11.8 / 1109
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(15.66, "feet"),
  21395. default: true
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21401. {
  21402. front: {
  21403. height: math.unit(8, "feet"),
  21404. weight: math.unit(325, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/windera/front.svg",
  21408. extra: 3180 / 2845,
  21409. bottom: 178 / 3365
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(8, "feet"),
  21417. default: true
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21423. {
  21424. front: {
  21425. height: math.unit(28.75, "feet"),
  21426. weight: math.unit(2000, "kg"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/sonear/front.svg",
  21430. extra: 1041.1 / 964.9,
  21431. bottom: 53.7 / 1096.6
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(28.75, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21445. {
  21446. side: {
  21447. height: math.unit(25.5, "feet"),
  21448. weight: math.unit(23000, "kg"),
  21449. name: "Side",
  21450. image: {
  21451. source: "./media/characters/kanara/side.svg"
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(25.5, "feet"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21465. {
  21466. side: {
  21467. height: math.unit(10, "feet"),
  21468. weight: math.unit(1000, "kg"),
  21469. name: "Side",
  21470. image: {
  21471. source: "./media/characters/ereus/side.svg",
  21472. extra: 1157 / 959,
  21473. bottom: 153 / 1312.5
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Normal",
  21480. height: math.unit(10, "feet"),
  21481. default: true
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21487. {
  21488. side: {
  21489. height: math.unit(4.5, "feet"),
  21490. weight: math.unit(500, "lb"),
  21491. name: "Side",
  21492. image: {
  21493. source: "./media/characters/e-ter/side.svg",
  21494. extra: 1550 / 1248,
  21495. bottom: 146 / 1694
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(4.5, "feet"),
  21503. default: true
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21509. {
  21510. side: {
  21511. height: math.unit(9.7, "feet"),
  21512. weight: math.unit(4000, "kg"),
  21513. name: "Side",
  21514. image: {
  21515. source: "./media/characters/yamie/side.svg"
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(9.7, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(50, "feet"),
  21532. weight: math.unit(50000, "kg"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/anders/front.svg",
  21536. extra: 570 / 539,
  21537. bottom: 14.7 / 586.7
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Large",
  21544. height: math.unit(50, "feet")
  21545. },
  21546. {
  21547. name: "Macro",
  21548. height: math.unit(2000, "feet"),
  21549. default: true
  21550. },
  21551. {
  21552. name: "Megamacro",
  21553. height: math.unit(12, "miles")
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21559. {
  21560. front: {
  21561. height: math.unit(7 + 2 / 12, "feet"),
  21562. weight: math.unit(300, "lb"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/reban/front.svg",
  21566. extra: 516 / 487,
  21567. bottom: 42.82 / 558.356
  21568. }
  21569. },
  21570. dick: {
  21571. height: math.unit(7 / 5, "feet"),
  21572. name: "Dick",
  21573. image: {
  21574. source: "./media/characters/reban/dick.svg"
  21575. }
  21576. },
  21577. },
  21578. [
  21579. {
  21580. name: "Natural Height",
  21581. height: math.unit(7 + 2 / 12, "feet")
  21582. },
  21583. {
  21584. name: "Macro",
  21585. height: math.unit(500, "feet"),
  21586. default: true
  21587. },
  21588. {
  21589. name: "Canon Height",
  21590. height: math.unit(50, "AU")
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(6, "feet"),
  21599. weight: math.unit(150, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/terrance-keayes/front.svg",
  21603. extra: 1.005,
  21604. bottom: 151 / 1615
  21605. }
  21606. },
  21607. side: {
  21608. height: math.unit(6, "feet"),
  21609. weight: math.unit(150, "lb"),
  21610. name: "Side",
  21611. image: {
  21612. source: "./media/characters/terrance-keayes/side.svg",
  21613. extra: 1.005,
  21614. bottom: 129.4 / 1544
  21615. }
  21616. },
  21617. back: {
  21618. height: math.unit(6, "feet"),
  21619. weight: math.unit(150, "lb"),
  21620. name: "Back",
  21621. image: {
  21622. source: "./media/characters/terrance-keayes/back.svg",
  21623. extra: 1.005,
  21624. bottom: 58.4 / 1557.3
  21625. }
  21626. },
  21627. dick: {
  21628. height: math.unit(6 * 0.208, "feet"),
  21629. name: "Dick",
  21630. image: {
  21631. source: "./media/characters/terrance-keayes/dick.svg"
  21632. }
  21633. },
  21634. },
  21635. [
  21636. {
  21637. name: "Canon Height",
  21638. height: math.unit(35, "miles"),
  21639. default: true
  21640. },
  21641. ]
  21642. ))
  21643. characterMakers.push(() => makeCharacter(
  21644. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21645. {
  21646. front: {
  21647. height: math.unit(6, "feet"),
  21648. weight: math.unit(150, "lb"),
  21649. name: "Front",
  21650. image: {
  21651. source: "./media/characters/ofelia/front.svg",
  21652. extra: 546 / 541,
  21653. bottom: 39 / 583
  21654. }
  21655. },
  21656. back: {
  21657. height: math.unit(6, "feet"),
  21658. weight: math.unit(150, "lb"),
  21659. name: "Back",
  21660. image: {
  21661. source: "./media/characters/ofelia/back.svg",
  21662. extra: 564 / 559.5,
  21663. bottom: 8.69 / 573.02
  21664. }
  21665. },
  21666. maw: {
  21667. height: math.unit(1, "feet"),
  21668. name: "Maw",
  21669. image: {
  21670. source: "./media/characters/ofelia/maw.svg"
  21671. }
  21672. },
  21673. foot: {
  21674. height: math.unit(1.949, "feet"),
  21675. name: "Foot",
  21676. image: {
  21677. source: "./media/characters/ofelia/foot.svg"
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Canon Height",
  21684. height: math.unit(2000, "miles"),
  21685. default: true
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21691. {
  21692. front: {
  21693. height: math.unit(6, "feet"),
  21694. weight: math.unit(150, "lb"),
  21695. name: "Front",
  21696. image: {
  21697. source: "./media/characters/samuel/front.svg",
  21698. extra: 265 / 258,
  21699. bottom: 2 / 266.1566
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Macro",
  21706. height: math.unit(100, "feet"),
  21707. default: true
  21708. },
  21709. {
  21710. name: "Full Size",
  21711. height: math.unit(1000, "miles")
  21712. },
  21713. ]
  21714. ))
  21715. characterMakers.push(() => makeCharacter(
  21716. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21717. {
  21718. front: {
  21719. height: math.unit(6, "feet"),
  21720. weight: math.unit(300, "lb"),
  21721. name: "Front",
  21722. image: {
  21723. source: "./media/characters/beishir-kiel/front.svg",
  21724. extra: 569 / 547,
  21725. bottom: 41.9 / 609
  21726. }
  21727. },
  21728. maw: {
  21729. height: math.unit(6 * 0.202, "feet"),
  21730. name: "Maw",
  21731. image: {
  21732. source: "./media/characters/beishir-kiel/maw.svg"
  21733. }
  21734. },
  21735. },
  21736. [
  21737. {
  21738. name: "Macro",
  21739. height: math.unit(300, "feet"),
  21740. default: true
  21741. },
  21742. ]
  21743. ))
  21744. characterMakers.push(() => makeCharacter(
  21745. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21746. {
  21747. front: {
  21748. height: math.unit(5 + 8 / 12, "feet"),
  21749. weight: math.unit(120, "lb"),
  21750. name: "Front",
  21751. image: {
  21752. source: "./media/characters/logan-grey/front.svg",
  21753. extra: 2539 / 2393,
  21754. bottom: 97.6 / 2636.37
  21755. }
  21756. },
  21757. frontAlt: {
  21758. height: math.unit(5 + 8 / 12, "feet"),
  21759. weight: math.unit(120, "lb"),
  21760. name: "Front (Alt)",
  21761. image: {
  21762. source: "./media/characters/logan-grey/front-alt.svg",
  21763. extra: 958 / 893,
  21764. bottom: 15 / 970.768
  21765. }
  21766. },
  21767. back: {
  21768. height: math.unit(5 + 8 / 12, "feet"),
  21769. weight: math.unit(120, "lb"),
  21770. name: "Back",
  21771. image: {
  21772. source: "./media/characters/logan-grey/back.svg",
  21773. extra: 958 / 893,
  21774. bottom: 2.1881 / 970.9788
  21775. }
  21776. },
  21777. dick: {
  21778. height: math.unit(1.437, "feet"),
  21779. name: "Dick",
  21780. image: {
  21781. source: "./media/characters/logan-grey/dick.svg"
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(5 + 8 / 12, "feet")
  21789. },
  21790. {
  21791. name: "The 500 Foot Femboy",
  21792. height: math.unit(500, "feet"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Megmacro",
  21797. height: math.unit(20, "miles")
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21803. {
  21804. front: {
  21805. height: math.unit(8 + 2 / 12, "feet"),
  21806. weight: math.unit(275, "lb"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/draganta/front.svg",
  21810. extra: 1177 / 1135,
  21811. bottom: 33.46 / 1212.1
  21812. }
  21813. },
  21814. },
  21815. [
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(8 + 6 / 12, "feet"),
  21819. default: true
  21820. },
  21821. {
  21822. name: "Macro",
  21823. height: math.unit(150, "feet")
  21824. },
  21825. {
  21826. name: "Megamacro",
  21827. height: math.unit(1000, "miles")
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(1.72, "m"),
  21836. weight: math.unit(80, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/voski/front.svg",
  21840. extra: 2076.22 / 2022.4,
  21841. bottom: 102.7 / 2177.3866
  21842. }
  21843. },
  21844. frontNsfw: {
  21845. height: math.unit(1.72, "m"),
  21846. weight: math.unit(80, "lb"),
  21847. name: "Front (NSFW)",
  21848. image: {
  21849. source: "./media/characters/voski/front-nsfw.svg",
  21850. extra: 2076.22 / 2022.4,
  21851. bottom: 102.7 / 2177.3866
  21852. }
  21853. },
  21854. back: {
  21855. height: math.unit(1.72, "m"),
  21856. weight: math.unit(80, "lb"),
  21857. name: "Back",
  21858. image: {
  21859. source: "./media/characters/voski/back.svg",
  21860. extra: 2104 / 2051,
  21861. bottom: 10.45 / 2113.63
  21862. }
  21863. },
  21864. },
  21865. [
  21866. {
  21867. name: "Normal",
  21868. height: math.unit(1.72, "m")
  21869. },
  21870. {
  21871. name: "Macro",
  21872. height: math.unit(55, "m"),
  21873. default: true
  21874. },
  21875. {
  21876. name: "Macro+",
  21877. height: math.unit(300, "m")
  21878. },
  21879. {
  21880. name: "Macro++",
  21881. height: math.unit(700, "m")
  21882. },
  21883. {
  21884. name: "Macro+++",
  21885. height: math.unit(4500, "m")
  21886. },
  21887. {
  21888. name: "Macro++++",
  21889. height: math.unit(45, "km")
  21890. },
  21891. {
  21892. name: "Macro+++++",
  21893. height: math.unit(1220, "km")
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21899. {
  21900. front: {
  21901. height: math.unit(2.3, "m"),
  21902. weight: math.unit(304, "kg"),
  21903. name: "Front",
  21904. image: {
  21905. source: "./media/characters/icowom-lee/front.svg",
  21906. extra: 985 / 955,
  21907. bottom: 25.4 / 1012
  21908. }
  21909. },
  21910. fronttentacles: {
  21911. height: math.unit(2.3, "m"),
  21912. weight: math.unit(304, "kg"),
  21913. name: "Front-tentacles",
  21914. image: {
  21915. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21916. extra: 985 / 955,
  21917. bottom: 25.4 / 1012
  21918. }
  21919. },
  21920. back: {
  21921. height: math.unit(2.3, "m"),
  21922. weight: math.unit(304, "kg"),
  21923. name: "Back",
  21924. image: {
  21925. source: "./media/characters/icowom-lee/back.svg",
  21926. extra: 975 / 954,
  21927. bottom: 9.5 / 985
  21928. }
  21929. },
  21930. backtentacles: {
  21931. height: math.unit(2.3, "m"),
  21932. weight: math.unit(304, "kg"),
  21933. name: "Back-tentacles",
  21934. image: {
  21935. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21936. extra: 975 / 954,
  21937. bottom: 9.5 / 985
  21938. }
  21939. },
  21940. frontDressed: {
  21941. height: math.unit(2.3, "m"),
  21942. weight: math.unit(304, "kg"),
  21943. name: "Front (Dressed)",
  21944. image: {
  21945. source: "./media/characters/icowom-lee/front-dressed.svg",
  21946. extra: 3076 / 2933,
  21947. bottom: 51.4 / 3125.1889
  21948. }
  21949. },
  21950. rump: {
  21951. height: math.unit(0.776, "meters"),
  21952. name: "Rump",
  21953. image: {
  21954. source: "./media/characters/icowom-lee/rump.svg"
  21955. }
  21956. },
  21957. genitals: {
  21958. height: math.unit(0.78, "meters"),
  21959. name: "Genitals",
  21960. image: {
  21961. source: "./media/characters/icowom-lee/genitals.svg"
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(2.3, "meters"),
  21969. default: true
  21970. },
  21971. {
  21972. name: "Macro",
  21973. height: math.unit(94, "meters"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(22, "meters"),
  21983. weight: math.unit(21000, "kg"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/shock-diamond/front.svg",
  21987. extra: 2204 / 2053,
  21988. bottom: 65 / 2239.47
  21989. }
  21990. },
  21991. frontNude: {
  21992. height: math.unit(22, "meters"),
  21993. weight: math.unit(21000, "kg"),
  21994. name: "Front (Nude)",
  21995. image: {
  21996. source: "./media/characters/shock-diamond/front-nude.svg",
  21997. extra: 2514 / 2285,
  21998. bottom: 13 / 2527.56
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Normal",
  22005. height: math.unit(3, "meters")
  22006. },
  22007. {
  22008. name: "Macro",
  22009. height: math.unit(22, "meters"),
  22010. default: true
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(5 + 4 / 12, "feet"),
  22019. weight: math.unit(120, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/rory/front.svg",
  22023. extra: 589 / 556,
  22024. bottom: 45.7 / 635.76
  22025. }
  22026. },
  22027. frontNude: {
  22028. height: math.unit(5 + 4 / 12, "feet"),
  22029. weight: math.unit(120, "lb"),
  22030. name: "Front (Nude)",
  22031. image: {
  22032. source: "./media/characters/rory/front-nude.svg",
  22033. extra: 589 / 556,
  22034. bottom: 45.7 / 635.76
  22035. }
  22036. },
  22037. side: {
  22038. height: math.unit(5 + 4 / 12, "feet"),
  22039. weight: math.unit(120, "lb"),
  22040. name: "Side",
  22041. image: {
  22042. source: "./media/characters/rory/side.svg",
  22043. extra: 597 / 564,
  22044. bottom: 55 / 653
  22045. }
  22046. },
  22047. back: {
  22048. height: math.unit(5 + 4 / 12, "feet"),
  22049. weight: math.unit(120, "lb"),
  22050. name: "Back",
  22051. image: {
  22052. source: "./media/characters/rory/back.svg",
  22053. extra: 620 / 585,
  22054. bottom: 8.86 / 630.43
  22055. }
  22056. },
  22057. dick: {
  22058. height: math.unit(0.86, "feet"),
  22059. name: "Dick",
  22060. image: {
  22061. source: "./media/characters/rory/dick.svg"
  22062. }
  22063. },
  22064. },
  22065. [
  22066. {
  22067. name: "Normal",
  22068. height: math.unit(5 + 4 / 12, "feet"),
  22069. default: true
  22070. },
  22071. {
  22072. name: "Macro",
  22073. height: math.unit(100, "feet")
  22074. },
  22075. {
  22076. name: "Macro+",
  22077. height: math.unit(140, "feet")
  22078. },
  22079. {
  22080. name: "Macro++",
  22081. height: math.unit(300, "feet")
  22082. },
  22083. ]
  22084. ))
  22085. characterMakers.push(() => makeCharacter(
  22086. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22087. {
  22088. front: {
  22089. height: math.unit(5 + 9 / 12, "feet"),
  22090. weight: math.unit(190, "lb"),
  22091. name: "Front",
  22092. image: {
  22093. source: "./media/characters/sprisk/front.svg",
  22094. extra: 1225 / 1180,
  22095. bottom: 42.7 / 1266.4
  22096. }
  22097. },
  22098. frontNsfw: {
  22099. height: math.unit(5 + 9 / 12, "feet"),
  22100. weight: math.unit(190, "lb"),
  22101. name: "Front (NSFW)",
  22102. image: {
  22103. source: "./media/characters/sprisk/front-nsfw.svg",
  22104. extra: 1225 / 1180,
  22105. bottom: 42.7 / 1266.4
  22106. }
  22107. },
  22108. back: {
  22109. height: math.unit(5 + 9 / 12, "feet"),
  22110. weight: math.unit(190, "lb"),
  22111. name: "Back",
  22112. image: {
  22113. source: "./media/characters/sprisk/back.svg",
  22114. extra: 1247 / 1200,
  22115. bottom: 5.6 / 1253.04
  22116. }
  22117. },
  22118. },
  22119. [
  22120. {
  22121. name: "Tiny",
  22122. height: math.unit(2, "inches")
  22123. },
  22124. {
  22125. name: "Normal",
  22126. height: math.unit(5 + 9 / 12, "feet"),
  22127. default: true
  22128. },
  22129. {
  22130. name: "Mini Macro",
  22131. height: math.unit(18, "feet")
  22132. },
  22133. {
  22134. name: "Macro",
  22135. height: math.unit(100, "feet")
  22136. },
  22137. {
  22138. name: "MACRO",
  22139. height: math.unit(50, "miles")
  22140. },
  22141. {
  22142. name: "M A C R O",
  22143. height: math.unit(300, "miles")
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22149. {
  22150. side: {
  22151. height: math.unit(15.6, "meters"),
  22152. weight: math.unit(700000, "kg"),
  22153. name: "Side",
  22154. image: {
  22155. source: "./media/characters/bunsen/side.svg",
  22156. extra: 1644 / 358
  22157. }
  22158. },
  22159. foot: {
  22160. height: math.unit(1.611 * 1644 / 358, "meter"),
  22161. name: "Foot",
  22162. image: {
  22163. source: "./media/characters/bunsen/foot.svg"
  22164. }
  22165. },
  22166. },
  22167. [
  22168. {
  22169. name: "Small",
  22170. height: math.unit(10, "feet")
  22171. },
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(15.6, "meters"),
  22175. default: true
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22181. {
  22182. front: {
  22183. height: math.unit(4 + 11 / 12, "feet"),
  22184. weight: math.unit(140, "lb"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/sesh/front.svg",
  22188. extra: 3420 / 3231,
  22189. bottom: 72 / 3949.5
  22190. }
  22191. },
  22192. },
  22193. [
  22194. {
  22195. name: "Normal",
  22196. height: math.unit(4 + 11 / 12, "feet")
  22197. },
  22198. {
  22199. name: "Grown",
  22200. height: math.unit(15, "feet"),
  22201. default: true
  22202. },
  22203. {
  22204. name: "Macro",
  22205. height: math.unit(1500, "feet")
  22206. },
  22207. {
  22208. name: "Megamacro",
  22209. height: math.unit(30, "miles")
  22210. },
  22211. {
  22212. name: "Continental",
  22213. height: math.unit(3000, "miles")
  22214. },
  22215. {
  22216. name: "Gravity Mass",
  22217. height: math.unit(300000, "miles")
  22218. },
  22219. {
  22220. name: "Planet Buster",
  22221. height: math.unit(30000000, "miles")
  22222. },
  22223. {
  22224. name: "Big",
  22225. height: math.unit(3000000000, "miles")
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22231. {
  22232. front: {
  22233. height: math.unit(9, "feet"),
  22234. weight: math.unit(350, "lb"),
  22235. name: "Front",
  22236. image: {
  22237. source: "./media/characters/pepper/front.svg",
  22238. extra: 1448 / 1312,
  22239. bottom: 9.4 / 1457.88
  22240. }
  22241. },
  22242. back: {
  22243. height: math.unit(9, "feet"),
  22244. weight: math.unit(350, "lb"),
  22245. name: "Back",
  22246. image: {
  22247. source: "./media/characters/pepper/back.svg",
  22248. extra: 1423 / 1300,
  22249. bottom: 4.6 / 1429
  22250. }
  22251. },
  22252. maw: {
  22253. height: math.unit(0.932, "feet"),
  22254. name: "Maw",
  22255. image: {
  22256. source: "./media/characters/pepper/maw.svg"
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Normal",
  22263. height: math.unit(9, "feet"),
  22264. default: true
  22265. },
  22266. ]
  22267. ))
  22268. characterMakers.push(() => makeCharacter(
  22269. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22270. {
  22271. front: {
  22272. height: math.unit(6, "feet"),
  22273. weight: math.unit(150, "lb"),
  22274. name: "Front",
  22275. image: {
  22276. source: "./media/characters/maelstrom/front.svg",
  22277. extra: 2100 / 1883,
  22278. bottom: 94 / 2196.7
  22279. }
  22280. },
  22281. },
  22282. [
  22283. {
  22284. name: "Less Kaiju",
  22285. height: math.unit(200, "feet")
  22286. },
  22287. {
  22288. name: "Kaiju",
  22289. height: math.unit(400, "feet"),
  22290. default: true
  22291. },
  22292. {
  22293. name: "Kaiju-er",
  22294. height: math.unit(600, "feet")
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(6 + 5 / 12, "feet"),
  22303. weight: math.unit(180, "lb"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/lexir/front.svg",
  22307. extra: 180 / 172,
  22308. bottom: 12 / 192
  22309. }
  22310. },
  22311. back: {
  22312. height: math.unit(6 + 5 / 12, "feet"),
  22313. weight: math.unit(180, "lb"),
  22314. name: "Back",
  22315. image: {
  22316. source: "./media/characters/lexir/back.svg",
  22317. extra: 183.84 / 175.5,
  22318. bottom: 3.1 / 187
  22319. }
  22320. },
  22321. },
  22322. [
  22323. {
  22324. name: "Very Smal",
  22325. height: math.unit(1, "nm")
  22326. },
  22327. {
  22328. name: "Normal",
  22329. height: math.unit(6 + 5 / 12, "feet"),
  22330. default: true
  22331. },
  22332. {
  22333. name: "Macro",
  22334. height: math.unit(1, "mile")
  22335. },
  22336. {
  22337. name: "Megamacro",
  22338. height: math.unit(50, "miles")
  22339. },
  22340. ]
  22341. ))
  22342. characterMakers.push(() => makeCharacter(
  22343. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22344. {
  22345. front: {
  22346. height: math.unit(1.5, "meters"),
  22347. weight: math.unit(100, "lb"),
  22348. name: "Front",
  22349. image: {
  22350. source: "./media/characters/maksio/front.svg",
  22351. extra: 1549 / 1531,
  22352. bottom: 123.7 / 1674.5429
  22353. }
  22354. },
  22355. back: {
  22356. height: math.unit(1.5, "meters"),
  22357. weight: math.unit(100, "lb"),
  22358. name: "Back",
  22359. image: {
  22360. source: "./media/characters/maksio/back.svg",
  22361. extra: 1541 / 1509,
  22362. bottom: 97 / 1639
  22363. }
  22364. },
  22365. hand: {
  22366. height: math.unit(0.621, "feet"),
  22367. name: "Hand",
  22368. image: {
  22369. source: "./media/characters/maksio/hand.svg"
  22370. }
  22371. },
  22372. foot: {
  22373. height: math.unit(1.611, "feet"),
  22374. name: "Foot",
  22375. image: {
  22376. source: "./media/characters/maksio/foot.svg"
  22377. }
  22378. },
  22379. },
  22380. [
  22381. {
  22382. name: "Shrunken",
  22383. height: math.unit(10, "cm")
  22384. },
  22385. {
  22386. name: "Normal",
  22387. height: math.unit(150, "cm"),
  22388. default: true
  22389. },
  22390. ]
  22391. ))
  22392. characterMakers.push(() => makeCharacter(
  22393. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22394. {
  22395. front: {
  22396. height: math.unit(100, "feet"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/erza-bear/front.svg",
  22400. extra: 2449 / 2390,
  22401. bottom: 46 / 2494
  22402. }
  22403. },
  22404. back: {
  22405. height: math.unit(100, "feet"),
  22406. name: "Back",
  22407. image: {
  22408. source: "./media/characters/erza-bear/back.svg",
  22409. extra: 2489 / 2430,
  22410. bottom: 85.4 / 2480
  22411. }
  22412. },
  22413. tail: {
  22414. height: math.unit(42, "feet"),
  22415. name: "Tail",
  22416. image: {
  22417. source: "./media/characters/erza-bear/tail.svg"
  22418. }
  22419. },
  22420. tongue: {
  22421. height: math.unit(8, "feet"),
  22422. name: "Tongue",
  22423. image: {
  22424. source: "./media/characters/erza-bear/tongue.svg"
  22425. }
  22426. },
  22427. dick: {
  22428. height: math.unit(10.5, "feet"),
  22429. name: "Dick",
  22430. image: {
  22431. source: "./media/characters/erza-bear/dick.svg"
  22432. }
  22433. },
  22434. dickVertical: {
  22435. height: math.unit(16.9, "feet"),
  22436. name: "Dick (Vertical)",
  22437. image: {
  22438. source: "./media/characters/erza-bear/dick-vertical.svg"
  22439. }
  22440. },
  22441. },
  22442. [
  22443. {
  22444. name: "Macro",
  22445. height: math.unit(100, "feet"),
  22446. default: true
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(172, "cm"),
  22455. weight: math.unit(73, "kg"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/violet-flor/front.svg",
  22459. extra: 1530 / 1442,
  22460. bottom: 61.9 / 1588.8
  22461. }
  22462. },
  22463. back: {
  22464. height: math.unit(180, "cm"),
  22465. weight: math.unit(73, "kg"),
  22466. name: "Back",
  22467. image: {
  22468. source: "./media/characters/violet-flor/back.svg",
  22469. extra: 1692 / 1630,
  22470. bottom: 20 / 1712
  22471. }
  22472. },
  22473. },
  22474. [
  22475. {
  22476. name: "Normal",
  22477. height: math.unit(172, "cm"),
  22478. default: true
  22479. },
  22480. ]
  22481. ))
  22482. characterMakers.push(() => makeCharacter(
  22483. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22484. {
  22485. front: {
  22486. height: math.unit(6, "feet"),
  22487. weight: math.unit(220, "lb"),
  22488. name: "Front",
  22489. image: {
  22490. source: "./media/characters/lynn-rhea/front.svg",
  22491. extra: 310 / 273
  22492. }
  22493. },
  22494. back: {
  22495. height: math.unit(6, "feet"),
  22496. weight: math.unit(220, "lb"),
  22497. name: "Back",
  22498. image: {
  22499. source: "./media/characters/lynn-rhea/back.svg",
  22500. extra: 310 / 273
  22501. }
  22502. },
  22503. dicks: {
  22504. height: math.unit(0.9, "feet"),
  22505. name: "Dicks",
  22506. image: {
  22507. source: "./media/characters/lynn-rhea/dicks.svg"
  22508. }
  22509. },
  22510. slit: {
  22511. height: math.unit(0.4, "feet"),
  22512. name: "Slit",
  22513. image: {
  22514. source: "./media/characters/lynn-rhea/slit.svg"
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Micro",
  22521. height: math.unit(1, "inch")
  22522. },
  22523. {
  22524. name: "Macro",
  22525. height: math.unit(60, "feet"),
  22526. default: true
  22527. },
  22528. {
  22529. name: "Megamacro",
  22530. height: math.unit(2, "miles")
  22531. },
  22532. {
  22533. name: "Gigamacro",
  22534. height: math.unit(3, "earths")
  22535. },
  22536. {
  22537. name: "Galactic",
  22538. height: math.unit(0.8, "galaxies")
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22544. {
  22545. front: {
  22546. height: math.unit(1600, "feet"),
  22547. weight: math.unit(85758785169, "kg"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/valathos/front.svg",
  22551. extra: 1451 / 1339
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Macro",
  22558. height: math.unit(1600, "feet"),
  22559. default: true
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22565. {
  22566. front: {
  22567. height: math.unit(7 + 5 / 12, "feet"),
  22568. weight: math.unit(300, "lb"),
  22569. name: "Front",
  22570. image: {
  22571. source: "./media/characters/azula/front.svg",
  22572. extra: 3208 / 2880,
  22573. bottom: 80.2 / 3277
  22574. }
  22575. },
  22576. back: {
  22577. height: math.unit(7 + 5 / 12, "feet"),
  22578. weight: math.unit(300, "lb"),
  22579. name: "Back",
  22580. image: {
  22581. source: "./media/characters/azula/back.svg",
  22582. extra: 3169 / 2822,
  22583. bottom: 150.6 / 3321
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(7 + 5 / 12, "feet"),
  22591. default: true
  22592. },
  22593. {
  22594. name: "Big",
  22595. height: math.unit(20, "feet")
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22601. {
  22602. front: {
  22603. height: math.unit(5 + 1 / 12, "feet"),
  22604. weight: math.unit(110, "lb"),
  22605. name: "Front",
  22606. image: {
  22607. source: "./media/characters/rupert/front.svg",
  22608. extra: 1549 / 1495,
  22609. bottom: 54.2 / 1604.4
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Normal",
  22616. height: math.unit(5 + 1 / 12, "feet"),
  22617. default: true
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22623. {
  22624. front: {
  22625. height: math.unit(8 + 4 / 12, "feet"),
  22626. weight: math.unit(350, "lb"),
  22627. name: "Front",
  22628. image: {
  22629. source: "./media/characters/sheera-castellar/front.svg",
  22630. extra: 1957 / 1894,
  22631. bottom: 26.97 / 1975.017
  22632. }
  22633. },
  22634. side: {
  22635. height: math.unit(8 + 4 / 12, "feet"),
  22636. weight: math.unit(350, "lb"),
  22637. name: "Side",
  22638. image: {
  22639. source: "./media/characters/sheera-castellar/side.svg",
  22640. extra: 1957 / 1894
  22641. }
  22642. },
  22643. back: {
  22644. height: math.unit(8 + 4 / 12, "feet"),
  22645. weight: math.unit(350, "lb"),
  22646. name: "Back",
  22647. image: {
  22648. source: "./media/characters/sheera-castellar/back.svg",
  22649. extra: 1957 / 1894
  22650. }
  22651. },
  22652. angled: {
  22653. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22654. weight: math.unit(350, "lb"),
  22655. name: "Angled",
  22656. image: {
  22657. source: "./media/characters/sheera-castellar/angled.svg",
  22658. extra: 1807 / 1707,
  22659. bottom: 68 / 1875
  22660. }
  22661. },
  22662. genitals: {
  22663. height: math.unit(2.2, "feet"),
  22664. name: "Genitals",
  22665. image: {
  22666. source: "./media/characters/sheera-castellar/genitals.svg"
  22667. }
  22668. },
  22669. taur: {
  22670. height: math.unit(10 + 6/12, "feet"),
  22671. name: "Taur",
  22672. image: {
  22673. source: "./media/characters/sheera-castellar/taur.svg",
  22674. extra: 2017/1909,
  22675. bottom: 185/2202
  22676. }
  22677. },
  22678. },
  22679. [
  22680. {
  22681. name: "Normal",
  22682. height: math.unit(8 + 4 / 12, "feet")
  22683. },
  22684. {
  22685. name: "Macro",
  22686. height: math.unit(150, "feet"),
  22687. default: true
  22688. },
  22689. {
  22690. name: "Macro+",
  22691. height: math.unit(800, "feet")
  22692. },
  22693. ]
  22694. ))
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22697. {
  22698. front: {
  22699. height: math.unit(6, "feet"),
  22700. weight: math.unit(150, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/jaipur/front.svg",
  22704. extra: 3860 / 3731,
  22705. bottom: 287 / 4140
  22706. }
  22707. },
  22708. back: {
  22709. height: math.unit(6, "feet"),
  22710. weight: math.unit(150, "lb"),
  22711. name: "Back",
  22712. image: {
  22713. source: "./media/characters/jaipur/back.svg",
  22714. extra: 4060 / 3930,
  22715. bottom: 151 / 4200
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(1.85, "meters"),
  22723. default: true
  22724. },
  22725. {
  22726. name: "Macro",
  22727. height: math.unit(150, "meters")
  22728. },
  22729. {
  22730. name: "Macro+",
  22731. height: math.unit(0.5, "miles")
  22732. },
  22733. {
  22734. name: "Macro++",
  22735. height: math.unit(2.5, "miles")
  22736. },
  22737. {
  22738. name: "Macro+++",
  22739. height: math.unit(12, "miles")
  22740. },
  22741. {
  22742. name: "Macro++++",
  22743. height: math.unit(120, "miles")
  22744. },
  22745. {
  22746. name: "Macro+++++",
  22747. height: math.unit(1200, "miles")
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22753. {
  22754. front: {
  22755. height: math.unit(6, "feet"),
  22756. weight: math.unit(150, "lb"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/sheila-wolf/front.svg",
  22760. extra: 1931 / 1808,
  22761. bottom: 29.5 / 1960
  22762. }
  22763. },
  22764. dick: {
  22765. height: math.unit(1.464, "feet"),
  22766. name: "Dick",
  22767. image: {
  22768. source: "./media/characters/sheila-wolf/dick.svg"
  22769. }
  22770. },
  22771. muzzle: {
  22772. height: math.unit(0.513, "feet"),
  22773. name: "Muzzle",
  22774. image: {
  22775. source: "./media/characters/sheila-wolf/muzzle.svg"
  22776. }
  22777. },
  22778. },
  22779. [
  22780. {
  22781. name: "Macro",
  22782. height: math.unit(70, "feet"),
  22783. default: true
  22784. },
  22785. ]
  22786. ))
  22787. characterMakers.push(() => makeCharacter(
  22788. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22789. {
  22790. front: {
  22791. height: math.unit(32, "meters"),
  22792. weight: math.unit(300000, "kg"),
  22793. name: "Front",
  22794. image: {
  22795. source: "./media/characters/almor/front.svg",
  22796. extra: 1408 / 1322,
  22797. bottom: 94.6 / 1506.5
  22798. }
  22799. },
  22800. },
  22801. [
  22802. {
  22803. name: "Macro",
  22804. height: math.unit(32, "meters"),
  22805. default: true
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22811. {
  22812. front: {
  22813. height: math.unit(7, "feet"),
  22814. weight: math.unit(200, "lb"),
  22815. name: "Front",
  22816. image: {
  22817. source: "./media/characters/silver/front.svg",
  22818. extra: 472.1 / 450.5,
  22819. bottom: 26.5 / 499.424
  22820. }
  22821. },
  22822. },
  22823. [
  22824. {
  22825. name: "Normal",
  22826. height: math.unit(7, "feet"),
  22827. default: true
  22828. },
  22829. {
  22830. name: "Macro",
  22831. height: math.unit(800, "feet")
  22832. },
  22833. {
  22834. name: "Megamacro",
  22835. height: math.unit(250, "miles")
  22836. },
  22837. ]
  22838. ))
  22839. characterMakers.push(() => makeCharacter(
  22840. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22841. {
  22842. front: {
  22843. height: math.unit(6, "feet"),
  22844. weight: math.unit(150, "lb"),
  22845. name: "Front",
  22846. image: {
  22847. source: "./media/characters/pliskin/front.svg",
  22848. extra: 1469 / 1359,
  22849. bottom: 70 / 1540
  22850. }
  22851. },
  22852. },
  22853. [
  22854. {
  22855. name: "Micro",
  22856. height: math.unit(3, "inches")
  22857. },
  22858. {
  22859. name: "Normal",
  22860. height: math.unit(5 + 11 / 12, "feet"),
  22861. default: true
  22862. },
  22863. {
  22864. name: "Macro",
  22865. height: math.unit(120, "feet")
  22866. },
  22867. ]
  22868. ))
  22869. characterMakers.push(() => makeCharacter(
  22870. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22871. {
  22872. front: {
  22873. height: math.unit(6, "feet"),
  22874. weight: math.unit(150, "lb"),
  22875. name: "Front",
  22876. image: {
  22877. source: "./media/characters/sammy/front.svg",
  22878. extra: 1193 / 1089,
  22879. bottom: 30.5 / 1226
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Macro",
  22886. height: math.unit(1700, "feet"),
  22887. default: true
  22888. },
  22889. {
  22890. name: "Examacro",
  22891. height: math.unit(2.5e9, "lightyears")
  22892. },
  22893. ]
  22894. ))
  22895. characterMakers.push(() => makeCharacter(
  22896. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22897. {
  22898. front: {
  22899. height: math.unit(21, "meters"),
  22900. weight: math.unit(12, "tonnes"),
  22901. name: "Front",
  22902. image: {
  22903. source: "./media/characters/kuru/front.svg",
  22904. extra: 4301 / 3785,
  22905. bottom: 371.3 / 4691
  22906. }
  22907. },
  22908. },
  22909. [
  22910. {
  22911. name: "Macro",
  22912. height: math.unit(21, "meters"),
  22913. default: true
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22919. {
  22920. front: {
  22921. height: math.unit(23, "meters"),
  22922. weight: math.unit(12.2, "tonnes"),
  22923. name: "Front",
  22924. image: {
  22925. source: "./media/characters/rakka/front.svg",
  22926. extra: 4670 / 4169,
  22927. bottom: 301 / 4968.7
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Macro",
  22934. height: math.unit(23, "meters"),
  22935. default: true
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22941. {
  22942. front: {
  22943. height: math.unit(6, "feet"),
  22944. weight: math.unit(150, "lb"),
  22945. name: "Front",
  22946. image: {
  22947. source: "./media/characters/rhys-feline/front.svg",
  22948. extra: 2488 / 2308,
  22949. bottom: 35.67 / 2519.19
  22950. }
  22951. },
  22952. },
  22953. [
  22954. {
  22955. name: "Really Small",
  22956. height: math.unit(1, "nm")
  22957. },
  22958. {
  22959. name: "Micro",
  22960. height: math.unit(4, "inches")
  22961. },
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(4 + 10 / 12, "feet"),
  22965. default: true
  22966. },
  22967. {
  22968. name: "Macro",
  22969. height: math.unit(100, "feet")
  22970. },
  22971. {
  22972. name: "Megamacto",
  22973. height: math.unit(50, "miles")
  22974. },
  22975. ]
  22976. ))
  22977. characterMakers.push(() => makeCharacter(
  22978. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22979. {
  22980. side: {
  22981. height: math.unit(30, "feet"),
  22982. weight: math.unit(35000, "kg"),
  22983. name: "Side",
  22984. image: {
  22985. source: "./media/characters/alydar/side.svg",
  22986. extra: 234 / 222,
  22987. bottom: 6.5 / 241
  22988. }
  22989. },
  22990. front: {
  22991. height: math.unit(30, "feet"),
  22992. weight: math.unit(35000, "kg"),
  22993. name: "Front",
  22994. image: {
  22995. source: "./media/characters/alydar/front.svg",
  22996. extra: 223.37 / 210.2,
  22997. bottom: 22.3 / 246.76
  22998. }
  22999. },
  23000. top: {
  23001. height: math.unit(64.54, "feet"),
  23002. weight: math.unit(35000, "kg"),
  23003. name: "Top",
  23004. image: {
  23005. source: "./media/characters/alydar/top.svg"
  23006. }
  23007. },
  23008. anthro: {
  23009. height: math.unit(30, "feet"),
  23010. weight: math.unit(9000, "kg"),
  23011. name: "Anthro",
  23012. image: {
  23013. source: "./media/characters/alydar/anthro.svg",
  23014. extra: 432 / 421,
  23015. bottom: 7.18 / 440
  23016. }
  23017. },
  23018. maw: {
  23019. height: math.unit(11.693, "feet"),
  23020. name: "Maw",
  23021. image: {
  23022. source: "./media/characters/alydar/maw.svg"
  23023. }
  23024. },
  23025. head: {
  23026. height: math.unit(11.693, "feet"),
  23027. name: "Head",
  23028. image: {
  23029. source: "./media/characters/alydar/head.svg"
  23030. }
  23031. },
  23032. headAlt: {
  23033. height: math.unit(12.861, "feet"),
  23034. name: "Head (Alt)",
  23035. image: {
  23036. source: "./media/characters/alydar/head-alt.svg"
  23037. }
  23038. },
  23039. wing: {
  23040. height: math.unit(20.712, "feet"),
  23041. name: "Wing",
  23042. image: {
  23043. source: "./media/characters/alydar/wing.svg"
  23044. }
  23045. },
  23046. wingFeather: {
  23047. height: math.unit(9.662, "feet"),
  23048. name: "Wing Feather",
  23049. image: {
  23050. source: "./media/characters/alydar/wing-feather.svg"
  23051. }
  23052. },
  23053. countourFeather: {
  23054. height: math.unit(4.154, "feet"),
  23055. name: "Contour Feather",
  23056. image: {
  23057. source: "./media/characters/alydar/contour-feather.svg"
  23058. }
  23059. },
  23060. },
  23061. [
  23062. {
  23063. name: "Diplomatic",
  23064. height: math.unit(13, "feet"),
  23065. default: true
  23066. },
  23067. {
  23068. name: "Small",
  23069. height: math.unit(30, "feet")
  23070. },
  23071. {
  23072. name: "Normal",
  23073. height: math.unit(95, "feet"),
  23074. default: true
  23075. },
  23076. {
  23077. name: "Large",
  23078. height: math.unit(285, "feet")
  23079. },
  23080. {
  23081. name: "Incomprehensible",
  23082. height: math.unit(450, "megameters")
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23088. {
  23089. side: {
  23090. height: math.unit(11, "feet"),
  23091. weight: math.unit(1750, "kg"),
  23092. name: "Side",
  23093. image: {
  23094. source: "./media/characters/selicia/side.svg",
  23095. extra: 440 / 396,
  23096. bottom: 24.8 / 465.979
  23097. }
  23098. },
  23099. maw: {
  23100. height: math.unit(4.665, "feet"),
  23101. name: "Maw",
  23102. image: {
  23103. source: "./media/characters/selicia/maw.svg"
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Normal",
  23110. height: math.unit(11, "feet"),
  23111. default: true
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23117. {
  23118. side: {
  23119. height: math.unit(2 + 6 / 12, "feet"),
  23120. weight: math.unit(30, "lb"),
  23121. name: "Side",
  23122. image: {
  23123. source: "./media/characters/layla/side.svg",
  23124. extra: 244 / 188,
  23125. bottom: 18.2 / 262.1
  23126. }
  23127. },
  23128. back: {
  23129. height: math.unit(2 + 6 / 12, "feet"),
  23130. weight: math.unit(30, "lb"),
  23131. name: "Back",
  23132. image: {
  23133. source: "./media/characters/layla/back.svg",
  23134. extra: 308 / 241.5,
  23135. bottom: 8.9 / 316.8
  23136. }
  23137. },
  23138. cumming: {
  23139. height: math.unit(2 + 6 / 12, "feet"),
  23140. weight: math.unit(30, "lb"),
  23141. name: "Cumming",
  23142. image: {
  23143. source: "./media/characters/layla/cumming.svg",
  23144. extra: 342 / 279,
  23145. bottom: 595 / 938
  23146. }
  23147. },
  23148. dickFlaccid: {
  23149. height: math.unit(2.595, "feet"),
  23150. name: "Flaccid Genitals",
  23151. image: {
  23152. source: "./media/characters/layla/dick-flaccid.svg"
  23153. }
  23154. },
  23155. dickErect: {
  23156. height: math.unit(2.359, "feet"),
  23157. name: "Erect Genitals",
  23158. image: {
  23159. source: "./media/characters/layla/dick-erect.svg"
  23160. }
  23161. },
  23162. },
  23163. [
  23164. {
  23165. name: "Micro",
  23166. height: math.unit(1, "inch")
  23167. },
  23168. {
  23169. name: "Small",
  23170. height: math.unit(1, "foot")
  23171. },
  23172. {
  23173. name: "Normal",
  23174. height: math.unit(2 + 6 / 12, "feet"),
  23175. default: true
  23176. },
  23177. {
  23178. name: "Macro",
  23179. height: math.unit(200, "feet")
  23180. },
  23181. {
  23182. name: "Megamacro",
  23183. height: math.unit(1000, "miles")
  23184. },
  23185. {
  23186. name: "Planetary",
  23187. height: math.unit(8000, "miles")
  23188. },
  23189. {
  23190. name: "True Layla",
  23191. height: math.unit(200000 * 7, "multiverses")
  23192. },
  23193. ]
  23194. ))
  23195. characterMakers.push(() => makeCharacter(
  23196. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23197. {
  23198. back: {
  23199. height: math.unit(10.5, "feet"),
  23200. weight: math.unit(800, "lb"),
  23201. name: "Back",
  23202. image: {
  23203. source: "./media/characters/knox/back.svg",
  23204. extra: 1486 / 1089,
  23205. bottom: 107 / 1601.4
  23206. }
  23207. },
  23208. side: {
  23209. height: math.unit(10.5, "feet"),
  23210. weight: math.unit(800, "lb"),
  23211. name: "Side",
  23212. image: {
  23213. source: "./media/characters/knox/side.svg",
  23214. extra: 244 / 218,
  23215. bottom: 14 / 260
  23216. }
  23217. },
  23218. },
  23219. [
  23220. {
  23221. name: "Compact",
  23222. height: math.unit(10.5, "feet"),
  23223. default: true
  23224. },
  23225. {
  23226. name: "Dynamax",
  23227. height: math.unit(210, "feet")
  23228. },
  23229. {
  23230. name: "Full Macro",
  23231. height: math.unit(850, "feet")
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23237. {
  23238. front: {
  23239. height: math.unit(6, "feet"),
  23240. weight: math.unit(152, "lb"),
  23241. name: "Front",
  23242. image: {
  23243. source: "./media/characters/shin-pikachu/front.svg",
  23244. extra: 1574 / 1480,
  23245. bottom: 53.3 / 1626
  23246. }
  23247. },
  23248. hand: {
  23249. height: math.unit(1.055, "feet"),
  23250. name: "Hand",
  23251. image: {
  23252. source: "./media/characters/shin-pikachu/hand.svg"
  23253. }
  23254. },
  23255. foot: {
  23256. height: math.unit(1.1, "feet"),
  23257. name: "Foot",
  23258. image: {
  23259. source: "./media/characters/shin-pikachu/foot.svg"
  23260. }
  23261. },
  23262. collar: {
  23263. height: math.unit(0.386, "feet"),
  23264. name: "Collar",
  23265. image: {
  23266. source: "./media/characters/shin-pikachu/collar.svg"
  23267. }
  23268. },
  23269. },
  23270. [
  23271. {
  23272. name: "Smallest",
  23273. height: math.unit(0.5, "inches")
  23274. },
  23275. {
  23276. name: "Micro",
  23277. height: math.unit(6, "inches")
  23278. },
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(6, "feet"),
  23282. default: true
  23283. },
  23284. {
  23285. name: "Macro",
  23286. height: math.unit(150, "feet")
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23292. {
  23293. front: {
  23294. height: math.unit(28, "feet"),
  23295. weight: math.unit(10500, "lb"),
  23296. name: "Front",
  23297. image: {
  23298. source: "./media/characters/kayda/front.svg",
  23299. extra: 1536 / 1428,
  23300. bottom: 68.7 / 1603
  23301. }
  23302. },
  23303. back: {
  23304. height: math.unit(28, "feet"),
  23305. weight: math.unit(10500, "lb"),
  23306. name: "Back",
  23307. image: {
  23308. source: "./media/characters/kayda/back.svg",
  23309. extra: 1557 / 1464,
  23310. bottom: 39.5 / 1597.49
  23311. }
  23312. },
  23313. dick: {
  23314. height: math.unit(3.858, "feet"),
  23315. name: "Dick",
  23316. image: {
  23317. source: "./media/characters/kayda/dick.svg"
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Macro",
  23324. height: math.unit(28, "feet"),
  23325. default: true
  23326. },
  23327. ]
  23328. ))
  23329. characterMakers.push(() => makeCharacter(
  23330. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23331. {
  23332. front: {
  23333. height: math.unit(10 + 11 / 12, "feet"),
  23334. weight: math.unit(1400, "lb"),
  23335. name: "Front",
  23336. image: {
  23337. source: "./media/characters/brian/front.svg",
  23338. extra: 737 / 692,
  23339. bottom: 55.4 / 785
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(10 + 11 / 12, "feet"),
  23347. default: true
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(5 + 8 / 12, "feet"),
  23356. weight: math.unit(140, "lb"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/khemri/front.svg",
  23360. extra: 4780 / 4059,
  23361. bottom: 80.1 / 4859.25
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Micro",
  23368. height: math.unit(6, "inches")
  23369. },
  23370. {
  23371. name: "Normal",
  23372. height: math.unit(5 + 8 / 12, "feet"),
  23373. default: true
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23379. {
  23380. front: {
  23381. height: math.unit(13, "feet"),
  23382. weight: math.unit(1700, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/felix-braveheart/front.svg",
  23386. extra: 1222 / 1157,
  23387. bottom: 53.2 / 1280
  23388. }
  23389. },
  23390. back: {
  23391. height: math.unit(13, "feet"),
  23392. weight: math.unit(1700, "lb"),
  23393. name: "Back",
  23394. image: {
  23395. source: "./media/characters/felix-braveheart/back.svg",
  23396. extra: 1277 / 1203,
  23397. bottom: 50.2 / 1327
  23398. }
  23399. },
  23400. feral: {
  23401. height: math.unit(6, "feet"),
  23402. weight: math.unit(400, "lb"),
  23403. name: "Feral",
  23404. image: {
  23405. source: "./media/characters/felix-braveheart/feral.svg",
  23406. extra: 682 / 625,
  23407. bottom: 6.9 / 688
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Normal",
  23414. height: math.unit(13, "feet"),
  23415. default: true
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23421. {
  23422. side: {
  23423. height: math.unit(5 + 11 / 12, "feet"),
  23424. weight: math.unit(1400, "lb"),
  23425. name: "Side",
  23426. image: {
  23427. source: "./media/characters/shadow-blade/side.svg",
  23428. extra: 1726 / 1267,
  23429. bottom: 58.4 / 1785
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(5 + 11 / 12, "feet"),
  23437. default: true
  23438. },
  23439. ]
  23440. ))
  23441. characterMakers.push(() => makeCharacter(
  23442. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23443. {
  23444. front: {
  23445. height: math.unit(1 + 6 / 12, "feet"),
  23446. weight: math.unit(25, "lb"),
  23447. name: "Front",
  23448. image: {
  23449. source: "./media/characters/karla-halldor/front.svg",
  23450. extra: 1459 / 1383,
  23451. bottom: 12 / 1472
  23452. }
  23453. },
  23454. },
  23455. [
  23456. {
  23457. name: "Normal",
  23458. height: math.unit(1 + 6 / 12, "feet"),
  23459. default: true
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23465. {
  23466. front: {
  23467. height: math.unit(6 + 2 / 12, "feet"),
  23468. weight: math.unit(160, "lb"),
  23469. name: "Front",
  23470. image: {
  23471. source: "./media/characters/ariam/front.svg",
  23472. extra: 714 / 617,
  23473. bottom: 23.4 / 737,
  23474. }
  23475. },
  23476. squatting: {
  23477. height: math.unit(4.1, "feet"),
  23478. weight: math.unit(160, "lb"),
  23479. name: "Squatting",
  23480. image: {
  23481. source: "./media/characters/ariam/squatting.svg",
  23482. extra: 2617 / 2112,
  23483. bottom: 61.2 / 2681,
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(6 + 2 / 12, "feet"),
  23491. default: true
  23492. },
  23493. {
  23494. name: "Normal+",
  23495. height: math.unit(4, "meters")
  23496. },
  23497. {
  23498. name: "Macro",
  23499. height: math.unit(50, "meters")
  23500. },
  23501. {
  23502. name: "Macro+",
  23503. height: math.unit(100, "meters")
  23504. },
  23505. {
  23506. name: "Megamacro",
  23507. height: math.unit(20, "km")
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(1.67, "meters"),
  23516. weight: math.unit(140, "lb"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23520. extra: 438 / 410,
  23521. bottom: 0.75 / 439
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Shrunken",
  23528. height: math.unit(7.6, "cm")
  23529. },
  23530. {
  23531. name: "Human Scale",
  23532. height: math.unit(1.67, "meters")
  23533. },
  23534. {
  23535. name: "Wolxi Scale",
  23536. height: math.unit(36.7, "meters"),
  23537. default: true
  23538. },
  23539. ]
  23540. ))
  23541. characterMakers.push(() => makeCharacter(
  23542. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23543. {
  23544. front: {
  23545. height: math.unit(1.73, "meters"),
  23546. weight: math.unit(240, "lb"),
  23547. name: "Front",
  23548. image: {
  23549. source: "./media/characters/izue-two-mothers/front.svg",
  23550. extra: 469 / 437,
  23551. bottom: 1.24 / 470.6
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "Shrunken",
  23558. height: math.unit(7.86, "cm")
  23559. },
  23560. {
  23561. name: "Human Scale",
  23562. height: math.unit(1.73, "meters")
  23563. },
  23564. {
  23565. name: "Wolxi Scale",
  23566. height: math.unit(38, "meters"),
  23567. default: true
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(1.55, "meters"),
  23576. weight: math.unit(120, "lb"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/teeku-love-shack/front.svg",
  23580. extra: 387 / 362,
  23581. bottom: 1.51 / 388
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Shrunken",
  23588. height: math.unit(7, "cm")
  23589. },
  23590. {
  23591. name: "Human Scale",
  23592. height: math.unit(1.55, "meters")
  23593. },
  23594. {
  23595. name: "Wolxi Scale",
  23596. height: math.unit(34.1, "meters"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23603. {
  23604. front: {
  23605. height: math.unit(1.83, "meters"),
  23606. weight: math.unit(135, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/dejma-the-red/front.svg",
  23610. extra: 480 / 458,
  23611. bottom: 1.8 / 482
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Shrunken",
  23618. height: math.unit(8.3, "cm")
  23619. },
  23620. {
  23621. name: "Human Scale",
  23622. height: math.unit(1.83, "meters")
  23623. },
  23624. {
  23625. name: "Wolxi Scale",
  23626. height: math.unit(40, "meters"),
  23627. default: true
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(1.78, "meters"),
  23636. weight: math.unit(65, "kg"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/aki/front.svg",
  23640. extra: 452 / 415
  23641. }
  23642. },
  23643. frontNsfw: {
  23644. height: math.unit(1.78, "meters"),
  23645. weight: math.unit(65, "kg"),
  23646. name: "Front (NSFW)",
  23647. image: {
  23648. source: "./media/characters/aki/front-nsfw.svg",
  23649. extra: 452 / 415
  23650. }
  23651. },
  23652. back: {
  23653. height: math.unit(1.78, "meters"),
  23654. weight: math.unit(65, "kg"),
  23655. name: "Back",
  23656. image: {
  23657. source: "./media/characters/aki/back.svg",
  23658. extra: 452 / 415
  23659. }
  23660. },
  23661. rump: {
  23662. height: math.unit(2.05, "feet"),
  23663. name: "Rump",
  23664. image: {
  23665. source: "./media/characters/aki/rump.svg"
  23666. }
  23667. },
  23668. dick: {
  23669. height: math.unit(0.95, "feet"),
  23670. name: "Dick",
  23671. image: {
  23672. source: "./media/characters/aki/dick.svg"
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Micro",
  23679. height: math.unit(15, "cm")
  23680. },
  23681. {
  23682. name: "Normal",
  23683. height: math.unit(178, "cm"),
  23684. default: true
  23685. },
  23686. {
  23687. name: "Macro",
  23688. height: math.unit(214, "m")
  23689. },
  23690. {
  23691. name: "Macro+",
  23692. height: math.unit(534, "m")
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23698. {
  23699. front: {
  23700. height: math.unit(5 + 5 / 12, "feet"),
  23701. weight: math.unit(120, "lb"),
  23702. name: "Front",
  23703. image: {
  23704. source: "./media/characters/ari/front.svg",
  23705. extra: 714.5 / 682,
  23706. bottom: 8 / 722.5
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Normal",
  23713. height: math.unit(5 + 5 / 12, "feet")
  23714. },
  23715. {
  23716. name: "Macro",
  23717. height: math.unit(100, "feet"),
  23718. default: true
  23719. },
  23720. {
  23721. name: "Megamacro",
  23722. height: math.unit(100, "miles")
  23723. },
  23724. {
  23725. name: "Gigamacro",
  23726. height: math.unit(80000, "miles")
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23732. {
  23733. side: {
  23734. height: math.unit(9, "feet"),
  23735. weight: math.unit(400, "kg"),
  23736. name: "Side",
  23737. image: {
  23738. source: "./media/characters/bolt/side.svg",
  23739. extra: 1126 / 896,
  23740. bottom: 60 / 1187.3,
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Micro",
  23747. height: math.unit(5, "inches")
  23748. },
  23749. {
  23750. name: "Normal",
  23751. height: math.unit(9, "feet"),
  23752. default: true
  23753. },
  23754. {
  23755. name: "Macro",
  23756. height: math.unit(700, "feet")
  23757. },
  23758. {
  23759. name: "Max Size",
  23760. height: math.unit(1.52e22, "yottameters")
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23766. {
  23767. front: {
  23768. height: math.unit(4.53, "meters"),
  23769. weight: math.unit(3, "tons"),
  23770. name: "Front",
  23771. image: {
  23772. source: "./media/characters/draekon-sylviar/front.svg",
  23773. extra: 1228 / 1068,
  23774. bottom: 41 / 1270
  23775. }
  23776. },
  23777. tail: {
  23778. height: math.unit(1.772, "meter"),
  23779. name: "Tail",
  23780. image: {
  23781. source: "./media/characters/draekon-sylviar/tail.svg"
  23782. }
  23783. },
  23784. head: {
  23785. height: math.unit(1.331, "meter"),
  23786. name: "Head",
  23787. image: {
  23788. source: "./media/characters/draekon-sylviar/head.svg"
  23789. }
  23790. },
  23791. hand: {
  23792. height: math.unit(0.564, "meter"),
  23793. name: "Hand",
  23794. image: {
  23795. source: "./media/characters/draekon-sylviar/hand.svg"
  23796. }
  23797. },
  23798. foot: {
  23799. height: math.unit(0.621, "meter"),
  23800. name: "Foot",
  23801. image: {
  23802. source: "./media/characters/draekon-sylviar/foot.svg",
  23803. bottom: 32 / 324
  23804. }
  23805. },
  23806. dick: {
  23807. height: math.unit(61, "cm"),
  23808. name: "Dick",
  23809. image: {
  23810. source: "./media/characters/draekon-sylviar/dick.svg"
  23811. }
  23812. },
  23813. dickseparated: {
  23814. height: math.unit(61, "cm"),
  23815. name: "Dick-separated",
  23816. image: {
  23817. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Small",
  23824. height: math.unit(4.53 / 2, "meters"),
  23825. default: true
  23826. },
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(4.53, "meters"),
  23830. default: true
  23831. },
  23832. {
  23833. name: "Large",
  23834. height: math.unit(4.53 * 2, "meters"),
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23840. {
  23841. front: {
  23842. height: math.unit(6 + 2 / 12, "feet"),
  23843. weight: math.unit(180, "lb"),
  23844. name: "Front",
  23845. image: {
  23846. source: "./media/characters/brawler/front.svg",
  23847. extra: 3301 / 3027,
  23848. bottom: 138 / 3439
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Normal",
  23855. height: math.unit(6 + 2 / 12, "feet"),
  23856. default: true
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23862. {
  23863. front: {
  23864. height: math.unit(11, "feet"),
  23865. weight: math.unit(1000, "lb"),
  23866. name: "Front",
  23867. image: {
  23868. source: "./media/characters/alex/front.svg",
  23869. bottom: 44.5 / 620
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Micro",
  23876. height: math.unit(5, "inches")
  23877. },
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(11, "feet"),
  23881. default: true
  23882. },
  23883. {
  23884. name: "Macro",
  23885. height: math.unit(9.5e9, "feet")
  23886. },
  23887. {
  23888. name: "Max Size",
  23889. height: math.unit(1.4e283, "yottameters")
  23890. },
  23891. ]
  23892. ))
  23893. characterMakers.push(() => makeCharacter(
  23894. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23895. {
  23896. female: {
  23897. height: math.unit(29.9, "m"),
  23898. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23899. name: "Female",
  23900. image: {
  23901. source: "./media/characters/zenari/female.svg",
  23902. extra: 3281.6 / 3217,
  23903. bottom: 72.2 / 3353
  23904. }
  23905. },
  23906. male: {
  23907. height: math.unit(27.7, "m"),
  23908. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23909. name: "Male",
  23910. image: {
  23911. source: "./media/characters/zenari/male.svg",
  23912. extra: 3008 / 2991,
  23913. bottom: 54.6 / 3069
  23914. }
  23915. },
  23916. },
  23917. [
  23918. {
  23919. name: "Macro",
  23920. height: math.unit(29.7, "meters"),
  23921. default: true
  23922. },
  23923. ]
  23924. ))
  23925. characterMakers.push(() => makeCharacter(
  23926. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23927. {
  23928. female: {
  23929. height: math.unit(23.8, "m"),
  23930. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23931. name: "Female",
  23932. image: {
  23933. source: "./media/characters/mactarian/female.svg",
  23934. extra: 2662 / 2569,
  23935. bottom: 73 / 2736
  23936. }
  23937. },
  23938. male: {
  23939. height: math.unit(23.8, "m"),
  23940. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23941. name: "Male",
  23942. image: {
  23943. source: "./media/characters/mactarian/male.svg",
  23944. extra: 2673 / 2600,
  23945. bottom: 76 / 2750
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Macro",
  23952. height: math.unit(23.8, "meters"),
  23953. default: true
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23959. {
  23960. female: {
  23961. height: math.unit(19.3, "m"),
  23962. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23963. name: "Female",
  23964. image: {
  23965. source: "./media/characters/umok/female.svg",
  23966. extra: 2186 / 2078,
  23967. bottom: 87 / 2277
  23968. }
  23969. },
  23970. male: {
  23971. height: math.unit(19.5, "m"),
  23972. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23973. name: "Male",
  23974. image: {
  23975. source: "./media/characters/umok/male.svg",
  23976. extra: 2233 / 2140,
  23977. bottom: 24.4 / 2258
  23978. }
  23979. },
  23980. },
  23981. [
  23982. {
  23983. name: "Macro",
  23984. height: math.unit(19.3, "meters"),
  23985. default: true
  23986. },
  23987. ]
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23991. {
  23992. female: {
  23993. height: math.unit(26.15, "m"),
  23994. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23995. name: "Female",
  23996. image: {
  23997. source: "./media/characters/joraxian/female.svg",
  23998. extra: 2912 / 2824,
  23999. bottom: 36 / 2956
  24000. }
  24001. },
  24002. male: {
  24003. height: math.unit(25.4, "m"),
  24004. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24005. name: "Male",
  24006. image: {
  24007. source: "./media/characters/joraxian/male.svg",
  24008. extra: 2877 / 2721,
  24009. bottom: 82 / 2967
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Macro",
  24016. height: math.unit(26.15, "meters"),
  24017. default: true
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24023. {
  24024. female: {
  24025. height: math.unit(21.6, "m"),
  24026. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24027. name: "Female",
  24028. image: {
  24029. source: "./media/characters/sthara/female.svg",
  24030. extra: 2516 / 2347,
  24031. bottom: 21.5 / 2537
  24032. }
  24033. },
  24034. male: {
  24035. height: math.unit(24, "m"),
  24036. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24037. name: "Male",
  24038. image: {
  24039. source: "./media/characters/sthara/male.svg",
  24040. extra: 2732 / 2607,
  24041. bottom: 23 / 2732
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Macro",
  24048. height: math.unit(21.6, "meters"),
  24049. default: true
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24055. {
  24056. front: {
  24057. height: math.unit(6 + 4 / 12, "feet"),
  24058. weight: math.unit(175, "lb"),
  24059. name: "Front",
  24060. image: {
  24061. source: "./media/characters/luka-bryzant/front.svg",
  24062. extra: 311 / 289,
  24063. bottom: 4 / 315
  24064. }
  24065. },
  24066. back: {
  24067. height: math.unit(6 + 4 / 12, "feet"),
  24068. weight: math.unit(175, "lb"),
  24069. name: "Back",
  24070. image: {
  24071. source: "./media/characters/luka-bryzant/back.svg",
  24072. extra: 311 / 289,
  24073. bottom: 3.8 / 313.7
  24074. }
  24075. },
  24076. },
  24077. [
  24078. {
  24079. name: "Micro",
  24080. height: math.unit(10, "inches")
  24081. },
  24082. {
  24083. name: "Normal",
  24084. height: math.unit(6 + 4 / 12, "feet"),
  24085. default: true
  24086. },
  24087. {
  24088. name: "Large",
  24089. height: math.unit(12, "feet")
  24090. },
  24091. ]
  24092. ))
  24093. characterMakers.push(() => makeCharacter(
  24094. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24095. {
  24096. front: {
  24097. height: math.unit(5 + 7 / 12, "feet"),
  24098. weight: math.unit(185, "lb"),
  24099. name: "Front",
  24100. image: {
  24101. source: "./media/characters/aman-aquila/front.svg",
  24102. extra: 1013 / 976,
  24103. bottom: 45.6 / 1057
  24104. }
  24105. },
  24106. side: {
  24107. height: math.unit(5 + 7 / 12, "feet"),
  24108. weight: math.unit(185, "lb"),
  24109. name: "Side",
  24110. image: {
  24111. source: "./media/characters/aman-aquila/side.svg",
  24112. extra: 1054 / 1011,
  24113. bottom: 15 / 1070
  24114. }
  24115. },
  24116. back: {
  24117. height: math.unit(5 + 7 / 12, "feet"),
  24118. weight: math.unit(185, "lb"),
  24119. name: "Back",
  24120. image: {
  24121. source: "./media/characters/aman-aquila/back.svg",
  24122. extra: 1026 / 970,
  24123. bottom: 12 / 1039
  24124. }
  24125. },
  24126. head: {
  24127. height: math.unit(1.211, "feet"),
  24128. name: "Head",
  24129. image: {
  24130. source: "./media/characters/aman-aquila/head.svg",
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Minimicro",
  24137. height: math.unit(0.057, "inches")
  24138. },
  24139. {
  24140. name: "Micro",
  24141. height: math.unit(7, "inches")
  24142. },
  24143. {
  24144. name: "Mini",
  24145. height: math.unit(3 + 7 / 12, "feet")
  24146. },
  24147. {
  24148. name: "Normal",
  24149. height: math.unit(5 + 7 / 12, "feet"),
  24150. default: true
  24151. },
  24152. {
  24153. name: "Macro",
  24154. height: math.unit(157 + 7 / 12, "feet")
  24155. },
  24156. {
  24157. name: "Megamacro",
  24158. height: math.unit(1557 + 7 / 12, "feet")
  24159. },
  24160. {
  24161. name: "Gigamacro",
  24162. height: math.unit(15557 + 7 / 12, "feet")
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24168. {
  24169. front: {
  24170. height: math.unit(3 + 2 / 12, "inches"),
  24171. weight: math.unit(0.3, "ounces"),
  24172. name: "Front",
  24173. image: {
  24174. source: "./media/characters/hiphae/front.svg",
  24175. extra: 1931 / 1683,
  24176. bottom: 24 / 1955
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Normal",
  24183. height: math.unit(3 + 1 / 2, "inches"),
  24184. default: true
  24185. },
  24186. ]
  24187. ))
  24188. characterMakers.push(() => makeCharacter(
  24189. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24190. {
  24191. front: {
  24192. height: math.unit(5 + 10 / 12, "feet"),
  24193. weight: math.unit(165, "lb"),
  24194. name: "Front",
  24195. image: {
  24196. source: "./media/characters/nicky/front.svg",
  24197. extra: 3144 / 2886,
  24198. bottom: 45.6 / 3192
  24199. }
  24200. },
  24201. back: {
  24202. height: math.unit(5 + 10 / 12, "feet"),
  24203. weight: math.unit(165, "lb"),
  24204. name: "Back",
  24205. image: {
  24206. source: "./media/characters/nicky/back.svg",
  24207. extra: 3055 / 2804,
  24208. bottom: 28.4 / 3087
  24209. }
  24210. },
  24211. frontclothed: {
  24212. height: math.unit(5 + 10 / 12, "feet"),
  24213. weight: math.unit(165, "lb"),
  24214. name: "Front-clothed",
  24215. image: {
  24216. source: "./media/characters/nicky/front-clothed.svg",
  24217. extra: 3184.9 / 2926.9,
  24218. bottom: 86.5 / 3239.9
  24219. }
  24220. },
  24221. foot: {
  24222. height: math.unit(1.16, "feet"),
  24223. name: "Foot",
  24224. image: {
  24225. source: "./media/characters/nicky/foot.svg"
  24226. }
  24227. },
  24228. feet: {
  24229. height: math.unit(1.34, "feet"),
  24230. name: "Feet",
  24231. image: {
  24232. source: "./media/characters/nicky/feet.svg"
  24233. }
  24234. },
  24235. maw: {
  24236. height: math.unit(0.9, "feet"),
  24237. name: "Maw",
  24238. image: {
  24239. source: "./media/characters/nicky/maw.svg"
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Normal",
  24246. height: math.unit(5 + 10 / 12, "feet"),
  24247. default: true
  24248. },
  24249. {
  24250. name: "Macro",
  24251. height: math.unit(60, "feet")
  24252. },
  24253. {
  24254. name: "Megamacro",
  24255. height: math.unit(1, "mile")
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24261. {
  24262. side: {
  24263. height: math.unit(10, "feet"),
  24264. weight: math.unit(600, "lb"),
  24265. name: "Side",
  24266. image: {
  24267. source: "./media/characters/blair/side.svg",
  24268. bottom: 16.6 / 475,
  24269. extra: 458 / 431
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Micro",
  24276. height: math.unit(8, "inches")
  24277. },
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(10, "feet"),
  24281. default: true
  24282. },
  24283. {
  24284. name: "Macro",
  24285. height: math.unit(180, "feet")
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24291. {
  24292. front: {
  24293. height: math.unit(5 + 4 / 12, "feet"),
  24294. weight: math.unit(125, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/fisher/front.svg",
  24298. extra: 444 / 390,
  24299. bottom: 2 / 444.8
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Micro",
  24306. height: math.unit(4, "inches")
  24307. },
  24308. {
  24309. name: "Normal",
  24310. height: math.unit(5 + 4 / 12, "feet"),
  24311. default: true
  24312. },
  24313. {
  24314. name: "Macro",
  24315. height: math.unit(100, "feet")
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24321. {
  24322. front: {
  24323. height: math.unit(6.71, "feet"),
  24324. weight: math.unit(200, "lb"),
  24325. capacity: math.unit(1000000, "people"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/gliss/front.svg",
  24329. extra: 2347 / 2231,
  24330. bottom: 113 / 2462
  24331. }
  24332. },
  24333. hammerspaceSize: {
  24334. height: math.unit(6.71 * 717, "feet"),
  24335. weight: math.unit(200, "lb"),
  24336. capacity: math.unit(1000000, "people"),
  24337. name: "Hammerspace Size",
  24338. image: {
  24339. source: "./media/characters/gliss/front.svg",
  24340. extra: 2347 / 2231,
  24341. bottom: 113 / 2462
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Normal",
  24348. height: math.unit(6.71, "feet"),
  24349. default: true
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24355. {
  24356. side: {
  24357. height: math.unit(1.44, "m"),
  24358. weight: math.unit(80, "kg"),
  24359. name: "Side",
  24360. image: {
  24361. source: "./media/characters/dune-anderson/side.svg",
  24362. bottom: 49 / 1426
  24363. }
  24364. },
  24365. },
  24366. [
  24367. {
  24368. name: "Wolf-sized",
  24369. height: math.unit(1.44, "meters")
  24370. },
  24371. {
  24372. name: "Normal",
  24373. height: math.unit(5.05, "meters"),
  24374. default: true
  24375. },
  24376. {
  24377. name: "Big",
  24378. height: math.unit(14.4, "meters")
  24379. },
  24380. {
  24381. name: "Huge",
  24382. height: math.unit(144, "meters")
  24383. },
  24384. ]
  24385. ))
  24386. characterMakers.push(() => makeCharacter(
  24387. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24388. {
  24389. front: {
  24390. height: math.unit(7, "feet"),
  24391. weight: math.unit(425, "lb"),
  24392. name: "Front",
  24393. image: {
  24394. source: "./media/characters/hind/front.svg",
  24395. extra: 2091 / 1860,
  24396. bottom: 129 / 2220
  24397. }
  24398. },
  24399. back: {
  24400. height: math.unit(7, "feet"),
  24401. weight: math.unit(425, "lb"),
  24402. name: "Back",
  24403. image: {
  24404. source: "./media/characters/hind/back.svg",
  24405. extra: 2091 / 1860,
  24406. bottom: 24.6 / 2309
  24407. }
  24408. },
  24409. tail: {
  24410. height: math.unit(2.8, "feet"),
  24411. name: "Tail",
  24412. image: {
  24413. source: "./media/characters/hind/tail.svg"
  24414. }
  24415. },
  24416. head: {
  24417. height: math.unit(2.55, "feet"),
  24418. name: "Head",
  24419. image: {
  24420. source: "./media/characters/hind/head.svg"
  24421. }
  24422. },
  24423. },
  24424. [
  24425. {
  24426. name: "XS",
  24427. height: math.unit(0.7, "feet")
  24428. },
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(7, "feet"),
  24432. default: true
  24433. },
  24434. {
  24435. name: "XL",
  24436. height: math.unit(70, "feet")
  24437. },
  24438. ]
  24439. ))
  24440. characterMakers.push(() => makeCharacter(
  24441. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24442. {
  24443. front: {
  24444. height: math.unit(6, "feet"),
  24445. weight: math.unit(150, "lb"),
  24446. name: "Front",
  24447. image: {
  24448. source: "./media/characters/dylan-skaven/front.svg",
  24449. extra: 2318 / 2063,
  24450. bottom: 93.4 / 2410
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Nano",
  24457. height: math.unit(1, "mm")
  24458. },
  24459. {
  24460. name: "Micro",
  24461. height: math.unit(1, "cm")
  24462. },
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(2.1, "meters"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(7 + 5 / 12, "feet"),
  24475. weight: math.unit(357, "lb"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/solex-draconov/front.svg",
  24479. extra: 1993 / 1865,
  24480. bottom: 117 / 2111
  24481. }
  24482. },
  24483. },
  24484. [
  24485. {
  24486. name: "Natural Height",
  24487. height: math.unit(7 + 5 / 12, "feet"),
  24488. default: true
  24489. },
  24490. {
  24491. name: "Macro",
  24492. height: math.unit(350, "feet")
  24493. },
  24494. {
  24495. name: "Macro+",
  24496. height: math.unit(1000, "feet")
  24497. },
  24498. {
  24499. name: "Megamacro",
  24500. height: math.unit(20, "km")
  24501. },
  24502. {
  24503. name: "Megamacro+",
  24504. height: math.unit(1000, "km")
  24505. },
  24506. {
  24507. name: "Gigamacro",
  24508. height: math.unit(2.5, "Gm")
  24509. },
  24510. {
  24511. name: "Teramacro",
  24512. height: math.unit(15, "Tm")
  24513. },
  24514. {
  24515. name: "Galactic",
  24516. height: math.unit(30, "Zm")
  24517. },
  24518. {
  24519. name: "Universal",
  24520. height: math.unit(21000, "Ym")
  24521. },
  24522. {
  24523. name: "Omniversal",
  24524. height: math.unit(9.861e50, "Ym")
  24525. },
  24526. {
  24527. name: "Existential",
  24528. height: math.unit(1e300, "meters")
  24529. },
  24530. ]
  24531. ))
  24532. characterMakers.push(() => makeCharacter(
  24533. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24534. {
  24535. side: {
  24536. height: math.unit(25, "feet"),
  24537. weight: math.unit(90000, "lb"),
  24538. name: "Side",
  24539. image: {
  24540. source: "./media/characters/mandarax/side.svg",
  24541. extra: 614 / 332,
  24542. bottom: 55 / 630
  24543. }
  24544. },
  24545. head: {
  24546. height: math.unit(11.4, "feet"),
  24547. name: "Head",
  24548. image: {
  24549. source: "./media/characters/mandarax/head.svg"
  24550. }
  24551. },
  24552. belly: {
  24553. height: math.unit(33, "feet"),
  24554. name: "Belly",
  24555. capacity: math.unit(500, "people"),
  24556. image: {
  24557. source: "./media/characters/mandarax/belly.svg"
  24558. }
  24559. },
  24560. dick: {
  24561. height: math.unit(8.46, "feet"),
  24562. name: "Dick",
  24563. image: {
  24564. source: "./media/characters/mandarax/dick.svg"
  24565. }
  24566. },
  24567. top: {
  24568. height: math.unit(28, "meters"),
  24569. name: "Top",
  24570. image: {
  24571. source: "./media/characters/mandarax/top.svg"
  24572. }
  24573. },
  24574. },
  24575. [
  24576. {
  24577. name: "Normal",
  24578. height: math.unit(25, "feet"),
  24579. default: true
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24585. {
  24586. front: {
  24587. height: math.unit(5, "feet"),
  24588. weight: math.unit(90, "lb"),
  24589. name: "Front",
  24590. image: {
  24591. source: "./media/characters/pixil/front.svg",
  24592. extra: 2000 / 1618,
  24593. bottom: 12.3 / 2011
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Normal",
  24600. height: math.unit(5, "feet"),
  24601. default: true
  24602. },
  24603. {
  24604. name: "Megamacro",
  24605. height: math.unit(10, "miles"),
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24611. {
  24612. front: {
  24613. height: math.unit(7 + 2 / 12, "feet"),
  24614. weight: math.unit(200, "lb"),
  24615. name: "Front",
  24616. image: {
  24617. source: "./media/characters/angel/front.svg",
  24618. extra: 1830 / 1737,
  24619. bottom: 22.6 / 1854,
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(7 + 2 / 12, "feet"),
  24627. default: true
  24628. },
  24629. {
  24630. name: "Macro",
  24631. height: math.unit(1000, "feet")
  24632. },
  24633. {
  24634. name: "Megamacro",
  24635. height: math.unit(2, "miles")
  24636. },
  24637. {
  24638. name: "Gigamacro",
  24639. height: math.unit(20, "earths")
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24645. {
  24646. front: {
  24647. height: math.unit(5, "feet"),
  24648. weight: math.unit(180, "lb"),
  24649. name: "Front",
  24650. image: {
  24651. source: "./media/characters/mekana/front.svg",
  24652. extra: 1671 / 1605,
  24653. bottom: 3.5 / 1691
  24654. }
  24655. },
  24656. side: {
  24657. height: math.unit(5, "feet"),
  24658. weight: math.unit(180, "lb"),
  24659. name: "Side",
  24660. image: {
  24661. source: "./media/characters/mekana/side.svg",
  24662. extra: 1671 / 1605,
  24663. bottom: 3.5 / 1691
  24664. }
  24665. },
  24666. back: {
  24667. height: math.unit(5, "feet"),
  24668. weight: math.unit(180, "lb"),
  24669. name: "Back",
  24670. image: {
  24671. source: "./media/characters/mekana/back.svg",
  24672. extra: 1671 / 1605,
  24673. bottom: 3.5 / 1691
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Normal",
  24680. height: math.unit(5, "feet"),
  24681. default: true
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24687. {
  24688. front: {
  24689. height: math.unit(4 + 6 / 12, "feet"),
  24690. weight: math.unit(80, "lb"),
  24691. name: "Front",
  24692. image: {
  24693. source: "./media/characters/pixie/front.svg",
  24694. extra: 1924 / 1825,
  24695. bottom: 22.4 / 1946
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(4 + 6 / 12, "feet"),
  24703. default: true
  24704. },
  24705. {
  24706. name: "Macro",
  24707. height: math.unit(40, "feet")
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24713. {
  24714. front: {
  24715. height: math.unit(2.1, "meters"),
  24716. weight: math.unit(200, "lb"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/the-lascivious/front.svg",
  24720. extra: 1 / 0.893,
  24721. bottom: 3.5 / 573.7
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Human Scale",
  24728. height: math.unit(2.1, "meters")
  24729. },
  24730. {
  24731. name: "Wolxi Scale",
  24732. height: math.unit(46.2, "m"),
  24733. default: true
  24734. },
  24735. {
  24736. name: "Boinker of Buildings",
  24737. height: math.unit(10, "km")
  24738. },
  24739. {
  24740. name: "Shagger of Skyscrapers",
  24741. height: math.unit(40, "km")
  24742. },
  24743. {
  24744. name: "Banger of Boroughs",
  24745. height: math.unit(4000, "km")
  24746. },
  24747. {
  24748. name: "Screwer of States",
  24749. height: math.unit(100000, "km")
  24750. },
  24751. {
  24752. name: "Pounder of Planets",
  24753. height: math.unit(2000000, "km")
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24759. {
  24760. front: {
  24761. height: math.unit(6, "feet"),
  24762. weight: math.unit(150, "lb"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/aj/front.svg",
  24766. extra: 2039 / 1562,
  24767. bottom: 40 / 2079
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(11 + 6 / 12, "feet"),
  24775. default: true
  24776. },
  24777. {
  24778. name: "Megamacro",
  24779. height: math.unit(60, "megameters")
  24780. },
  24781. ]
  24782. ))
  24783. characterMakers.push(() => makeCharacter(
  24784. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24785. {
  24786. side: {
  24787. height: math.unit(31 + 8 / 12, "feet"),
  24788. weight: math.unit(75000, "kg"),
  24789. name: "Side",
  24790. image: {
  24791. source: "./media/characters/koros/side.svg",
  24792. extra: 1442 / 1297,
  24793. bottom: 122.7 / 1562
  24794. }
  24795. },
  24796. dicksKingsCrown: {
  24797. height: math.unit(6, "feet"),
  24798. name: "Dicks (King's Crown)",
  24799. image: {
  24800. source: "./media/characters/koros/dicks-kings-crown.svg"
  24801. }
  24802. },
  24803. dicksTailSet: {
  24804. height: math.unit(3, "feet"),
  24805. name: "Dicks (Tail Set)",
  24806. image: {
  24807. source: "./media/characters/koros/dicks-tail-set.svg"
  24808. }
  24809. },
  24810. dickCumming: {
  24811. height: math.unit(7.98, "feet"),
  24812. name: "Dick (Cumming)",
  24813. image: {
  24814. source: "./media/characters/koros/dick-cumming.svg"
  24815. }
  24816. },
  24817. dicksBack: {
  24818. height: math.unit(5.9, "feet"),
  24819. name: "Dicks (Back)",
  24820. image: {
  24821. source: "./media/characters/koros/dicks-back.svg"
  24822. }
  24823. },
  24824. dicksFront: {
  24825. height: math.unit(3.72, "feet"),
  24826. name: "Dicks (Front)",
  24827. image: {
  24828. source: "./media/characters/koros/dicks-front.svg"
  24829. }
  24830. },
  24831. dicksPeeking: {
  24832. height: math.unit(3.0, "feet"),
  24833. name: "Dicks (Peeking)",
  24834. image: {
  24835. source: "./media/characters/koros/dicks-peeking.svg"
  24836. }
  24837. },
  24838. eye: {
  24839. height: math.unit(1.7, "feet"),
  24840. name: "Eye",
  24841. image: {
  24842. source: "./media/characters/koros/eye.svg"
  24843. }
  24844. },
  24845. headFront: {
  24846. height: math.unit(11.69, "feet"),
  24847. name: "Head (Front)",
  24848. image: {
  24849. source: "./media/characters/koros/head-front.svg"
  24850. }
  24851. },
  24852. headSide: {
  24853. height: math.unit(14, "feet"),
  24854. name: "Head (Side)",
  24855. image: {
  24856. source: "./media/characters/koros/head-side.svg"
  24857. }
  24858. },
  24859. leg: {
  24860. height: math.unit(17, "feet"),
  24861. name: "Leg",
  24862. image: {
  24863. source: "./media/characters/koros/leg.svg"
  24864. }
  24865. },
  24866. mawSide: {
  24867. height: math.unit(12.8, "feet"),
  24868. name: "Maw (Side)",
  24869. image: {
  24870. source: "./media/characters/koros/maw-side.svg"
  24871. }
  24872. },
  24873. mawSpitting: {
  24874. height: math.unit(17, "feet"),
  24875. name: "Maw (Spitting)",
  24876. image: {
  24877. source: "./media/characters/koros/maw-spitting.svg"
  24878. }
  24879. },
  24880. slit: {
  24881. height: math.unit(2.8, "feet"),
  24882. name: "Slit",
  24883. image: {
  24884. source: "./media/characters/koros/slit.svg"
  24885. }
  24886. },
  24887. stomach: {
  24888. height: math.unit(6.8, "feet"),
  24889. capacity: math.unit(20, "people"),
  24890. name: "Stomach",
  24891. image: {
  24892. source: "./media/characters/koros/stomach.svg"
  24893. }
  24894. },
  24895. wingspanBottom: {
  24896. height: math.unit(114, "feet"),
  24897. name: "Wingspan (Bottom)",
  24898. image: {
  24899. source: "./media/characters/koros/wingspan-bottom.svg"
  24900. }
  24901. },
  24902. wingspanTop: {
  24903. height: math.unit(104, "feet"),
  24904. name: "Wingspan (Top)",
  24905. image: {
  24906. source: "./media/characters/koros/wingspan-top.svg"
  24907. }
  24908. },
  24909. },
  24910. [
  24911. {
  24912. name: "Normal",
  24913. height: math.unit(31 + 8 / 12, "feet"),
  24914. default: true
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24920. {
  24921. front: {
  24922. height: math.unit(18 + 5 / 12, "feet"),
  24923. weight: math.unit(3750, "kg"),
  24924. name: "Front",
  24925. image: {
  24926. source: "./media/characters/vexx/front.svg",
  24927. extra: 426 / 396,
  24928. bottom: 31.5 / 458
  24929. }
  24930. },
  24931. maw: {
  24932. height: math.unit(6, "feet"),
  24933. name: "Maw",
  24934. image: {
  24935. source: "./media/characters/vexx/maw.svg"
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(18 + 5 / 12, "feet"),
  24943. default: true
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24949. {
  24950. front: {
  24951. height: math.unit(17 + 6 / 12, "feet"),
  24952. weight: math.unit(150, "lb"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/baadra/front.svg",
  24956. extra: 3137 / 2890,
  24957. bottom: 168.4 / 3305
  24958. }
  24959. },
  24960. back: {
  24961. height: math.unit(17 + 6 / 12, "feet"),
  24962. weight: math.unit(150, "lb"),
  24963. name: "Back",
  24964. image: {
  24965. source: "./media/characters/baadra/back.svg",
  24966. extra: 3142 / 2890,
  24967. bottom: 220 / 3371
  24968. }
  24969. },
  24970. head: {
  24971. height: math.unit(5.45, "feet"),
  24972. name: "Head",
  24973. image: {
  24974. source: "./media/characters/baadra/head.svg"
  24975. }
  24976. },
  24977. headAngry: {
  24978. height: math.unit(4.95, "feet"),
  24979. name: "Head (Angry)",
  24980. image: {
  24981. source: "./media/characters/baadra/head-angry.svg"
  24982. }
  24983. },
  24984. headOpen: {
  24985. height: math.unit(6, "feet"),
  24986. name: "Head (Open)",
  24987. image: {
  24988. source: "./media/characters/baadra/head-open.svg"
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(17 + 6 / 12, "feet"),
  24996. default: true
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(7 + 3 / 12, "feet"),
  25005. weight: math.unit(180, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/juri/front.svg",
  25009. extra: 1401 / 1237,
  25010. bottom: 18.5 / 1418
  25011. }
  25012. },
  25013. side: {
  25014. height: math.unit(7 + 3 / 12, "feet"),
  25015. weight: math.unit(180, "lb"),
  25016. name: "Side",
  25017. image: {
  25018. source: "./media/characters/juri/side.svg",
  25019. extra: 1424 / 1242,
  25020. bottom: 18.5 / 1447
  25021. }
  25022. },
  25023. sitting: {
  25024. height: math.unit(6, "feet"),
  25025. weight: math.unit(180, "lb"),
  25026. name: "Sitting",
  25027. image: {
  25028. source: "./media/characters/juri/sitting.svg",
  25029. extra: 1270 / 1143,
  25030. bottom: 100 / 1343
  25031. }
  25032. },
  25033. back: {
  25034. height: math.unit(7 + 3 / 12, "feet"),
  25035. weight: math.unit(180, "lb"),
  25036. name: "Back",
  25037. image: {
  25038. source: "./media/characters/juri/back.svg",
  25039. extra: 1377 / 1240,
  25040. bottom: 23.7 / 1405
  25041. }
  25042. },
  25043. maw: {
  25044. height: math.unit(2.8, "feet"),
  25045. name: "Maw",
  25046. image: {
  25047. source: "./media/characters/juri/maw.svg"
  25048. }
  25049. },
  25050. stomach: {
  25051. height: math.unit(0.89, "feet"),
  25052. capacity: math.unit(4, "liters"),
  25053. name: "Stomach",
  25054. image: {
  25055. source: "./media/characters/juri/stomach.svg"
  25056. }
  25057. },
  25058. },
  25059. [
  25060. {
  25061. name: "Normal",
  25062. height: math.unit(7 + 3 / 12, "feet"),
  25063. default: true
  25064. },
  25065. ]
  25066. ))
  25067. characterMakers.push(() => makeCharacter(
  25068. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25069. {
  25070. fox: {
  25071. height: math.unit(5 + 6 / 12, "feet"),
  25072. weight: math.unit(140, "lb"),
  25073. name: "Fox",
  25074. image: {
  25075. source: "./media/characters/maxene-sita/fox.svg",
  25076. extra: 146 / 138,
  25077. bottom: 2.1 / 148.19
  25078. }
  25079. },
  25080. foxLaying: {
  25081. height: math.unit(1.70, "feet"),
  25082. weight: math.unit(140, "lb"),
  25083. name: "Fox (Laying)",
  25084. image: {
  25085. source: "./media/characters/maxene-sita/fox-laying.svg",
  25086. extra: 910 / 572,
  25087. bottom: 71 / 981
  25088. }
  25089. },
  25090. kitsune: {
  25091. height: math.unit(10, "feet"),
  25092. weight: math.unit(800, "lb"),
  25093. name: "Kitsune",
  25094. image: {
  25095. source: "./media/characters/maxene-sita/kitsune.svg",
  25096. extra: 185 / 176,
  25097. bottom: 4.7 / 189.9
  25098. }
  25099. },
  25100. hellhound: {
  25101. height: math.unit(10, "feet"),
  25102. weight: math.unit(700, "lb"),
  25103. name: "Hellhound",
  25104. image: {
  25105. source: "./media/characters/maxene-sita/hellhound.svg",
  25106. extra: 1600 / 1545,
  25107. bottom: 81 / 1681
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(5 + 6 / 12, "feet"),
  25115. default: true
  25116. },
  25117. ]
  25118. ))
  25119. characterMakers.push(() => makeCharacter(
  25120. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25121. {
  25122. front: {
  25123. height: math.unit(3 + 4 / 12, "feet"),
  25124. weight: math.unit(70, "lb"),
  25125. name: "Front",
  25126. image: {
  25127. source: "./media/characters/maia/front.svg",
  25128. extra: 227 / 219.5,
  25129. bottom: 40 / 267
  25130. }
  25131. },
  25132. back: {
  25133. height: math.unit(3 + 4 / 12, "feet"),
  25134. weight: math.unit(70, "lb"),
  25135. name: "Back",
  25136. image: {
  25137. source: "./media/characters/maia/back.svg",
  25138. extra: 237 / 225
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Normal",
  25145. height: math.unit(3 + 4 / 12, "feet"),
  25146. default: true
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(5 + 10 / 12, "feet"),
  25155. weight: math.unit(197, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/jabaro/front.svg",
  25159. extra: 225 / 216,
  25160. bottom: 5.06 / 230
  25161. }
  25162. },
  25163. back: {
  25164. height: math.unit(5 + 10 / 12, "feet"),
  25165. weight: math.unit(197, "lb"),
  25166. name: "Back",
  25167. image: {
  25168. source: "./media/characters/jabaro/back.svg",
  25169. extra: 225 / 219,
  25170. bottom: 1.9 / 227
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Normal",
  25177. height: math.unit(5 + 10 / 12, "feet"),
  25178. default: true
  25179. },
  25180. ]
  25181. ))
  25182. characterMakers.push(() => makeCharacter(
  25183. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25184. {
  25185. front: {
  25186. height: math.unit(5 + 8 / 12, "feet"),
  25187. weight: math.unit(139, "lb"),
  25188. name: "Front",
  25189. image: {
  25190. source: "./media/characters/risa/front.svg",
  25191. extra: 270 / 260,
  25192. bottom: 11.2 / 282
  25193. }
  25194. },
  25195. back: {
  25196. height: math.unit(5 + 8 / 12, "feet"),
  25197. weight: math.unit(139, "lb"),
  25198. name: "Back",
  25199. image: {
  25200. source: "./media/characters/risa/back.svg",
  25201. extra: 264 / 255,
  25202. bottom: 4 / 268
  25203. }
  25204. },
  25205. },
  25206. [
  25207. {
  25208. name: "Normal",
  25209. height: math.unit(5 + 8 / 12, "feet"),
  25210. default: true
  25211. },
  25212. ]
  25213. ))
  25214. characterMakers.push(() => makeCharacter(
  25215. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25216. {
  25217. front: {
  25218. height: math.unit(2 + 11 / 12, "feet"),
  25219. weight: math.unit(30, "lb"),
  25220. name: "Front",
  25221. image: {
  25222. source: "./media/characters/weatley/front.svg",
  25223. bottom: 10.7 / 414,
  25224. extra: 403.5 / 362
  25225. }
  25226. },
  25227. back: {
  25228. height: math.unit(2 + 11 / 12, "feet"),
  25229. weight: math.unit(30, "lb"),
  25230. name: "Back",
  25231. image: {
  25232. source: "./media/characters/weatley/back.svg",
  25233. bottom: 10.7 / 414,
  25234. extra: 403.5 / 362
  25235. }
  25236. },
  25237. },
  25238. [
  25239. {
  25240. name: "Normal",
  25241. height: math.unit(2 + 11 / 12, "feet"),
  25242. default: true
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25248. {
  25249. front: {
  25250. height: math.unit(5 + 2 / 12, "feet"),
  25251. weight: math.unit(50, "kg"),
  25252. name: "Front",
  25253. image: {
  25254. source: "./media/characters/mercury-crescent/front.svg",
  25255. extra: 1088 / 1033,
  25256. bottom: 18.9 / 1109
  25257. }
  25258. },
  25259. },
  25260. [
  25261. {
  25262. name: "Normal",
  25263. height: math.unit(5 + 2 / 12, "feet"),
  25264. default: true
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(2, "feet"),
  25273. weight: math.unit(15, "kg"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/diamond-jones/front.svg",
  25277. bottom: 16 / 568
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(2, "feet"),
  25285. default: true
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25291. {
  25292. front: {
  25293. height: math.unit(3, "feet"),
  25294. weight: math.unit(30, "kg"),
  25295. name: "Front",
  25296. image: {
  25297. source: "./media/characters/sweet-bit/front.svg",
  25298. extra: 675 / 567,
  25299. bottom: 27.7 / 703
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "Normal",
  25306. height: math.unit(3, "feet"),
  25307. default: true
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25313. {
  25314. side: {
  25315. height: math.unit(9.178, "feet"),
  25316. weight: math.unit(500, "lb"),
  25317. name: "Side",
  25318. image: {
  25319. source: "./media/characters/umbrazen/side.svg",
  25320. extra: 1730 / 1473,
  25321. bottom: 34.6 / 1765
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Normal",
  25328. height: math.unit(9.178, "feet"),
  25329. default: true
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25335. {
  25336. front: {
  25337. height: math.unit(10, "feet"),
  25338. weight: math.unit(750, "lb"),
  25339. name: "Front",
  25340. image: {
  25341. source: "./media/characters/arlist/front.svg",
  25342. extra: 961 / 778,
  25343. bottom: 6.2 / 986
  25344. }
  25345. },
  25346. },
  25347. [
  25348. {
  25349. name: "Normal",
  25350. height: math.unit(10, "feet"),
  25351. default: true
  25352. },
  25353. ]
  25354. ))
  25355. characterMakers.push(() => makeCharacter(
  25356. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25357. {
  25358. front: {
  25359. height: math.unit(5 + 1 / 12, "feet"),
  25360. weight: math.unit(110, "lb"),
  25361. name: "Front",
  25362. image: {
  25363. source: "./media/characters/aradel/front.svg",
  25364. extra: 324 / 303,
  25365. bottom: 3.6 / 329.4
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Normal",
  25372. height: math.unit(5 + 1 / 12, "feet"),
  25373. default: true
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25379. {
  25380. front: {
  25381. height: math.unit(3 + 8 / 12, "feet"),
  25382. weight: math.unit(50, "lb"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/serryn/front.svg",
  25386. extra: 1792 / 1656,
  25387. bottom: 43.5 / 1840
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(3 + 8 / 12, "feet"),
  25395. default: true
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Xavier Thyme" },
  25401. {
  25402. front: {
  25403. height: math.unit(7 + 10 / 12, "feet"),
  25404. weight: math.unit(255, "lb"),
  25405. name: "Front",
  25406. image: {
  25407. source: "./media/characters/xavier-thyme/front.svg",
  25408. extra: 3733 / 3642,
  25409. bottom: 131 / 3869
  25410. }
  25411. },
  25412. frontRaven: {
  25413. height: math.unit(7 + 10 / 12, "feet"),
  25414. weight: math.unit(255, "lb"),
  25415. name: "Front (Raven)",
  25416. image: {
  25417. source: "./media/characters/xavier-thyme/front-raven.svg",
  25418. extra: 4385 / 3642,
  25419. bottom: 131 / 4517
  25420. }
  25421. },
  25422. },
  25423. [
  25424. {
  25425. name: "Normal",
  25426. height: math.unit(7 + 10 / 12, "feet"),
  25427. default: true
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25433. {
  25434. front: {
  25435. height: math.unit(1.6, "m"),
  25436. weight: math.unit(50, "kg"),
  25437. name: "Front",
  25438. image: {
  25439. source: "./media/characters/kiki/front.svg",
  25440. extra: 4682 / 3610,
  25441. bottom: 115 / 4777
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Normal",
  25448. height: math.unit(1.6, "meters"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(50, "m"),
  25458. weight: math.unit(500, "tonnes"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/ryoko/front.svg",
  25462. extra: 4632 / 3926,
  25463. bottom: 193 / 4823
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Normal",
  25470. height: math.unit(50, "meters"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(30, "m"),
  25480. weight: math.unit(22, "tonnes"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/elio/front.svg",
  25484. extra: 4582 / 3720,
  25485. bottom: 236 / 4828
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Normal",
  25492. height: math.unit(30, "meters"),
  25493. default: true
  25494. },
  25495. ]
  25496. ))
  25497. characterMakers.push(() => makeCharacter(
  25498. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25499. {
  25500. front: {
  25501. height: math.unit(6 + 3 / 12, "feet"),
  25502. weight: math.unit(120, "lb"),
  25503. name: "Front",
  25504. image: {
  25505. source: "./media/characters/azura/front.svg",
  25506. extra: 1149 / 1135,
  25507. bottom: 45 / 1194
  25508. }
  25509. },
  25510. frontClothed: {
  25511. height: math.unit(6 + 3 / 12, "feet"),
  25512. weight: math.unit(120, "lb"),
  25513. name: "Front (Clothed)",
  25514. image: {
  25515. source: "./media/characters/azura/front-clothed.svg",
  25516. extra: 1149 / 1135,
  25517. bottom: 45 / 1194
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Normal",
  25524. height: math.unit(6 + 3 / 12, "feet"),
  25525. default: true
  25526. },
  25527. {
  25528. name: "Macro",
  25529. height: math.unit(20 + 6 / 12, "feet")
  25530. },
  25531. {
  25532. name: "Megamacro",
  25533. height: math.unit(12, "miles")
  25534. },
  25535. {
  25536. name: "Gigamacro",
  25537. height: math.unit(10000, "miles")
  25538. },
  25539. {
  25540. name: "Teramacro",
  25541. height: math.unit(900000, "miles")
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25547. {
  25548. front: {
  25549. height: math.unit(12, "feet"),
  25550. weight: math.unit(1, "ton"),
  25551. capacity: math.unit(660000, "gallons"),
  25552. name: "Front",
  25553. image: {
  25554. source: "./media/characters/zeus/front.svg",
  25555. extra: 5005 / 4717,
  25556. bottom: 363 / 5388
  25557. }
  25558. },
  25559. },
  25560. [
  25561. {
  25562. name: "Normal",
  25563. height: math.unit(12, "feet")
  25564. },
  25565. {
  25566. name: "Preferred Size",
  25567. height: math.unit(0.5, "miles"),
  25568. default: true
  25569. },
  25570. {
  25571. name: "Giga Horse",
  25572. height: math.unit(300, "miles")
  25573. },
  25574. {
  25575. name: "Riding Planets",
  25576. height: math.unit(30, "megameters")
  25577. },
  25578. {
  25579. name: "Cosmic Giant",
  25580. height: math.unit(3, "zettameters")
  25581. },
  25582. {
  25583. name: "Breeding God",
  25584. height: math.unit(9.92e22, "yottameters")
  25585. },
  25586. ]
  25587. ))
  25588. characterMakers.push(() => makeCharacter(
  25589. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25590. {
  25591. side: {
  25592. height: math.unit(9, "feet"),
  25593. weight: math.unit(1500, "kg"),
  25594. name: "Side",
  25595. image: {
  25596. source: "./media/characters/fang/side.svg",
  25597. extra: 924 / 866,
  25598. bottom: 47.5 / 972.3
  25599. }
  25600. },
  25601. },
  25602. [
  25603. {
  25604. name: "Normal",
  25605. height: math.unit(9, "feet"),
  25606. default: true
  25607. },
  25608. {
  25609. name: "Macro",
  25610. height: math.unit(75 + 6 / 12, "feet")
  25611. },
  25612. {
  25613. name: "Teramacro",
  25614. height: math.unit(50000, "miles")
  25615. },
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25620. {
  25621. front: {
  25622. height: math.unit(10, "feet"),
  25623. weight: math.unit(2, "tons"),
  25624. name: "Front",
  25625. image: {
  25626. source: "./media/characters/rekhit/front.svg",
  25627. extra: 2796 / 2590,
  25628. bottom: 225 / 3022
  25629. }
  25630. },
  25631. },
  25632. [
  25633. {
  25634. name: "Normal",
  25635. height: math.unit(10, "feet"),
  25636. default: true
  25637. },
  25638. {
  25639. name: "Macro",
  25640. height: math.unit(500, "feet")
  25641. },
  25642. ]
  25643. ))
  25644. characterMakers.push(() => makeCharacter(
  25645. { name: "Dahlia Verrick" },
  25646. {
  25647. front: {
  25648. height: math.unit(7 + 6.451 / 12, "feet"),
  25649. weight: math.unit(310, "lb"),
  25650. name: "Front",
  25651. image: {
  25652. source: "./media/characters/dahlia-verrick/front.svg",
  25653. extra: 1488 / 1365,
  25654. bottom: 6.2 / 1495
  25655. }
  25656. },
  25657. back: {
  25658. height: math.unit(7 + 6.451 / 12, "feet"),
  25659. weight: math.unit(310, "lb"),
  25660. name: "Back",
  25661. image: {
  25662. source: "./media/characters/dahlia-verrick/back.svg",
  25663. extra: 1472 / 1351,
  25664. bottom: 5.28 / 1477
  25665. }
  25666. },
  25667. frontBusiness: {
  25668. height: math.unit(7 + 6.451 / 12, "feet"),
  25669. weight: math.unit(200, "lb"),
  25670. name: "Front (Business)",
  25671. image: {
  25672. source: "./media/characters/dahlia-verrick/front-business.svg",
  25673. extra: 1478 / 1381,
  25674. bottom: 5.5 / 1484
  25675. }
  25676. },
  25677. frontCasual: {
  25678. height: math.unit(7 + 6.451 / 12, "feet"),
  25679. weight: math.unit(200, "lb"),
  25680. name: "Front (Casual)",
  25681. image: {
  25682. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25683. extra: 1478 / 1381,
  25684. bottom: 5.5 / 1484
  25685. }
  25686. },
  25687. },
  25688. [
  25689. {
  25690. name: "Travel-Sized",
  25691. height: math.unit(7.45, "inches")
  25692. },
  25693. {
  25694. name: "Normal",
  25695. height: math.unit(7 + 6.451 / 12, "feet"),
  25696. default: true
  25697. },
  25698. {
  25699. name: "Hitting the Town",
  25700. height: math.unit(37 + 8 / 12, "feet")
  25701. },
  25702. {
  25703. name: "Stomp in the Suburbs",
  25704. height: math.unit(964 + 9.728 / 12, "feet")
  25705. },
  25706. {
  25707. name: "Sit on the City",
  25708. height: math.unit(61747 + 10.592 / 12, "feet")
  25709. },
  25710. {
  25711. name: "Glomp the Globe",
  25712. height: math.unit(252919327 + 4.832 / 12, "feet")
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25718. {
  25719. front: {
  25720. height: math.unit(6 + 4 / 12, "feet"),
  25721. weight: math.unit(320, "lb"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/balina-mahigan/front.svg",
  25725. extra: 447 / 428,
  25726. bottom: 18 / 466
  25727. }
  25728. },
  25729. back: {
  25730. height: math.unit(6 + 4 / 12, "feet"),
  25731. weight: math.unit(320, "lb"),
  25732. name: "Back",
  25733. image: {
  25734. source: "./media/characters/balina-mahigan/back.svg",
  25735. extra: 445 / 428,
  25736. bottom: 4.07 / 448
  25737. }
  25738. },
  25739. arm: {
  25740. height: math.unit(1.88, "feet"),
  25741. name: "Arm",
  25742. image: {
  25743. source: "./media/characters/balina-mahigan/arm.svg"
  25744. }
  25745. },
  25746. backPort: {
  25747. height: math.unit(0.685, "feet"),
  25748. name: "Back Port",
  25749. image: {
  25750. source: "./media/characters/balina-mahigan/back-port.svg"
  25751. }
  25752. },
  25753. hoofpaw: {
  25754. height: math.unit(1.41, "feet"),
  25755. name: "Hoofpaw",
  25756. image: {
  25757. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25758. }
  25759. },
  25760. leftHandBack: {
  25761. height: math.unit(0.938, "feet"),
  25762. name: "Left Hand (Back)",
  25763. image: {
  25764. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25765. }
  25766. },
  25767. leftHandFront: {
  25768. height: math.unit(0.938, "feet"),
  25769. name: "Left Hand (Front)",
  25770. image: {
  25771. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25772. }
  25773. },
  25774. rightHandBack: {
  25775. height: math.unit(0.95, "feet"),
  25776. name: "Right Hand (Back)",
  25777. image: {
  25778. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25779. }
  25780. },
  25781. rightHandFront: {
  25782. height: math.unit(0.95, "feet"),
  25783. name: "Right Hand (Front)",
  25784. image: {
  25785. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Normal",
  25792. height: math.unit(6 + 4 / 12, "feet"),
  25793. default: true
  25794. },
  25795. ]
  25796. ))
  25797. characterMakers.push(() => makeCharacter(
  25798. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25799. {
  25800. front: {
  25801. height: math.unit(6, "feet"),
  25802. weight: math.unit(320, "lb"),
  25803. name: "Front",
  25804. image: {
  25805. source: "./media/characters/balina-mejeri/front.svg",
  25806. extra: 517 / 488,
  25807. bottom: 44.2 / 561
  25808. }
  25809. },
  25810. },
  25811. [
  25812. {
  25813. name: "Normal",
  25814. height: math.unit(6 + 4 / 12, "feet")
  25815. },
  25816. {
  25817. name: "Business",
  25818. height: math.unit(155, "feet"),
  25819. default: true
  25820. },
  25821. ]
  25822. ))
  25823. characterMakers.push(() => makeCharacter(
  25824. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25825. {
  25826. kneeling: {
  25827. height: math.unit(6 + 4 / 12, "feet"),
  25828. weight: math.unit(300 * 20, "lb"),
  25829. name: "Kneeling",
  25830. image: {
  25831. source: "./media/characters/balbarian/kneeling.svg",
  25832. extra: 922 / 862,
  25833. bottom: 42.4 / 965
  25834. }
  25835. },
  25836. },
  25837. [
  25838. {
  25839. name: "Normal",
  25840. height: math.unit(6 + 4 / 12, "feet")
  25841. },
  25842. {
  25843. name: "Treasured",
  25844. height: math.unit(18 + 9 / 12, "feet"),
  25845. default: true
  25846. },
  25847. {
  25848. name: "Macro",
  25849. height: math.unit(900, "feet")
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25855. {
  25856. front: {
  25857. height: math.unit(6 + 4 / 12, "feet"),
  25858. weight: math.unit(325, "lb"),
  25859. name: "Front",
  25860. image: {
  25861. source: "./media/characters/balina-amarini/front.svg",
  25862. extra: 415 / 403,
  25863. bottom: 19 / 433.4
  25864. }
  25865. },
  25866. back: {
  25867. height: math.unit(6 + 4 / 12, "feet"),
  25868. weight: math.unit(325, "lb"),
  25869. name: "Back",
  25870. image: {
  25871. source: "./media/characters/balina-amarini/back.svg",
  25872. extra: 415 / 403,
  25873. bottom: 13.5 / 432
  25874. }
  25875. },
  25876. overdrive: {
  25877. height: math.unit(6 + 4 / 12, "feet"),
  25878. weight: math.unit(400, "lb"),
  25879. name: "Overdrive",
  25880. image: {
  25881. source: "./media/characters/balina-amarini/overdrive.svg",
  25882. extra: 269 / 259,
  25883. bottom: 12 / 282
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Boom",
  25890. height: math.unit(9 + 10 / 12, "feet"),
  25891. default: true
  25892. },
  25893. {
  25894. name: "Macro",
  25895. height: math.unit(280, "feet")
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25901. {
  25902. goddess: {
  25903. height: math.unit(600, "feet"),
  25904. weight: math.unit(2000000, "tons"),
  25905. name: "Goddess",
  25906. image: {
  25907. source: "./media/characters/lady-kubwa/goddess.svg",
  25908. extra: 1240.5 / 1223,
  25909. bottom: 22 / 1263
  25910. }
  25911. },
  25912. goddesser: {
  25913. height: math.unit(900, "feet"),
  25914. weight: math.unit(20000000, "lb"),
  25915. name: "Goddess-er",
  25916. image: {
  25917. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25918. extra: 899 / 888,
  25919. bottom: 12.6 / 912
  25920. }
  25921. },
  25922. },
  25923. [
  25924. {
  25925. name: "Macro",
  25926. height: math.unit(600, "feet"),
  25927. default: true
  25928. },
  25929. {
  25930. name: "Megamacro",
  25931. height: math.unit(250, "miles")
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(7 + 7 / 12, "feet"),
  25940. weight: math.unit(250, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/tala-grovehorn/front.svg",
  25944. extra: 2636 / 2525,
  25945. bottom: 147 / 2781
  25946. }
  25947. },
  25948. back: {
  25949. height: math.unit(7 + 7 / 12, "feet"),
  25950. weight: math.unit(250, "lb"),
  25951. name: "Back",
  25952. image: {
  25953. source: "./media/characters/tala-grovehorn/back.svg",
  25954. extra: 2635 / 2539,
  25955. bottom: 100 / 2732.8
  25956. }
  25957. },
  25958. mouth: {
  25959. height: math.unit(1.15, "feet"),
  25960. name: "Mouth",
  25961. image: {
  25962. source: "./media/characters/tala-grovehorn/mouth.svg"
  25963. }
  25964. },
  25965. dick: {
  25966. height: math.unit(2.36, "feet"),
  25967. name: "Dick",
  25968. image: {
  25969. source: "./media/characters/tala-grovehorn/dick.svg"
  25970. }
  25971. },
  25972. slit: {
  25973. height: math.unit(0.61, "feet"),
  25974. name: "Slit",
  25975. image: {
  25976. source: "./media/characters/tala-grovehorn/slit.svg"
  25977. }
  25978. },
  25979. },
  25980. [
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25985. {
  25986. front: {
  25987. height: math.unit(7 + 7 / 12, "feet"),
  25988. weight: math.unit(225, "lb"),
  25989. name: "Front",
  25990. image: {
  25991. source: "./media/characters/epona/front.svg",
  25992. extra: 2445 / 2290,
  25993. bottom: 251 / 2696
  25994. }
  25995. },
  25996. back: {
  25997. height: math.unit(7 + 7 / 12, "feet"),
  25998. weight: math.unit(225, "lb"),
  25999. name: "Back",
  26000. image: {
  26001. source: "./media/characters/epona/back.svg",
  26002. extra: 2546 / 2408,
  26003. bottom: 44 / 2589
  26004. }
  26005. },
  26006. genitals: {
  26007. height: math.unit(1.5, "feet"),
  26008. name: "Genitals",
  26009. image: {
  26010. source: "./media/characters/epona/genitals.svg"
  26011. }
  26012. },
  26013. },
  26014. [
  26015. {
  26016. name: "Normal",
  26017. height: math.unit(7 + 7 / 12, "feet"),
  26018. default: true
  26019. },
  26020. ]
  26021. ))
  26022. characterMakers.push(() => makeCharacter(
  26023. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26024. {
  26025. front: {
  26026. height: math.unit(7, "feet"),
  26027. weight: math.unit(518, "lb"),
  26028. name: "Front",
  26029. image: {
  26030. source: "./media/characters/avia-bloodbourn/front.svg",
  26031. extra: 1466 / 1350,
  26032. bottom: 65 / 1527
  26033. }
  26034. },
  26035. },
  26036. [
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(9.35, "feet"),
  26044. weight: math.unit(600, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/amera/front.svg",
  26048. extra: 891 / 818,
  26049. bottom: 30 / 922.7
  26050. }
  26051. },
  26052. back: {
  26053. height: math.unit(9.35, "feet"),
  26054. weight: math.unit(600, "lb"),
  26055. name: "Back",
  26056. image: {
  26057. source: "./media/characters/amera/back.svg",
  26058. extra: 876 / 824,
  26059. bottom: 6.8 / 884
  26060. }
  26061. },
  26062. dick: {
  26063. height: math.unit(2.14, "feet"),
  26064. name: "Dick",
  26065. image: {
  26066. source: "./media/characters/amera/dick.svg"
  26067. }
  26068. },
  26069. },
  26070. [
  26071. {
  26072. name: "Normal",
  26073. height: math.unit(9.35, "feet"),
  26074. default: true
  26075. },
  26076. ]
  26077. ))
  26078. characterMakers.push(() => makeCharacter(
  26079. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26080. {
  26081. kneeling: {
  26082. height: math.unit(3 + 4 / 12, "feet"),
  26083. weight: math.unit(90, "lb"),
  26084. name: "Kneeling",
  26085. image: {
  26086. source: "./media/characters/rosewen/kneeling.svg",
  26087. extra: 1835 / 1571,
  26088. bottom: 27.7 / 1862
  26089. }
  26090. },
  26091. },
  26092. [
  26093. {
  26094. name: "Normal",
  26095. height: math.unit(3 + 4 / 12, "feet"),
  26096. default: true
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(5 + 10 / 12, "feet"),
  26105. weight: math.unit(200, "lb"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/sabah/front.svg",
  26109. extra: 849 / 763,
  26110. bottom: 33.9 / 881
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Normal",
  26117. height: math.unit(5 + 10 / 12, "feet"),
  26118. default: true
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26124. {
  26125. front: {
  26126. height: math.unit(3 + 5 / 12, "feet"),
  26127. weight: math.unit(40, "kg"),
  26128. name: "Front",
  26129. image: {
  26130. source: "./media/characters/purple-flame/front.svg",
  26131. extra: 1577 / 1412,
  26132. bottom: 97 / 1694
  26133. }
  26134. },
  26135. frontDressed: {
  26136. height: math.unit(3 + 5 / 12, "feet"),
  26137. weight: math.unit(40, "kg"),
  26138. name: "Front (Dressed)",
  26139. image: {
  26140. source: "./media/characters/purple-flame/front-dressed.svg",
  26141. extra: 1577 / 1412,
  26142. bottom: 97 / 1694
  26143. }
  26144. },
  26145. headphones: {
  26146. height: math.unit(0.85, "feet"),
  26147. name: "Headphones",
  26148. image: {
  26149. source: "./media/characters/purple-flame/headphones.svg"
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Really Small",
  26156. height: math.unit(5, "cm")
  26157. },
  26158. {
  26159. name: "Micro",
  26160. height: math.unit(1 + 5 / 12, "feet")
  26161. },
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(3 + 5 / 12, "feet"),
  26165. default: true
  26166. },
  26167. {
  26168. name: "Minimacro",
  26169. height: math.unit(125, "feet")
  26170. },
  26171. {
  26172. name: "Macro",
  26173. height: math.unit(0.5, "miles")
  26174. },
  26175. {
  26176. name: "Megamacro",
  26177. height: math.unit(50, "miles")
  26178. },
  26179. {
  26180. name: "Gigantic",
  26181. height: math.unit(750, "miles")
  26182. },
  26183. {
  26184. name: "Planetary",
  26185. height: math.unit(15000, "miles")
  26186. },
  26187. ]
  26188. ))
  26189. characterMakers.push(() => makeCharacter(
  26190. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26191. {
  26192. front: {
  26193. height: math.unit(14, "feet"),
  26194. weight: math.unit(959, "lb"),
  26195. name: "Front",
  26196. image: {
  26197. source: "./media/characters/arsenal/front.svg",
  26198. extra: 2357 / 2157,
  26199. bottom: 93 / 2458
  26200. }
  26201. },
  26202. },
  26203. [
  26204. {
  26205. name: "Normal",
  26206. height: math.unit(14, "feet"),
  26207. default: true
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26213. {
  26214. front: {
  26215. height: math.unit(6, "feet"),
  26216. weight: math.unit(150, "lb"),
  26217. name: "Front",
  26218. image: {
  26219. source: "./media/characters/adira/front.svg",
  26220. extra: 1078 / 1029,
  26221. bottom: 87 / 1166
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Micro",
  26228. height: math.unit(4, "inches"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(50, "feet")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(16, "feet"),
  26242. weight: math.unit(1000, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/grim/front.svg",
  26246. extra: 622 / 614,
  26247. bottom: 18.1 / 642
  26248. }
  26249. },
  26250. back: {
  26251. height: math.unit(16, "feet"),
  26252. weight: math.unit(1000, "lb"),
  26253. name: "Back",
  26254. image: {
  26255. source: "./media/characters/grim/back.svg",
  26256. extra: 610.6 / 602,
  26257. bottom: 40.8 / 652
  26258. }
  26259. },
  26260. hunched: {
  26261. height: math.unit(9.75, "feet"),
  26262. weight: math.unit(1000, "lb"),
  26263. name: "Hunched",
  26264. image: {
  26265. source: "./media/characters/grim/hunched.svg",
  26266. extra: 304 / 297,
  26267. bottom: 35.4 / 394
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(16, "feet"),
  26275. default: true
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26281. {
  26282. front: {
  26283. height: math.unit(2.3, "meters"),
  26284. weight: math.unit(300, "lb"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/sinja/front-sfw.svg",
  26288. extra: 1393 / 1294,
  26289. bottom: 70 / 1463
  26290. }
  26291. },
  26292. frontNsfw: {
  26293. height: math.unit(2.3, "meters"),
  26294. weight: math.unit(300, "lb"),
  26295. name: "Front (NSFW)",
  26296. image: {
  26297. source: "./media/characters/sinja/front-nsfw.svg",
  26298. extra: 1393 / 1294,
  26299. bottom: 70 / 1463
  26300. }
  26301. },
  26302. back: {
  26303. height: math.unit(2.3, "meters"),
  26304. weight: math.unit(300, "lb"),
  26305. name: "Back",
  26306. image: {
  26307. source: "./media/characters/sinja/back.svg",
  26308. extra: 1393 / 1294,
  26309. bottom: 70 / 1463
  26310. }
  26311. },
  26312. head: {
  26313. height: math.unit(1.771, "feet"),
  26314. name: "Head",
  26315. image: {
  26316. source: "./media/characters/sinja/head.svg"
  26317. }
  26318. },
  26319. slit: {
  26320. height: math.unit(0.8, "feet"),
  26321. name: "Slit",
  26322. image: {
  26323. source: "./media/characters/sinja/slit.svg"
  26324. }
  26325. },
  26326. },
  26327. [
  26328. {
  26329. name: "Normal",
  26330. height: math.unit(2.3, "meters")
  26331. },
  26332. {
  26333. name: "Macro",
  26334. height: math.unit(91, "meters"),
  26335. default: true
  26336. },
  26337. {
  26338. name: "Megamacro",
  26339. height: math.unit(91440, "meters")
  26340. },
  26341. {
  26342. name: "Gigamacro",
  26343. height: math.unit(60960000, "meters")
  26344. },
  26345. {
  26346. name: "Teramacro",
  26347. height: math.unit(9144000000, "meters")
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26353. {
  26354. front: {
  26355. height: math.unit(1.7, "meters"),
  26356. weight: math.unit(130, "lb"),
  26357. name: "Front",
  26358. image: {
  26359. source: "./media/characters/kyu/front.svg",
  26360. extra: 415 / 395,
  26361. bottom: 5 / 420
  26362. }
  26363. },
  26364. head: {
  26365. height: math.unit(1.75, "feet"),
  26366. name: "Head",
  26367. image: {
  26368. source: "./media/characters/kyu/head.svg"
  26369. }
  26370. },
  26371. foot: {
  26372. height: math.unit(0.81, "feet"),
  26373. name: "Foot",
  26374. image: {
  26375. source: "./media/characters/kyu/foot.svg"
  26376. }
  26377. },
  26378. },
  26379. [
  26380. {
  26381. name: "Normal",
  26382. height: math.unit(1.7, "meters")
  26383. },
  26384. {
  26385. name: "Macro",
  26386. height: math.unit(131, "feet"),
  26387. default: true
  26388. },
  26389. {
  26390. name: "Megamacro",
  26391. height: math.unit(91440, "meters")
  26392. },
  26393. {
  26394. name: "Gigamacro",
  26395. height: math.unit(60960000, "meters")
  26396. },
  26397. {
  26398. name: "Teramacro",
  26399. height: math.unit(9144000000, "meters")
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26405. {
  26406. front: {
  26407. height: math.unit(7 + 1 / 12, "feet"),
  26408. weight: math.unit(250, "lb"),
  26409. name: "Front",
  26410. image: {
  26411. source: "./media/characters/joey/front.svg",
  26412. extra: 1791 / 1537,
  26413. bottom: 28 / 1816
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Micro",
  26420. height: math.unit(3, "inches")
  26421. },
  26422. {
  26423. name: "Normal",
  26424. height: math.unit(7 + 1 / 12, "feet"),
  26425. default: true
  26426. },
  26427. ]
  26428. ))
  26429. characterMakers.push(() => makeCharacter(
  26430. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26431. {
  26432. front: {
  26433. height: math.unit(165, "cm"),
  26434. weight: math.unit(140, "lb"),
  26435. name: "Front",
  26436. image: {
  26437. source: "./media/characters/sam-evans/front.svg",
  26438. extra: 3417 / 3230,
  26439. bottom: 41.3 / 3417
  26440. }
  26441. },
  26442. frontSixTails: {
  26443. height: math.unit(165, "cm"),
  26444. weight: math.unit(140, "lb"),
  26445. name: "Front-six-tails",
  26446. image: {
  26447. source: "./media/characters/sam-evans/front-six-tails.svg",
  26448. extra: 3417 / 3230,
  26449. bottom: 41.3 / 3417
  26450. }
  26451. },
  26452. back: {
  26453. height: math.unit(165, "cm"),
  26454. weight: math.unit(140, "lb"),
  26455. name: "Back",
  26456. image: {
  26457. source: "./media/characters/sam-evans/back.svg",
  26458. extra: 3227 / 3032,
  26459. bottom: 6.8 / 3234
  26460. }
  26461. },
  26462. face: {
  26463. height: math.unit(0.68, "feet"),
  26464. name: "Face",
  26465. image: {
  26466. source: "./media/characters/sam-evans/face.svg"
  26467. }
  26468. },
  26469. },
  26470. [
  26471. {
  26472. name: "Normal",
  26473. height: math.unit(165, "cm"),
  26474. default: true
  26475. },
  26476. {
  26477. name: "Macro",
  26478. height: math.unit(100, "meters")
  26479. },
  26480. {
  26481. name: "Macro+",
  26482. height: math.unit(800, "meters")
  26483. },
  26484. {
  26485. name: "Macro++",
  26486. height: math.unit(3, "km")
  26487. },
  26488. {
  26489. name: "Macro+++",
  26490. height: math.unit(30, "km")
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26496. {
  26497. front: {
  26498. height: math.unit(10, "feet"),
  26499. weight: math.unit(750, "lb"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/juliet-a/front.svg",
  26503. extra: 1766 / 1720,
  26504. bottom: 43 / 1809
  26505. }
  26506. },
  26507. back: {
  26508. height: math.unit(10, "feet"),
  26509. weight: math.unit(750, "lb"),
  26510. name: "Back",
  26511. image: {
  26512. source: "./media/characters/juliet-a/back.svg",
  26513. extra: 1781 / 1734,
  26514. bottom: 35 / 1810,
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(10, "feet"),
  26522. default: true
  26523. },
  26524. {
  26525. name: "Dragon Form",
  26526. height: math.unit(250, "feet")
  26527. },
  26528. {
  26529. name: "Macro",
  26530. height: math.unit(1000, "feet")
  26531. },
  26532. {
  26533. name: "Megamacro",
  26534. height: math.unit(10000, "feet")
  26535. }
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26540. {
  26541. regular: {
  26542. height: math.unit(7 + 3 / 12, "feet"),
  26543. weight: math.unit(260, "lb"),
  26544. name: "Regular",
  26545. image: {
  26546. source: "./media/characters/wild/regular.svg",
  26547. extra: 97.45 / 92,
  26548. bottom: 6.8 / 104.3
  26549. }
  26550. },
  26551. biggums: {
  26552. height: math.unit(8 + 6 / 12, "feet"),
  26553. weight: math.unit(425, "lb"),
  26554. name: "Biggums",
  26555. image: {
  26556. source: "./media/characters/wild/biggums.svg",
  26557. extra: 97.45 / 92,
  26558. bottom: 7.5 / 132.34
  26559. }
  26560. },
  26561. mawRegular: {
  26562. height: math.unit(1.24, "feet"),
  26563. name: "Maw (Regular)",
  26564. image: {
  26565. source: "./media/characters/wild/maw.svg"
  26566. }
  26567. },
  26568. mawBiggums: {
  26569. height: math.unit(1.47, "feet"),
  26570. name: "Maw (Biggums)",
  26571. image: {
  26572. source: "./media/characters/wild/maw.svg"
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Normal",
  26579. height: math.unit(7 + 3 / 12, "feet"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26586. {
  26587. front: {
  26588. height: math.unit(2.5, "meters"),
  26589. weight: math.unit(200, "kg"),
  26590. name: "Front",
  26591. image: {
  26592. source: "./media/characters/vidar/front.svg",
  26593. extra: 2994 / 2795,
  26594. bottom: 56 / 3061
  26595. }
  26596. },
  26597. back: {
  26598. height: math.unit(2.5, "meters"),
  26599. weight: math.unit(200, "kg"),
  26600. name: "Back",
  26601. image: {
  26602. source: "./media/characters/vidar/back.svg",
  26603. extra: 3131 / 2928,
  26604. bottom: 13.5 / 3141.5
  26605. }
  26606. },
  26607. feral: {
  26608. height: math.unit(2.5, "meters"),
  26609. weight: math.unit(2000, "kg"),
  26610. name: "Feral",
  26611. image: {
  26612. source: "./media/characters/vidar/feral.svg",
  26613. extra: 2790 / 1765,
  26614. bottom: 6 / 2796
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(2.5, "meters"),
  26622. default: true
  26623. },
  26624. {
  26625. name: "Macro",
  26626. height: math.unit(100, "meters")
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26632. {
  26633. front: {
  26634. height: math.unit(5 + 9 / 12, "feet"),
  26635. weight: math.unit(120, "lb"),
  26636. name: "Front",
  26637. image: {
  26638. source: "./media/characters/ash/front.svg",
  26639. extra: 2189 / 1961,
  26640. bottom: 5.2 / 2194
  26641. }
  26642. },
  26643. },
  26644. [
  26645. {
  26646. name: "Normal",
  26647. height: math.unit(5 + 9 / 12, "feet"),
  26648. default: true
  26649. },
  26650. ]
  26651. ))
  26652. characterMakers.push(() => makeCharacter(
  26653. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26654. {
  26655. front: {
  26656. height: math.unit(9, "feet"),
  26657. weight: math.unit(10000, "lb"),
  26658. name: "Front",
  26659. image: {
  26660. source: "./media/characters/gygabite/front.svg",
  26661. bottom: 31.7 / 537.8,
  26662. extra: 505 / 370
  26663. }
  26664. },
  26665. },
  26666. [
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(9, "feet"),
  26670. default: true
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26676. {
  26677. front: {
  26678. height: math.unit(12, "feet"),
  26679. weight: math.unit(35000, "lb"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/p0tat0/front.svg",
  26683. extra: 1065 / 921,
  26684. bottom: 55.7 / 1121.25
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Normal",
  26691. height: math.unit(12, "feet"),
  26692. default: true
  26693. },
  26694. ]
  26695. ))
  26696. characterMakers.push(() => makeCharacter(
  26697. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26698. {
  26699. side: {
  26700. height: math.unit(6.5, "feet"),
  26701. weight: math.unit(800, "lb"),
  26702. name: "Side",
  26703. image: {
  26704. source: "./media/characters/dusk/side.svg",
  26705. extra: 615 / 373,
  26706. bottom: 53 / 664
  26707. }
  26708. },
  26709. sitting: {
  26710. height: math.unit(7, "feet"),
  26711. weight: math.unit(800, "lb"),
  26712. name: "Sitting",
  26713. image: {
  26714. source: "./media/characters/dusk/sitting.svg",
  26715. extra: 753 / 425,
  26716. bottom: 33 / 774
  26717. }
  26718. },
  26719. head: {
  26720. height: math.unit(6.1, "feet"),
  26721. name: "Head",
  26722. image: {
  26723. source: "./media/characters/dusk/head.svg"
  26724. }
  26725. },
  26726. },
  26727. [
  26728. {
  26729. name: "Normal",
  26730. height: math.unit(7, "feet"),
  26731. default: true
  26732. },
  26733. ]
  26734. ))
  26735. characterMakers.push(() => makeCharacter(
  26736. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26737. {
  26738. front: {
  26739. height: math.unit(15, "feet"),
  26740. weight: math.unit(7000, "lb"),
  26741. name: "Front",
  26742. image: {
  26743. source: "./media/characters/jay-direwolf/front.svg",
  26744. extra: 1810 / 1732,
  26745. bottom: 66 / 1892
  26746. }
  26747. },
  26748. },
  26749. [
  26750. {
  26751. name: "Normal",
  26752. height: math.unit(15, "feet"),
  26753. default: true
  26754. },
  26755. ]
  26756. ))
  26757. characterMakers.push(() => makeCharacter(
  26758. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26759. {
  26760. front: {
  26761. height: math.unit(4 + 9 / 12, "feet"),
  26762. weight: math.unit(130, "lb"),
  26763. name: "Front",
  26764. image: {
  26765. source: "./media/characters/anchovie/front.svg",
  26766. extra: 382 / 350,
  26767. bottom: 25 / 409
  26768. }
  26769. },
  26770. back: {
  26771. height: math.unit(4 + 9 / 12, "feet"),
  26772. weight: math.unit(130, "lb"),
  26773. name: "Back",
  26774. image: {
  26775. source: "./media/characters/anchovie/back.svg",
  26776. extra: 385 / 352,
  26777. bottom: 16.6 / 402
  26778. }
  26779. },
  26780. frontDressed: {
  26781. height: math.unit(4 + 9 / 12, "feet"),
  26782. weight: math.unit(130, "lb"),
  26783. name: "Front (Dressed)",
  26784. image: {
  26785. source: "./media/characters/anchovie/front-dressed.svg",
  26786. extra: 382 / 350,
  26787. bottom: 25 / 409
  26788. }
  26789. },
  26790. backDressed: {
  26791. height: math.unit(4 + 9 / 12, "feet"),
  26792. weight: math.unit(130, "lb"),
  26793. name: "Back (Dressed)",
  26794. image: {
  26795. source: "./media/characters/anchovie/back-dressed.svg",
  26796. extra: 385 / 352,
  26797. bottom: 16.6 / 402
  26798. }
  26799. },
  26800. },
  26801. [
  26802. {
  26803. name: "Micro",
  26804. height: math.unit(6.4, "inches")
  26805. },
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(4 + 9 / 12, "feet"),
  26809. default: true
  26810. },
  26811. ]
  26812. ))
  26813. characterMakers.push(() => makeCharacter(
  26814. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26815. {
  26816. front: {
  26817. height: math.unit(2, "meters"),
  26818. weight: math.unit(180, "lb"),
  26819. name: "Front",
  26820. image: {
  26821. source: "./media/characters/acidrenamon/front.svg",
  26822. extra: 987 / 890,
  26823. bottom: 22.8 / 1009
  26824. }
  26825. },
  26826. back: {
  26827. height: math.unit(2, "meters"),
  26828. weight: math.unit(180, "lb"),
  26829. name: "Back",
  26830. image: {
  26831. source: "./media/characters/acidrenamon/back.svg",
  26832. extra: 983 / 891,
  26833. bottom: 8.4 / 992
  26834. }
  26835. },
  26836. head: {
  26837. height: math.unit(1.92, "feet"),
  26838. name: "Head",
  26839. image: {
  26840. source: "./media/characters/acidrenamon/head.svg"
  26841. }
  26842. },
  26843. rump: {
  26844. height: math.unit(1.72, "feet"),
  26845. name: "Rump",
  26846. image: {
  26847. source: "./media/characters/acidrenamon/rump.svg"
  26848. }
  26849. },
  26850. tail: {
  26851. height: math.unit(4.2, "feet"),
  26852. name: "Tail",
  26853. image: {
  26854. source: "./media/characters/acidrenamon/tail.svg"
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Normal",
  26861. height: math.unit(2, "meters"),
  26862. default: true
  26863. },
  26864. {
  26865. name: "Minimacro",
  26866. height: math.unit(7, "meters")
  26867. },
  26868. {
  26869. name: "Macro",
  26870. height: math.unit(200, "meters")
  26871. },
  26872. {
  26873. name: "Gigamacro",
  26874. height: math.unit(0.2, "earths")
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(6, "feet"),
  26883. weight: math.unit(150, "lb"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/kenzie-lee/front.svg",
  26887. extra: 1525 / 1465,
  26888. bottom: 45 / 1570
  26889. }
  26890. },
  26891. side: {
  26892. height: math.unit(6, "feet"),
  26893. weight: math.unit(150, "lb"),
  26894. name: "Side",
  26895. image: {
  26896. source: "./media/characters/kenzie-lee/side.svg",
  26897. extra: 5505 / 5383,
  26898. bottom: 60 / 5573
  26899. }
  26900. },
  26901. paw: {
  26902. height: math.unit(0.57, "feet"),
  26903. name: "Paw",
  26904. image: {
  26905. source: "./media/characters/kenzie-lee/paw.svg"
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Normal",
  26912. height: math.unit(152, "feet"),
  26913. default: true
  26914. },
  26915. {
  26916. name: "Megamacro",
  26917. height: math.unit(7, "miles")
  26918. },
  26919. {
  26920. name: "Gigamacro",
  26921. height: math.unit(8000, "miles")
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26927. {
  26928. side: {
  26929. height: math.unit(6, "feet"),
  26930. weight: math.unit(150, "lb"),
  26931. name: "Side",
  26932. image: {
  26933. source: "./media/characters/withers/side.svg",
  26934. extra: 1830 / 1728,
  26935. bottom: 96 / 1927
  26936. }
  26937. },
  26938. front: {
  26939. height: math.unit(6, "feet"),
  26940. weight: math.unit(150, "lb"),
  26941. name: "Front",
  26942. image: {
  26943. source: "./media/characters/withers/front.svg",
  26944. extra: 1514 / 1438,
  26945. bottom: 118 / 1632
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Macro",
  26952. height: math.unit(168, "feet"),
  26953. default: true
  26954. },
  26955. {
  26956. name: "Megamacro",
  26957. height: math.unit(15, "miles")
  26958. }
  26959. ]
  26960. ))
  26961. characterMakers.push(() => makeCharacter(
  26962. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26963. {
  26964. front: {
  26965. height: math.unit(6 + 7 / 12, "feet"),
  26966. weight: math.unit(250, "lb"),
  26967. name: "Front",
  26968. image: {
  26969. source: "./media/characters/nemoskii/front.svg",
  26970. extra: 2270 / 1734,
  26971. bottom: 86 / 2354
  26972. }
  26973. },
  26974. back: {
  26975. height: math.unit(6 + 7 / 12, "feet"),
  26976. weight: math.unit(250, "lb"),
  26977. name: "Back",
  26978. image: {
  26979. source: "./media/characters/nemoskii/back.svg",
  26980. extra: 1845 / 1788,
  26981. bottom: 10.5 / 1852
  26982. }
  26983. },
  26984. head: {
  26985. height: math.unit(1.31, "feet"),
  26986. name: "Head",
  26987. image: {
  26988. source: "./media/characters/nemoskii/head.svg"
  26989. }
  26990. },
  26991. },
  26992. [
  26993. {
  26994. name: "Micro",
  26995. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26996. },
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(6 + 7 / 12, "feet"),
  27000. default: true
  27001. },
  27002. {
  27003. name: "Macro",
  27004. height: math.unit((6 + 7 / 12) * 150, "feet")
  27005. },
  27006. {
  27007. name: "Macro+",
  27008. height: math.unit((6 + 7 / 12) * 500, "feet")
  27009. },
  27010. {
  27011. name: "Megamacro",
  27012. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27013. },
  27014. ]
  27015. ))
  27016. characterMakers.push(() => makeCharacter(
  27017. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27018. {
  27019. front: {
  27020. height: math.unit(1, "mile"),
  27021. weight: math.unit(265261.9, "lb"),
  27022. name: "Front",
  27023. image: {
  27024. source: "./media/characters/shui/front.svg",
  27025. extra: 1633 / 1564,
  27026. bottom: 91.5 / 1726
  27027. }
  27028. },
  27029. },
  27030. [
  27031. {
  27032. name: "Macro",
  27033. height: math.unit(1, "mile"),
  27034. default: true
  27035. },
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27040. {
  27041. front: {
  27042. height: math.unit(12 + 6 / 12, "feet"),
  27043. weight: math.unit(1342, "lb"),
  27044. name: "Front",
  27045. image: {
  27046. source: "./media/characters/arokh-takakura/front.svg",
  27047. extra: 1089 / 1043,
  27048. bottom: 77.4 / 1176.7
  27049. }
  27050. },
  27051. back: {
  27052. height: math.unit(12 + 6 / 12, "feet"),
  27053. weight: math.unit(1342, "lb"),
  27054. name: "Back",
  27055. image: {
  27056. source: "./media/characters/arokh-takakura/back.svg",
  27057. extra: 1046 / 1019,
  27058. bottom: 102 / 1150
  27059. }
  27060. },
  27061. },
  27062. [
  27063. {
  27064. name: "Big",
  27065. height: math.unit(12 + 6 / 12, "feet"),
  27066. default: true
  27067. },
  27068. ]
  27069. ))
  27070. characterMakers.push(() => makeCharacter(
  27071. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27072. {
  27073. front: {
  27074. height: math.unit(5 + 6 / 12, "feet"),
  27075. weight: math.unit(150, "lb"),
  27076. name: "Front",
  27077. image: {
  27078. source: "./media/characters/theo/front.svg",
  27079. extra: 1184 / 1131,
  27080. bottom: 7.4 / 1191
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Micro",
  27087. height: math.unit(5, "inches")
  27088. },
  27089. {
  27090. name: "Normal",
  27091. height: math.unit(5 + 6 / 12, "feet"),
  27092. default: true
  27093. },
  27094. ]
  27095. ))
  27096. characterMakers.push(() => makeCharacter(
  27097. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27098. {
  27099. front: {
  27100. height: math.unit(5 + 9 / 12, "feet"),
  27101. weight: math.unit(130, "lb"),
  27102. name: "Front",
  27103. image: {
  27104. source: "./media/characters/cecelia-swift/front.svg",
  27105. extra: 502 / 484,
  27106. bottom: 23 / 523
  27107. }
  27108. },
  27109. back: {
  27110. height: math.unit(5 + 9 / 12, "feet"),
  27111. weight: math.unit(130, "lb"),
  27112. name: "Back",
  27113. image: {
  27114. source: "./media/characters/cecelia-swift/back.svg",
  27115. extra: 499 / 485,
  27116. bottom: 12 / 511
  27117. }
  27118. },
  27119. head: {
  27120. height: math.unit(0.90, "feet"),
  27121. name: "Head",
  27122. image: {
  27123. source: "./media/characters/cecelia-swift/head.svg"
  27124. }
  27125. },
  27126. rump: {
  27127. height: math.unit(1.75, "feet"),
  27128. name: "Rump",
  27129. image: {
  27130. source: "./media/characters/cecelia-swift/rump.svg"
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(5 + 9 / 12, "feet"),
  27138. default: true
  27139. },
  27140. {
  27141. name: "Big",
  27142. height: math.unit(50, "feet")
  27143. },
  27144. {
  27145. name: "Macro",
  27146. height: math.unit(100, "feet")
  27147. },
  27148. {
  27149. name: "Macro+",
  27150. height: math.unit(500, "feet")
  27151. },
  27152. {
  27153. name: "Macro++",
  27154. height: math.unit(1000, "feet")
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(6, "feet"),
  27163. weight: math.unit(150, "lb"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/kaunan/front.svg",
  27167. extra: 2890 / 2523,
  27168. bottom: 49 / 2939
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Macro",
  27175. height: math.unit(150, "feet"),
  27176. default: true
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27182. {
  27183. front: {
  27184. height: math.unit(175, "cm"),
  27185. weight: math.unit(60, "kg"),
  27186. name: "Front",
  27187. image: {
  27188. source: "./media/characters/fei/front.svg",
  27189. extra: 2581 / 2400,
  27190. bottom: 82.2 / 2663
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Mortal",
  27197. height: math.unit(175, "cm")
  27198. },
  27199. {
  27200. name: "Normal",
  27201. height: math.unit(3500, "m"),
  27202. default: true
  27203. },
  27204. {
  27205. name: "Stroll",
  27206. height: math.unit(17.5, "km")
  27207. },
  27208. {
  27209. name: "Showoff",
  27210. height: math.unit(175, "km")
  27211. },
  27212. ]
  27213. ))
  27214. characterMakers.push(() => makeCharacter(
  27215. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27216. {
  27217. front: {
  27218. height: math.unit(7, "feet"),
  27219. weight: math.unit(1000, "kg"),
  27220. name: "Front",
  27221. image: {
  27222. source: "./media/characters/edrax/front.svg",
  27223. extra: 2838 / 2550,
  27224. bottom: 130 / 2968
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Small",
  27231. height: math.unit(7, "feet")
  27232. },
  27233. {
  27234. name: "Normal",
  27235. height: math.unit(1500, "meters")
  27236. },
  27237. {
  27238. name: "Mega",
  27239. height: math.unit(12000000, "km"),
  27240. default: true
  27241. },
  27242. {
  27243. name: "Megamacro",
  27244. height: math.unit(10600000, "lightyears")
  27245. },
  27246. {
  27247. name: "Hypermacro",
  27248. height: math.unit(256, "yottameters")
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27254. {
  27255. front: {
  27256. height: math.unit(10, "feet"),
  27257. weight: math.unit(750, "lb"),
  27258. name: "Front",
  27259. image: {
  27260. source: "./media/characters/clove/front.svg",
  27261. extra: 2031 / 1860,
  27262. bottom: 47.8 / 2080
  27263. }
  27264. },
  27265. back: {
  27266. height: math.unit(10, "feet"),
  27267. weight: math.unit(750, "lb"),
  27268. name: "Back",
  27269. image: {
  27270. source: "./media/characters/clove/back.svg",
  27271. extra: 2025 / 1859,
  27272. bottom: 46 / 2071
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Normal",
  27279. height: math.unit(10, "feet"),
  27280. default: true
  27281. },
  27282. ]
  27283. ))
  27284. characterMakers.push(() => makeCharacter(
  27285. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27286. {
  27287. front: {
  27288. height: math.unit(4, "feet"),
  27289. weight: math.unit(50, "lb"),
  27290. name: "Front",
  27291. image: {
  27292. source: "./media/characters/alex-rabbit/front.svg",
  27293. extra: 507 / 458,
  27294. bottom: 18.5 / 527
  27295. }
  27296. },
  27297. back: {
  27298. height: math.unit(4, "feet"),
  27299. weight: math.unit(50, "lb"),
  27300. name: "Back",
  27301. image: {
  27302. source: "./media/characters/alex-rabbit/back.svg",
  27303. extra: 502 / 460,
  27304. bottom: 18.9 / 521
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(4, "feet"),
  27312. default: true
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(1 + 3 / 12, "feet"),
  27321. weight: math.unit(80, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/zander-rose/front.svg",
  27325. extra: 916 / 797,
  27326. bottom: 17 / 933
  27327. }
  27328. },
  27329. back: {
  27330. height: math.unit(1 + 3 / 12, "feet"),
  27331. weight: math.unit(80, "lb"),
  27332. name: "Back",
  27333. image: {
  27334. source: "./media/characters/zander-rose/back.svg",
  27335. extra: 903 / 779,
  27336. bottom: 31 / 934
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Normal",
  27343. height: math.unit(1 + 3 / 12, "feet"),
  27344. default: true
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27350. {
  27351. anthro: {
  27352. height: math.unit(6, "feet"),
  27353. weight: math.unit(150, "lb"),
  27354. name: "Anthro",
  27355. image: {
  27356. source: "./media/characters/razz/anthro.svg",
  27357. extra: 1437 / 1343,
  27358. bottom: 48 / 1485
  27359. }
  27360. },
  27361. feral: {
  27362. height: math.unit(6, "feet"),
  27363. weight: math.unit(150, "lb"),
  27364. name: "Feral",
  27365. image: {
  27366. source: "./media/characters/razz/feral.svg",
  27367. extra: 2569 / 1385,
  27368. bottom: 95 / 2664
  27369. }
  27370. },
  27371. },
  27372. [
  27373. {
  27374. name: "Normal",
  27375. height: math.unit(6, "feet"),
  27376. default: true
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27382. {
  27383. front: {
  27384. height: math.unit(9 + 4 / 12, "feet"),
  27385. weight: math.unit(500, "lb"),
  27386. name: "Front",
  27387. image: {
  27388. source: "./media/characters/morrigan/front.svg",
  27389. extra: 2707 / 2579,
  27390. bottom: 156 / 2863
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "Normal",
  27397. height: math.unit(9 + 4 / 12, "feet"),
  27398. default: true
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(5, "stories"),
  27407. weight: math.unit(4000, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/jenene/front.svg",
  27411. extra: 1780 / 1710,
  27412. bottom: 57 / 1837
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Normal",
  27419. height: math.unit(5, "stories"),
  27420. default: true
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(6, "feet"),
  27429. weight: math.unit(150, "lb"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/vix-archaser/front.svg",
  27433. extra: 2767 / 2562,
  27434. bottom: 36 / 2803
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Micro",
  27441. height: math.unit(1, "foot")
  27442. },
  27443. {
  27444. name: "Normal",
  27445. height: math.unit(6 + 5 / 12, "feet")
  27446. },
  27447. {
  27448. name: "Minimacro",
  27449. height: math.unit(500, "feet")
  27450. },
  27451. {
  27452. name: "Macro",
  27453. height: math.unit(4, "miles")
  27454. },
  27455. {
  27456. name: "Megamacro",
  27457. height: math.unit(250, "miles"),
  27458. default: true
  27459. },
  27460. {
  27461. name: "Gigamacro",
  27462. height: math.unit(1, "universe")
  27463. },
  27464. {
  27465. name: "Endgame",
  27466. height: math.unit(100, "multiverses")
  27467. }
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27472. {
  27473. taurSfw: {
  27474. height: math.unit(10, "meters"),
  27475. weight: math.unit(17500, "kg"),
  27476. name: "Taur",
  27477. image: {
  27478. source: "./media/characters/faey/taur-sfw.svg",
  27479. extra: 1200 / 968,
  27480. bottom: 41 / 1241
  27481. }
  27482. },
  27483. chestmaw: {
  27484. height: math.unit(2.01, "meters"),
  27485. name: "Chestmaw",
  27486. image: {
  27487. source: "./media/characters/faey/chestmaw.svg"
  27488. }
  27489. },
  27490. foot: {
  27491. height: math.unit(2.43, "meters"),
  27492. name: "Foot",
  27493. image: {
  27494. source: "./media/characters/faey/foot.svg"
  27495. }
  27496. },
  27497. jaws: {
  27498. height: math.unit(1.66, "meters"),
  27499. name: "Jaws",
  27500. image: {
  27501. source: "./media/characters/faey/jaws.svg"
  27502. }
  27503. },
  27504. tongues: {
  27505. height: math.unit(2.01, "meters"),
  27506. name: "Tongues",
  27507. image: {
  27508. source: "./media/characters/faey/tongues.svg"
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Small",
  27515. height: math.unit(10, "meters"),
  27516. default: true
  27517. },
  27518. {
  27519. name: "Big",
  27520. height: math.unit(500000, "km")
  27521. },
  27522. ]
  27523. ))
  27524. characterMakers.push(() => makeCharacter(
  27525. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27526. {
  27527. front: {
  27528. height: math.unit(7, "feet"),
  27529. weight: math.unit(275, "lb"),
  27530. name: "Front",
  27531. image: {
  27532. source: "./media/characters/roku/front.svg",
  27533. extra: 903 / 878,
  27534. bottom: 37 / 940
  27535. }
  27536. },
  27537. },
  27538. [
  27539. {
  27540. name: "Normal",
  27541. height: math.unit(7, "feet"),
  27542. default: true
  27543. },
  27544. {
  27545. name: "Macro",
  27546. height: math.unit(500, "feet")
  27547. },
  27548. {
  27549. name: "Megamacro",
  27550. height: math.unit(200, "miles")
  27551. },
  27552. ]
  27553. ))
  27554. characterMakers.push(() => makeCharacter(
  27555. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27556. {
  27557. front: {
  27558. height: math.unit(6 + 2 / 12, "feet"),
  27559. weight: math.unit(150, "lb"),
  27560. name: "Front",
  27561. image: {
  27562. source: "./media/characters/lira/front.svg",
  27563. extra: 1727 / 1605,
  27564. bottom: 26 / 1753
  27565. }
  27566. },
  27567. back: {
  27568. height: math.unit(6 + 2 / 12, "feet"),
  27569. weight: math.unit(150, "lb"),
  27570. name: "Back",
  27571. image: {
  27572. source: "./media/characters/lira/back.svg",
  27573. extra: 1713 / 159,
  27574. bottom: 20 / 1733
  27575. }
  27576. },
  27577. hand: {
  27578. height: math.unit(0.75, "feet"),
  27579. name: "Hand",
  27580. image: {
  27581. source: "./media/characters/lira/hand.svg"
  27582. }
  27583. },
  27584. maw: {
  27585. height: math.unit(0.65, "feet"),
  27586. name: "Maw",
  27587. image: {
  27588. source: "./media/characters/lira/maw.svg"
  27589. }
  27590. },
  27591. pawDigi: {
  27592. height: math.unit(1.6, "feet"),
  27593. name: "Paw Digi",
  27594. image: {
  27595. source: "./media/characters/lira/paw-digi.svg"
  27596. }
  27597. },
  27598. pawPlanti: {
  27599. height: math.unit(1.4, "feet"),
  27600. name: "Paw Planti",
  27601. image: {
  27602. source: "./media/characters/lira/paw-planti.svg"
  27603. }
  27604. },
  27605. },
  27606. [
  27607. {
  27608. name: "Normal",
  27609. height: math.unit(6 + 2 / 12, "feet"),
  27610. default: true
  27611. },
  27612. {
  27613. name: "Macro",
  27614. height: math.unit(100, "feet")
  27615. },
  27616. {
  27617. name: "Macro²",
  27618. height: math.unit(1600, "feet")
  27619. },
  27620. {
  27621. name: "Planetary",
  27622. height: math.unit(20, "earths")
  27623. },
  27624. ]
  27625. ))
  27626. characterMakers.push(() => makeCharacter(
  27627. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27628. {
  27629. front: {
  27630. height: math.unit(6, "feet"),
  27631. weight: math.unit(150, "lb"),
  27632. name: "Front",
  27633. image: {
  27634. source: "./media/characters/hadjet/front.svg",
  27635. extra: 1480 / 1346,
  27636. bottom: 26 / 1506
  27637. }
  27638. },
  27639. frontNsfw: {
  27640. height: math.unit(6, "feet"),
  27641. weight: math.unit(150, "lb"),
  27642. name: "Front (NSFW)",
  27643. image: {
  27644. source: "./media/characters/hadjet/front-nsfw.svg",
  27645. extra: 1440 / 1358,
  27646. bottom: 52 / 1492
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Macro",
  27653. height: math.unit(10, "stories"),
  27654. default: true
  27655. },
  27656. {
  27657. name: "Megamacro",
  27658. height: math.unit(1.5, "miles")
  27659. },
  27660. {
  27661. name: "Megamacro+",
  27662. height: math.unit(5, "miles")
  27663. },
  27664. ]
  27665. ))
  27666. characterMakers.push(() => makeCharacter(
  27667. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27668. {
  27669. side: {
  27670. height: math.unit(106, "feet"),
  27671. weight: math.unit(500, "tonnes"),
  27672. name: "Side",
  27673. image: {
  27674. source: "./media/characters/kodran/side.svg",
  27675. extra: 553 / 480,
  27676. bottom: 33 / 586
  27677. }
  27678. },
  27679. front: {
  27680. height: math.unit(132, "feet"),
  27681. weight: math.unit(500, "tonnes"),
  27682. name: "Front",
  27683. image: {
  27684. source: "./media/characters/kodran/front.svg",
  27685. extra: 667 / 643,
  27686. bottom: 42 / 709
  27687. }
  27688. },
  27689. flying: {
  27690. height: math.unit(350, "feet"),
  27691. weight: math.unit(500, "tonnes"),
  27692. name: "Flying",
  27693. image: {
  27694. source: "./media/characters/kodran/flying.svg"
  27695. }
  27696. },
  27697. foot: {
  27698. height: math.unit(33, "feet"),
  27699. name: "Foot",
  27700. image: {
  27701. source: "./media/characters/kodran/foot.svg"
  27702. }
  27703. },
  27704. footFront: {
  27705. height: math.unit(19, "feet"),
  27706. name: "Foot (Front)",
  27707. image: {
  27708. source: "./media/characters/kodran/foot-front.svg",
  27709. extra: 261 / 261,
  27710. bottom: 91 / 352
  27711. }
  27712. },
  27713. headFront: {
  27714. height: math.unit(53, "feet"),
  27715. name: "Head (Front)",
  27716. image: {
  27717. source: "./media/characters/kodran/head-front.svg"
  27718. }
  27719. },
  27720. headSide: {
  27721. height: math.unit(65, "feet"),
  27722. name: "Head (Side)",
  27723. image: {
  27724. source: "./media/characters/kodran/head-side.svg"
  27725. }
  27726. },
  27727. throat: {
  27728. height: math.unit(79, "feet"),
  27729. name: "Throat",
  27730. image: {
  27731. source: "./media/characters/kodran/throat.svg"
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Large",
  27738. height: math.unit(106, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27745. {
  27746. side: {
  27747. height: math.unit(11, "feet"),
  27748. weight: math.unit(150, "lb"),
  27749. name: "Side",
  27750. image: {
  27751. source: "./media/characters/pyxaron/side.svg",
  27752. extra: 305 / 195,
  27753. bottom: 17 / 322
  27754. }
  27755. },
  27756. },
  27757. [
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(11, "feet"),
  27761. default: true
  27762. },
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27767. {
  27768. front: {
  27769. height: math.unit(6, "feet"),
  27770. weight: math.unit(150, "lb"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/meep/front.svg",
  27774. extra: 88 / 80,
  27775. bottom: 6 / 94
  27776. }
  27777. },
  27778. },
  27779. [
  27780. {
  27781. name: "Fun Sized",
  27782. height: math.unit(2, "inches"),
  27783. default: true
  27784. },
  27785. {
  27786. name: "Friend Sized",
  27787. height: math.unit(8, "inches")
  27788. },
  27789. ]
  27790. ))
  27791. characterMakers.push(() => makeCharacter(
  27792. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27793. {
  27794. front: {
  27795. height: math.unit(15, "feet"),
  27796. weight: math.unit(2500, "lb"),
  27797. name: "Front",
  27798. image: {
  27799. source: "./media/characters/holly-rabbit/front.svg",
  27800. extra: 1433 / 1233,
  27801. bottom: 125 / 1558
  27802. }
  27803. },
  27804. dick: {
  27805. height: math.unit(4.6, "feet"),
  27806. name: "Dick",
  27807. image: {
  27808. source: "./media/characters/holly-rabbit/dick.svg"
  27809. }
  27810. },
  27811. },
  27812. [
  27813. {
  27814. name: "Normal",
  27815. height: math.unit(15, "feet"),
  27816. default: true
  27817. },
  27818. {
  27819. name: "Macro",
  27820. height: math.unit(250, "feet")
  27821. },
  27822. {
  27823. name: "Macro+",
  27824. height: math.unit(2500, "feet")
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(3.02, "meters"),
  27833. weight: math.unit(500, "kg"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/drena/front.svg",
  27837. extra: 282 / 243,
  27838. bottom: 8 / 290
  27839. }
  27840. },
  27841. side: {
  27842. height: math.unit(3.02, "meters"),
  27843. weight: math.unit(500, "kg"),
  27844. name: "Side",
  27845. image: {
  27846. source: "./media/characters/drena/side.svg",
  27847. extra: 280 / 245,
  27848. bottom: 10 / 290
  27849. }
  27850. },
  27851. back: {
  27852. height: math.unit(3.02, "meters"),
  27853. weight: math.unit(500, "kg"),
  27854. name: "Back",
  27855. image: {
  27856. source: "./media/characters/drena/back.svg",
  27857. extra: 278 / 243,
  27858. bottom: 2 / 280
  27859. }
  27860. },
  27861. foot: {
  27862. height: math.unit(0.75, "meters"),
  27863. name: "Foot",
  27864. image: {
  27865. source: "./media/characters/drena/foot.svg"
  27866. }
  27867. },
  27868. maw: {
  27869. height: math.unit(0.82, "meters"),
  27870. name: "Maw",
  27871. image: {
  27872. source: "./media/characters/drena/maw.svg"
  27873. }
  27874. },
  27875. rump: {
  27876. height: math.unit(0.93, "meters"),
  27877. name: "Rump",
  27878. image: {
  27879. source: "./media/characters/drena/rump.svg"
  27880. }
  27881. },
  27882. },
  27883. [
  27884. {
  27885. name: "Normal",
  27886. height: math.unit(3.02, "meters"),
  27887. default: true
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27893. {
  27894. front: {
  27895. height: math.unit(6 + 4 / 12, "feet"),
  27896. weight: math.unit(250, "lb"),
  27897. name: "Front",
  27898. image: {
  27899. source: "./media/characters/remmyzilla/front.svg",
  27900. extra: 4033 / 3588,
  27901. bottom: 123 / 4156
  27902. }
  27903. },
  27904. back: {
  27905. height: math.unit(6 + 4 / 12, "feet"),
  27906. weight: math.unit(250, "lb"),
  27907. name: "Back",
  27908. image: {
  27909. source: "./media/characters/remmyzilla/back.svg",
  27910. extra: 2687 / 2555,
  27911. bottom: 48 / 2735
  27912. }
  27913. },
  27914. frontFancy: {
  27915. height: math.unit(6 + 4 / 12, "feet"),
  27916. weight: math.unit(250, "lb"),
  27917. name: "Front (Fancy)",
  27918. image: {
  27919. source: "./media/characters/remmyzilla/front-fancy.svg",
  27920. extra: 4119 / 3419,
  27921. bottom: 237 / 4356
  27922. }
  27923. },
  27924. paw: {
  27925. height: math.unit(1.73, "feet"),
  27926. name: "Paw",
  27927. image: {
  27928. source: "./media/characters/remmyzilla/paw.svg"
  27929. }
  27930. },
  27931. maw: {
  27932. height: math.unit(1.73, "feet"),
  27933. name: "Maw",
  27934. image: {
  27935. source: "./media/characters/remmyzilla/maw.svg"
  27936. }
  27937. },
  27938. },
  27939. [
  27940. {
  27941. name: "Normal",
  27942. height: math.unit(6 + 4 / 12, "feet")
  27943. },
  27944. {
  27945. name: "Minimacro",
  27946. height: math.unit(12 + 8 / 12, "feet")
  27947. },
  27948. {
  27949. name: "Normal",
  27950. height: math.unit(640, "feet"),
  27951. default: true
  27952. },
  27953. {
  27954. name: "Megamacro",
  27955. height: math.unit(6400, "feet")
  27956. },
  27957. {
  27958. name: "Gigamacro",
  27959. height: math.unit(64000, "miles")
  27960. },
  27961. ]
  27962. ))
  27963. characterMakers.push(() => makeCharacter(
  27964. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27965. {
  27966. front: {
  27967. height: math.unit(2.5, "meters"),
  27968. weight: math.unit(300, "lb"),
  27969. name: "Front",
  27970. image: {
  27971. source: "./media/characters/lawrence/front.svg",
  27972. extra: 357 / 335,
  27973. bottom: 30 / 387
  27974. }
  27975. },
  27976. back: {
  27977. height: math.unit(2.5, "meters"),
  27978. weight: math.unit(300, "lb"),
  27979. name: "Back",
  27980. image: {
  27981. source: "./media/characters/lawrence/back.svg",
  27982. extra: 357 / 338,
  27983. bottom: 16 / 373
  27984. }
  27985. },
  27986. head: {
  27987. height: math.unit(0.9, "meter"),
  27988. name: "Head",
  27989. image: {
  27990. source: "./media/characters/lawrence/head.svg"
  27991. }
  27992. },
  27993. maw: {
  27994. height: math.unit(0.7, "meter"),
  27995. name: "Maw",
  27996. image: {
  27997. source: "./media/characters/lawrence/maw.svg"
  27998. }
  27999. },
  28000. footBottom: {
  28001. height: math.unit(0.5, "meter"),
  28002. name: "Foot (Bottom)",
  28003. image: {
  28004. source: "./media/characters/lawrence/foot-bottom.svg"
  28005. }
  28006. },
  28007. footTop: {
  28008. height: math.unit(0.5, "meter"),
  28009. name: "Foot (Top)",
  28010. image: {
  28011. source: "./media/characters/lawrence/foot-top.svg"
  28012. }
  28013. },
  28014. },
  28015. [
  28016. {
  28017. name: "Normal",
  28018. height: math.unit(2.5, "meters"),
  28019. default: true
  28020. },
  28021. {
  28022. name: "Macro",
  28023. height: math.unit(95, "meters")
  28024. },
  28025. {
  28026. name: "Megamacro",
  28027. height: math.unit(150, "km")
  28028. },
  28029. ]
  28030. ))
  28031. characterMakers.push(() => makeCharacter(
  28032. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28033. {
  28034. front: {
  28035. height: math.unit(4.2, "meters"),
  28036. name: "Front",
  28037. image: {
  28038. source: "./media/characters/sydney/front.svg",
  28039. extra: 1323 / 1277,
  28040. bottom: 111 / 1434
  28041. }
  28042. },
  28043. },
  28044. [
  28045. {
  28046. name: "Normal",
  28047. height: math.unit(4.2, "meters"),
  28048. default: true
  28049. },
  28050. ]
  28051. ))
  28052. characterMakers.push(() => makeCharacter(
  28053. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28054. {
  28055. back: {
  28056. height: math.unit(201, "feet"),
  28057. name: "Back",
  28058. image: {
  28059. source: "./media/characters/jessica/back.svg",
  28060. extra: 273 / 259,
  28061. bottom: 7 / 280
  28062. }
  28063. },
  28064. },
  28065. [
  28066. {
  28067. name: "Normal",
  28068. height: math.unit(201, "feet"),
  28069. default: true
  28070. },
  28071. {
  28072. name: "Megamacro",
  28073. height: math.unit(8, "miles")
  28074. },
  28075. ]
  28076. ))
  28077. characterMakers.push(() => makeCharacter(
  28078. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28079. {
  28080. side: {
  28081. height: math.unit(320, "cm"),
  28082. name: "Side",
  28083. image: {
  28084. source: "./media/characters/victoria/side.svg",
  28085. extra: 778 / 346,
  28086. bottom: 56 / 834
  28087. }
  28088. },
  28089. maw: {
  28090. height: math.unit(5.9, "feet"),
  28091. name: "Maw",
  28092. image: {
  28093. source: "./media/characters/victoria/maw.svg"
  28094. }
  28095. },
  28096. },
  28097. [
  28098. {
  28099. name: "Normal",
  28100. height: math.unit(320, "cm"),
  28101. default: true
  28102. },
  28103. ]
  28104. ))
  28105. characterMakers.push(() => makeCharacter(
  28106. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28107. {
  28108. front: {
  28109. height: math.unit(5 + 6 / 12, "feet"),
  28110. name: "Front",
  28111. image: {
  28112. source: "./media/characters/cat/front.svg",
  28113. extra: 1374 / 1257,
  28114. bottom: 59 / 1433
  28115. }
  28116. },
  28117. back: {
  28118. height: math.unit(5 + 6 / 12, "feet"),
  28119. name: "Back",
  28120. image: {
  28121. source: "./media/characters/cat/back.svg",
  28122. extra: 1337 / 1226,
  28123. bottom: 34 / 1371
  28124. }
  28125. },
  28126. taur: {
  28127. height: math.unit(7, "feet"),
  28128. name: "Taur",
  28129. image: {
  28130. source: "./media/characters/cat/taur.svg",
  28131. extra: 1345 / 1231,
  28132. bottom: 66 / 1411
  28133. }
  28134. },
  28135. lucario: {
  28136. height: math.unit(4, "feet"),
  28137. name: "Lucario",
  28138. image: {
  28139. source: "./media/characters/cat/lucario.svg",
  28140. extra: 1470 / 1318,
  28141. bottom: 65 / 1535
  28142. }
  28143. },
  28144. megaLucario: {
  28145. height: math.unit(4, "feet"),
  28146. name: "Mega Lucario",
  28147. image: {
  28148. source: "./media/characters/cat/mega-lucario.svg",
  28149. extra: 1515 / 1319,
  28150. bottom: 63 / 1578
  28151. }
  28152. },
  28153. nickit: {
  28154. height: math.unit(2, "feet"),
  28155. name: "Nickit",
  28156. image: {
  28157. source: "./media/characters/cat/nickit.svg",
  28158. extra: 1980 / 1585,
  28159. bottom: 102 / 2082
  28160. }
  28161. },
  28162. lopunnyFront: {
  28163. height: math.unit(5, "feet"),
  28164. name: "Lopunny (Front)",
  28165. image: {
  28166. source: "./media/characters/cat/lopunny-front.svg",
  28167. extra: 1782 / 1469,
  28168. bottom: 38 / 1820
  28169. }
  28170. },
  28171. lopunnyBack: {
  28172. height: math.unit(5, "feet"),
  28173. name: "Lopunny (Back)",
  28174. image: {
  28175. source: "./media/characters/cat/lopunny-back.svg",
  28176. extra: 1660 / 1490,
  28177. bottom: 25 / 1685
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Really small",
  28184. height: math.unit(1, "nm")
  28185. },
  28186. {
  28187. name: "Micro",
  28188. height: math.unit(5, "inches")
  28189. },
  28190. {
  28191. name: "Normal",
  28192. height: math.unit(5 + 6 / 12, "feet"),
  28193. default: true
  28194. },
  28195. {
  28196. name: "Macro",
  28197. height: math.unit(50, "feet")
  28198. },
  28199. {
  28200. name: "Macro+",
  28201. height: math.unit(150, "feet")
  28202. },
  28203. {
  28204. name: "Megamacro",
  28205. height: math.unit(100, "miles")
  28206. },
  28207. ]
  28208. ))
  28209. characterMakers.push(() => makeCharacter(
  28210. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28211. {
  28212. front: {
  28213. height: math.unit(63.4, "meters"),
  28214. weight: math.unit(3.28349e+6, "kilograms"),
  28215. name: "Front",
  28216. image: {
  28217. source: "./media/characters/kirina-violet/front.svg",
  28218. extra: 2812 / 2725,
  28219. bottom: 0 / 2812
  28220. }
  28221. },
  28222. back: {
  28223. height: math.unit(63.4, "meters"),
  28224. weight: math.unit(3.28349e+6, "kilograms"),
  28225. name: "Back",
  28226. image: {
  28227. source: "./media/characters/kirina-violet/back.svg",
  28228. extra: 2812 / 2725,
  28229. bottom: 0 / 2812
  28230. }
  28231. },
  28232. mouth: {
  28233. height: math.unit(4.35, "meters"),
  28234. name: "Mouth",
  28235. image: {
  28236. source: "./media/characters/kirina-violet/mouth.svg"
  28237. }
  28238. },
  28239. paw: {
  28240. height: math.unit(5.6, "meters"),
  28241. name: "Paw",
  28242. image: {
  28243. source: "./media/characters/kirina-violet/paw.svg"
  28244. }
  28245. },
  28246. tail: {
  28247. height: math.unit(18, "meters"),
  28248. name: "Tail",
  28249. image: {
  28250. source: "./media/characters/kirina-violet/tail.svg"
  28251. }
  28252. },
  28253. },
  28254. [
  28255. {
  28256. name: "Macro",
  28257. height: math.unit(63.4, "meters"),
  28258. default: true
  28259. },
  28260. ]
  28261. ))
  28262. characterMakers.push(() => makeCharacter(
  28263. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28264. {
  28265. front: {
  28266. height: math.unit(60, "feet"),
  28267. name: "Front",
  28268. image: {
  28269. source: "./media/characters/cat-gigachu/front.svg",
  28270. extra: 1024 / 780,
  28271. bottom: 23 / 1047
  28272. }
  28273. },
  28274. back: {
  28275. height: math.unit(60, "feet"),
  28276. name: "Back",
  28277. image: {
  28278. source: "./media/characters/cat-gigachu/back.svg",
  28279. extra: 1024 / 780,
  28280. bottom: 23 / 1047
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Dynamax",
  28287. height: math.unit(60, "feet"),
  28288. default: true
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28294. {
  28295. front: {
  28296. height: math.unit(6, "feet"),
  28297. weight: math.unit(150, "lb"),
  28298. name: "Front",
  28299. image: {
  28300. source: "./media/characters/sfaiyan/front.svg",
  28301. extra: 999 / 978,
  28302. bottom: 5 / 1004
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(1.82, "meters")
  28310. },
  28311. {
  28312. name: "Giant",
  28313. height: math.unit(2.27, "km"),
  28314. default: true
  28315. },
  28316. ]
  28317. ))
  28318. characterMakers.push(() => makeCharacter(
  28319. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28320. {
  28321. front: {
  28322. height: math.unit(179, "cm"),
  28323. weight: math.unit(100, "kg"),
  28324. name: "Front",
  28325. image: {
  28326. source: "./media/characters/raunehkeli/front.svg",
  28327. extra: 1934 / 1926,
  28328. bottom: 0 / 1934
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Normal",
  28335. height: math.unit(179, "cm")
  28336. },
  28337. {
  28338. name: "Maximum",
  28339. height: math.unit(575, "meters"),
  28340. default: true
  28341. },
  28342. ]
  28343. ))
  28344. characterMakers.push(() => makeCharacter(
  28345. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28346. {
  28347. front: {
  28348. height: math.unit(6, "feet"),
  28349. weight: math.unit(150, "lb"),
  28350. name: "Front",
  28351. image: {
  28352. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28353. extra: 2625 / 2518,
  28354. bottom: 60 / 2685
  28355. }
  28356. },
  28357. },
  28358. [
  28359. {
  28360. name: "Normal",
  28361. height: math.unit(6 + 2 / 12, "feet")
  28362. },
  28363. {
  28364. name: "Macro",
  28365. height: math.unit(1180, "feet"),
  28366. default: true
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28372. {
  28373. front: {
  28374. height: math.unit(5 + 6 / 12, "feet"),
  28375. weight: math.unit(108, "lb"),
  28376. name: "Front",
  28377. image: {
  28378. source: "./media/characters/lilith-zott/front.svg",
  28379. extra: 2510 / 2238,
  28380. bottom: 100 / 2610
  28381. }
  28382. },
  28383. frontDressed: {
  28384. height: math.unit(5 + 6 / 12, "feet"),
  28385. weight: math.unit(108, "lb"),
  28386. name: "Front (Dressed)",
  28387. image: {
  28388. source: "./media/characters/lilith-zott/front-dressed.svg",
  28389. extra: 2510 / 2238,
  28390. bottom: 100 / 2610
  28391. }
  28392. },
  28393. },
  28394. [
  28395. {
  28396. name: "Normal",
  28397. height: math.unit(5 + 6 / 12, "feet")
  28398. },
  28399. {
  28400. name: "Macro",
  28401. height: math.unit(1030, "feet"),
  28402. default: true
  28403. },
  28404. ]
  28405. ))
  28406. characterMakers.push(() => makeCharacter(
  28407. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28408. {
  28409. front: {
  28410. height: math.unit(6, "feet"),
  28411. weight: math.unit(150, "lb"),
  28412. name: "Front",
  28413. image: {
  28414. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28415. extra: 2567 / 2435,
  28416. bottom: 39 / 2606
  28417. }
  28418. },
  28419. frontSuper: {
  28420. height: math.unit(6, "feet"),
  28421. name: "Front (Super)",
  28422. image: {
  28423. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28424. extra: 2567 / 2435,
  28425. bottom: 39 / 2606
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(5 + 10 / 12, "feet")
  28433. },
  28434. {
  28435. name: "Macro",
  28436. height: math.unit(1100, "feet"),
  28437. default: true
  28438. },
  28439. ]
  28440. ))
  28441. characterMakers.push(() => makeCharacter(
  28442. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28443. {
  28444. front: {
  28445. height: math.unit(100, "miles"),
  28446. name: "Front",
  28447. image: {
  28448. source: "./media/characters/sona/front.svg",
  28449. extra: 2433 / 2201,
  28450. bottom: 53 / 2486
  28451. }
  28452. },
  28453. foot: {
  28454. height: math.unit(16.1, "miles"),
  28455. name: "Foot",
  28456. image: {
  28457. source: "./media/characters/sona/foot.svg"
  28458. }
  28459. },
  28460. },
  28461. [
  28462. {
  28463. name: "Macro",
  28464. height: math.unit(100, "miles"),
  28465. default: true
  28466. },
  28467. ]
  28468. ))
  28469. characterMakers.push(() => makeCharacter(
  28470. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28471. {
  28472. front: {
  28473. height: math.unit(6, "feet"),
  28474. weight: math.unit(150, "lb"),
  28475. name: "Front",
  28476. image: {
  28477. source: "./media/characters/bailey/front.svg",
  28478. extra: 1778 / 1724,
  28479. bottom: 30 / 1808
  28480. }
  28481. },
  28482. },
  28483. [
  28484. {
  28485. name: "Micro",
  28486. height: math.unit(4, "inches")
  28487. },
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(5 + 5 / 12, "feet"),
  28491. default: true
  28492. },
  28493. {
  28494. name: "Macro",
  28495. height: math.unit(250, "feet")
  28496. },
  28497. {
  28498. name: "Megamacro",
  28499. height: math.unit(100, "miles")
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(5 + 2 / 12, "feet"),
  28508. weight: math.unit(120, "lb"),
  28509. name: "Front",
  28510. image: {
  28511. source: "./media/characters/snaps/front.svg",
  28512. extra: 2370 / 2177,
  28513. bottom: 48 / 2418
  28514. }
  28515. },
  28516. back: {
  28517. height: math.unit(5 + 2 / 12, "feet"),
  28518. weight: math.unit(120, "lb"),
  28519. name: "Back",
  28520. image: {
  28521. source: "./media/characters/snaps/back.svg",
  28522. extra: 2408 / 2258,
  28523. bottom: 15 / 2423
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Micro",
  28530. height: math.unit(9, "inches")
  28531. },
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(5 + 2 / 12, "feet"),
  28535. default: true
  28536. },
  28537. {
  28538. name: "Mini Macro",
  28539. height: math.unit(10, "feet")
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(1.8, "meters"),
  28548. weight: math.unit(85, "kg"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/azteck/front.svg",
  28552. extra: 2815 / 2625,
  28553. bottom: 89 / 2904
  28554. }
  28555. },
  28556. back: {
  28557. height: math.unit(1.8, "meters"),
  28558. weight: math.unit(85, "kg"),
  28559. name: "Back",
  28560. image: {
  28561. source: "./media/characters/azteck/back.svg",
  28562. extra: 2856 / 2648,
  28563. bottom: 85 / 2941
  28564. }
  28565. },
  28566. frontDressed: {
  28567. height: math.unit(1.8, "meters"),
  28568. weight: math.unit(85, "kg"),
  28569. name: "Front (Dressed)",
  28570. image: {
  28571. source: "./media/characters/azteck/front-dressed.svg",
  28572. extra: 2147 / 2003,
  28573. bottom: 68 / 2215
  28574. }
  28575. },
  28576. head: {
  28577. height: math.unit(0.47, "meters"),
  28578. weight: math.unit(85, "kg"),
  28579. name: "Head",
  28580. image: {
  28581. source: "./media/characters/azteck/head.svg"
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Bite sized",
  28588. height: math.unit(16, "cm")
  28589. },
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(1.8, "meters"),
  28593. default: true
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(6, "feet"),
  28602. weight: math.unit(150, "lb"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/pidge/front.svg",
  28606. extra: 620 / 588,
  28607. bottom: 9 / 629
  28608. }
  28609. },
  28610. back: {
  28611. height: math.unit(6, "feet"),
  28612. weight: math.unit(150, "lb"),
  28613. name: "Back",
  28614. image: {
  28615. source: "./media/characters/pidge/back.svg",
  28616. extra: 620 / 588,
  28617. bottom: 9 / 629
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Macro",
  28624. height: math.unit(1, "mile"),
  28625. default: true
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(6, "feet"),
  28634. weight: math.unit(150, "lb"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/en/front.svg",
  28638. extra: 1697 / 1563,
  28639. bottom: 103 / 1800
  28640. }
  28641. },
  28642. back: {
  28643. height: math.unit(6, "feet"),
  28644. weight: math.unit(150, "lb"),
  28645. name: "Back",
  28646. image: {
  28647. source: "./media/characters/en/back.svg",
  28648. extra: 1700 / 1570,
  28649. bottom: 51 / 1751
  28650. }
  28651. },
  28652. frontDressed: {
  28653. height: math.unit(6, "feet"),
  28654. weight: math.unit(150, "lb"),
  28655. name: "Front (Dressed)",
  28656. image: {
  28657. source: "./media/characters/en/front-dressed.svg",
  28658. extra: 1697 / 1563,
  28659. bottom: 103 / 1800
  28660. }
  28661. },
  28662. backDressed: {
  28663. height: math.unit(6, "feet"),
  28664. weight: math.unit(150, "lb"),
  28665. name: "Back (Dressed)",
  28666. image: {
  28667. source: "./media/characters/en/back-dressed.svg",
  28668. extra: 1700 / 1570,
  28669. bottom: 51 / 1751
  28670. }
  28671. },
  28672. },
  28673. [
  28674. {
  28675. name: "Macro",
  28676. height: math.unit(210, "feet"),
  28677. default: true
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(6, "feet"),
  28686. weight: math.unit(150, "lb"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/haze-orris/front.svg",
  28690. extra: 3975 / 3525,
  28691. bottom: 137 / 4112
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Micro",
  28698. height: math.unit(150, "mm"),
  28699. default: true
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28705. {
  28706. front: {
  28707. height: math.unit(6, "feet"),
  28708. weight: math.unit(150, "lb"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/casselene-yaro/front.svg",
  28712. extra: 4721 / 4541,
  28713. bottom: 82 / 4803
  28714. }
  28715. },
  28716. back: {
  28717. height: math.unit(6, "feet"),
  28718. weight: math.unit(150, "lb"),
  28719. name: "Back",
  28720. image: {
  28721. source: "./media/characters/casselene-yaro/back.svg",
  28722. extra: 4569 / 4377,
  28723. bottom: 69 / 4638
  28724. }
  28725. },
  28726. frontDressed: {
  28727. height: math.unit(6, "feet"),
  28728. weight: math.unit(150, "lb"),
  28729. name: "Front-dressed",
  28730. image: {
  28731. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28732. extra: 4721 / 4541,
  28733. bottom: 82 / 4803
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Macro",
  28740. height: math.unit(190, "feet"),
  28741. default: true
  28742. },
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(6, "feet"),
  28750. weight: math.unit(150, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/myra-rue-delore/front.svg",
  28754. extra: 1340 / 1308,
  28755. bottom: 67 / 1407
  28756. }
  28757. },
  28758. back: {
  28759. height: math.unit(6, "feet"),
  28760. weight: math.unit(150, "lb"),
  28761. name: "Back",
  28762. image: {
  28763. source: "./media/characters/myra-rue-delore/back.svg",
  28764. extra: 1341 / 1310,
  28765. bottom: 40 / 1381
  28766. }
  28767. },
  28768. frontDressed: {
  28769. height: math.unit(6, "feet"),
  28770. weight: math.unit(150, "lb"),
  28771. name: "Front (Dressed)",
  28772. image: {
  28773. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28774. extra: 1340 / 1308,
  28775. bottom: 67 / 1407
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Macro",
  28782. height: math.unit(150, "feet"),
  28783. default: true
  28784. },
  28785. ]
  28786. ))
  28787. characterMakers.push(() => makeCharacter(
  28788. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28789. {
  28790. front: {
  28791. height: math.unit(10, "feet"),
  28792. weight: math.unit(15015, "lb"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/fem!plat/front.svg",
  28796. extra: 2799 / 2604,
  28797. bottom: 149 / 2948
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(10, "feet"),
  28805. default: true
  28806. },
  28807. {
  28808. name: "Macro",
  28809. height: math.unit(100, "feet")
  28810. },
  28811. {
  28812. name: "Megamacro",
  28813. height: math.unit(1000, "feet")
  28814. },
  28815. ]
  28816. ))
  28817. characterMakers.push(() => makeCharacter(
  28818. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28819. {
  28820. front: {
  28821. height: math.unit(15 + 5 / 12, "feet"),
  28822. weight: math.unit(4600, "lb"),
  28823. name: "Front",
  28824. image: {
  28825. source: "./media/characters/neapolitan-ananassa/front.svg",
  28826. extra: 2903 / 2736,
  28827. bottom: 0 / 2903
  28828. }
  28829. },
  28830. side: {
  28831. height: math.unit(15 + 5 / 12, "feet"),
  28832. weight: math.unit(4600, "lb"),
  28833. name: "Side",
  28834. image: {
  28835. source: "./media/characters/neapolitan-ananassa/side.svg",
  28836. extra: 2925 / 2719,
  28837. bottom: 0 / 2925
  28838. }
  28839. },
  28840. back: {
  28841. height: math.unit(15 + 5 / 12, "feet"),
  28842. weight: math.unit(4600, "lb"),
  28843. name: "Back",
  28844. image: {
  28845. source: "./media/characters/neapolitan-ananassa/back.svg",
  28846. extra: 2903 / 2736,
  28847. bottom: 0 / 2903
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Normal",
  28854. height: math.unit(15 + 5 / 12, "feet"),
  28855. default: true
  28856. },
  28857. {
  28858. name: "Post-Millenium",
  28859. height: math.unit(35 + 5 / 12, "feet")
  28860. },
  28861. {
  28862. name: "Post-Era",
  28863. height: math.unit(450 + 5 / 12, "feet")
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(300, "meters"),
  28872. weight: math.unit(125000, "tonnes"),
  28873. name: "Front",
  28874. image: {
  28875. source: "./media/characters/pazuzu/front.svg",
  28876. extra: 877 / 794,
  28877. bottom: 47 / 924
  28878. }
  28879. },
  28880. },
  28881. [
  28882. {
  28883. name: "Macro",
  28884. height: math.unit(300, "meters"),
  28885. default: true
  28886. },
  28887. ]
  28888. ))
  28889. characterMakers.push(() => makeCharacter(
  28890. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28891. {
  28892. side: {
  28893. height: math.unit(10 + 7 / 12, "feet"),
  28894. weight: math.unit(2.5, "tons"),
  28895. name: "Side",
  28896. image: {
  28897. source: "./media/characters/aasha/side.svg",
  28898. extra: 1345 / 1245,
  28899. bottom: 111 / 1456
  28900. }
  28901. },
  28902. back: {
  28903. height: math.unit(10 + 7 / 12, "feet"),
  28904. weight: math.unit(2.5, "tons"),
  28905. name: "Back",
  28906. image: {
  28907. source: "./media/characters/aasha/back.svg",
  28908. extra: 1133 / 1057,
  28909. bottom: 257 / 1390
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(10 + 7 / 12, "feet"),
  28917. default: true
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(6 + 3 / 12, "feet"),
  28926. name: "Front",
  28927. image: {
  28928. source: "./media/characters/nevan/front.svg",
  28929. extra: 704 / 704,
  28930. bottom: 28 / 732
  28931. }
  28932. },
  28933. back: {
  28934. height: math.unit(6 + 3 / 12, "feet"),
  28935. name: "Back",
  28936. image: {
  28937. source: "./media/characters/nevan/back.svg",
  28938. extra: 714 / 714,
  28939. bottom: 21 / 735
  28940. }
  28941. },
  28942. frontFlaccid: {
  28943. height: math.unit(6 + 3 / 12, "feet"),
  28944. name: "Front (Flaccid)",
  28945. image: {
  28946. source: "./media/characters/nevan/front-flaccid.svg",
  28947. extra: 704 / 704,
  28948. bottom: 28 / 732
  28949. }
  28950. },
  28951. frontErect: {
  28952. height: math.unit(6 + 3 / 12, "feet"),
  28953. name: "Front (Erect)",
  28954. image: {
  28955. source: "./media/characters/nevan/front-erect.svg",
  28956. extra: 704 / 704,
  28957. bottom: 28 / 732
  28958. }
  28959. },
  28960. backFlaccid: {
  28961. height: math.unit(6 + 3 / 12, "feet"),
  28962. name: "Back (Flaccid)",
  28963. image: {
  28964. source: "./media/characters/nevan/back-flaccid.svg",
  28965. extra: 714 / 714,
  28966. bottom: 21 / 735
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(6 + 3 / 12, "feet"),
  28974. default: true
  28975. },
  28976. ]
  28977. ))
  28978. characterMakers.push(() => makeCharacter(
  28979. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28980. {
  28981. front: {
  28982. height: math.unit(4, "feet"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/arhan/front.svg",
  28986. extra: 3368 / 3133,
  28987. bottom: 0 / 3368
  28988. }
  28989. },
  28990. side: {
  28991. height: math.unit(4, "feet"),
  28992. name: "Side",
  28993. image: {
  28994. source: "./media/characters/arhan/side.svg",
  28995. extra: 3347 / 3105,
  28996. bottom: 0 / 3347
  28997. }
  28998. },
  28999. tongue: {
  29000. height: math.unit(1.42, "feet"),
  29001. name: "Tongue",
  29002. image: {
  29003. source: "./media/characters/arhan/tongue.svg"
  29004. }
  29005. },
  29006. head: {
  29007. height: math.unit(0.85, "feet"),
  29008. name: "Head",
  29009. image: {
  29010. source: "./media/characters/arhan/head.svg"
  29011. }
  29012. },
  29013. },
  29014. [
  29015. {
  29016. name: "Normal",
  29017. height: math.unit(4, "feet"),
  29018. default: true
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(5 + 7.5 / 12, "feet"),
  29027. weight: math.unit(120, "lb"),
  29028. name: "Front",
  29029. image: {
  29030. source: "./media/characters/digi-duncan/front.svg",
  29031. extra: 330 / 326,
  29032. bottom: 16 / 346
  29033. }
  29034. },
  29035. side: {
  29036. height: math.unit(5 + 7.5 / 12, "feet"),
  29037. weight: math.unit(120, "lb"),
  29038. name: "Side",
  29039. image: {
  29040. source: "./media/characters/digi-duncan/side.svg",
  29041. extra: 341 / 337,
  29042. bottom: 1 / 342
  29043. }
  29044. },
  29045. back: {
  29046. height: math.unit(5 + 7.5 / 12, "feet"),
  29047. weight: math.unit(120, "lb"),
  29048. name: "Back",
  29049. image: {
  29050. source: "./media/characters/digi-duncan/back.svg",
  29051. extra: 330 / 326,
  29052. bottom: 12 / 342
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Speck",
  29059. height: math.unit(0.25, "mm")
  29060. },
  29061. {
  29062. name: "Micro",
  29063. height: math.unit(5, "mm")
  29064. },
  29065. {
  29066. name: "Tiny",
  29067. height: math.unit(0.5, "inches"),
  29068. default: true
  29069. },
  29070. {
  29071. name: "Human",
  29072. height: math.unit(5 + 7.5 / 12, "feet")
  29073. },
  29074. {
  29075. name: "Minigiant",
  29076. height: math.unit(8 + 5.25, "feet")
  29077. },
  29078. {
  29079. name: "Giant",
  29080. height: math.unit(2000, "feet")
  29081. },
  29082. {
  29083. name: "Mega",
  29084. height: math.unit(371.1, "miles")
  29085. },
  29086. ]
  29087. ))
  29088. characterMakers.push(() => makeCharacter(
  29089. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29090. {
  29091. front: {
  29092. height: math.unit(2, "meters"),
  29093. weight: math.unit(350, "kg"),
  29094. name: "Front",
  29095. image: {
  29096. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29097. extra: 898 / 838,
  29098. bottom: 9 / 907
  29099. }
  29100. },
  29101. },
  29102. [
  29103. {
  29104. name: "Micro",
  29105. height: math.unit(8, "meters")
  29106. },
  29107. {
  29108. name: "Normal",
  29109. height: math.unit(50, "meters"),
  29110. default: true
  29111. },
  29112. {
  29113. name: "Macro",
  29114. height: math.unit(500, "meters")
  29115. },
  29116. ]
  29117. ))
  29118. characterMakers.push(() => makeCharacter(
  29119. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29120. {
  29121. front: {
  29122. height: math.unit(6 + 6 / 12, "feet"),
  29123. name: "Front",
  29124. image: {
  29125. source: "./media/characters/khardesh/front.svg",
  29126. extra: 888 / 797,
  29127. bottom: 25 / 913
  29128. }
  29129. },
  29130. },
  29131. [
  29132. {
  29133. name: "Normal",
  29134. height: math.unit(6 + 6 / 12, "feet"),
  29135. default: true
  29136. },
  29137. {
  29138. name: "Normal+",
  29139. height: math.unit(4, "meters")
  29140. },
  29141. {
  29142. name: "Macro",
  29143. height: math.unit(50, "meters")
  29144. },
  29145. {
  29146. name: "Macro+",
  29147. height: math.unit(100, "meters")
  29148. },
  29149. {
  29150. name: "Megamacro",
  29151. height: math.unit(20, "km")
  29152. },
  29153. ]
  29154. ))
  29155. characterMakers.push(() => makeCharacter(
  29156. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29157. {
  29158. front: {
  29159. height: math.unit(6, "feet"),
  29160. weight: math.unit(150, "lb"),
  29161. name: "Front",
  29162. image: {
  29163. source: "./media/characters/kosho/front.svg",
  29164. extra: 1847 / 1847,
  29165. bottom: 86 / 1933
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Second-stage micro",
  29172. height: math.unit(0.5, "inches")
  29173. },
  29174. {
  29175. name: "First-stage micro",
  29176. height: math.unit(6, "inches")
  29177. },
  29178. {
  29179. name: "Normal",
  29180. height: math.unit(6, "feet"),
  29181. default: true
  29182. },
  29183. {
  29184. name: "First-stage macro",
  29185. height: math.unit(72, "feet")
  29186. },
  29187. {
  29188. name: "Second-stage macro",
  29189. height: math.unit(864, "feet")
  29190. },
  29191. ]
  29192. ))
  29193. characterMakers.push(() => makeCharacter(
  29194. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29195. {
  29196. normal: {
  29197. height: math.unit(4 + 6 / 12, "feet"),
  29198. name: "Normal",
  29199. image: {
  29200. source: "./media/characters/hydra/normal.svg",
  29201. extra: 2833 / 2634,
  29202. bottom: 68 / 2901
  29203. }
  29204. },
  29205. smol: {
  29206. height: math.unit(0.705, "inches"),
  29207. name: "Smol",
  29208. image: {
  29209. source: "./media/characters/hydra/smol.svg",
  29210. extra: 2715 / 2540,
  29211. bottom: 0 / 2715
  29212. }
  29213. },
  29214. },
  29215. [
  29216. {
  29217. name: "Normal",
  29218. height: math.unit(4 + 6 / 12, "feet"),
  29219. default: true
  29220. }
  29221. ]
  29222. ))
  29223. characterMakers.push(() => makeCharacter(
  29224. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29225. {
  29226. front: {
  29227. height: math.unit(0.6, "cm"),
  29228. name: "Front",
  29229. image: {
  29230. source: "./media/characters/daz/front.svg",
  29231. extra: 1682 / 1164,
  29232. bottom: 42 / 1724
  29233. }
  29234. },
  29235. },
  29236. [
  29237. {
  29238. name: "Normal",
  29239. height: math.unit(0.6, "cm"),
  29240. default: true
  29241. },
  29242. ]
  29243. ))
  29244. characterMakers.push(() => makeCharacter(
  29245. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29246. {
  29247. front: {
  29248. height: math.unit(6, "feet"),
  29249. weight: math.unit(235, "lb"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/theo-pangolin/front.svg",
  29253. extra: 1996 / 1969,
  29254. bottom: 115 / 2111
  29255. }
  29256. },
  29257. back: {
  29258. height: math.unit(6, "feet"),
  29259. weight: math.unit(235, "lb"),
  29260. name: "Back",
  29261. image: {
  29262. source: "./media/characters/theo-pangolin/back.svg",
  29263. extra: 1979 / 1979,
  29264. bottom: 40 / 2019
  29265. }
  29266. },
  29267. feral: {
  29268. height: math.unit(2, "feet"),
  29269. weight: math.unit(30, "lb"),
  29270. name: "Feral",
  29271. image: {
  29272. source: "./media/characters/theo-pangolin/feral.svg",
  29273. extra: 803 / 791,
  29274. bottom: 181 / 984
  29275. }
  29276. },
  29277. footFive: {
  29278. height: math.unit(1.43, "feet"),
  29279. name: "Foot (Five Toes)",
  29280. image: {
  29281. source: "./media/characters/theo-pangolin/foot-five.svg"
  29282. }
  29283. },
  29284. footFour: {
  29285. height: math.unit(1.43, "feet"),
  29286. name: "Foot (Four Toes)",
  29287. image: {
  29288. source: "./media/characters/theo-pangolin/foot-four.svg"
  29289. }
  29290. },
  29291. handFour: {
  29292. height: math.unit(0.81, "feet"),
  29293. name: "Hand (Four Fingers)",
  29294. image: {
  29295. source: "./media/characters/theo-pangolin/hand-four.svg"
  29296. }
  29297. },
  29298. handThree: {
  29299. height: math.unit(0.81, "feet"),
  29300. name: "Hand (Three Fingers)",
  29301. image: {
  29302. source: "./media/characters/theo-pangolin/hand-three.svg"
  29303. }
  29304. },
  29305. headFront: {
  29306. height: math.unit(1.37, "feet"),
  29307. name: "Head (Front)",
  29308. image: {
  29309. source: "./media/characters/theo-pangolin/head-front.svg"
  29310. }
  29311. },
  29312. headSide: {
  29313. height: math.unit(1.43, "feet"),
  29314. name: "Head (Side)",
  29315. image: {
  29316. source: "./media/characters/theo-pangolin/head-side.svg"
  29317. }
  29318. },
  29319. tongue: {
  29320. height: math.unit(2.29, "feet"),
  29321. name: "Tongue",
  29322. image: {
  29323. source: "./media/characters/theo-pangolin/tongue.svg"
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Normal",
  29330. height: math.unit(6, "feet")
  29331. },
  29332. {
  29333. name: "Macro",
  29334. height: math.unit(400, "feet"),
  29335. default: true
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(6, "inches"),
  29344. weight: math.unit(0.036, "kg"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/renée/front.svg",
  29348. extra: 900 / 886,
  29349. bottom: 8 / 908
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Nano",
  29356. height: math.unit(1, "nm")
  29357. },
  29358. {
  29359. name: "Micro",
  29360. height: math.unit(1, "mm")
  29361. },
  29362. {
  29363. name: "Normal",
  29364. height: math.unit(6, "inches")
  29365. },
  29366. {
  29367. name: "Macro",
  29368. height: math.unit(2000, "feet"),
  29369. default: true
  29370. },
  29371. {
  29372. name: "Megamacro",
  29373. height: math.unit(2, "km")
  29374. },
  29375. {
  29376. name: "Gigamacro",
  29377. height: math.unit(2000, "km")
  29378. },
  29379. {
  29380. name: "Teramacro",
  29381. height: math.unit(250000, "km")
  29382. },
  29383. ]
  29384. ))
  29385. characterMakers.push(() => makeCharacter(
  29386. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29387. {
  29388. front: {
  29389. height: math.unit(4, "meters"),
  29390. weight: math.unit(150, "kg"),
  29391. name: "Front",
  29392. image: {
  29393. source: "./media/characters/caledvwlch/front.svg",
  29394. extra: 1760 / 1551,
  29395. bottom: 28 / 1788
  29396. }
  29397. },
  29398. side: {
  29399. height: math.unit(4, "meters"),
  29400. weight: math.unit(150, "kg"),
  29401. name: "Side",
  29402. image: {
  29403. source: "./media/characters/caledvwlch/side.svg",
  29404. extra: 1605 / 1536,
  29405. bottom: 31 / 1636
  29406. }
  29407. },
  29408. back: {
  29409. height: math.unit(4, "meters"),
  29410. weight: math.unit(150, "kg"),
  29411. name: "Back",
  29412. image: {
  29413. source: "./media/characters/caledvwlch/back.svg",
  29414. extra: 1635 / 1565,
  29415. bottom: 27 / 1662
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "\"Incognito\"",
  29422. height: math.unit(4, "meters")
  29423. },
  29424. {
  29425. name: "Small rampage",
  29426. height: math.unit(600, "meters")
  29427. },
  29428. {
  29429. name: "Mega",
  29430. height: math.unit(30, "km")
  29431. },
  29432. {
  29433. name: "Home-size",
  29434. height: math.unit(50, "km"),
  29435. default: true
  29436. },
  29437. {
  29438. name: "Giga",
  29439. height: math.unit(300, "km")
  29440. },
  29441. {
  29442. name: "Lounging",
  29443. height: math.unit(11000, "km")
  29444. },
  29445. {
  29446. name: "Planet snacking",
  29447. height: math.unit(2000000, "km")
  29448. },
  29449. ]
  29450. ))
  29451. characterMakers.push(() => makeCharacter(
  29452. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29453. {
  29454. front: {
  29455. height: math.unit(6, "feet"),
  29456. weight: math.unit(215, "lb"),
  29457. name: "Front",
  29458. image: {
  29459. source: "./media/characters/sapphire-svell/front.svg",
  29460. extra: 495 / 455,
  29461. bottom: 20 / 515
  29462. }
  29463. },
  29464. back: {
  29465. height: math.unit(6, "feet"),
  29466. weight: math.unit(216, "lb"),
  29467. name: "Back",
  29468. image: {
  29469. source: "./media/characters/sapphire-svell/back.svg",
  29470. extra: 497 / 477,
  29471. bottom: 7 / 504
  29472. }
  29473. },
  29474. maw: {
  29475. height: math.unit(1.57, "feet"),
  29476. name: "Maw",
  29477. image: {
  29478. source: "./media/characters/sapphire-svell/maw.svg"
  29479. }
  29480. },
  29481. foot: {
  29482. height: math.unit(1.07, "feet"),
  29483. name: "Foot",
  29484. image: {
  29485. source: "./media/characters/sapphire-svell/foot.svg"
  29486. }
  29487. },
  29488. toering: {
  29489. height: math.unit(1.7, "inch"),
  29490. name: "Toering",
  29491. image: {
  29492. source: "./media/characters/sapphire-svell/toering.svg"
  29493. }
  29494. },
  29495. },
  29496. [
  29497. {
  29498. name: "Normal",
  29499. height: math.unit(300, "feet"),
  29500. default: true
  29501. },
  29502. {
  29503. name: "Augmented",
  29504. height: math.unit(1250, "feet")
  29505. },
  29506. {
  29507. name: "Unleashed",
  29508. height: math.unit(3000, "feet")
  29509. },
  29510. ]
  29511. ))
  29512. characterMakers.push(() => makeCharacter(
  29513. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29514. {
  29515. side: {
  29516. height: math.unit(2 + 3 / 12, "feet"),
  29517. weight: math.unit(110, "lb"),
  29518. name: "Side",
  29519. image: {
  29520. source: "./media/characters/glitch-flux/side.svg",
  29521. extra: 997 / 805,
  29522. bottom: 20 / 1017
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Normal",
  29529. height: math.unit(2 + 3 / 12, "feet"),
  29530. default: true
  29531. },
  29532. ]
  29533. ))
  29534. characterMakers.push(() => makeCharacter(
  29535. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29536. {
  29537. front: {
  29538. height: math.unit(4, "meters"),
  29539. name: "Front",
  29540. image: {
  29541. source: "./media/characters/mid/front.svg",
  29542. extra: 507 / 476,
  29543. bottom: 17 / 524
  29544. }
  29545. },
  29546. back: {
  29547. height: math.unit(4, "meters"),
  29548. name: "Back",
  29549. image: {
  29550. source: "./media/characters/mid/back.svg",
  29551. extra: 519 / 487,
  29552. bottom: 7 / 526
  29553. }
  29554. },
  29555. stuck: {
  29556. height: math.unit(2.2, "meters"),
  29557. name: "Stuck",
  29558. image: {
  29559. source: "./media/characters/mid/stuck.svg",
  29560. extra: 1951 / 1869,
  29561. bottom: 88 / 2039
  29562. }
  29563. }
  29564. },
  29565. [
  29566. {
  29567. name: "Normal",
  29568. height: math.unit(4, "meters"),
  29569. default: true
  29570. },
  29571. {
  29572. name: "Big",
  29573. height: math.unit(10, "meters")
  29574. },
  29575. {
  29576. name: "Macro",
  29577. height: math.unit(800, "meters")
  29578. },
  29579. {
  29580. name: "Megamacro",
  29581. height: math.unit(100, "km")
  29582. },
  29583. {
  29584. name: "Overgrown",
  29585. height: math.unit(1, "parsec")
  29586. },
  29587. ]
  29588. ))
  29589. characterMakers.push(() => makeCharacter(
  29590. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29591. {
  29592. front: {
  29593. height: math.unit(2.5, "meters"),
  29594. weight: math.unit(225, "kg"),
  29595. name: "Front",
  29596. image: {
  29597. source: "./media/characters/iris/front.svg",
  29598. extra: 3348 / 3251,
  29599. bottom: 205 / 3553
  29600. }
  29601. },
  29602. maw: {
  29603. height: math.unit(0.56, "meter"),
  29604. name: "Maw",
  29605. image: {
  29606. source: "./media/characters/iris/maw.svg"
  29607. }
  29608. },
  29609. },
  29610. [
  29611. {
  29612. name: "Mewter cat",
  29613. height: math.unit(1.2, "meters")
  29614. },
  29615. {
  29616. name: "Minimacro",
  29617. height: math.unit(2.5, "meters"),
  29618. default: true
  29619. },
  29620. {
  29621. name: "Macro",
  29622. height: math.unit(180, "meters")
  29623. },
  29624. {
  29625. name: "Megamacro",
  29626. height: math.unit(2746, "meters")
  29627. },
  29628. ]
  29629. ))
  29630. characterMakers.push(() => makeCharacter(
  29631. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29632. {
  29633. front: {
  29634. height: math.unit(6, "feet"),
  29635. weight: math.unit(135, "lb"),
  29636. name: "Front",
  29637. image: {
  29638. source: "./media/characters/axel/front.svg",
  29639. extra: 908 / 908,
  29640. bottom: 58 / 966
  29641. }
  29642. },
  29643. side: {
  29644. height: math.unit(6, "feet"),
  29645. weight: math.unit(135, "lb"),
  29646. name: "Side",
  29647. image: {
  29648. source: "./media/characters/axel/side.svg",
  29649. extra: 958 / 958,
  29650. bottom: 11 / 969
  29651. }
  29652. },
  29653. back: {
  29654. height: math.unit(6, "feet"),
  29655. weight: math.unit(135, "lb"),
  29656. name: "Back",
  29657. image: {
  29658. source: "./media/characters/axel/back.svg",
  29659. extra: 887 / 887,
  29660. bottom: 34 / 921
  29661. }
  29662. },
  29663. head: {
  29664. height: math.unit(1.07, "feet"),
  29665. name: "Head",
  29666. image: {
  29667. source: "./media/characters/axel/head.svg"
  29668. }
  29669. },
  29670. beak: {
  29671. height: math.unit(1.4, "feet"),
  29672. name: "Beak",
  29673. image: {
  29674. source: "./media/characters/axel/beak.svg"
  29675. }
  29676. },
  29677. beakSide: {
  29678. height: math.unit(1.4, "feet"),
  29679. name: "Beak Side",
  29680. image: {
  29681. source: "./media/characters/axel/beak-side.svg"
  29682. }
  29683. },
  29684. sheath: {
  29685. height: math.unit(0.5, "feet"),
  29686. name: "Sheath",
  29687. image: {
  29688. source: "./media/characters/axel/sheath.svg"
  29689. }
  29690. },
  29691. dick: {
  29692. height: math.unit(0.98, "feet"),
  29693. name: "Dick",
  29694. image: {
  29695. source: "./media/characters/axel/dick.svg"
  29696. }
  29697. },
  29698. },
  29699. [
  29700. {
  29701. name: "Macro",
  29702. height: math.unit(68, "meters"),
  29703. default: true
  29704. },
  29705. ]
  29706. ))
  29707. characterMakers.push(() => makeCharacter(
  29708. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29709. {
  29710. front: {
  29711. height: math.unit(3.5, "meters"),
  29712. weight: math.unit(1200, "kg"),
  29713. name: "Front",
  29714. image: {
  29715. source: "./media/characters/joanna/front.svg",
  29716. extra: 1596 / 1488,
  29717. bottom: 29 / 1625
  29718. }
  29719. },
  29720. back: {
  29721. height: math.unit(3.5, "meters"),
  29722. weight: math.unit(1200, "kg"),
  29723. name: "Back",
  29724. image: {
  29725. source: "./media/characters/joanna/back.svg",
  29726. extra: 1594 / 1495,
  29727. bottom: 26 / 1620
  29728. }
  29729. },
  29730. frontShorts: {
  29731. height: math.unit(3.5, "meters"),
  29732. weight: math.unit(1200, "kg"),
  29733. name: "Front (Shorts)",
  29734. image: {
  29735. source: "./media/characters/joanna/front-shorts.svg",
  29736. extra: 1596 / 1488,
  29737. bottom: 29 / 1625
  29738. }
  29739. },
  29740. frontBiker: {
  29741. height: math.unit(3.5, "meters"),
  29742. weight: math.unit(1200, "kg"),
  29743. name: "Front (Biker)",
  29744. image: {
  29745. source: "./media/characters/joanna/front-biker.svg",
  29746. extra: 1596 / 1488,
  29747. bottom: 29 / 1625
  29748. }
  29749. },
  29750. backBiker: {
  29751. height: math.unit(3.5, "meters"),
  29752. weight: math.unit(1200, "kg"),
  29753. name: "Back (Biker)",
  29754. image: {
  29755. source: "./media/characters/joanna/back-biker.svg",
  29756. extra: 1594 / 1495,
  29757. bottom: 88 / 1682
  29758. }
  29759. },
  29760. bikeLeft: {
  29761. height: math.unit(2.4, "meters"),
  29762. weight: math.unit(1600, "kg"),
  29763. name: "Bike (Left)",
  29764. image: {
  29765. source: "./media/characters/joanna/bike-left.svg",
  29766. extra: 720 / 720,
  29767. bottom: 8 / 728
  29768. }
  29769. },
  29770. bikeRight: {
  29771. height: math.unit(2.4, "meters"),
  29772. weight: math.unit(1600, "kg"),
  29773. name: "Bike (Right)",
  29774. image: {
  29775. source: "./media/characters/joanna/bike-right.svg",
  29776. extra: 720 / 720,
  29777. bottom: 8 / 728
  29778. }
  29779. },
  29780. },
  29781. [
  29782. {
  29783. name: "Incognito",
  29784. height: math.unit(3.5, "meters")
  29785. },
  29786. {
  29787. name: "Casual Big",
  29788. height: math.unit(200, "meters")
  29789. },
  29790. {
  29791. name: "Macro",
  29792. height: math.unit(600, "meters")
  29793. },
  29794. {
  29795. name: "Original",
  29796. height: math.unit(20, "km"),
  29797. default: true
  29798. },
  29799. {
  29800. name: "Giga",
  29801. height: math.unit(400, "km")
  29802. },
  29803. {
  29804. name: "Lounging",
  29805. height: math.unit(1500, "km")
  29806. },
  29807. {
  29808. name: "Planetary",
  29809. height: math.unit(200000, "km")
  29810. },
  29811. ]
  29812. ))
  29813. characterMakers.push(() => makeCharacter(
  29814. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29815. {
  29816. front: {
  29817. height: math.unit(6, "feet"),
  29818. weight: math.unit(150, "lb"),
  29819. name: "Front",
  29820. image: {
  29821. source: "./media/characters/hugo-sigil/front.svg",
  29822. extra: 522 / 500,
  29823. bottom: 2 / 524
  29824. }
  29825. },
  29826. back: {
  29827. height: math.unit(6, "feet"),
  29828. weight: math.unit(150, "lb"),
  29829. name: "Back",
  29830. image: {
  29831. source: "./media/characters/hugo-sigil/back.svg",
  29832. extra: 519 / 495,
  29833. bottom: 5 / 524
  29834. }
  29835. },
  29836. maw: {
  29837. height: math.unit(1.4, "feet"),
  29838. weight: math.unit(150, "lb"),
  29839. name: "Maw",
  29840. image: {
  29841. source: "./media/characters/hugo-sigil/maw.svg"
  29842. }
  29843. },
  29844. feet: {
  29845. height: math.unit(1.56, "feet"),
  29846. weight: math.unit(150, "lb"),
  29847. name: "Feet",
  29848. image: {
  29849. source: "./media/characters/hugo-sigil/feet.svg",
  29850. extra: 177 / 177,
  29851. bottom: 12 / 189
  29852. }
  29853. },
  29854. },
  29855. [
  29856. {
  29857. name: "Normal",
  29858. height: math.unit(6, "feet")
  29859. },
  29860. {
  29861. name: "Macro",
  29862. height: math.unit(200, "feet"),
  29863. default: true
  29864. },
  29865. ]
  29866. ))
  29867. characterMakers.push(() => makeCharacter(
  29868. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29869. {
  29870. front: {
  29871. height: math.unit(6, "feet"),
  29872. weight: math.unit(150, "lb"),
  29873. name: "Front",
  29874. image: {
  29875. source: "./media/characters/peri/front.svg",
  29876. extra: 2354 / 2233,
  29877. bottom: 49 / 2403
  29878. }
  29879. },
  29880. },
  29881. [
  29882. {
  29883. name: "Really Small",
  29884. height: math.unit(1, "nm")
  29885. },
  29886. {
  29887. name: "Micro",
  29888. height: math.unit(4, "inches")
  29889. },
  29890. {
  29891. name: "Normal",
  29892. height: math.unit(7, "inches"),
  29893. default: true
  29894. },
  29895. {
  29896. name: "Macro",
  29897. height: math.unit(400, "feet")
  29898. },
  29899. {
  29900. name: "Megamacro",
  29901. height: math.unit(100, "miles")
  29902. },
  29903. ]
  29904. ))
  29905. characterMakers.push(() => makeCharacter(
  29906. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29907. {
  29908. frontSlim: {
  29909. height: math.unit(7, "feet"),
  29910. name: "Front (Slim)",
  29911. image: {
  29912. source: "./media/characters/issilora/front-slim.svg",
  29913. extra: 529 / 449,
  29914. bottom: 53 / 582
  29915. }
  29916. },
  29917. sideSlim: {
  29918. height: math.unit(7, "feet"),
  29919. name: "Side (Slim)",
  29920. image: {
  29921. source: "./media/characters/issilora/side-slim.svg",
  29922. extra: 570 / 480,
  29923. bottom: 30 / 600
  29924. }
  29925. },
  29926. backSlim: {
  29927. height: math.unit(7, "feet"),
  29928. name: "Back (Slim)",
  29929. image: {
  29930. source: "./media/characters/issilora/back-slim.svg",
  29931. extra: 537 / 455,
  29932. bottom: 46 / 583
  29933. }
  29934. },
  29935. frontBuff: {
  29936. height: math.unit(7, "feet"),
  29937. name: "Front (Buff)",
  29938. image: {
  29939. source: "./media/characters/issilora/front-buff.svg",
  29940. extra: 2310 / 2035,
  29941. bottom: 335 / 2645
  29942. }
  29943. },
  29944. head: {
  29945. height: math.unit(1.94, "feet"),
  29946. name: "Head",
  29947. image: {
  29948. source: "./media/characters/issilora/head.svg"
  29949. }
  29950. },
  29951. },
  29952. [
  29953. {
  29954. name: "Minimum",
  29955. height: math.unit(7, "feet")
  29956. },
  29957. {
  29958. name: "Comfortable",
  29959. height: math.unit(17, "feet")
  29960. },
  29961. {
  29962. name: "Fun Size",
  29963. height: math.unit(47, "feet")
  29964. },
  29965. {
  29966. name: "Natural Macro",
  29967. height: math.unit(137, "feet"),
  29968. default: true
  29969. },
  29970. {
  29971. name: "Maximum Kaiju",
  29972. height: math.unit(397, "feet")
  29973. },
  29974. ]
  29975. ))
  29976. characterMakers.push(() => makeCharacter(
  29977. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29978. {
  29979. front: {
  29980. height: math.unit(50 + 9/12, "feet"),
  29981. weight: math.unit(32.8, "tons"),
  29982. name: "Front",
  29983. image: {
  29984. source: "./media/characters/irb'iiritaahn/front.svg",
  29985. extra: 1878/1826,
  29986. bottom: 326/2204
  29987. }
  29988. },
  29989. back: {
  29990. height: math.unit(50 + 9/12, "feet"),
  29991. weight: math.unit(32.8, "tons"),
  29992. name: "Back",
  29993. image: {
  29994. source: "./media/characters/irb'iiritaahn/back.svg",
  29995. extra: 2052/2018,
  29996. bottom: 152/2204
  29997. }
  29998. },
  29999. head: {
  30000. height: math.unit(12.86, "feet"),
  30001. name: "Head",
  30002. image: {
  30003. source: "./media/characters/irb'iiritaahn/head.svg"
  30004. }
  30005. },
  30006. maw: {
  30007. height: math.unit(9.66, "feet"),
  30008. name: "Maw",
  30009. image: {
  30010. source: "./media/characters/irb'iiritaahn/maw.svg"
  30011. }
  30012. },
  30013. frontDick: {
  30014. height: math.unit(8.78461, "feet"),
  30015. name: "Front Dick",
  30016. image: {
  30017. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30018. }
  30019. },
  30020. rearDick: {
  30021. height: math.unit(8.78461, "feet"),
  30022. name: "Rear Dick",
  30023. image: {
  30024. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30025. }
  30026. },
  30027. rearDickUnfolded: {
  30028. height: math.unit(8.78, "feet"),
  30029. name: "Rear Dick (Unfolded)",
  30030. image: {
  30031. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30032. }
  30033. },
  30034. wings: {
  30035. height: math.unit(43, "feet"),
  30036. name: "Wings",
  30037. image: {
  30038. source: "./media/characters/irb'iiritaahn/wings.svg"
  30039. }
  30040. },
  30041. },
  30042. [
  30043. {
  30044. name: "Macro",
  30045. height: math.unit(50 + 9/12, "feet"),
  30046. default: true
  30047. },
  30048. ]
  30049. ))
  30050. characterMakers.push(() => makeCharacter(
  30051. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30052. {
  30053. front: {
  30054. height: math.unit(205, "cm"),
  30055. weight: math.unit(102, "kg"),
  30056. name: "Front",
  30057. image: {
  30058. source: "./media/characters/irbisgreif/front.svg",
  30059. extra: 785/706,
  30060. bottom: 13/798
  30061. }
  30062. },
  30063. back: {
  30064. height: math.unit(205, "cm"),
  30065. weight: math.unit(102, "kg"),
  30066. name: "Back",
  30067. image: {
  30068. source: "./media/characters/irbisgreif/back.svg",
  30069. extra: 713/701,
  30070. bottom: 26/739
  30071. }
  30072. },
  30073. frontDressed: {
  30074. height: math.unit(216, "cm"),
  30075. weight: math.unit(102, "kg"),
  30076. name: "Front-dressed",
  30077. image: {
  30078. source: "./media/characters/irbisgreif/front-dressed.svg",
  30079. extra: 902/776,
  30080. bottom: 14/916
  30081. }
  30082. },
  30083. sideDressed: {
  30084. height: math.unit(195, "cm"),
  30085. weight: math.unit(102, "kg"),
  30086. name: "Side-dressed",
  30087. image: {
  30088. source: "./media/characters/irbisgreif/side-dressed.svg",
  30089. extra: 788/688,
  30090. bottom: 21/809
  30091. }
  30092. },
  30093. backDressed: {
  30094. height: math.unit(216, "cm"),
  30095. weight: math.unit(102, "kg"),
  30096. name: "Back-dressed",
  30097. image: {
  30098. source: "./media/characters/irbisgreif/back-dressed.svg",
  30099. extra: 901/783,
  30100. bottom: 10/911
  30101. }
  30102. },
  30103. dick: {
  30104. height: math.unit(0.49, "feet"),
  30105. name: "Dick",
  30106. image: {
  30107. source: "./media/characters/irbisgreif/dick.svg"
  30108. }
  30109. },
  30110. wingTop: {
  30111. height: math.unit(1.93 , "feet"),
  30112. name: "Wing-top",
  30113. image: {
  30114. source: "./media/characters/irbisgreif/wing-top.svg"
  30115. }
  30116. },
  30117. wingBottom: {
  30118. height: math.unit(1.93 , "feet"),
  30119. name: "Wing-bottom",
  30120. image: {
  30121. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30122. }
  30123. },
  30124. },
  30125. [
  30126. {
  30127. name: "Normal",
  30128. height: math.unit(216, "cm"),
  30129. default: true
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(6, "feet"),
  30138. weight: math.unit(150, "lb"),
  30139. name: "Front",
  30140. image: {
  30141. source: "./media/characters/pride/front.svg",
  30142. extra: 1299/1230,
  30143. bottom: 18/1317
  30144. }
  30145. },
  30146. },
  30147. [
  30148. {
  30149. name: "Normal",
  30150. height: math.unit(7, "feet")
  30151. },
  30152. {
  30153. name: "Mini-macro",
  30154. height: math.unit(11, "feet")
  30155. },
  30156. {
  30157. name: "Macro",
  30158. height: math.unit(15, "meters"),
  30159. default: true
  30160. },
  30161. {
  30162. name: "Macro+",
  30163. height: math.unit(40, "meters")
  30164. },
  30165. ]
  30166. ))
  30167. characterMakers.push(() => makeCharacter(
  30168. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30169. {
  30170. front: {
  30171. height: math.unit(4 + 2 / 12, "feet"),
  30172. weight: math.unit(95, "lb"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/vaelophis-nyx/front.svg",
  30176. extra: 2532/2330,
  30177. bottom: 0/2532
  30178. }
  30179. },
  30180. back: {
  30181. height: math.unit(4 + 2 / 12, "feet"),
  30182. weight: math.unit(95, "lb"),
  30183. name: "Back",
  30184. image: {
  30185. source: "./media/characters/vaelophis-nyx/back.svg",
  30186. extra: 2484/2361,
  30187. bottom: 0/2484
  30188. }
  30189. },
  30190. feralSide: {
  30191. height: math.unit(2 + 1/12, "feet"),
  30192. weight: math.unit(20, "lb"),
  30193. name: "Feral (Side)",
  30194. image: {
  30195. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30196. extra: 1721/1581,
  30197. bottom: 70/1791
  30198. }
  30199. },
  30200. feralLazing: {
  30201. height: math.unit(1.08, "feet"),
  30202. weight: math.unit(20, "lb"),
  30203. name: "Feral (Lazing)",
  30204. image: {
  30205. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30206. extra: 822/822,
  30207. bottom: 248/1070
  30208. }
  30209. },
  30210. ear: {
  30211. height: math.unit(0.416, "feet"),
  30212. name: "Ear",
  30213. image: {
  30214. source: "./media/characters/vaelophis-nyx/ear.svg"
  30215. }
  30216. },
  30217. eye: {
  30218. height: math.unit(0.0748, "feet"),
  30219. name: "Eye",
  30220. image: {
  30221. source: "./media/characters/vaelophis-nyx/eye.svg"
  30222. }
  30223. },
  30224. mouth: {
  30225. height: math.unit(0.378, "feet"),
  30226. name: "Mouth",
  30227. image: {
  30228. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30229. }
  30230. },
  30231. spade: {
  30232. height: math.unit(0.55, "feet"),
  30233. name: "Spade",
  30234. image: {
  30235. source: "./media/characters/vaelophis-nyx/spade.svg"
  30236. }
  30237. },
  30238. },
  30239. [
  30240. {
  30241. name: "Normal",
  30242. height: math.unit(4 + 2/12, "feet"),
  30243. default: true
  30244. },
  30245. ]
  30246. ))
  30247. characterMakers.push(() => makeCharacter(
  30248. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30249. {
  30250. front: {
  30251. height: math.unit(7, "feet"),
  30252. weight: math.unit(231, "lb"),
  30253. name: "Front",
  30254. image: {
  30255. source: "./media/characters/flux/front.svg",
  30256. extra: 919/871,
  30257. bottom: 0/919
  30258. }
  30259. },
  30260. back: {
  30261. height: math.unit(7, "feet"),
  30262. weight: math.unit(231, "lb"),
  30263. name: "Back",
  30264. image: {
  30265. source: "./media/characters/flux/back.svg",
  30266. extra: 1040/992,
  30267. bottom: 0/1040
  30268. }
  30269. },
  30270. frontDressed: {
  30271. height: math.unit(7, "feet"),
  30272. weight: math.unit(231, "lb"),
  30273. name: "Front (Dressed)",
  30274. image: {
  30275. source: "./media/characters/flux/front-dressed.svg",
  30276. extra: 919/871,
  30277. bottom: 0/919
  30278. }
  30279. },
  30280. feralSide: {
  30281. height: math.unit(5, "feet"),
  30282. weight: math.unit(150, "lb"),
  30283. name: "Feral (Side)",
  30284. image: {
  30285. source: "./media/characters/flux/feral-side.svg",
  30286. extra: 598/528,
  30287. bottom: 28/626
  30288. }
  30289. },
  30290. head: {
  30291. height: math.unit(1.585, "feet"),
  30292. name: "Head",
  30293. image: {
  30294. source: "./media/characters/flux/head.svg"
  30295. }
  30296. },
  30297. headSide: {
  30298. height: math.unit(1.74, "feet"),
  30299. name: "Head (Side)",
  30300. image: {
  30301. source: "./media/characters/flux/head-side.svg"
  30302. }
  30303. },
  30304. headSideFire: {
  30305. height: math.unit(1.76, "feet"),
  30306. name: "Head (Side, Fire)",
  30307. image: {
  30308. source: "./media/characters/flux/head-side-fire.svg"
  30309. }
  30310. },
  30311. },
  30312. [
  30313. {
  30314. name: "Normal",
  30315. height: math.unit(7, "feet"),
  30316. default: true
  30317. },
  30318. ]
  30319. ))
  30320. characterMakers.push(() => makeCharacter(
  30321. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30322. {
  30323. front: {
  30324. height: math.unit(9, "feet"),
  30325. weight: math.unit(1012, "lb"),
  30326. name: "Front",
  30327. image: {
  30328. source: "./media/characters/ulfra-lupae/front.svg",
  30329. extra: 1083/1011,
  30330. bottom: 67/1150
  30331. }
  30332. },
  30333. },
  30334. [
  30335. {
  30336. name: "Micro",
  30337. height: math.unit(6, "inches")
  30338. },
  30339. {
  30340. name: "Socializing",
  30341. height: math.unit(6 + 5/12, "feet")
  30342. },
  30343. {
  30344. name: "Normal",
  30345. height: math.unit(9, "feet"),
  30346. default: true
  30347. },
  30348. {
  30349. name: "Macro",
  30350. height: math.unit(150, "feet")
  30351. },
  30352. ]
  30353. ))
  30354. characterMakers.push(() => makeCharacter(
  30355. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30356. {
  30357. front: {
  30358. height: math.unit(5 + 2/12, "feet"),
  30359. weight: math.unit(120, "lb"),
  30360. name: "Front",
  30361. image: {
  30362. source: "./media/characters/timber/front.svg",
  30363. extra: 2814/2705,
  30364. bottom: 181/2995
  30365. }
  30366. },
  30367. },
  30368. [
  30369. {
  30370. name: "Normal",
  30371. height: math.unit(5 + 2/12, "feet"),
  30372. default: true
  30373. },
  30374. ]
  30375. ))
  30376. characterMakers.push(() => makeCharacter(
  30377. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30378. {
  30379. front: {
  30380. height: math.unit(5 + 7/12, "feet"),
  30381. weight: math.unit(220, "lb"),
  30382. name: "Front",
  30383. image: {
  30384. source: "./media/characters/nicki/front.svg",
  30385. extra: 453/419,
  30386. bottom: 7/460
  30387. }
  30388. },
  30389. frontAlt: {
  30390. height: math.unit(5 + 7/12, "feet"),
  30391. weight: math.unit(220, "lb"),
  30392. name: "Front-alt",
  30393. image: {
  30394. source: "./media/characters/nicki/front-alt.svg",
  30395. extra: 435/411,
  30396. bottom: 12/447
  30397. }
  30398. },
  30399. back: {
  30400. height: math.unit(5 + 7/12, "feet"),
  30401. weight: math.unit(220, "lb"),
  30402. name: "Back",
  30403. image: {
  30404. source: "./media/characters/nicki/back.svg",
  30405. extra: 440/413,
  30406. bottom: 19/459
  30407. }
  30408. },
  30409. taur: {
  30410. height: math.unit(7 + 6/12, "feet"),
  30411. weight: math.unit(700, "lb"),
  30412. name: "Taur",
  30413. image: {
  30414. source: "./media/characters/nicki/taur.svg",
  30415. extra: 975/773,
  30416. bottom: 0/975
  30417. }
  30418. },
  30419. frontNsfw: {
  30420. height: math.unit(5 + 7/12, "feet"),
  30421. weight: math.unit(220, "lb"),
  30422. name: "Front (NSFW)",
  30423. image: {
  30424. source: "./media/characters/nicki/front-nsfw.svg",
  30425. extra: 453/419,
  30426. bottom: 7/460
  30427. }
  30428. },
  30429. frontNsfwAlt: {
  30430. height: math.unit(5 + 7/12, "feet"),
  30431. weight: math.unit(220, "lb"),
  30432. name: "Front (Alt, NSFW)",
  30433. image: {
  30434. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30435. extra: 435/411,
  30436. bottom: 12/447
  30437. }
  30438. },
  30439. backNsfw: {
  30440. height: math.unit(5 + 7/12, "feet"),
  30441. weight: math.unit(220, "lb"),
  30442. name: "Back (NSFW)",
  30443. image: {
  30444. source: "./media/characters/nicki/back-nsfw.svg",
  30445. extra: 440/413,
  30446. bottom: 19/459
  30447. }
  30448. },
  30449. head: {
  30450. height: math.unit(2.1, "feet"),
  30451. name: "Head",
  30452. image: {
  30453. source: "./media/characters/nicki/head.svg"
  30454. }
  30455. },
  30456. paw: {
  30457. height: math.unit(1.88, "feet"),
  30458. name: "Paw",
  30459. image: {
  30460. source: "./media/characters/nicki/paw.svg"
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Normal",
  30467. height: math.unit(5 + 7/12, "feet"),
  30468. default: true
  30469. },
  30470. ]
  30471. ))
  30472. characterMakers.push(() => makeCharacter(
  30473. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30474. {
  30475. front: {
  30476. height: math.unit(7 + 10/12, "feet"),
  30477. weight: math.unit(3.5, "tons"),
  30478. name: "Front",
  30479. image: {
  30480. source: "./media/characters/lee/front.svg",
  30481. extra: 1773/1615,
  30482. bottom: 86/1859
  30483. }
  30484. },
  30485. hand: {
  30486. height: math.unit(1.78, "feet"),
  30487. name: "Hand",
  30488. image: {
  30489. source: "./media/characters/lee/hand.svg"
  30490. }
  30491. },
  30492. maw: {
  30493. height: math.unit(1.18, "feet"),
  30494. name: "Maw",
  30495. image: {
  30496. source: "./media/characters/lee/maw.svg"
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(7 + 10/12, "feet"),
  30504. default: true
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30510. {
  30511. front: {
  30512. height: math.unit(9, "feet"),
  30513. name: "Front",
  30514. image: {
  30515. source: "./media/characters/guti/front.svg",
  30516. extra: 4551/4355,
  30517. bottom: 123/4674
  30518. }
  30519. },
  30520. tongue: {
  30521. height: math.unit(1, "feet"),
  30522. name: "Tongue",
  30523. image: {
  30524. source: "./media/characters/guti/tongue.svg"
  30525. }
  30526. },
  30527. paw: {
  30528. height: math.unit(1.18, "feet"),
  30529. name: "Paw",
  30530. image: {
  30531. source: "./media/characters/guti/paw.svg"
  30532. }
  30533. },
  30534. },
  30535. [
  30536. {
  30537. name: "Normal",
  30538. height: math.unit(9, "feet"),
  30539. default: true
  30540. },
  30541. ]
  30542. ))
  30543. characterMakers.push(() => makeCharacter(
  30544. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30545. {
  30546. side: {
  30547. height: math.unit(5, "meters"),
  30548. name: "Side",
  30549. image: {
  30550. source: "./media/characters/vesper/side.svg",
  30551. extra: 1605/1518,
  30552. bottom: 0/1605
  30553. }
  30554. },
  30555. },
  30556. [
  30557. {
  30558. name: "Small",
  30559. height: math.unit(5, "meters")
  30560. },
  30561. {
  30562. name: "Sage",
  30563. height: math.unit(100, "meters"),
  30564. default: true
  30565. },
  30566. {
  30567. name: "Fun Size",
  30568. height: math.unit(600, "meters")
  30569. },
  30570. {
  30571. name: "Goddess",
  30572. height: math.unit(20000, "km")
  30573. },
  30574. {
  30575. name: "Maximum",
  30576. height: math.unit(5, "galaxies")
  30577. },
  30578. ]
  30579. ))
  30580. characterMakers.push(() => makeCharacter(
  30581. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30582. {
  30583. front: {
  30584. height: math.unit(6 + 3/12, "feet"),
  30585. weight: math.unit(190, "lb"),
  30586. name: "Front",
  30587. image: {
  30588. source: "./media/characters/gawain/front.svg",
  30589. extra: 2222/2139,
  30590. bottom: 90/2312
  30591. }
  30592. },
  30593. back: {
  30594. height: math.unit(6 + 3/12, "feet"),
  30595. weight: math.unit(190, "lb"),
  30596. name: "Back",
  30597. image: {
  30598. source: "./media/characters/gawain/back.svg",
  30599. extra: 2199/2111,
  30600. bottom: 73/2272
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Normal",
  30607. height: math.unit(6 + 3/12, "feet"),
  30608. default: true
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30614. {
  30615. side: {
  30616. height: math.unit(3.5, "meters"),
  30617. weight: math.unit(16000, "lb"),
  30618. name: "Side",
  30619. image: {
  30620. source: "./media/characters/dascalti/side.svg",
  30621. extra: 392/273,
  30622. bottom: 47/439
  30623. }
  30624. },
  30625. breath: {
  30626. height: math.unit(7.4, "feet"),
  30627. name: "Breath",
  30628. image: {
  30629. source: "./media/characters/dascalti/breath.svg"
  30630. }
  30631. },
  30632. fed: {
  30633. height: math.unit(3.6, "meters"),
  30634. weight: math.unit(16000, "lb"),
  30635. name: "Fed",
  30636. image: {
  30637. source: "./media/characters/dascalti/fed.svg",
  30638. extra: 1419/820,
  30639. bottom: 95/1514
  30640. }
  30641. },
  30642. },
  30643. [
  30644. {
  30645. name: "Normal",
  30646. height: math.unit(3.5, "meters"),
  30647. default: true
  30648. },
  30649. ]
  30650. ))
  30651. characterMakers.push(() => makeCharacter(
  30652. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30653. {
  30654. front: {
  30655. height: math.unit(3 + 5/12, "feet"),
  30656. name: "Front",
  30657. image: {
  30658. source: "./media/characters/mauve/front.svg",
  30659. extra: 1126/1033,
  30660. bottom: 65/1191
  30661. }
  30662. },
  30663. side: {
  30664. height: math.unit(3 + 5/12, "feet"),
  30665. name: "Side",
  30666. image: {
  30667. source: "./media/characters/mauve/side.svg",
  30668. extra: 1089/1001,
  30669. bottom: 29/1118
  30670. }
  30671. },
  30672. back: {
  30673. height: math.unit(3 + 5/12, "feet"),
  30674. name: "Back",
  30675. image: {
  30676. source: "./media/characters/mauve/back.svg",
  30677. extra: 1173/1053,
  30678. bottom: 109/1282
  30679. }
  30680. },
  30681. },
  30682. [
  30683. {
  30684. name: "Normal",
  30685. height: math.unit(3 + 5/12, "feet"),
  30686. default: true
  30687. },
  30688. ]
  30689. ))
  30690. characterMakers.push(() => makeCharacter(
  30691. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30692. {
  30693. front: {
  30694. height: math.unit(6 + 3/12, "feet"),
  30695. weight: math.unit(430, "lb"),
  30696. name: "Front",
  30697. image: {
  30698. source: "./media/characters/carlos/front.svg",
  30699. extra: 1964/1913,
  30700. bottom: 70/2034
  30701. }
  30702. },
  30703. },
  30704. [
  30705. {
  30706. name: "Normal",
  30707. height: math.unit(6 + 3/12, "feet"),
  30708. default: true
  30709. },
  30710. ]
  30711. ))
  30712. characterMakers.push(() => makeCharacter(
  30713. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30714. {
  30715. back: {
  30716. height: math.unit(5 + 10/12, "feet"),
  30717. weight: math.unit(200, "lb"),
  30718. name: "Back",
  30719. image: {
  30720. source: "./media/characters/jax/back.svg",
  30721. extra: 764/739,
  30722. bottom: 25/789
  30723. }
  30724. },
  30725. },
  30726. [
  30727. {
  30728. name: "Normal",
  30729. height: math.unit(5 + 10/12, "feet"),
  30730. default: true
  30731. },
  30732. ]
  30733. ))
  30734. characterMakers.push(() => makeCharacter(
  30735. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30736. {
  30737. front: {
  30738. height: math.unit(8, "feet"),
  30739. weight: math.unit(250, "lb"),
  30740. name: "Front",
  30741. image: {
  30742. source: "./media/characters/eikthynir/front.svg",
  30743. extra: 1332/1166,
  30744. bottom: 82/1414
  30745. }
  30746. },
  30747. back: {
  30748. height: math.unit(8, "feet"),
  30749. weight: math.unit(250, "lb"),
  30750. name: "Back",
  30751. image: {
  30752. source: "./media/characters/eikthynir/back.svg",
  30753. extra: 1342/1190,
  30754. bottom: 19/1361
  30755. }
  30756. },
  30757. dick: {
  30758. height: math.unit(2.35, "feet"),
  30759. name: "Dick",
  30760. image: {
  30761. source: "./media/characters/eikthynir/dick.svg"
  30762. }
  30763. },
  30764. },
  30765. [
  30766. {
  30767. name: "Normal",
  30768. height: math.unit(8, "feet"),
  30769. default: true
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30775. {
  30776. front: {
  30777. height: math.unit(99, "meters"),
  30778. weight: math.unit(13000, "tons"),
  30779. name: "Front",
  30780. image: {
  30781. source: "./media/characters/zlmos/front.svg",
  30782. extra: 2202/1992,
  30783. bottom: 315/2517
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Macro",
  30790. height: math.unit(99, "meters"),
  30791. default: true
  30792. },
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30797. {
  30798. front: {
  30799. height: math.unit(6 + 5/12, "feet"),
  30800. name: "Front",
  30801. image: {
  30802. source: "./media/characters/purri/front.svg",
  30803. extra: 1698/1610,
  30804. bottom: 32/1730
  30805. }
  30806. },
  30807. frontAlt: {
  30808. height: math.unit(6 + 5/12, "feet"),
  30809. name: "Front (Alt)",
  30810. image: {
  30811. source: "./media/characters/purri/front-alt.svg",
  30812. extra: 450/420,
  30813. bottom: 26/476
  30814. }
  30815. },
  30816. boots: {
  30817. height: math.unit(5.5, "feet"),
  30818. name: "Boots",
  30819. image: {
  30820. source: "./media/characters/purri/boots.svg",
  30821. extra: 905/853,
  30822. bottom: 18/923
  30823. }
  30824. },
  30825. lying: {
  30826. height: math.unit(2, "feet"),
  30827. name: "Lying",
  30828. image: {
  30829. source: "./media/characters/purri/lying.svg",
  30830. extra: 940/843,
  30831. bottom: 146/1086
  30832. }
  30833. },
  30834. devious: {
  30835. height: math.unit(1.77, "feet"),
  30836. name: "Devious",
  30837. image: {
  30838. source: "./media/characters/purri/devious.svg",
  30839. extra: 1440/1155,
  30840. bottom: 147/1587
  30841. }
  30842. },
  30843. bean: {
  30844. height: math.unit(1.94, "feet"),
  30845. name: "Bean",
  30846. image: {
  30847. source: "./media/characters/purri/bean.svg"
  30848. }
  30849. },
  30850. },
  30851. [
  30852. {
  30853. name: "Micro",
  30854. height: math.unit(1, "mm")
  30855. },
  30856. {
  30857. name: "Normal",
  30858. height: math.unit(6 + 5/12, "feet"),
  30859. default: true
  30860. },
  30861. {
  30862. name: "Macro :3c",
  30863. height: math.unit(2, "miles")
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(6 + 2/12, "feet"),
  30872. weight: math.unit(250, "lb"),
  30873. name: "Front",
  30874. image: {
  30875. source: "./media/characters/moonlight/front.svg",
  30876. extra: 1044/908,
  30877. bottom: 56/1100
  30878. }
  30879. },
  30880. feral: {
  30881. height: math.unit(3 + 1/12, "feet"),
  30882. weight: math.unit(50, "kg"),
  30883. name: "Feral",
  30884. image: {
  30885. source: "./media/characters/moonlight/feral.svg",
  30886. extra: 3705/2791,
  30887. bottom: 145/3850
  30888. }
  30889. },
  30890. paw: {
  30891. height: math.unit(1, "feet"),
  30892. name: "Paw",
  30893. image: {
  30894. source: "./media/characters/moonlight/paw.svg"
  30895. }
  30896. },
  30897. paws: {
  30898. height: math.unit(0.98, "feet"),
  30899. name: "Paws",
  30900. image: {
  30901. source: "./media/characters/moonlight/paws.svg",
  30902. extra: 939/939,
  30903. bottom: 50/989
  30904. }
  30905. },
  30906. mouth: {
  30907. height: math.unit(0.48, "feet"),
  30908. name: "Mouth",
  30909. image: {
  30910. source: "./media/characters/moonlight/mouth.svg"
  30911. }
  30912. },
  30913. dick: {
  30914. height: math.unit(1.46, "feet"),
  30915. name: "Dick",
  30916. image: {
  30917. source: "./media/characters/moonlight/dick.svg"
  30918. }
  30919. },
  30920. },
  30921. [
  30922. {
  30923. name: "Normal",
  30924. height: math.unit(6 + 2/12, "feet"),
  30925. default: true
  30926. },
  30927. {
  30928. name: "Macro",
  30929. height: math.unit(300, "feet")
  30930. },
  30931. {
  30932. name: "Macro+",
  30933. height: math.unit(1, "mile")
  30934. },
  30935. {
  30936. name: "Mt. Moon",
  30937. height: math.unit(5, "miles")
  30938. },
  30939. {
  30940. name: "Megamacro",
  30941. height: math.unit(15, "miles")
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30947. {
  30948. back: {
  30949. height: math.unit(6, "feet"),
  30950. weight: math.unit(150, "lb"),
  30951. name: "Back",
  30952. image: {
  30953. source: "./media/characters/sylen/back.svg",
  30954. extra: 1335/1273,
  30955. bottom: 107/1442
  30956. }
  30957. },
  30958. },
  30959. [
  30960. {
  30961. name: "Normal",
  30962. height: math.unit(5 + 5/12, "feet")
  30963. },
  30964. {
  30965. name: "Megamacro",
  30966. height: math.unit(3, "miles"),
  30967. default: true
  30968. },
  30969. ]
  30970. ))
  30971. characterMakers.push(() => makeCharacter(
  30972. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30973. {
  30974. front: {
  30975. height: math.unit(6, "feet"),
  30976. weight: math.unit(190, "lb"),
  30977. name: "Front",
  30978. image: {
  30979. source: "./media/characters/huttser/front.svg",
  30980. extra: 1152/1058,
  30981. bottom: 23/1175
  30982. }
  30983. },
  30984. side: {
  30985. height: math.unit(6, "feet"),
  30986. weight: math.unit(190, "lb"),
  30987. name: "Side",
  30988. image: {
  30989. source: "./media/characters/huttser/side.svg",
  30990. extra: 1174/1065,
  30991. bottom: 18/1192
  30992. }
  30993. },
  30994. back: {
  30995. height: math.unit(6, "feet"),
  30996. weight: math.unit(190, "lb"),
  30997. name: "Back",
  30998. image: {
  30999. source: "./media/characters/huttser/back.svg",
  31000. extra: 1158/1056,
  31001. bottom: 12/1170
  31002. }
  31003. },
  31004. },
  31005. [
  31006. ]
  31007. ))
  31008. characterMakers.push(() => makeCharacter(
  31009. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31010. {
  31011. side: {
  31012. height: math.unit(12 + 9/12, "feet"),
  31013. weight: math.unit(15000, "lb"),
  31014. name: "Side",
  31015. image: {
  31016. source: "./media/characters/faan/side.svg",
  31017. extra: 2747/2697,
  31018. bottom: 0/2747
  31019. }
  31020. },
  31021. front: {
  31022. height: math.unit(12 + 9/12, "feet"),
  31023. weight: math.unit(15000, "lb"),
  31024. name: "Front",
  31025. image: {
  31026. source: "./media/characters/faan/front.svg",
  31027. extra: 607/571,
  31028. bottom: 24/631
  31029. }
  31030. },
  31031. head: {
  31032. height: math.unit(2.85, "feet"),
  31033. name: "Head",
  31034. image: {
  31035. source: "./media/characters/faan/head.svg"
  31036. }
  31037. },
  31038. headAlt: {
  31039. height: math.unit(3.13, "feet"),
  31040. name: "Head-alt",
  31041. image: {
  31042. source: "./media/characters/faan/head-alt.svg"
  31043. }
  31044. },
  31045. },
  31046. [
  31047. {
  31048. name: "Normal",
  31049. height: math.unit(12 + 9/12, "feet"),
  31050. default: true
  31051. },
  31052. ]
  31053. ))
  31054. characterMakers.push(() => makeCharacter(
  31055. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31056. {
  31057. front: {
  31058. height: math.unit(6, "feet"),
  31059. weight: math.unit(300, "lb"),
  31060. name: "Front",
  31061. image: {
  31062. source: "./media/characters/tanio/front.svg",
  31063. extra: 711/673,
  31064. bottom: 25/736
  31065. }
  31066. },
  31067. },
  31068. [
  31069. {
  31070. name: "Normal",
  31071. height: math.unit(6, "feet"),
  31072. default: true
  31073. },
  31074. ]
  31075. ))
  31076. characterMakers.push(() => makeCharacter(
  31077. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31078. {
  31079. front: {
  31080. height: math.unit(3, "inches"),
  31081. name: "Front",
  31082. image: {
  31083. source: "./media/characters/noboru/front.svg",
  31084. extra: 1039/932,
  31085. bottom: 18/1057
  31086. }
  31087. },
  31088. },
  31089. [
  31090. {
  31091. name: "Micro",
  31092. height: math.unit(3, "inches"),
  31093. default: true
  31094. },
  31095. ]
  31096. ))
  31097. characterMakers.push(() => makeCharacter(
  31098. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31099. {
  31100. front: {
  31101. height: math.unit(1.85, "meters"),
  31102. weight: math.unit(80, "kg"),
  31103. name: "Front",
  31104. image: {
  31105. source: "./media/characters/daniel-barrett/front.svg",
  31106. extra: 355/337,
  31107. bottom: 9/364
  31108. }
  31109. },
  31110. },
  31111. [
  31112. {
  31113. name: "Pico",
  31114. height: math.unit(0.0433, "mm")
  31115. },
  31116. {
  31117. name: "Nano",
  31118. height: math.unit(1.5, "mm")
  31119. },
  31120. {
  31121. name: "Micro",
  31122. height: math.unit(5.3, "cm"),
  31123. default: true
  31124. },
  31125. {
  31126. name: "Normal",
  31127. height: math.unit(1.85, "meters")
  31128. },
  31129. {
  31130. name: "Macro",
  31131. height: math.unit(64.7, "meters")
  31132. },
  31133. {
  31134. name: "Megamacro",
  31135. height: math.unit(2.26, "km")
  31136. },
  31137. {
  31138. name: "Gigamacro",
  31139. height: math.unit(79, "km")
  31140. },
  31141. {
  31142. name: "Teramacro",
  31143. height: math.unit(2765, "km")
  31144. },
  31145. {
  31146. name: "Petamacro",
  31147. height: math.unit(96678, "km")
  31148. },
  31149. ]
  31150. ))
  31151. characterMakers.push(() => makeCharacter(
  31152. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31153. {
  31154. front: {
  31155. height: math.unit(30, "meters"),
  31156. weight: math.unit(400, "tons"),
  31157. name: "Front",
  31158. image: {
  31159. source: "./media/characters/zeel/front.svg",
  31160. extra: 2599/2599,
  31161. bottom: 226/2825
  31162. }
  31163. },
  31164. },
  31165. [
  31166. {
  31167. name: "Macro",
  31168. height: math.unit(30, "meters"),
  31169. default: true
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(6 + 7/12, "feet"),
  31178. weight: math.unit(210, "lb"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/tarn/front.svg",
  31182. extra: 3517/3220,
  31183. bottom: 91/3608
  31184. }
  31185. },
  31186. back: {
  31187. height: math.unit(6 + 7/12, "feet"),
  31188. weight: math.unit(210, "lb"),
  31189. name: "Back",
  31190. image: {
  31191. source: "./media/characters/tarn/back.svg",
  31192. extra: 3566/3241,
  31193. bottom: 34/3600
  31194. }
  31195. },
  31196. dick: {
  31197. height: math.unit(1.65, "feet"),
  31198. name: "Dick",
  31199. image: {
  31200. source: "./media/characters/tarn/dick.svg"
  31201. }
  31202. },
  31203. paw: {
  31204. height: math.unit(1.80, "feet"),
  31205. name: "Paw",
  31206. image: {
  31207. source: "./media/characters/tarn/paw.svg"
  31208. }
  31209. },
  31210. tongue: {
  31211. height: math.unit(0.97, "feet"),
  31212. name: "Tongue",
  31213. image: {
  31214. source: "./media/characters/tarn/tongue.svg"
  31215. }
  31216. },
  31217. },
  31218. [
  31219. {
  31220. name: "Micro",
  31221. height: math.unit(4, "inches")
  31222. },
  31223. {
  31224. name: "Normal",
  31225. height: math.unit(6 + 7/12, "feet"),
  31226. default: true
  31227. },
  31228. {
  31229. name: "Macro",
  31230. height: math.unit(300, "feet")
  31231. },
  31232. ]
  31233. ))
  31234. characterMakers.push(() => makeCharacter(
  31235. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31236. {
  31237. front: {
  31238. height: math.unit(5 + 7/12, "feet"),
  31239. weight: math.unit(80, "kg"),
  31240. name: "Front",
  31241. image: {
  31242. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31243. extra: 3023/2865,
  31244. bottom: 33/3056
  31245. }
  31246. },
  31247. back: {
  31248. height: math.unit(5 + 7/12, "feet"),
  31249. weight: math.unit(80, "kg"),
  31250. name: "Back",
  31251. image: {
  31252. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31253. extra: 3020/2886,
  31254. bottom: 30/3050
  31255. }
  31256. },
  31257. dick: {
  31258. height: math.unit(0.98, "feet"),
  31259. name: "Dick",
  31260. image: {
  31261. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31262. }
  31263. },
  31264. anatomy: {
  31265. height: math.unit(2.86, "feet"),
  31266. name: "Anatomy",
  31267. image: {
  31268. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31269. }
  31270. },
  31271. },
  31272. [
  31273. {
  31274. name: "Really Small",
  31275. height: math.unit(2, "inches")
  31276. },
  31277. {
  31278. name: "Micro",
  31279. height: math.unit(5.583, "inches")
  31280. },
  31281. {
  31282. name: "Normal",
  31283. height: math.unit(5 + 7/12, "feet"),
  31284. default: true
  31285. },
  31286. {
  31287. name: "Macro",
  31288. height: math.unit(67, "feet")
  31289. },
  31290. {
  31291. name: "Megamacro",
  31292. height: math.unit(134, "feet")
  31293. },
  31294. ]
  31295. ))
  31296. characterMakers.push(() => makeCharacter(
  31297. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31298. {
  31299. front: {
  31300. height: math.unit(9, "feet"),
  31301. weight: math.unit(120, "lb"),
  31302. name: "Front",
  31303. image: {
  31304. source: "./media/characters/sally/front.svg",
  31305. extra: 1506/1349,
  31306. bottom: 66/1572
  31307. }
  31308. },
  31309. },
  31310. [
  31311. {
  31312. name: "Normal",
  31313. height: math.unit(9, "feet"),
  31314. default: true
  31315. },
  31316. ]
  31317. ))
  31318. characterMakers.push(() => makeCharacter(
  31319. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31320. {
  31321. front: {
  31322. height: math.unit(8, "feet"),
  31323. weight: math.unit(900, "lb"),
  31324. name: "Front",
  31325. image: {
  31326. source: "./media/characters/owen/front.svg",
  31327. extra: 1761/1657,
  31328. bottom: 74/1835
  31329. }
  31330. },
  31331. side: {
  31332. height: math.unit(8, "feet"),
  31333. weight: math.unit(900, "lb"),
  31334. name: "Side",
  31335. image: {
  31336. source: "./media/characters/owen/side.svg",
  31337. extra: 1797/1734,
  31338. bottom: 30/1827
  31339. }
  31340. },
  31341. back: {
  31342. height: math.unit(8, "feet"),
  31343. weight: math.unit(900, "lb"),
  31344. name: "Back",
  31345. image: {
  31346. source: "./media/characters/owen/back.svg",
  31347. extra: 1796/1706,
  31348. bottom: 59/1855
  31349. }
  31350. },
  31351. maw: {
  31352. height: math.unit(1.76, "feet"),
  31353. name: "Maw",
  31354. image: {
  31355. source: "./media/characters/owen/maw.svg"
  31356. }
  31357. },
  31358. },
  31359. [
  31360. {
  31361. name: "Normal",
  31362. height: math.unit(8, "feet"),
  31363. default: true
  31364. },
  31365. ]
  31366. ))
  31367. characterMakers.push(() => makeCharacter(
  31368. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31369. {
  31370. front: {
  31371. height: math.unit(4, "feet"),
  31372. weight: math.unit(400, "lb"),
  31373. name: "Front",
  31374. image: {
  31375. source: "./media/characters/ryth/front.svg",
  31376. extra: 876/691,
  31377. bottom: 25/901
  31378. }
  31379. },
  31380. goia: {
  31381. height: math.unit(12, "feet"),
  31382. weight: math.unit(10800, "lb"),
  31383. name: "Goia",
  31384. image: {
  31385. source: "./media/characters/ryth/goia.svg",
  31386. extra: 3450/3198,
  31387. bottom: 61/3511
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Normal",
  31394. height: math.unit(4, "feet"),
  31395. default: true
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31401. {
  31402. front: {
  31403. height: math.unit(7, "feet"),
  31404. weight: math.unit(180, "lb"),
  31405. name: "Front",
  31406. image: {
  31407. source: "./media/characters/necrolance/front.svg",
  31408. extra: 1062/947,
  31409. bottom: 41/1103
  31410. }
  31411. },
  31412. back: {
  31413. height: math.unit(7, "feet"),
  31414. weight: math.unit(180, "lb"),
  31415. name: "Back",
  31416. image: {
  31417. source: "./media/characters/necrolance/back.svg",
  31418. extra: 1045/984,
  31419. bottom: 14/1059
  31420. }
  31421. },
  31422. wing: {
  31423. height: math.unit(2.67, "feet"),
  31424. name: "Wing",
  31425. image: {
  31426. source: "./media/characters/necrolance/wing.svg"
  31427. }
  31428. },
  31429. },
  31430. [
  31431. {
  31432. name: "Normal",
  31433. height: math.unit(7, "feet"),
  31434. default: true
  31435. },
  31436. ]
  31437. ))
  31438. characterMakers.push(() => makeCharacter(
  31439. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31440. {
  31441. front: {
  31442. height: math.unit(76, "meters"),
  31443. weight: math.unit(30000, "tons"),
  31444. name: "Front",
  31445. image: {
  31446. source: "./media/characters/tyler/front.svg",
  31447. extra: 1640/1640,
  31448. bottom: 114/1754
  31449. }
  31450. },
  31451. },
  31452. [
  31453. {
  31454. name: "Macro",
  31455. height: math.unit(76, "meters"),
  31456. default: true
  31457. },
  31458. ]
  31459. ))
  31460. characterMakers.push(() => makeCharacter(
  31461. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31462. {
  31463. front: {
  31464. height: math.unit(4 + 11/12, "feet"),
  31465. weight: math.unit(132, "lb"),
  31466. name: "Front",
  31467. image: {
  31468. source: "./media/characters/icey/front.svg",
  31469. extra: 2750/2550,
  31470. bottom: 33/2783
  31471. }
  31472. },
  31473. back: {
  31474. height: math.unit(4 + 11/12, "feet"),
  31475. weight: math.unit(132, "lb"),
  31476. name: "Back",
  31477. image: {
  31478. source: "./media/characters/icey/back.svg",
  31479. extra: 2624/2481,
  31480. bottom: 35/2659
  31481. }
  31482. },
  31483. },
  31484. [
  31485. {
  31486. name: "Normal",
  31487. height: math.unit(4 + 11/12, "feet"),
  31488. default: true
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31494. {
  31495. front: {
  31496. height: math.unit(100, "feet"),
  31497. weight: math.unit(0, "lb"),
  31498. name: "Front",
  31499. image: {
  31500. source: "./media/characters/smile/front.svg",
  31501. extra: 2983/2912,
  31502. bottom: 162/3145
  31503. }
  31504. },
  31505. back: {
  31506. height: math.unit(100, "feet"),
  31507. weight: math.unit(0, "lb"),
  31508. name: "Back",
  31509. image: {
  31510. source: "./media/characters/smile/back.svg",
  31511. extra: 3143/3031,
  31512. bottom: 91/3234
  31513. }
  31514. },
  31515. head: {
  31516. height: math.unit(26.3, "feet"),
  31517. weight: math.unit(0, "lb"),
  31518. name: "Head",
  31519. image: {
  31520. source: "./media/characters/smile/head.svg"
  31521. }
  31522. },
  31523. collar: {
  31524. height: math.unit(5.3, "feet"),
  31525. weight: math.unit(0, "lb"),
  31526. name: "Collar",
  31527. image: {
  31528. source: "./media/characters/smile/collar.svg"
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Macro",
  31535. height: math.unit(100, "feet"),
  31536. default: true
  31537. },
  31538. ]
  31539. ))
  31540. characterMakers.push(() => makeCharacter(
  31541. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31542. {
  31543. dragon: {
  31544. height: math.unit(26, "feet"),
  31545. weight: math.unit(36, "tons"),
  31546. name: "Dragon",
  31547. image: {
  31548. source: "./media/characters/arimphae/dragon.svg",
  31549. extra: 1574/983,
  31550. bottom: 357/1931
  31551. }
  31552. },
  31553. drake: {
  31554. height: math.unit(9, "feet"),
  31555. weight: math.unit(1.5, "tons"),
  31556. name: "Drake",
  31557. image: {
  31558. source: "./media/characters/arimphae/drake.svg",
  31559. extra: 1120/925,
  31560. bottom: 435/1555
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Small",
  31567. height: math.unit(26*5/9, "feet")
  31568. },
  31569. {
  31570. name: "Normal",
  31571. height: math.unit(26, "feet"),
  31572. default: true
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31578. {
  31579. front: {
  31580. height: math.unit(8 + 9/12, "feet"),
  31581. name: "Front",
  31582. image: {
  31583. source: "./media/characters/xander/front.svg",
  31584. extra: 848/673,
  31585. bottom: 62/910
  31586. }
  31587. },
  31588. },
  31589. [
  31590. {
  31591. name: "Normal",
  31592. height: math.unit(8 + 9/12, "feet"),
  31593. default: true
  31594. },
  31595. {
  31596. name: "Gaze Grabber",
  31597. height: math.unit(13 + 8/12, "feet")
  31598. },
  31599. {
  31600. name: "Jaw Dropper",
  31601. height: math.unit(27, "feet")
  31602. },
  31603. {
  31604. name: "Show Stopper",
  31605. height: math.unit(136, "feet")
  31606. },
  31607. {
  31608. name: "Superstar",
  31609. height: math.unit(1.9e6, "miles")
  31610. },
  31611. ]
  31612. ))
  31613. characterMakers.push(() => makeCharacter(
  31614. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31615. {
  31616. side: {
  31617. height: math.unit(2100, "feet"),
  31618. name: "Side",
  31619. image: {
  31620. source: "./media/characters/osiris/side.svg",
  31621. extra: 1105/939,
  31622. bottom: 167/1272
  31623. }
  31624. },
  31625. },
  31626. [
  31627. {
  31628. name: "Macro",
  31629. height: math.unit(2100, "feet"),
  31630. default: true
  31631. },
  31632. ]
  31633. ))
  31634. characterMakers.push(() => makeCharacter(
  31635. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31636. {
  31637. front: {
  31638. height: math.unit(6 + 8/12, "feet"),
  31639. weight: math.unit(225, "lb"),
  31640. name: "Front",
  31641. image: {
  31642. source: "./media/characters/rhys-londe/front.svg",
  31643. extra: 2258/2141,
  31644. bottom: 188/2446
  31645. }
  31646. },
  31647. back: {
  31648. height: math.unit(6 + 8/12, "feet"),
  31649. weight: math.unit(225, "lb"),
  31650. name: "Back",
  31651. image: {
  31652. source: "./media/characters/rhys-londe/back.svg",
  31653. extra: 2237/2137,
  31654. bottom: 63/2300
  31655. }
  31656. },
  31657. frontNsfw: {
  31658. height: math.unit(6 + 8/12, "feet"),
  31659. weight: math.unit(225, "lb"),
  31660. name: "Front (NSFW)",
  31661. image: {
  31662. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31663. extra: 2258/2141,
  31664. bottom: 188/2446
  31665. }
  31666. },
  31667. backNsfw: {
  31668. height: math.unit(6 + 8/12, "feet"),
  31669. weight: math.unit(225, "lb"),
  31670. name: "Back (NSFW)",
  31671. image: {
  31672. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31673. extra: 2237/2137,
  31674. bottom: 63/2300
  31675. }
  31676. },
  31677. dick: {
  31678. height: math.unit(30, "inches"),
  31679. name: "Dick",
  31680. image: {
  31681. source: "./media/characters/rhys-londe/dick.svg"
  31682. }
  31683. },
  31684. maw: {
  31685. height: math.unit(1.6, "feet"),
  31686. name: "Maw",
  31687. image: {
  31688. source: "./media/characters/rhys-londe/maw.svg"
  31689. }
  31690. },
  31691. },
  31692. [
  31693. {
  31694. name: "Normal",
  31695. height: math.unit(6 + 8/12, "feet"),
  31696. default: true
  31697. },
  31698. ]
  31699. ))
  31700. characterMakers.push(() => makeCharacter(
  31701. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31702. {
  31703. front: {
  31704. height: math.unit(3 + 10/12, "feet"),
  31705. weight: math.unit(90, "lb"),
  31706. name: "Front",
  31707. image: {
  31708. source: "./media/characters/taivas-ensim/front.svg",
  31709. extra: 1327/1216,
  31710. bottom: 96/1423
  31711. }
  31712. },
  31713. back: {
  31714. height: math.unit(3 + 10/12, "feet"),
  31715. weight: math.unit(90, "lb"),
  31716. name: "Back",
  31717. image: {
  31718. source: "./media/characters/taivas-ensim/back.svg",
  31719. extra: 1355/1247,
  31720. bottom: 11/1366
  31721. }
  31722. },
  31723. frontNsfw: {
  31724. height: math.unit(3 + 10/12, "feet"),
  31725. weight: math.unit(90, "lb"),
  31726. name: "Front (NSFW)",
  31727. image: {
  31728. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31729. extra: 1327/1216,
  31730. bottom: 96/1423
  31731. }
  31732. },
  31733. backNsfw: {
  31734. height: math.unit(3 + 10/12, "feet"),
  31735. weight: math.unit(90, "lb"),
  31736. name: "Back (NSFW)",
  31737. image: {
  31738. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31739. extra: 1355/1247,
  31740. bottom: 11/1366
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(3 + 10/12, "feet"),
  31748. default: true
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31754. {
  31755. front: {
  31756. height: math.unit(9 + 6/12, "feet"),
  31757. weight: math.unit(940, "lb"),
  31758. name: "Front",
  31759. image: {
  31760. source: "./media/characters/byliss/front.svg",
  31761. extra: 1327/1290,
  31762. bottom: 82/1409
  31763. }
  31764. },
  31765. back: {
  31766. height: math.unit(9 + 6/12, "feet"),
  31767. weight: math.unit(940, "lb"),
  31768. name: "Back",
  31769. image: {
  31770. source: "./media/characters/byliss/back.svg",
  31771. extra: 1376/1349,
  31772. bottom: 9/1385
  31773. }
  31774. },
  31775. frontNsfw: {
  31776. height: math.unit(9 + 6/12, "feet"),
  31777. weight: math.unit(940, "lb"),
  31778. name: "Front (NSFW)",
  31779. image: {
  31780. source: "./media/characters/byliss/front-nsfw.svg",
  31781. extra: 1327/1290,
  31782. bottom: 82/1409
  31783. }
  31784. },
  31785. backNsfw: {
  31786. height: math.unit(9 + 6/12, "feet"),
  31787. weight: math.unit(940, "lb"),
  31788. name: "Back (NSFW)",
  31789. image: {
  31790. source: "./media/characters/byliss/back-nsfw.svg",
  31791. extra: 1376/1349,
  31792. bottom: 9/1385
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Normal",
  31799. height: math.unit(9 + 6/12, "feet"),
  31800. default: true
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(5 + 2/12, "feet"),
  31809. weight: math.unit(200, "lb"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/noraly/front.svg",
  31813. extra: 4985/4773,
  31814. bottom: 150/5135
  31815. }
  31816. },
  31817. full: {
  31818. height: math.unit(5 + 2/12, "feet"),
  31819. weight: math.unit(164, "lb"),
  31820. name: "Full",
  31821. image: {
  31822. source: "./media/characters/noraly/full.svg",
  31823. extra: 1114/1059,
  31824. bottom: 35/1149
  31825. }
  31826. },
  31827. fuller: {
  31828. height: math.unit(5 + 2/12, "feet"),
  31829. weight: math.unit(230, "lb"),
  31830. name: "Fuller",
  31831. image: {
  31832. source: "./media/characters/noraly/fuller.svg",
  31833. extra: 1114/1059,
  31834. bottom: 35/1149
  31835. }
  31836. },
  31837. fullest: {
  31838. height: math.unit(5 + 2/12, "feet"),
  31839. weight: math.unit(300, "lb"),
  31840. name: "Fullest",
  31841. image: {
  31842. source: "./media/characters/noraly/fullest.svg",
  31843. extra: 1114/1059,
  31844. bottom: 35/1149
  31845. }
  31846. },
  31847. },
  31848. [
  31849. {
  31850. name: "Normal",
  31851. height: math.unit(5 + 2/12, "feet"),
  31852. default: true
  31853. },
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31858. {
  31859. front: {
  31860. height: math.unit(5 + 2/12, "feet"),
  31861. weight: math.unit(210, "lb"),
  31862. name: "Front",
  31863. image: {
  31864. source: "./media/characters/pera/front.svg",
  31865. extra: 1560/1531,
  31866. bottom: 165/1725
  31867. }
  31868. },
  31869. back: {
  31870. height: math.unit(5 + 2/12, "feet"),
  31871. weight: math.unit(210, "lb"),
  31872. name: "Back",
  31873. image: {
  31874. source: "./media/characters/pera/back.svg",
  31875. extra: 1523/1493,
  31876. bottom: 152/1675
  31877. }
  31878. },
  31879. dick: {
  31880. height: math.unit(2.4, "feet"),
  31881. name: "Dick",
  31882. image: {
  31883. source: "./media/characters/pera/dick.svg"
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Normal",
  31890. height: math.unit(5 + 2/12, "feet"),
  31891. default: true
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31897. {
  31898. front: {
  31899. height: math.unit(12, "feet"),
  31900. weight: math.unit(3200, "lb"),
  31901. name: "Front",
  31902. image: {
  31903. source: "./media/characters/julian/front.svg",
  31904. extra: 2962/2701,
  31905. bottom: 184/3146
  31906. }
  31907. },
  31908. maw: {
  31909. height: math.unit(5.35, "feet"),
  31910. name: "Maw",
  31911. image: {
  31912. source: "./media/characters/julian/maw.svg"
  31913. }
  31914. },
  31915. paw: {
  31916. height: math.unit(3.07, "feet"),
  31917. name: "Paw",
  31918. image: {
  31919. source: "./media/characters/julian/paw.svg"
  31920. }
  31921. },
  31922. },
  31923. [
  31924. {
  31925. name: "Default",
  31926. height: math.unit(12, "feet"),
  31927. default: true
  31928. },
  31929. {
  31930. name: "Big",
  31931. height: math.unit(50, "feet")
  31932. },
  31933. {
  31934. name: "Really Big",
  31935. height: math.unit(1, "mile")
  31936. },
  31937. {
  31938. name: "Extremely Big",
  31939. height: math.unit(100, "miles")
  31940. },
  31941. {
  31942. name: "Planet Hugger",
  31943. height: math.unit(200, "megameters")
  31944. },
  31945. {
  31946. name: "Unreasonably Big",
  31947. height: math.unit(1e300, "meters")
  31948. },
  31949. ]
  31950. ))
  31951. characterMakers.push(() => makeCharacter(
  31952. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31953. {
  31954. solgooleo: {
  31955. height: math.unit(4, "meters"),
  31956. weight: math.unit(6000*1.5, "kg"),
  31957. volume: math.unit(6000, "liters"),
  31958. name: "Solgooleo",
  31959. image: {
  31960. source: "./media/characters/pi/solgooleo.svg",
  31961. extra: 388/331,
  31962. bottom: 29/417
  31963. }
  31964. },
  31965. },
  31966. [
  31967. {
  31968. name: "Normal",
  31969. height: math.unit(4, "meters"),
  31970. default: true
  31971. },
  31972. ]
  31973. ))
  31974. characterMakers.push(() => makeCharacter(
  31975. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31976. {
  31977. front: {
  31978. height: math.unit(8 + 2/12, "feet"),
  31979. weight: math.unit(4, "tons"),
  31980. name: "Front",
  31981. image: {
  31982. source: "./media/characters/shaun/front.svg",
  31983. extra: 1550/1505,
  31984. bottom: 353/1903
  31985. }
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Lorg",
  31991. height: math.unit(8 + 2/12, "feet"),
  31992. default: true
  31993. },
  31994. ]
  31995. ))
  31996. characterMakers.push(() => makeCharacter(
  31997. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31998. {
  31999. front: {
  32000. height: math.unit(7, "feet"),
  32001. name: "Front",
  32002. image: {
  32003. source: "./media/characters/sini/front.svg",
  32004. extra: 726/678,
  32005. bottom: 35/761
  32006. }
  32007. },
  32008. back: {
  32009. height: math.unit(7, "feet"),
  32010. name: "Back",
  32011. image: {
  32012. source: "./media/characters/sini/back.svg",
  32013. extra: 743/701,
  32014. bottom: 12/755
  32015. }
  32016. },
  32017. mawAnthro: {
  32018. height: math.unit(2.14, "feet"),
  32019. name: "Maw (Anthro)",
  32020. image: {
  32021. source: "./media/characters/sini/maw-anthro.svg"
  32022. }
  32023. },
  32024. dick: {
  32025. height: math.unit(1.45, "feet"),
  32026. name: "Dick (Anthro)",
  32027. image: {
  32028. source: "./media/characters/sini/dick-anthro.svg"
  32029. }
  32030. },
  32031. feral: {
  32032. height: math.unit(13, "feet"),
  32033. name: "Feral",
  32034. image: {
  32035. source: "./media/characters/sini/feral.svg",
  32036. extra: 814/605,
  32037. bottom: 11/825
  32038. }
  32039. },
  32040. mawFeral: {
  32041. height: math.unit(4.6, "feet"),
  32042. name: "Maw-feral",
  32043. image: {
  32044. source: "./media/characters/sini/maw-feral.svg"
  32045. }
  32046. },
  32047. footFeral: {
  32048. height: math.unit(4.2, "feet"),
  32049. name: "Foot-feral",
  32050. image: {
  32051. source: "./media/characters/sini/foot-feral.svg"
  32052. }
  32053. },
  32054. },
  32055. [
  32056. {
  32057. name: "Normal",
  32058. height: math.unit(7, "feet"),
  32059. default: true
  32060. },
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32065. {
  32066. side: {
  32067. height: math.unit(13, "meters"),
  32068. weight: math.unit(9072, "kg"),
  32069. name: "Side",
  32070. image: {
  32071. source: "./media/characters/raylldo/side.svg",
  32072. extra: 403/344,
  32073. bottom: 42/445
  32074. }
  32075. },
  32076. leaping: {
  32077. height: math.unit(12.3, "meters"),
  32078. weight: math.unit(9072, "kg"),
  32079. name: "Leaping",
  32080. image: {
  32081. source: "./media/characters/raylldo/leaping.svg",
  32082. extra: 470/249,
  32083. bottom: 13/483
  32084. }
  32085. },
  32086. flying: {
  32087. height: math.unit(18, "meters"),
  32088. weight: math.unit(9072, "kg"),
  32089. name: "Flying",
  32090. image: {
  32091. source: "./media/characters/raylldo/flying.svg"
  32092. }
  32093. },
  32094. head: {
  32095. height: math.unit(5.85, "meters"),
  32096. name: "Head",
  32097. image: {
  32098. source: "./media/characters/raylldo/head.svg"
  32099. }
  32100. },
  32101. maw: {
  32102. height: math.unit(5.32, "meters"),
  32103. name: "Maw",
  32104. image: {
  32105. source: "./media/characters/raylldo/maw.svg"
  32106. }
  32107. },
  32108. eye: {
  32109. height: math.unit(0.54, "meters"),
  32110. name: "Eye",
  32111. image: {
  32112. source: "./media/characters/raylldo/eye.svg"
  32113. }
  32114. },
  32115. },
  32116. [
  32117. {
  32118. name: "Normal",
  32119. height: math.unit(13, "meters"),
  32120. default: true
  32121. },
  32122. ]
  32123. ))
  32124. characterMakers.push(() => makeCharacter(
  32125. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32126. {
  32127. anthroFront: {
  32128. height: math.unit(9, "feet"),
  32129. weight: math.unit(600, "lb"),
  32130. name: "Anthro (Front)",
  32131. image: {
  32132. source: "./media/characters/glint/anthro-front.svg",
  32133. extra: 1097/1018,
  32134. bottom: 28/1125
  32135. }
  32136. },
  32137. anthroBack: {
  32138. height: math.unit(9, "feet"),
  32139. weight: math.unit(600, "lb"),
  32140. name: "Anthro (Back)",
  32141. image: {
  32142. source: "./media/characters/glint/anthro-back.svg",
  32143. extra: 1154/997,
  32144. bottom: 36/1190
  32145. }
  32146. },
  32147. feral: {
  32148. height: math.unit(11, "feet"),
  32149. weight: math.unit(50000, "lb"),
  32150. name: "Feral",
  32151. image: {
  32152. source: "./media/characters/glint/feral.svg",
  32153. extra: 3035/1585,
  32154. bottom: 1169/4204
  32155. }
  32156. },
  32157. dickAnthro: {
  32158. height: math.unit(0.7, "meters"),
  32159. name: "Dick (Anthro)",
  32160. image: {
  32161. source: "./media/characters/glint/dick-anthro.svg"
  32162. }
  32163. },
  32164. dickFeral: {
  32165. height: math.unit(2.65, "meters"),
  32166. name: "Dick (Feral)",
  32167. image: {
  32168. source: "./media/characters/glint/dick-feral.svg"
  32169. }
  32170. },
  32171. slitHidden: {
  32172. height: math.unit(5.85, "meters"),
  32173. name: "Slit (Hidden)",
  32174. image: {
  32175. source: "./media/characters/glint/slit-hidden.svg"
  32176. }
  32177. },
  32178. slitErect: {
  32179. height: math.unit(5.85, "meters"),
  32180. name: "Slit (Erect)",
  32181. image: {
  32182. source: "./media/characters/glint/slit-erect.svg"
  32183. }
  32184. },
  32185. mawAnthro: {
  32186. height: math.unit(0.63, "meters"),
  32187. name: "Maw (Anthro)",
  32188. image: {
  32189. source: "./media/characters/glint/maw.svg"
  32190. }
  32191. },
  32192. mawFeral: {
  32193. height: math.unit(2.89, "meters"),
  32194. name: "Maw (Feral)",
  32195. image: {
  32196. source: "./media/characters/glint/maw.svg"
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Normal",
  32203. height: math.unit(9, "feet"),
  32204. default: true
  32205. },
  32206. ]
  32207. ))
  32208. characterMakers.push(() => makeCharacter(
  32209. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32210. {
  32211. side: {
  32212. height: math.unit(15, "feet"),
  32213. weight: math.unit(5000, "kg"),
  32214. name: "Side",
  32215. image: {
  32216. source: "./media/characters/kairne/side.svg",
  32217. extra: 979/811,
  32218. bottom: 13/992
  32219. }
  32220. },
  32221. front: {
  32222. height: math.unit(15, "feet"),
  32223. weight: math.unit(5000, "kg"),
  32224. name: "Front",
  32225. image: {
  32226. source: "./media/characters/kairne/front.svg",
  32227. extra: 908/814,
  32228. bottom: 26/934
  32229. }
  32230. },
  32231. sideNsfw: {
  32232. height: math.unit(15, "feet"),
  32233. weight: math.unit(5000, "kg"),
  32234. name: "Side (NSFW)",
  32235. image: {
  32236. source: "./media/characters/kairne/side-nsfw.svg",
  32237. extra: 979/811,
  32238. bottom: 13/992
  32239. }
  32240. },
  32241. frontNsfw: {
  32242. height: math.unit(15, "feet"),
  32243. weight: math.unit(5000, "kg"),
  32244. name: "Front (NSFW)",
  32245. image: {
  32246. source: "./media/characters/kairne/front-nsfw.svg",
  32247. extra: 908/814,
  32248. bottom: 26/934
  32249. }
  32250. },
  32251. dickCaged: {
  32252. height: math.unit(0.65, "meters"),
  32253. name: "Dick-caged",
  32254. image: {
  32255. source: "./media/characters/kairne/dick-caged.svg"
  32256. }
  32257. },
  32258. dick: {
  32259. height: math.unit(0.79, "meters"),
  32260. name: "Dick",
  32261. image: {
  32262. source: "./media/characters/kairne/dick.svg"
  32263. }
  32264. },
  32265. genitals: {
  32266. height: math.unit(1.29, "meters"),
  32267. name: "Genitals",
  32268. image: {
  32269. source: "./media/characters/kairne/genitals.svg"
  32270. }
  32271. },
  32272. maw: {
  32273. height: math.unit(1.73, "meters"),
  32274. name: "Maw",
  32275. image: {
  32276. source: "./media/characters/kairne/maw.svg"
  32277. }
  32278. },
  32279. },
  32280. [
  32281. {
  32282. name: "Normal",
  32283. height: math.unit(15, "feet"),
  32284. default: true
  32285. },
  32286. ]
  32287. ))
  32288. characterMakers.push(() => makeCharacter(
  32289. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32290. {
  32291. front: {
  32292. height: math.unit(5 + 8/12, "feet"),
  32293. weight: math.unit(139, "lb"),
  32294. name: "Front",
  32295. image: {
  32296. source: "./media/characters/biscuit-jackal/front.svg",
  32297. extra: 2106/1961,
  32298. bottom: 58/2164
  32299. }
  32300. },
  32301. back: {
  32302. height: math.unit(5 + 8/12, "feet"),
  32303. weight: math.unit(139, "lb"),
  32304. name: "Back",
  32305. image: {
  32306. source: "./media/characters/biscuit-jackal/back.svg",
  32307. extra: 2132/1976,
  32308. bottom: 57/2189
  32309. }
  32310. },
  32311. werejackal: {
  32312. height: math.unit(6 + 3/12, "feet"),
  32313. weight: math.unit(188, "lb"),
  32314. name: "Werejackal",
  32315. image: {
  32316. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32317. extra: 2373/2178,
  32318. bottom: 53/2426
  32319. }
  32320. },
  32321. },
  32322. [
  32323. {
  32324. name: "Normal",
  32325. height: math.unit(5 + 8/12, "feet"),
  32326. default: true
  32327. },
  32328. ]
  32329. ))
  32330. characterMakers.push(() => makeCharacter(
  32331. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32332. {
  32333. front: {
  32334. height: math.unit(140, "cm"),
  32335. weight: math.unit(45, "kg"),
  32336. name: "Front",
  32337. image: {
  32338. source: "./media/characters/tayra-white/front.svg",
  32339. extra: 2229/2192,
  32340. bottom: 75/2304
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Normal",
  32347. height: math.unit(140, "cm"),
  32348. default: true
  32349. },
  32350. ]
  32351. ))
  32352. characterMakers.push(() => makeCharacter(
  32353. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32354. {
  32355. front: {
  32356. height: math.unit(4 + 5/12, "feet"),
  32357. name: "Front",
  32358. image: {
  32359. source: "./media/characters/scoop/front.svg",
  32360. extra: 1257/1136,
  32361. bottom: 69/1326
  32362. }
  32363. },
  32364. back: {
  32365. height: math.unit(4 + 5/12, "feet"),
  32366. name: "Back",
  32367. image: {
  32368. source: "./media/characters/scoop/back.svg",
  32369. extra: 1321/1152,
  32370. bottom: 32/1353
  32371. }
  32372. },
  32373. maw: {
  32374. height: math.unit(0.68, "feet"),
  32375. name: "Maw",
  32376. image: {
  32377. source: "./media/characters/scoop/maw.svg"
  32378. }
  32379. },
  32380. },
  32381. [
  32382. {
  32383. name: "Really Small",
  32384. height: math.unit(1, "mm")
  32385. },
  32386. {
  32387. name: "Micro",
  32388. height: math.unit(1, "inch")
  32389. },
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(4 + 5/12, "feet"),
  32393. default: true
  32394. },
  32395. {
  32396. name: "Macro",
  32397. height: math.unit(200, "feet")
  32398. },
  32399. {
  32400. name: "Megamacro",
  32401. height: math.unit(3240, "feet")
  32402. },
  32403. {
  32404. name: "Teramacro",
  32405. height: math.unit(2500, "miles")
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32411. {
  32412. front: {
  32413. height: math.unit(15 + 7/12, "feet"),
  32414. name: "Front",
  32415. image: {
  32416. source: "./media/characters/saphinara/front.svg",
  32417. extra: 604/546,
  32418. bottom: 19/623
  32419. }
  32420. },
  32421. side: {
  32422. height: math.unit(15 + 7/12, "feet"),
  32423. name: "Side",
  32424. image: {
  32425. source: "./media/characters/saphinara/side.svg",
  32426. extra: 605/547,
  32427. bottom: 6/611
  32428. }
  32429. },
  32430. back: {
  32431. height: math.unit(15 + 7/12, "feet"),
  32432. name: "Back",
  32433. image: {
  32434. source: "./media/characters/saphinara/back.svg",
  32435. extra: 591/531,
  32436. bottom: 13/604
  32437. }
  32438. },
  32439. frontTail: {
  32440. height: math.unit(15 + 7/12, "feet"),
  32441. name: "Front (Full Tail)",
  32442. image: {
  32443. source: "./media/characters/saphinara/front-tail.svg",
  32444. extra: 748/547,
  32445. bottom: 66/814
  32446. }
  32447. },
  32448. },
  32449. [
  32450. {
  32451. name: "Normal",
  32452. height: math.unit(15 + 7/12, "feet"),
  32453. default: true
  32454. },
  32455. {
  32456. name: "Angry",
  32457. height: math.unit(30 + 6/12, "feet")
  32458. },
  32459. {
  32460. name: "Enraged",
  32461. height: math.unit(102 + 1/12, "feet")
  32462. },
  32463. ]
  32464. ))
  32465. characterMakers.push(() => makeCharacter(
  32466. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32467. {
  32468. front: {
  32469. height: math.unit(6 + 8/12, "feet"),
  32470. weight: math.unit(300, "lb"),
  32471. name: "Front",
  32472. image: {
  32473. source: "./media/characters/jrain/front.svg",
  32474. extra: 3039/2865,
  32475. bottom: 399/3438
  32476. }
  32477. },
  32478. back: {
  32479. height: math.unit(6 + 8/12, "feet"),
  32480. weight: math.unit(300, "lb"),
  32481. name: "Back",
  32482. image: {
  32483. source: "./media/characters/jrain/back.svg",
  32484. extra: 3089/2938,
  32485. bottom: 172/3261
  32486. }
  32487. },
  32488. head: {
  32489. height: math.unit(2.14, "feet"),
  32490. name: "Head",
  32491. image: {
  32492. source: "./media/characters/jrain/head.svg"
  32493. }
  32494. },
  32495. maw: {
  32496. height: math.unit(1.77, "feet"),
  32497. name: "Maw",
  32498. image: {
  32499. source: "./media/characters/jrain/maw.svg"
  32500. }
  32501. },
  32502. leftHand: {
  32503. height: math.unit(1.1, "feet"),
  32504. name: "Left Hand",
  32505. image: {
  32506. source: "./media/characters/jrain/left-hand.svg"
  32507. }
  32508. },
  32509. rightHand: {
  32510. height: math.unit(1.1, "feet"),
  32511. name: "Right Hand",
  32512. image: {
  32513. source: "./media/characters/jrain/right-hand.svg"
  32514. }
  32515. },
  32516. eye: {
  32517. height: math.unit(0.35, "feet"),
  32518. name: "Eye",
  32519. image: {
  32520. source: "./media/characters/jrain/eye.svg"
  32521. }
  32522. },
  32523. },
  32524. [
  32525. {
  32526. name: "Normal",
  32527. height: math.unit(6 + 8/12, "feet"),
  32528. default: true
  32529. },
  32530. {
  32531. name: "Casually Large",
  32532. height: math.unit(25, "feet")
  32533. },
  32534. {
  32535. name: "Giant",
  32536. height: math.unit(100, "feet")
  32537. },
  32538. {
  32539. name: "Kaiju",
  32540. height: math.unit(300, "feet")
  32541. },
  32542. ]
  32543. ))
  32544. characterMakers.push(() => makeCharacter(
  32545. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32546. {
  32547. dragon: {
  32548. height: math.unit(5, "meters"),
  32549. name: "Dragon",
  32550. image: {
  32551. source: "./media/characters/sabrina/dragon.svg",
  32552. extra: 3670 / 2365,
  32553. bottom: 333 / 4003
  32554. }
  32555. },
  32556. gryphon: {
  32557. height: math.unit(3, "meters"),
  32558. name: "Gryphon",
  32559. image: {
  32560. source: "./media/characters/sabrina/gryphon.svg",
  32561. extra: 1576 / 945,
  32562. bottom: 71 / 1647
  32563. }
  32564. },
  32565. snake: {
  32566. height: math.unit(12, "meters"),
  32567. name: "Snake",
  32568. image: {
  32569. source: "./media/characters/sabrina/snake.svg",
  32570. extra: 1758 / 1320,
  32571. bottom: 186 / 1944
  32572. }
  32573. },
  32574. collar: {
  32575. height: math.unit(1.86, "meters"),
  32576. name: "Collar",
  32577. image: {
  32578. source: "./media/characters/sabrina/collar.svg"
  32579. }
  32580. },
  32581. eye: {
  32582. height: math.unit(0.53, "meters"),
  32583. name: "Eye",
  32584. image: {
  32585. source: "./media/characters/sabrina/eye.svg"
  32586. }
  32587. },
  32588. foot: {
  32589. height: math.unit(1.86, "meters"),
  32590. name: "Foot",
  32591. image: {
  32592. source: "./media/characters/sabrina/foot.svg"
  32593. }
  32594. },
  32595. hand: {
  32596. height: math.unit(1.32, "meters"),
  32597. name: "Hand",
  32598. image: {
  32599. source: "./media/characters/sabrina/hand.svg"
  32600. }
  32601. },
  32602. head: {
  32603. height: math.unit(2.44, "meters"),
  32604. name: "Head",
  32605. image: {
  32606. source: "./media/characters/sabrina/head.svg"
  32607. }
  32608. },
  32609. headAngry: {
  32610. height: math.unit(2.44, "meters"),
  32611. name: "Head (Angry))",
  32612. image: {
  32613. source: "./media/characters/sabrina/head-angry.svg"
  32614. }
  32615. },
  32616. maw: {
  32617. height: math.unit(1.65, "meters"),
  32618. name: "Maw",
  32619. image: {
  32620. source: "./media/characters/sabrina/maw.svg"
  32621. }
  32622. },
  32623. spikes: {
  32624. height: math.unit(1.69, "meters"),
  32625. name: "Spikes",
  32626. image: {
  32627. source: "./media/characters/sabrina/spikes.svg"
  32628. }
  32629. },
  32630. stomach: {
  32631. height: math.unit(1.15, "meters"),
  32632. name: "Stomach",
  32633. image: {
  32634. source: "./media/characters/sabrina/stomach.svg"
  32635. }
  32636. },
  32637. tongue: {
  32638. height: math.unit(1.27, "meters"),
  32639. name: "Tongue",
  32640. image: {
  32641. source: "./media/characters/sabrina/tongue.svg"
  32642. }
  32643. },
  32644. wingDorsal: {
  32645. height: math.unit(4.85, "meters"),
  32646. name: "Wing (Dorsal)",
  32647. image: {
  32648. source: "./media/characters/sabrina/wing-dorsal.svg"
  32649. }
  32650. },
  32651. wingVentral: {
  32652. height: math.unit(4.85, "meters"),
  32653. name: "Wing (Ventral)",
  32654. image: {
  32655. source: "./media/characters/sabrina/wing-ventral.svg"
  32656. }
  32657. },
  32658. },
  32659. [
  32660. {
  32661. name: "Normal",
  32662. height: math.unit(5, "meters"),
  32663. default: true
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32669. {
  32670. frontMaid: {
  32671. height: math.unit(5 + 5/12, "feet"),
  32672. weight: math.unit(130, "lb"),
  32673. name: "Front (Maid)",
  32674. image: {
  32675. source: "./media/characters/midnight-tales/front-maid.svg",
  32676. extra: 489/454,
  32677. bottom: 61/550
  32678. }
  32679. },
  32680. frontFormal: {
  32681. height: math.unit(5 + 5/12, "feet"),
  32682. weight: math.unit(130, "lb"),
  32683. name: "Front (Formal)",
  32684. image: {
  32685. source: "./media/characters/midnight-tales/front-formal.svg",
  32686. extra: 489/454,
  32687. bottom: 61/550
  32688. }
  32689. },
  32690. back: {
  32691. height: math.unit(5 + 5/12, "feet"),
  32692. weight: math.unit(130, "lb"),
  32693. name: "Back",
  32694. image: {
  32695. source: "./media/characters/midnight-tales/back.svg",
  32696. extra: 498/456,
  32697. bottom: 33/531
  32698. }
  32699. },
  32700. frontBeast: {
  32701. height: math.unit(40, "feet"),
  32702. weight: math.unit(64000, "lb"),
  32703. name: "Front (Beast)",
  32704. image: {
  32705. source: "./media/characters/midnight-tales/front-beast.svg",
  32706. extra: 927/860,
  32707. bottom: 53/980
  32708. }
  32709. },
  32710. backBeast: {
  32711. height: math.unit(40, "feet"),
  32712. weight: math.unit(64000, "lb"),
  32713. name: "Back (Beast)",
  32714. image: {
  32715. source: "./media/characters/midnight-tales/back-beast.svg",
  32716. extra: 929/855,
  32717. bottom: 16/945
  32718. }
  32719. },
  32720. footBeast: {
  32721. height: math.unit(6.7, "feet"),
  32722. name: "Foot (Beast)",
  32723. image: {
  32724. source: "./media/characters/midnight-tales/foot-beast.svg"
  32725. }
  32726. },
  32727. headBeast: {
  32728. height: math.unit(8, "feet"),
  32729. name: "Head (Beast)",
  32730. image: {
  32731. source: "./media/characters/midnight-tales/head-beast.svg"
  32732. }
  32733. },
  32734. },
  32735. [
  32736. {
  32737. name: "Normal",
  32738. height: math.unit(5 + 5 / 12, "feet"),
  32739. default: true
  32740. },
  32741. {
  32742. name: "Macro",
  32743. height: math.unit(25, "feet")
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32749. {
  32750. front: {
  32751. height: math.unit(5 + 10/12, "feet"),
  32752. name: "Front",
  32753. image: {
  32754. source: "./media/characters/argon/front.svg",
  32755. extra: 2009/1935,
  32756. bottom: 118/2127
  32757. }
  32758. },
  32759. back: {
  32760. height: math.unit(5 + 10/12, "feet"),
  32761. name: "Back",
  32762. image: {
  32763. source: "./media/characters/argon/back.svg",
  32764. extra: 2047/1992,
  32765. bottom: 20/2067
  32766. }
  32767. },
  32768. frontDressed: {
  32769. height: math.unit(5 + 10/12, "feet"),
  32770. name: "Front (Dressed)",
  32771. image: {
  32772. source: "./media/characters/argon/front-dressed.svg",
  32773. extra: 2009/1935,
  32774. bottom: 118/2127
  32775. }
  32776. },
  32777. },
  32778. [
  32779. {
  32780. name: "Normal",
  32781. height: math.unit(5 + 10/12, "feet"),
  32782. default: true
  32783. },
  32784. ]
  32785. ))
  32786. characterMakers.push(() => makeCharacter(
  32787. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32788. {
  32789. front: {
  32790. height: math.unit(8 + 6/12, "feet"),
  32791. weight: math.unit(1150, "lb"),
  32792. name: "Front",
  32793. image: {
  32794. source: "./media/characters/kichi/front.svg",
  32795. extra: 1267/1164,
  32796. bottom: 61/1328
  32797. }
  32798. },
  32799. back: {
  32800. height: math.unit(8 + 6/12, "feet"),
  32801. weight: math.unit(1150, "lb"),
  32802. name: "Back",
  32803. image: {
  32804. source: "./media/characters/kichi/back.svg",
  32805. extra: 1273/1166,
  32806. bottom: 33/1306
  32807. }
  32808. },
  32809. },
  32810. [
  32811. {
  32812. name: "Normal",
  32813. height: math.unit(8 + 6/12, "feet"),
  32814. default: true
  32815. },
  32816. ]
  32817. ))
  32818. characterMakers.push(() => makeCharacter(
  32819. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32820. {
  32821. front: {
  32822. height: math.unit(6, "feet"),
  32823. weight: math.unit(210, "lb"),
  32824. name: "Front",
  32825. image: {
  32826. source: "./media/characters/manetel-greyscale/front.svg",
  32827. extra: 350/312,
  32828. bottom: 8/358
  32829. }
  32830. },
  32831. },
  32832. [
  32833. {
  32834. name: "Micro",
  32835. height: math.unit(2, "inches")
  32836. },
  32837. {
  32838. name: "Normal",
  32839. height: math.unit(6, "feet"),
  32840. default: true
  32841. },
  32842. {
  32843. name: "Minimacro",
  32844. height: math.unit(17, "feet")
  32845. },
  32846. {
  32847. name: "Macro",
  32848. height: math.unit(117, "feet")
  32849. },
  32850. ]
  32851. ))
  32852. characterMakers.push(() => makeCharacter(
  32853. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32854. {
  32855. side: {
  32856. height: math.unit(5 + 1/12, "feet"),
  32857. weight: math.unit(418, "lb"),
  32858. name: "Side",
  32859. image: {
  32860. source: "./media/characters/softpurr/side.svg",
  32861. extra: 1993/1945,
  32862. bottom: 134/2127
  32863. }
  32864. },
  32865. front: {
  32866. height: math.unit(5 + 1/12, "feet"),
  32867. weight: math.unit(418, "lb"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/softpurr/front.svg",
  32871. extra: 1950/1856,
  32872. bottom: 174/2124
  32873. }
  32874. },
  32875. paw: {
  32876. height: math.unit(1, "feet"),
  32877. name: "Paw",
  32878. image: {
  32879. source: "./media/characters/softpurr/paw.svg"
  32880. }
  32881. },
  32882. },
  32883. [
  32884. {
  32885. name: "Normal",
  32886. height: math.unit(5 + 1/12, "feet"),
  32887. default: true
  32888. },
  32889. ]
  32890. ))
  32891. characterMakers.push(() => makeCharacter(
  32892. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32893. {
  32894. front: {
  32895. height: math.unit(260, "meters"),
  32896. name: "Front",
  32897. image: {
  32898. source: "./media/characters/anahita/front.svg",
  32899. extra: 665/635,
  32900. bottom: 89/754
  32901. }
  32902. },
  32903. },
  32904. [
  32905. {
  32906. name: "Macro",
  32907. height: math.unit(260, "meters"),
  32908. default: true
  32909. },
  32910. ]
  32911. ))
  32912. characterMakers.push(() => makeCharacter(
  32913. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32914. {
  32915. front: {
  32916. height: math.unit(4 + 10/12, "feet"),
  32917. weight: math.unit(160, "lb"),
  32918. name: "Front",
  32919. image: {
  32920. source: "./media/characters/chip-mouse/front.svg",
  32921. extra: 3528/3408,
  32922. bottom: 0/3528
  32923. }
  32924. },
  32925. frontNsfw: {
  32926. height: math.unit(4 + 10/12, "feet"),
  32927. weight: math.unit(160, "lb"),
  32928. name: "Front (NSFW)",
  32929. image: {
  32930. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32931. extra: 3528/3408,
  32932. bottom: 0/3528
  32933. }
  32934. },
  32935. },
  32936. [
  32937. {
  32938. name: "Normal",
  32939. height: math.unit(4 + 10/12, "feet"),
  32940. default: true
  32941. },
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32946. {
  32947. side: {
  32948. height: math.unit(10, "feet"),
  32949. weight: math.unit(14000, "lb"),
  32950. name: "Side",
  32951. image: {
  32952. source: "./media/characters/kremm/side.svg",
  32953. extra: 1390/1053,
  32954. bottom: 90/1480
  32955. }
  32956. },
  32957. gut: {
  32958. height: math.unit(5.8, "feet"),
  32959. name: "Gut",
  32960. image: {
  32961. source: "./media/characters/kremm/gut.svg"
  32962. }
  32963. },
  32964. ass: {
  32965. height: math.unit(6.1, "feet"),
  32966. name: "Ass",
  32967. image: {
  32968. source: "./media/characters/kremm/ass.svg"
  32969. }
  32970. },
  32971. jaws: {
  32972. height: math.unit(2.2, "feet"),
  32973. name: "Jaws",
  32974. image: {
  32975. source: "./media/characters/kremm/jaws.svg"
  32976. }
  32977. },
  32978. dick: {
  32979. height: math.unit(4.26, "feet"),
  32980. name: "Dick",
  32981. image: {
  32982. source: "./media/characters/kremm/dick.svg"
  32983. }
  32984. },
  32985. },
  32986. [
  32987. {
  32988. name: "Normal",
  32989. height: math.unit(10, "feet"),
  32990. default: true
  32991. },
  32992. ]
  32993. ))
  32994. characterMakers.push(() => makeCharacter(
  32995. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32996. {
  32997. front: {
  32998. height: math.unit(30, "stories"),
  32999. name: "Front",
  33000. image: {
  33001. source: "./media/characters/kai/front.svg",
  33002. extra: 1892/1718,
  33003. bottom: 162/2054
  33004. }
  33005. },
  33006. },
  33007. [
  33008. {
  33009. name: "Macro",
  33010. height: math.unit(30, "stories"),
  33011. default: true
  33012. },
  33013. ]
  33014. ))
  33015. characterMakers.push(() => makeCharacter(
  33016. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33017. {
  33018. front: {
  33019. height: math.unit(6 + 4/12, "feet"),
  33020. weight: math.unit(145, "lb"),
  33021. name: "Front",
  33022. image: {
  33023. source: "./media/characters/sykes/front.svg",
  33024. extra: 1321 / 1187,
  33025. bottom: 66 / 1387
  33026. }
  33027. },
  33028. back: {
  33029. height: math.unit(6 + 4/12, "feet"),
  33030. weight: math.unit(145, "lb"),
  33031. name: "Back",
  33032. image: {
  33033. source: "./media/characters/sykes/back.svg",
  33034. extra: 1326/1181,
  33035. bottom: 31/1357
  33036. }
  33037. },
  33038. handBack: {
  33039. height: math.unit(0.9, "feet"),
  33040. name: "Hand (Back)",
  33041. image: {
  33042. source: "./media/characters/sykes/hand-back.svg"
  33043. }
  33044. },
  33045. handFront: {
  33046. height: math.unit(0.839, "feet"),
  33047. name: "Hand (Front)",
  33048. image: {
  33049. source: "./media/characters/sykes/hand-front.svg"
  33050. }
  33051. },
  33052. leftFoot: {
  33053. height: math.unit(1.2, "feet"),
  33054. name: "Foot (Left)",
  33055. image: {
  33056. source: "./media/characters/sykes/foot-left.svg"
  33057. }
  33058. },
  33059. rightFoot: {
  33060. height: math.unit(1.2, "feet"),
  33061. name: "Foot (Right)",
  33062. image: {
  33063. source: "./media/characters/sykes/foot-right.svg"
  33064. }
  33065. },
  33066. maw: {
  33067. height: math.unit(1.93, "feet"),
  33068. name: "Maw",
  33069. image: {
  33070. source: "./media/characters/sykes/maw.svg"
  33071. }
  33072. },
  33073. teeth: {
  33074. height: math.unit(0.51, "feet"),
  33075. name: "Teeth",
  33076. image: {
  33077. source: "./media/characters/sykes/teeth.svg"
  33078. }
  33079. },
  33080. tongue: {
  33081. height: math.unit(2.13, "feet"),
  33082. name: "Tongue",
  33083. image: {
  33084. source: "./media/characters/sykes/tongue.svg"
  33085. }
  33086. },
  33087. uvula: {
  33088. height: math.unit(0.16, "feet"),
  33089. name: "Uvula",
  33090. image: {
  33091. source: "./media/characters/sykes/uvula.svg"
  33092. }
  33093. },
  33094. collar: {
  33095. height: math.unit(0.287, "feet"),
  33096. name: "Collar",
  33097. image: {
  33098. source: "./media/characters/sykes/collar.svg"
  33099. }
  33100. },
  33101. },
  33102. [
  33103. {
  33104. name: "Shrunken",
  33105. height: math.unit(5, "inches")
  33106. },
  33107. {
  33108. name: "Normal",
  33109. height: math.unit(6 + 4 / 12, "feet"),
  33110. default: true
  33111. },
  33112. {
  33113. name: "Big",
  33114. height: math.unit(15, "feet")
  33115. },
  33116. ]
  33117. ))
  33118. characterMakers.push(() => makeCharacter(
  33119. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33120. {
  33121. front: {
  33122. height: math.unit(5 + 8/12, "feet"),
  33123. weight: math.unit(190, "lb"),
  33124. name: "Front",
  33125. image: {
  33126. source: "./media/characters/oven-otter/front.svg",
  33127. extra: 1809/1740,
  33128. bottom: 181/1990
  33129. }
  33130. },
  33131. back: {
  33132. height: math.unit(5 + 8/12, "feet"),
  33133. weight: math.unit(190, "lb"),
  33134. name: "Back",
  33135. image: {
  33136. source: "./media/characters/oven-otter/back.svg",
  33137. extra: 1709/1635,
  33138. bottom: 118/1827
  33139. }
  33140. },
  33141. hand: {
  33142. height: math.unit(1.07, "feet"),
  33143. name: "Hand",
  33144. image: {
  33145. source: "./media/characters/oven-otter/hand.svg"
  33146. }
  33147. },
  33148. beans: {
  33149. height: math.unit(1.74, "feet"),
  33150. name: "Beans",
  33151. image: {
  33152. source: "./media/characters/oven-otter/beans.svg"
  33153. }
  33154. },
  33155. },
  33156. [
  33157. {
  33158. name: "Micro",
  33159. height: math.unit(0.5, "inches")
  33160. },
  33161. {
  33162. name: "Normal",
  33163. height: math.unit(5 + 8/12, "feet"),
  33164. default: true
  33165. },
  33166. {
  33167. name: "Macro",
  33168. height: math.unit(250, "feet")
  33169. },
  33170. {
  33171. name: "Really High",
  33172. height: math.unit(420, "feet")
  33173. },
  33174. ]
  33175. ))
  33176. characterMakers.push(() => makeCharacter(
  33177. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33178. {
  33179. front: {
  33180. height: math.unit(5, "meters"),
  33181. weight: math.unit(292000000000000, "kg"),
  33182. name: "Front",
  33183. image: {
  33184. source: "./media/characters/devourer/front.svg",
  33185. extra: 1800/1733,
  33186. bottom: 211/2011
  33187. }
  33188. },
  33189. maw: {
  33190. height: math.unit(1.1, "meter"),
  33191. name: "Maw",
  33192. image: {
  33193. source: "./media/characters/devourer/maw.svg"
  33194. }
  33195. },
  33196. },
  33197. [
  33198. {
  33199. name: "Small",
  33200. height: math.unit(3, "meters")
  33201. },
  33202. {
  33203. name: "Large",
  33204. height: math.unit(5, "meters"),
  33205. default: true
  33206. },
  33207. ]
  33208. ))
  33209. characterMakers.push(() => makeCharacter(
  33210. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33211. {
  33212. front: {
  33213. height: math.unit(6, "feet"),
  33214. weight: math.unit(400, "lb"),
  33215. name: "Front",
  33216. image: {
  33217. source: "./media/characters/ellarby/front.svg",
  33218. extra: 1909/1763,
  33219. bottom: 80/1989
  33220. }
  33221. },
  33222. back: {
  33223. height: math.unit(6, "feet"),
  33224. weight: math.unit(400, "lb"),
  33225. name: "Back",
  33226. image: {
  33227. source: "./media/characters/ellarby/back.svg",
  33228. extra: 1914/1784,
  33229. bottom: 172/2086
  33230. }
  33231. },
  33232. },
  33233. [
  33234. {
  33235. name: "Mischief",
  33236. height: math.unit(18, "inches")
  33237. },
  33238. {
  33239. name: "Trouble",
  33240. height: math.unit(12, "feet")
  33241. },
  33242. {
  33243. name: "Havoc",
  33244. height: math.unit(200, "feet"),
  33245. default: true
  33246. },
  33247. {
  33248. name: "Pandemonium",
  33249. height: math.unit(1, "mile")
  33250. },
  33251. {
  33252. name: "Catastrophe",
  33253. height: math.unit(100, "miles")
  33254. },
  33255. ]
  33256. ))
  33257. characterMakers.push(() => makeCharacter(
  33258. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33259. {
  33260. front: {
  33261. height: math.unit(4.7, "meters"),
  33262. weight: math.unit(6500, "kg"),
  33263. name: "Front",
  33264. image: {
  33265. source: "./media/characters/vex/front.svg",
  33266. extra: 1288/1140,
  33267. bottom: 100/1388
  33268. }
  33269. },
  33270. },
  33271. [
  33272. {
  33273. name: "Normal",
  33274. height: math.unit(4.7, "meters"),
  33275. default: true
  33276. },
  33277. ]
  33278. ))
  33279. characterMakers.push(() => makeCharacter(
  33280. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33281. {
  33282. normal: {
  33283. height: math.unit(6, "feet"),
  33284. weight: math.unit(350, "lb"),
  33285. name: "Normal",
  33286. image: {
  33287. source: "./media/characters/teshy/normal.svg",
  33288. extra: 1795/1735,
  33289. bottom: 16/1811
  33290. }
  33291. },
  33292. monsterFront: {
  33293. height: math.unit(12, "feet"),
  33294. weight: math.unit(4700, "lb"),
  33295. name: "Monster (Front)",
  33296. image: {
  33297. source: "./media/characters/teshy/monster-front.svg",
  33298. extra: 2042/2034,
  33299. bottom: 128/2170
  33300. }
  33301. },
  33302. monsterSide: {
  33303. height: math.unit(12, "feet"),
  33304. weight: math.unit(4700, "lb"),
  33305. name: "Monster (Side)",
  33306. image: {
  33307. source: "./media/characters/teshy/monster-side.svg",
  33308. extra: 2067/2056,
  33309. bottom: 70/2137
  33310. }
  33311. },
  33312. monsterBack: {
  33313. height: math.unit(12, "feet"),
  33314. weight: math.unit(4700, "lb"),
  33315. name: "Monster (Back)",
  33316. image: {
  33317. source: "./media/characters/teshy/monster-back.svg",
  33318. extra: 1921/1914,
  33319. bottom: 171/2092
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(6, "feet"),
  33327. default: true
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33333. {
  33334. front: {
  33335. height: math.unit(6, "feet"),
  33336. name: "Front",
  33337. image: {
  33338. source: "./media/characters/ramey/front.svg",
  33339. extra: 790/787,
  33340. bottom: 27/817
  33341. }
  33342. },
  33343. },
  33344. [
  33345. {
  33346. name: "Normal",
  33347. height: math.unit(6, "feet"),
  33348. default: true
  33349. },
  33350. ]
  33351. ))
  33352. characterMakers.push(() => makeCharacter(
  33353. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33354. {
  33355. front: {
  33356. height: math.unit(5 + 5/12, "feet"),
  33357. weight: math.unit(120, "lb"),
  33358. name: "Front",
  33359. image: {
  33360. source: "./media/characters/phirae/front.svg",
  33361. extra: 2491/2436,
  33362. bottom: 38/2529
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(5 + 5/12, "feet"),
  33370. default: true
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33376. {
  33377. front: {
  33378. height: math.unit(6, "feet"),
  33379. weight: math.unit(150, "lb"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/stagglas/front.svg",
  33383. extra: 962/882,
  33384. bottom: 53/1015
  33385. }
  33386. },
  33387. },
  33388. [
  33389. {
  33390. name: "Normal",
  33391. height: math.unit(5 + 3/12, "feet"),
  33392. default: true
  33393. },
  33394. ]
  33395. ))
  33396. characterMakers.push(() => makeCharacter(
  33397. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33398. {
  33399. front: {
  33400. height: math.unit(5 + 4/12, "feet"),
  33401. weight: math.unit(145, "lb"),
  33402. name: "Front",
  33403. image: {
  33404. source: "./media/characters/starra/front.svg",
  33405. extra: 1790/1691,
  33406. bottom: 91/1881
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(5 + 4/12, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33420. {
  33421. front: {
  33422. height: math.unit(2.2, "meters"),
  33423. name: "Front",
  33424. image: {
  33425. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33426. extra: 1194/1005,
  33427. bottom: 25/1219
  33428. }
  33429. },
  33430. },
  33431. [
  33432. {
  33433. name: "Normal",
  33434. height: math.unit(2.2, "meters"),
  33435. default: true
  33436. },
  33437. ]
  33438. ))
  33439. characterMakers.push(() => makeCharacter(
  33440. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33441. {
  33442. side: {
  33443. height: math.unit(8 + 2/12, "feet"),
  33444. weight: math.unit(1240, "lb"),
  33445. name: "Side",
  33446. image: {
  33447. source: "./media/characters/mika-valentine/side.svg",
  33448. extra: 2670/2501,
  33449. bottom: 250/2920
  33450. }
  33451. },
  33452. },
  33453. [
  33454. {
  33455. name: "Normal",
  33456. height: math.unit(8 + 2/12, "feet"),
  33457. default: true
  33458. },
  33459. ]
  33460. ))
  33461. characterMakers.push(() => makeCharacter(
  33462. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33463. {
  33464. front: {
  33465. height: math.unit(7 + 2/12, "feet"),
  33466. name: "Front",
  33467. image: {
  33468. source: "./media/characters/xoltol/front.svg",
  33469. extra: 2212/2124,
  33470. bottom: 84/2296
  33471. }
  33472. },
  33473. side: {
  33474. height: math.unit(7 + 2/12, "feet"),
  33475. name: "Side",
  33476. image: {
  33477. source: "./media/characters/xoltol/side.svg",
  33478. extra: 2273/2197,
  33479. bottom: 26/2299
  33480. }
  33481. },
  33482. hand: {
  33483. height: math.unit(2.5, "feet"),
  33484. name: "Hand",
  33485. image: {
  33486. source: "./media/characters/xoltol/hand.svg"
  33487. }
  33488. },
  33489. },
  33490. [
  33491. {
  33492. name: "Small-ish",
  33493. height: math.unit(5 + 11/12, "feet")
  33494. },
  33495. {
  33496. name: "Normal",
  33497. height: math.unit(7 + 2/12, "feet")
  33498. },
  33499. {
  33500. name: "\"Macro\"",
  33501. height: math.unit(14 + 9/12, "feet"),
  33502. default: true
  33503. },
  33504. {
  33505. name: "Alternate Height",
  33506. height: math.unit(20, "feet")
  33507. },
  33508. {
  33509. name: "Actually Macro",
  33510. height: math.unit(100, "feet")
  33511. },
  33512. ]
  33513. ))
  33514. characterMakers.push(() => makeCharacter(
  33515. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33516. {
  33517. front: {
  33518. height: math.unit(5 + 2/12, "feet"),
  33519. name: "Front",
  33520. image: {
  33521. source: "./media/characters/kotetsu-redwood/front.svg",
  33522. extra: 1053/942,
  33523. bottom: 60/1113
  33524. }
  33525. },
  33526. },
  33527. [
  33528. {
  33529. name: "Normal",
  33530. height: math.unit(5 + 2/12, "feet"),
  33531. default: true
  33532. },
  33533. ]
  33534. ))
  33535. characterMakers.push(() => makeCharacter(
  33536. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33537. {
  33538. front: {
  33539. height: math.unit(2.4, "meters"),
  33540. weight: math.unit(125, "kg"),
  33541. name: "Front",
  33542. image: {
  33543. source: "./media/characters/lilith/front.svg",
  33544. extra: 1590/1513,
  33545. bottom: 203/1793
  33546. }
  33547. },
  33548. },
  33549. [
  33550. {
  33551. name: "Humanoid",
  33552. height: math.unit(2.4, "meters")
  33553. },
  33554. {
  33555. name: "Normal",
  33556. height: math.unit(6, "meters"),
  33557. default: true
  33558. },
  33559. {
  33560. name: "Largest",
  33561. height: math.unit(55, "meters")
  33562. },
  33563. ]
  33564. ))
  33565. characterMakers.push(() => makeCharacter(
  33566. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33567. {
  33568. front: {
  33569. height: math.unit(8 + 4/12, "feet"),
  33570. weight: math.unit(535, "lb"),
  33571. name: "Front",
  33572. image: {
  33573. source: "./media/characters/beh'kah-bolger/front.svg",
  33574. extra: 1660/1603,
  33575. bottom: 37/1697
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(8 + 4/12, "feet"),
  33583. default: true
  33584. },
  33585. {
  33586. name: "Kaiju",
  33587. height: math.unit(250, "feet")
  33588. },
  33589. {
  33590. name: "Still Growing",
  33591. height: math.unit(10, "miles")
  33592. },
  33593. {
  33594. name: "Continental",
  33595. height: math.unit(5000, "miles")
  33596. },
  33597. {
  33598. name: "Final Form",
  33599. height: math.unit(2500000, "miles")
  33600. },
  33601. ]
  33602. ))
  33603. characterMakers.push(() => makeCharacter(
  33604. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33605. {
  33606. front: {
  33607. height: math.unit(7 + 2/12, "feet"),
  33608. weight: math.unit(230, "kg"),
  33609. name: "Front",
  33610. image: {
  33611. source: "./media/characters/tatyana-milewska/front.svg",
  33612. extra: 1199/1150,
  33613. bottom: 86/1285
  33614. }
  33615. },
  33616. },
  33617. [
  33618. {
  33619. name: "Normal",
  33620. height: math.unit(7 + 2/12, "feet"),
  33621. default: true
  33622. },
  33623. {
  33624. name: "Big",
  33625. height: math.unit(12, "feet")
  33626. },
  33627. {
  33628. name: "Minimacro",
  33629. height: math.unit(20, "feet")
  33630. },
  33631. {
  33632. name: "Macro",
  33633. height: math.unit(120, "feet")
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33639. {
  33640. front: {
  33641. height: math.unit(7 + 8/12, "feet"),
  33642. weight: math.unit(152, "kg"),
  33643. name: "Front",
  33644. image: {
  33645. source: "./media/characters/helen-arri/front.svg",
  33646. extra: 440/423,
  33647. bottom: 14/454
  33648. }
  33649. },
  33650. back: {
  33651. height: math.unit(7 + 8/12, "feet"),
  33652. weight: math.unit(152, "kg"),
  33653. name: "Back",
  33654. image: {
  33655. source: "./media/characters/helen-arri/back.svg",
  33656. extra: 443/426,
  33657. bottom: 8/451
  33658. }
  33659. },
  33660. },
  33661. [
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(7 + 8/12, "feet"),
  33665. default: true
  33666. },
  33667. {
  33668. name: "Big",
  33669. height: math.unit(14, "feet")
  33670. },
  33671. {
  33672. name: "Minimacro",
  33673. height: math.unit(24, "feet")
  33674. },
  33675. {
  33676. name: "Macro",
  33677. height: math.unit(140, "feet")
  33678. },
  33679. ]
  33680. ))
  33681. characterMakers.push(() => makeCharacter(
  33682. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33683. {
  33684. front: {
  33685. height: math.unit(6, "meters"),
  33686. name: "Front",
  33687. image: {
  33688. source: "./media/characters/ehanu-rehu/front.svg",
  33689. extra: 1800/1800,
  33690. bottom: 59/1859
  33691. }
  33692. },
  33693. },
  33694. [
  33695. {
  33696. name: "Normal",
  33697. height: math.unit(6, "meters"),
  33698. default: true
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(7 + 3/12, "feet"),
  33707. name: "Front",
  33708. image: {
  33709. source: "./media/characters/renholder/front.svg",
  33710. extra: 3096/2960,
  33711. bottom: 250/3346
  33712. }
  33713. },
  33714. },
  33715. [
  33716. {
  33717. name: "Normal Bat",
  33718. height: math.unit(7 + 3/12, "feet"),
  33719. default: true
  33720. },
  33721. {
  33722. name: "Slightly Tall Bat",
  33723. height: math.unit(100, "feet")
  33724. },
  33725. {
  33726. name: "Big Bat",
  33727. height: math.unit(1000, "feet")
  33728. },
  33729. {
  33730. name: "City-Sized Bat",
  33731. height: math.unit(200000, "feet")
  33732. },
  33733. {
  33734. name: "Bigger Bat",
  33735. height: math.unit(10000, "miles")
  33736. },
  33737. {
  33738. name: "Solar Sized Bat",
  33739. height: math.unit(100, "AU")
  33740. },
  33741. {
  33742. name: "Galactic Bat",
  33743. height: math.unit(200000, "lightyears")
  33744. },
  33745. {
  33746. name: "Universally Known Bat",
  33747. height: math.unit(1, "universe")
  33748. },
  33749. ]
  33750. ))
  33751. characterMakers.push(() => makeCharacter(
  33752. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33753. {
  33754. front: {
  33755. height: math.unit(6 + 11/12, "feet"),
  33756. weight: math.unit(250, "lb"),
  33757. name: "Front",
  33758. image: {
  33759. source: "./media/characters/cookiecat/front.svg",
  33760. extra: 893/827,
  33761. bottom: 14/907
  33762. }
  33763. },
  33764. },
  33765. [
  33766. {
  33767. name: "Micro",
  33768. height: math.unit(3, "inches")
  33769. },
  33770. {
  33771. name: "Normal",
  33772. height: math.unit(6 + 11/12, "feet"),
  33773. default: true
  33774. },
  33775. {
  33776. name: "Macro",
  33777. height: math.unit(100, "feet")
  33778. },
  33779. {
  33780. name: "Macro+",
  33781. height: math.unit(404, "feet")
  33782. },
  33783. {
  33784. name: "Megamacro",
  33785. height: math.unit(165, "miles")
  33786. },
  33787. {
  33788. name: "Planetary",
  33789. height: math.unit(4600, "miles")
  33790. },
  33791. ]
  33792. ))
  33793. characterMakers.push(() => makeCharacter(
  33794. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33795. {
  33796. front: {
  33797. height: math.unit(10 + 3/12, "feet"),
  33798. weight: math.unit(1500, "lb"),
  33799. name: "Front",
  33800. image: {
  33801. source: "./media/characters/tux-kusanagi/front.svg",
  33802. extra: 944/840,
  33803. bottom: 39/983
  33804. }
  33805. },
  33806. back: {
  33807. height: math.unit(10 + 3/12, "feet"),
  33808. weight: math.unit(1500, "lb"),
  33809. name: "Back",
  33810. image: {
  33811. source: "./media/characters/tux-kusanagi/back.svg",
  33812. extra: 941/842,
  33813. bottom: 28/969
  33814. }
  33815. },
  33816. rump: {
  33817. height: math.unit(5.25, "feet"),
  33818. name: "Rump",
  33819. image: {
  33820. source: "./media/characters/tux-kusanagi/rump.svg"
  33821. }
  33822. },
  33823. beak: {
  33824. height: math.unit(1.54, "feet"),
  33825. name: "Beak",
  33826. image: {
  33827. source: "./media/characters/tux-kusanagi/beak.svg"
  33828. }
  33829. },
  33830. },
  33831. [
  33832. {
  33833. name: "Normal",
  33834. height: math.unit(10 + 3/12, "feet"),
  33835. default: true
  33836. },
  33837. ]
  33838. ))
  33839. characterMakers.push(() => makeCharacter(
  33840. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33841. {
  33842. front: {
  33843. height: math.unit(58, "feet"),
  33844. weight: math.unit(200, "tons"),
  33845. name: "Front",
  33846. image: {
  33847. source: "./media/characters/uzarmazari/front.svg",
  33848. extra: 1575/1455,
  33849. bottom: 152/1727
  33850. }
  33851. },
  33852. back: {
  33853. height: math.unit(58, "feet"),
  33854. weight: math.unit(200, "tons"),
  33855. name: "Back",
  33856. image: {
  33857. source: "./media/characters/uzarmazari/back.svg",
  33858. extra: 1585/1510,
  33859. bottom: 157/1742
  33860. }
  33861. },
  33862. head: {
  33863. height: math.unit(26, "feet"),
  33864. name: "Head",
  33865. image: {
  33866. source: "./media/characters/uzarmazari/head.svg"
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Normal",
  33873. height: math.unit(58, "feet"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33880. {
  33881. side: {
  33882. height: math.unit(15, "feet"),
  33883. name: "Side",
  33884. image: {
  33885. source: "./media/characters/akitu/side.svg",
  33886. extra: 1421/1321,
  33887. bottom: 157/1578
  33888. }
  33889. },
  33890. front: {
  33891. height: math.unit(15, "feet"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/akitu/front.svg",
  33895. extra: 1435/1326,
  33896. bottom: 232/1667
  33897. }
  33898. },
  33899. },
  33900. [
  33901. {
  33902. name: "Normal",
  33903. height: math.unit(15, "feet"),
  33904. default: true
  33905. },
  33906. ]
  33907. ))
  33908. characterMakers.push(() => makeCharacter(
  33909. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33910. {
  33911. front: {
  33912. height: math.unit(10 + 8/12, "feet"),
  33913. name: "Front",
  33914. image: {
  33915. source: "./media/characters/azalie-croixland/front.svg",
  33916. extra: 1972/1856,
  33917. bottom: 31/2003
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Original Height",
  33924. height: math.unit(5 + 4/12, "feet")
  33925. },
  33926. {
  33927. name: "Normal Height",
  33928. height: math.unit(10 + 8/12, "feet"),
  33929. default: true
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33935. {
  33936. side: {
  33937. height: math.unit(7 + 1/12, "feet"),
  33938. weight: math.unit(245, "lb"),
  33939. name: "Side",
  33940. image: {
  33941. source: "./media/characters/kavus-kazian/side.svg",
  33942. extra: 349/342,
  33943. bottom: 15/364
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Normal",
  33950. height: math.unit(7 + 1/12, "feet"),
  33951. default: true
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33957. {
  33958. normal: {
  33959. height: math.unit(5 + 11/12, "feet"),
  33960. name: "Normal",
  33961. image: {
  33962. source: "./media/characters/moonlight-rose/normal.svg",
  33963. extra: 1979/1835,
  33964. bottom: 14/1993
  33965. }
  33966. },
  33967. demon: {
  33968. height: math.unit(5, "km"),
  33969. name: "Demon",
  33970. image: {
  33971. source: "./media/characters/moonlight-rose/demon.svg",
  33972. extra: 986/916,
  33973. bottom: 28/1014
  33974. }
  33975. },
  33976. },
  33977. [
  33978. {
  33979. name: "\"Natural\" height",
  33980. height: math.unit(5 + 11/12, "feet")
  33981. },
  33982. {
  33983. name: "Comfortable Size",
  33984. height: math.unit(40, "meters")
  33985. },
  33986. {
  33987. name: "Common Size",
  33988. height: math.unit(50, "km"),
  33989. default: true
  33990. },
  33991. {
  33992. name: "Demonic",
  33993. height: math.unit(1.24415e+21, "meters")
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  33999. {
  34000. front: {
  34001. height: math.unit(16, "feet"),
  34002. weight: math.unit(610, "kg"),
  34003. name: "Front",
  34004. image: {
  34005. source: "./media/characters/huckle/front.svg",
  34006. extra: 1731/1625,
  34007. bottom: 33/1764
  34008. }
  34009. },
  34010. back: {
  34011. height: math.unit(16, "feet"),
  34012. weight: math.unit(610, "kg"),
  34013. name: "Back",
  34014. image: {
  34015. source: "./media/characters/huckle/back.svg",
  34016. extra: 1738/1651,
  34017. bottom: 37/1775
  34018. }
  34019. },
  34020. laughing: {
  34021. height: math.unit(3.75, "feet"),
  34022. name: "Laughing",
  34023. image: {
  34024. source: "./media/characters/huckle/laughing.svg"
  34025. }
  34026. },
  34027. angry: {
  34028. height: math.unit(4.15, "feet"),
  34029. name: "Angry",
  34030. image: {
  34031. source: "./media/characters/huckle/angry.svg"
  34032. }
  34033. },
  34034. },
  34035. [
  34036. {
  34037. name: "Normal",
  34038. height: math.unit(16, "feet"),
  34039. default: true
  34040. },
  34041. {
  34042. name: "Mini Macro",
  34043. height: math.unit(463, "feet")
  34044. },
  34045. {
  34046. name: "Macro",
  34047. height: math.unit(1680, "meters")
  34048. },
  34049. {
  34050. name: "Mega Macro",
  34051. height: math.unit(175, "km")
  34052. },
  34053. {
  34054. name: "Terra Macro",
  34055. height: math.unit(32, "gigameters")
  34056. },
  34057. {
  34058. name: "Multiverse+",
  34059. height: math.unit(2.56e23, "yottameters")
  34060. },
  34061. ]
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34065. {
  34066. front: {
  34067. height: math.unit(6 + 9/12, "feet"),
  34068. weight: math.unit(280, "lb"),
  34069. name: "Front",
  34070. image: {
  34071. source: "./media/characters/candy/front.svg",
  34072. extra: 234/217,
  34073. bottom: 11/245
  34074. }
  34075. },
  34076. },
  34077. [
  34078. {
  34079. name: "Really Small",
  34080. height: math.unit(0.1, "nm")
  34081. },
  34082. {
  34083. name: "Micro",
  34084. height: math.unit(2, "inches")
  34085. },
  34086. {
  34087. name: "Normal",
  34088. height: math.unit(6 + 9/12, "feet"),
  34089. default: true
  34090. },
  34091. {
  34092. name: "Small Macro",
  34093. height: math.unit(69, "feet")
  34094. },
  34095. {
  34096. name: "Macro",
  34097. height: math.unit(160, "feet")
  34098. },
  34099. {
  34100. name: "Megamacro",
  34101. height: math.unit(22000, "miles")
  34102. },
  34103. {
  34104. name: "Gigamacro",
  34105. height: math.unit(50000, "miles")
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(4, "feet"),
  34114. weight: math.unit(90, "lb"),
  34115. name: "Front",
  34116. image: {
  34117. source: "./media/characters/joey-mcdonald/front.svg",
  34118. extra: 1059/852,
  34119. bottom: 33/1092
  34120. }
  34121. },
  34122. back: {
  34123. height: math.unit(4, "feet"),
  34124. weight: math.unit(90, "lb"),
  34125. name: "Back",
  34126. image: {
  34127. source: "./media/characters/joey-mcdonald/back.svg",
  34128. extra: 1077/879,
  34129. bottom: 5/1082
  34130. }
  34131. },
  34132. },
  34133. [
  34134. {
  34135. name: "Normal",
  34136. height: math.unit(4, "feet"),
  34137. default: true
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34143. {
  34144. front: {
  34145. height: math.unit(12 + 6/12, "feet"),
  34146. name: "Front",
  34147. image: {
  34148. source: "./media/characters/kass-lockheed/front.svg",
  34149. extra: 354/343,
  34150. bottom: 9/363
  34151. }
  34152. },
  34153. back: {
  34154. height: math.unit(12 + 6/12, "feet"),
  34155. name: "Back",
  34156. image: {
  34157. source: "./media/characters/kass-lockheed/back.svg",
  34158. extra: 364/352,
  34159. bottom: 3/367
  34160. }
  34161. },
  34162. dick: {
  34163. height: math.unit(3.12, "feet"),
  34164. name: "Dick",
  34165. image: {
  34166. source: "./media/characters/kass-lockheed/dick.svg"
  34167. }
  34168. },
  34169. head: {
  34170. height: math.unit(2.6, "feet"),
  34171. name: "Head",
  34172. image: {
  34173. source: "./media/characters/kass-lockheed/head.svg"
  34174. }
  34175. },
  34176. bleh: {
  34177. height: math.unit(2.85, "feet"),
  34178. name: "Bleh",
  34179. image: {
  34180. source: "./media/characters/kass-lockheed/bleh.svg"
  34181. }
  34182. },
  34183. smug: {
  34184. height: math.unit(2.85, "feet"),
  34185. name: "Smug",
  34186. image: {
  34187. source: "./media/characters/kass-lockheed/smug.svg"
  34188. }
  34189. },
  34190. },
  34191. [
  34192. {
  34193. name: "Normal",
  34194. height: math.unit(12 + 6/12, "feet"),
  34195. default: true
  34196. },
  34197. ]
  34198. ))
  34199. characterMakers.push(() => makeCharacter(
  34200. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34201. {
  34202. front: {
  34203. height: math.unit(6 + 2/12, "feet"),
  34204. name: "Front",
  34205. image: {
  34206. source: "./media/characters/taylor/front.svg",
  34207. extra: 639/495,
  34208. bottom: 12/651
  34209. }
  34210. },
  34211. },
  34212. [
  34213. {
  34214. name: "Normal",
  34215. height: math.unit(6 + 2/12, "feet"),
  34216. default: true
  34217. },
  34218. {
  34219. name: "Big",
  34220. height: math.unit(15, "feet")
  34221. },
  34222. {
  34223. name: "Lorg",
  34224. height: math.unit(80, "feet")
  34225. },
  34226. {
  34227. name: "Too Lorg",
  34228. height: math.unit(120, "feet")
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(15, "feet"),
  34237. name: "Front",
  34238. image: {
  34239. source: "./media/characters/kaizer/front.svg",
  34240. extra: 1612/1436,
  34241. bottom: 43/1655
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Normal",
  34248. height: math.unit(15, "feet"),
  34249. default: true
  34250. },
  34251. ]
  34252. ))
  34253. characterMakers.push(() => makeCharacter(
  34254. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34255. {
  34256. front: {
  34257. height: math.unit(2, "feet"),
  34258. weight: math.unit(30, "lb"),
  34259. name: "Front",
  34260. image: {
  34261. source: "./media/characters/sandy/front.svg",
  34262. extra: 1439/1307,
  34263. bottom: 194/1633
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Normal",
  34270. height: math.unit(2, "feet"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34277. {
  34278. front: {
  34279. height: math.unit(3, "feet"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/mellvi/front.svg",
  34283. extra: 1831/1630,
  34284. bottom: 58/1889
  34285. }
  34286. },
  34287. },
  34288. [
  34289. {
  34290. name: "Normal",
  34291. height: math.unit(3, "feet"),
  34292. default: true
  34293. },
  34294. ]
  34295. ))
  34296. characterMakers.push(() => makeCharacter(
  34297. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34298. {
  34299. front: {
  34300. height: math.unit(5 + 11/12, "feet"),
  34301. weight: math.unit(200, "lb"),
  34302. name: "Front",
  34303. image: {
  34304. source: "./media/characters/shirou/front.svg",
  34305. extra: 2491/2383,
  34306. bottom: 189/2680
  34307. }
  34308. },
  34309. back: {
  34310. height: math.unit(5 + 11/12, "feet"),
  34311. weight: math.unit(200, "lb"),
  34312. name: "Back",
  34313. image: {
  34314. source: "./media/characters/shirou/back.svg",
  34315. extra: 2554/2450,
  34316. bottom: 76/2630
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(5 + 11/12, "feet"),
  34324. default: true
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34330. {
  34331. front: {
  34332. height: math.unit(6 + 3/12, "feet"),
  34333. weight: math.unit(177, "lb"),
  34334. name: "Front",
  34335. image: {
  34336. source: "./media/characters/noryu/front.svg",
  34337. extra: 973/885,
  34338. bottom: 10/983
  34339. }
  34340. },
  34341. },
  34342. [
  34343. {
  34344. name: "Normal",
  34345. height: math.unit(6 + 3/12, "feet"),
  34346. default: true
  34347. },
  34348. ]
  34349. ))
  34350. characterMakers.push(() => makeCharacter(
  34351. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34352. {
  34353. front: {
  34354. height: math.unit(5 + 6/12, "feet"),
  34355. weight: math.unit(170, "lb"),
  34356. name: "Front",
  34357. image: {
  34358. source: "./media/characters/mevolas-rubenido/front.svg",
  34359. extra: 2109/1901,
  34360. bottom: 96/2205
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Normal",
  34367. height: math.unit(5 + 6/12, "feet"),
  34368. default: true
  34369. },
  34370. ]
  34371. ))
  34372. characterMakers.push(() => makeCharacter(
  34373. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34374. {
  34375. front: {
  34376. height: math.unit(100, "feet"),
  34377. name: "Front",
  34378. image: {
  34379. source: "./media/characters/dee/front.svg",
  34380. extra: 2153/2036,
  34381. bottom: 59/2212
  34382. }
  34383. },
  34384. back: {
  34385. height: math.unit(100, "feet"),
  34386. name: "Back",
  34387. image: {
  34388. source: "./media/characters/dee/back.svg",
  34389. extra: 2183/2058,
  34390. bottom: 75/2258
  34391. }
  34392. },
  34393. foot: {
  34394. height: math.unit(19.43, "feet"),
  34395. name: "Foot",
  34396. image: {
  34397. source: "./media/characters/dee/foot.svg"
  34398. }
  34399. },
  34400. hoof: {
  34401. height: math.unit(20.6, "feet"),
  34402. name: "Hoof",
  34403. image: {
  34404. source: "./media/characters/dee/hoof.svg"
  34405. }
  34406. },
  34407. },
  34408. [
  34409. {
  34410. name: "Macro",
  34411. height: math.unit(100, "feet"),
  34412. default: true
  34413. },
  34414. ]
  34415. ))
  34416. characterMakers.push(() => makeCharacter(
  34417. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34418. {
  34419. front: {
  34420. height: math.unit(5 + 6/12, "feet"),
  34421. name: "Front",
  34422. image: {
  34423. source: "./media/characters/teh/front.svg",
  34424. extra: 1002/847,
  34425. bottom: 62/1064
  34426. }
  34427. },
  34428. },
  34429. [
  34430. {
  34431. name: "Normal",
  34432. height: math.unit(5 + 6/12, "feet"),
  34433. default: true
  34434. },
  34435. ]
  34436. ))
  34437. characterMakers.push(() => makeCharacter(
  34438. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34439. {
  34440. side: {
  34441. height: math.unit(6 + 1/12, "feet"),
  34442. weight: math.unit(204, "lb"),
  34443. name: "Side",
  34444. image: {
  34445. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34446. extra: 974/775,
  34447. bottom: 169/1143
  34448. }
  34449. },
  34450. sitting: {
  34451. height: math.unit(6 + 2/12, "feet"),
  34452. weight: math.unit(204, "lb"),
  34453. name: "Sitting",
  34454. image: {
  34455. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34456. extra: 1175/964,
  34457. bottom: 378/1553
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(6 + 1/12, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(6, "inches"),
  34474. name: "Front",
  34475. image: {
  34476. source: "./media/characters/tululi/front.svg",
  34477. extra: 1997/1876,
  34478. bottom: 20/2017
  34479. }
  34480. },
  34481. },
  34482. [
  34483. {
  34484. name: "Normal",
  34485. height: math.unit(6, "inches"),
  34486. default: true
  34487. },
  34488. ]
  34489. ))
  34490. characterMakers.push(() => makeCharacter(
  34491. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34492. {
  34493. front: {
  34494. height: math.unit(4 + 1/12, "feet"),
  34495. name: "Front",
  34496. image: {
  34497. source: "./media/characters/star/front.svg",
  34498. extra: 1493/1189,
  34499. bottom: 48/1541
  34500. }
  34501. },
  34502. },
  34503. [
  34504. {
  34505. name: "Normal",
  34506. height: math.unit(4 + 1/12, "feet"),
  34507. default: true
  34508. },
  34509. ]
  34510. ))
  34511. characterMakers.push(() => makeCharacter(
  34512. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34513. {
  34514. front: {
  34515. height: math.unit(6 + 3/12, "feet"),
  34516. name: "Front",
  34517. image: {
  34518. source: "./media/characters/comet/front.svg",
  34519. extra: 1681/1462,
  34520. bottom: 26/1707
  34521. }
  34522. },
  34523. },
  34524. [
  34525. {
  34526. name: "Normal",
  34527. height: math.unit(6 + 3/12, "feet"),
  34528. default: true
  34529. },
  34530. ]
  34531. ))
  34532. characterMakers.push(() => makeCharacter(
  34533. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34534. {
  34535. front: {
  34536. height: math.unit(950, "feet"),
  34537. name: "Front",
  34538. image: {
  34539. source: "./media/characters/vortex/front.svg",
  34540. extra: 1497/1434,
  34541. bottom: 56/1553
  34542. }
  34543. },
  34544. maw: {
  34545. height: math.unit(285, "feet"),
  34546. name: "Maw",
  34547. image: {
  34548. source: "./media/characters/vortex/maw.svg"
  34549. }
  34550. },
  34551. },
  34552. [
  34553. {
  34554. name: "Macro",
  34555. height: math.unit(950, "feet"),
  34556. default: true
  34557. },
  34558. ]
  34559. ))
  34560. characterMakers.push(() => makeCharacter(
  34561. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34562. {
  34563. front: {
  34564. height: math.unit(600, "feet"),
  34565. weight: math.unit(0.02, "grams"),
  34566. name: "Front",
  34567. image: {
  34568. source: "./media/characters/doodle/front.svg",
  34569. extra: 1578/1413,
  34570. bottom: 37/1615
  34571. }
  34572. },
  34573. },
  34574. [
  34575. {
  34576. name: "Macro",
  34577. height: math.unit(600, "feet"),
  34578. default: true
  34579. },
  34580. ]
  34581. ))
  34582. characterMakers.push(() => makeCharacter(
  34583. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34584. {
  34585. front: {
  34586. height: math.unit(6 + 6/12, "feet"),
  34587. name: "Front",
  34588. image: {
  34589. source: "./media/characters/jai/front.svg",
  34590. extra: 1645/1534,
  34591. bottom: 115/1760
  34592. }
  34593. },
  34594. },
  34595. [
  34596. {
  34597. name: "Normal",
  34598. height: math.unit(6 + 6/12, "feet"),
  34599. default: true
  34600. },
  34601. ]
  34602. ))
  34603. characterMakers.push(() => makeCharacter(
  34604. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34605. {
  34606. front: {
  34607. height: math.unit(6 + 8/12, "feet"),
  34608. name: "Front",
  34609. image: {
  34610. source: "./media/characters/pixel/front.svg",
  34611. extra: 1900/1735,
  34612. bottom: 63/1963
  34613. }
  34614. },
  34615. },
  34616. [
  34617. {
  34618. name: "Normal",
  34619. height: math.unit(6 + 8/12, "feet"),
  34620. default: true
  34621. },
  34622. ]
  34623. ))
  34624. characterMakers.push(() => makeCharacter(
  34625. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34626. {
  34627. front: {
  34628. height: math.unit(4 + 11/12, "feet"),
  34629. weight: math.unit(111, "lb"),
  34630. name: "Front",
  34631. image: {
  34632. source: "./media/characters/rhett/front.svg",
  34633. extra: 1682/1586,
  34634. bottom: 92/1774
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Mini",
  34641. height: math.unit(1 + 1/12, "feet")
  34642. },
  34643. {
  34644. name: "Normal",
  34645. height: math.unit(4 + 11/12, "feet"),
  34646. default: true
  34647. },
  34648. ]
  34649. ))
  34650. characterMakers.push(() => makeCharacter(
  34651. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34652. {
  34653. front: {
  34654. height: math.unit(3 + 3/12, "feet"),
  34655. name: "Front",
  34656. image: {
  34657. source: "./media/characters/penny/front.svg",
  34658. extra: 1406/1311,
  34659. bottom: 26/1432
  34660. }
  34661. },
  34662. },
  34663. [
  34664. {
  34665. name: "Normal",
  34666. height: math.unit(3 + 3/12, "feet"),
  34667. default: true
  34668. },
  34669. ]
  34670. ))
  34671. characterMakers.push(() => makeCharacter(
  34672. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34673. {
  34674. front: {
  34675. height: math.unit(4 + 11/12, "feet"),
  34676. name: "Front",
  34677. image: {
  34678. source: "./media/characters/monty/front.svg",
  34679. extra: 1479/1209,
  34680. bottom: 0/1479
  34681. }
  34682. },
  34683. },
  34684. [
  34685. {
  34686. name: "Normal",
  34687. height: math.unit(4 + 11/12, "feet"),
  34688. default: true
  34689. },
  34690. ]
  34691. ))
  34692. characterMakers.push(() => makeCharacter(
  34693. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34694. {
  34695. front: {
  34696. height: math.unit(8 + 4/12, "feet"),
  34697. name: "Front",
  34698. image: {
  34699. source: "./media/characters/sterling/front.svg",
  34700. extra: 1417/1234,
  34701. bottom: 60/1477
  34702. }
  34703. },
  34704. },
  34705. [
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(8 + 4/12, "feet"),
  34709. default: true
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34715. {
  34716. front: {
  34717. height: math.unit(15, "feet"),
  34718. name: "Front",
  34719. image: {
  34720. source: "./media/characters/marble/front.svg",
  34721. extra: 973/937,
  34722. bottom: 32/1005
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Normal",
  34729. height: math.unit(15, "feet"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34736. {
  34737. front: {
  34738. height: math.unit(3, "inches"),
  34739. name: "Front",
  34740. image: {
  34741. source: "./media/characters/powder/front.svg",
  34742. extra: 1504/1334,
  34743. bottom: 518/2022
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(3, "inches"),
  34751. default: true
  34752. },
  34753. ]
  34754. ))
  34755. //characters
  34756. function makeCharacters() {
  34757. const results = [];
  34758. characterMakers.forEach(character => {
  34759. results.push(character());
  34760. });
  34761. return results;
  34762. }