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

36084 строки
906 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. "arctic-wolf": {
  1548. name: "Arctic Wolf",
  1549. parents: ["wolf"]
  1550. },
  1551. "donkey": {
  1552. name: "Donkey",
  1553. parents: ["horse"]
  1554. },
  1555. "chinchilla": {
  1556. name: "Chinchilla",
  1557. parents: ["rodent"]
  1558. },
  1559. }
  1560. //species
  1561. function getSpeciesInfo(speciesList) {
  1562. let result = new Set();
  1563. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1564. result.add(entry)
  1565. });
  1566. return Array.from(result);
  1567. };
  1568. function getSpeciesInfoHelper(species) {
  1569. if (!speciesData[species]) {
  1570. console.warn(species + " doesn't exist");
  1571. return [];
  1572. }
  1573. if (speciesData[species].parents) {
  1574. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1575. } else {
  1576. return [species];
  1577. }
  1578. }
  1579. characterMakers.push(() => makeCharacter(
  1580. {
  1581. name: "Fen",
  1582. species: ["crux"],
  1583. description: {
  1584. title: "Bio",
  1585. text: "Very furry. Sheds on everything."
  1586. },
  1587. tags: [
  1588. "anthro",
  1589. "goo"
  1590. ]
  1591. },
  1592. {
  1593. back: {
  1594. height: math.unit(2.2428, "meter"),
  1595. weight: math.unit(124.738, "kg"),
  1596. name: "Back",
  1597. image: {
  1598. source: "./media/characters/fen/back.svg",
  1599. extra: 2024 / 1867,
  1600. bottom: 13 / 2037
  1601. },
  1602. info: {
  1603. description: {
  1604. mode: "append",
  1605. text: "\n\nHe is not currently looking at you."
  1606. }
  1607. }
  1608. },
  1609. full: {
  1610. height: math.unit(1.34, "meter"),
  1611. weight: math.unit(225, "kg"),
  1612. name: "Full",
  1613. image: {
  1614. source: "./media/characters/fen/full.svg"
  1615. },
  1616. info: {
  1617. description: {
  1618. mode: "append",
  1619. text: "\n\nMunch."
  1620. }
  1621. }
  1622. },
  1623. kneeling: {
  1624. height: math.unit(5.4, "feet"),
  1625. weight: math.unit(124.738, "kg"),
  1626. name: "Kneeling",
  1627. image: {
  1628. source: "./media/characters/fen/kneeling.svg",
  1629. extra: 563 / 507
  1630. }
  1631. },
  1632. goo: {
  1633. height: math.unit(2.8, "feet"),
  1634. weight: math.unit(125, "kg"),
  1635. capacity: math.unit(1, "people"),
  1636. name: "Goo",
  1637. image: {
  1638. source: "./media/characters/fen/goo.svg",
  1639. bottom: 116 / 613
  1640. }
  1641. },
  1642. lounging: {
  1643. height: math.unit(6.5, "feet"),
  1644. weight: math.unit(125, "kg"),
  1645. name: "Lounging",
  1646. image: {
  1647. source: "./media/characters/fen/lounging.svg"
  1648. }
  1649. },
  1650. },
  1651. [
  1652. {
  1653. name: "Normal",
  1654. height: math.unit(2.2428, "meter")
  1655. },
  1656. {
  1657. name: "Big",
  1658. height: math.unit(12, "feet")
  1659. },
  1660. {
  1661. name: "Minimacro",
  1662. height: math.unit(40, "feet"),
  1663. default: true,
  1664. info: {
  1665. description: {
  1666. mode: "append",
  1667. text: "\n\nTOO DAMN BIG"
  1668. }
  1669. }
  1670. },
  1671. {
  1672. name: "Macro",
  1673. height: math.unit(100, "feet"),
  1674. info: {
  1675. description: {
  1676. mode: "append",
  1677. text: "\n\nTOO DAMN BIG"
  1678. }
  1679. }
  1680. },
  1681. {
  1682. name: "Macro+",
  1683. height: math.unit(300, "feet")
  1684. },
  1685. {
  1686. name: "Megamacro",
  1687. height: math.unit(2, "miles")
  1688. }
  1689. ]
  1690. ))
  1691. characterMakers.push(() => makeCharacter(
  1692. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1693. {
  1694. front: {
  1695. height: math.unit(183, "cm"),
  1696. weight: math.unit(80, "kg"),
  1697. name: "Front",
  1698. image: {
  1699. source: "./media/characters/sofia-fluttertail/front.svg",
  1700. bottom: 0.01,
  1701. extra: 2154 / 2081
  1702. }
  1703. },
  1704. frontAlt: {
  1705. height: math.unit(183, "cm"),
  1706. weight: math.unit(80, "kg"),
  1707. name: "Front (alt)",
  1708. image: {
  1709. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1710. }
  1711. },
  1712. back: {
  1713. height: math.unit(183, "cm"),
  1714. weight: math.unit(80, "kg"),
  1715. name: "Back",
  1716. image: {
  1717. source: "./media/characters/sofia-fluttertail/back.svg"
  1718. }
  1719. },
  1720. kneeling: {
  1721. height: math.unit(125, "cm"),
  1722. weight: math.unit(80, "kg"),
  1723. name: "Kneeling",
  1724. image: {
  1725. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1726. extra: 1033 / 977,
  1727. bottom: 23.7 / 1057
  1728. }
  1729. },
  1730. maw: {
  1731. height: math.unit(183 / 5, "cm"),
  1732. name: "Maw",
  1733. image: {
  1734. source: "./media/characters/sofia-fluttertail/maw.svg"
  1735. }
  1736. },
  1737. mawcloseup: {
  1738. height: math.unit(183 / 5 * 0.41, "cm"),
  1739. name: "Maw (Closeup)",
  1740. image: {
  1741. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1742. }
  1743. },
  1744. paws: {
  1745. height: math.unit(1.17, "feet"),
  1746. name: "Paws",
  1747. image: {
  1748. source: "./media/characters/sofia-fluttertail/paws.svg",
  1749. extra: 851 / 851,
  1750. bottom: 17 / 868
  1751. }
  1752. },
  1753. },
  1754. [
  1755. {
  1756. name: "Normal",
  1757. height: math.unit(1.83, "meter")
  1758. },
  1759. {
  1760. name: "Size Thief",
  1761. height: math.unit(18, "feet")
  1762. },
  1763. {
  1764. name: "50 Foot Collie",
  1765. height: math.unit(50, "feet")
  1766. },
  1767. {
  1768. name: "Macro",
  1769. height: math.unit(96, "feet"),
  1770. default: true
  1771. },
  1772. {
  1773. name: "Megamerger",
  1774. height: math.unit(650, "feet")
  1775. },
  1776. ]
  1777. ))
  1778. characterMakers.push(() => makeCharacter(
  1779. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1780. {
  1781. front: {
  1782. height: math.unit(7, "feet"),
  1783. weight: math.unit(100, "kg"),
  1784. name: "Front",
  1785. image: {
  1786. source: "./media/characters/march/front.svg",
  1787. extra: 1,
  1788. bottom: 0.015
  1789. }
  1790. },
  1791. foot: {
  1792. height: math.unit(0.9, "feet"),
  1793. name: "Foot",
  1794. image: {
  1795. source: "./media/characters/march/foot.svg"
  1796. }
  1797. },
  1798. },
  1799. [
  1800. {
  1801. name: "Normal",
  1802. height: math.unit(7.9, "feet")
  1803. },
  1804. {
  1805. name: "Macro",
  1806. height: math.unit(220, "meters")
  1807. },
  1808. {
  1809. name: "Megamacro",
  1810. height: math.unit(2.98, "km"),
  1811. default: true
  1812. },
  1813. {
  1814. name: "Gigamacro",
  1815. height: math.unit(15963, "km")
  1816. },
  1817. {
  1818. name: "Teramacro",
  1819. height: math.unit(2980000000, "km")
  1820. },
  1821. {
  1822. name: "Examacro",
  1823. height: math.unit(250, "parsecs")
  1824. },
  1825. ]
  1826. ))
  1827. characterMakers.push(() => makeCharacter(
  1828. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1829. {
  1830. front: {
  1831. height: math.unit(6, "feet"),
  1832. weight: math.unit(60, "kg"),
  1833. name: "Front",
  1834. image: {
  1835. source: "./media/characters/noir/front.svg",
  1836. extra: 1,
  1837. bottom: 0.032
  1838. }
  1839. },
  1840. },
  1841. [
  1842. {
  1843. name: "Normal",
  1844. height: math.unit(6.6, "feet")
  1845. },
  1846. {
  1847. name: "Macro",
  1848. height: math.unit(500, "feet")
  1849. },
  1850. {
  1851. name: "Megamacro",
  1852. height: math.unit(2.5, "km"),
  1853. default: true
  1854. },
  1855. {
  1856. name: "Gigamacro",
  1857. height: math.unit(22500, "km")
  1858. },
  1859. {
  1860. name: "Teramacro",
  1861. height: math.unit(2500000000, "km")
  1862. },
  1863. {
  1864. name: "Examacro",
  1865. height: math.unit(200, "parsecs")
  1866. },
  1867. ]
  1868. ))
  1869. characterMakers.push(() => makeCharacter(
  1870. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1871. {
  1872. front: {
  1873. height: math.unit(7, "feet"),
  1874. weight: math.unit(100, "kg"),
  1875. name: "Front",
  1876. image: {
  1877. source: "./media/characters/okuri/front.svg",
  1878. extra: 1,
  1879. bottom: 0.037
  1880. }
  1881. },
  1882. back: {
  1883. height: math.unit(7, "feet"),
  1884. weight: math.unit(100, "kg"),
  1885. name: "Back",
  1886. image: {
  1887. source: "./media/characters/okuri/back.svg",
  1888. extra: 1,
  1889. bottom: 0.007
  1890. }
  1891. },
  1892. },
  1893. [
  1894. {
  1895. name: "Megamacro",
  1896. height: math.unit(100, "miles"),
  1897. default: true
  1898. },
  1899. ]
  1900. ))
  1901. characterMakers.push(() => makeCharacter(
  1902. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1903. {
  1904. front: {
  1905. height: math.unit(7, "feet"),
  1906. weight: math.unit(100, "kg"),
  1907. name: "Front",
  1908. image: {
  1909. source: "./media/characters/manny/front.svg",
  1910. extra: 1,
  1911. bottom: 0.06
  1912. }
  1913. },
  1914. back: {
  1915. height: math.unit(7, "feet"),
  1916. weight: math.unit(100, "kg"),
  1917. name: "Back",
  1918. image: {
  1919. source: "./media/characters/manny/back.svg",
  1920. extra: 1,
  1921. bottom: 0.014
  1922. }
  1923. },
  1924. },
  1925. [
  1926. {
  1927. name: "Normal",
  1928. height: math.unit(7, "feet"),
  1929. },
  1930. {
  1931. name: "Macro",
  1932. height: math.unit(78, "feet"),
  1933. default: true
  1934. },
  1935. {
  1936. name: "Macro+",
  1937. height: math.unit(300, "meters")
  1938. },
  1939. {
  1940. name: "Macro++",
  1941. height: math.unit(2400, "meters")
  1942. },
  1943. {
  1944. name: "Megamacro",
  1945. height: math.unit(5167, "meters")
  1946. },
  1947. {
  1948. name: "Gigamacro",
  1949. height: math.unit(41769, "miles")
  1950. },
  1951. ]
  1952. ))
  1953. characterMakers.push(() => makeCharacter(
  1954. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1955. {
  1956. front: {
  1957. height: math.unit(7, "feet"),
  1958. weight: math.unit(100, "kg"),
  1959. name: "Front",
  1960. image: {
  1961. source: "./media/characters/adake/front-1.svg"
  1962. }
  1963. },
  1964. frontAlt: {
  1965. height: math.unit(7, "feet"),
  1966. weight: math.unit(100, "kg"),
  1967. name: "Front (Alt)",
  1968. image: {
  1969. source: "./media/characters/adake/front-2.svg",
  1970. extra: 1,
  1971. bottom: 0.01
  1972. }
  1973. },
  1974. back: {
  1975. height: math.unit(7, "feet"),
  1976. weight: math.unit(100, "kg"),
  1977. name: "Back",
  1978. image: {
  1979. source: "./media/characters/adake/back.svg",
  1980. }
  1981. },
  1982. kneel: {
  1983. height: math.unit(5.385, "feet"),
  1984. weight: math.unit(100, "kg"),
  1985. name: "Kneeling",
  1986. image: {
  1987. source: "./media/characters/adake/kneel.svg",
  1988. bottom: 0.052
  1989. }
  1990. },
  1991. },
  1992. [
  1993. {
  1994. name: "Normal",
  1995. height: math.unit(7, "feet"),
  1996. },
  1997. {
  1998. name: "Macro",
  1999. height: math.unit(78, "feet"),
  2000. default: true
  2001. },
  2002. {
  2003. name: "Macro+",
  2004. height: math.unit(300, "meters")
  2005. },
  2006. {
  2007. name: "Macro++",
  2008. height: math.unit(2400, "meters")
  2009. },
  2010. {
  2011. name: "Megamacro",
  2012. height: math.unit(5167, "meters")
  2013. },
  2014. {
  2015. name: "Gigamacro",
  2016. height: math.unit(41769, "miles")
  2017. },
  2018. ]
  2019. ))
  2020. characterMakers.push(() => makeCharacter(
  2021. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2022. {
  2023. front: {
  2024. height: math.unit(1.65, "meters"),
  2025. weight: math.unit(50, "kg"),
  2026. name: "Front",
  2027. image: {
  2028. source: "./media/characters/elijah/front.svg",
  2029. extra: 858 / 830,
  2030. bottom: 95.5 / 953.8559
  2031. }
  2032. },
  2033. back: {
  2034. height: math.unit(1.65, "meters"),
  2035. weight: math.unit(50, "kg"),
  2036. name: "Back",
  2037. image: {
  2038. source: "./media/characters/elijah/back.svg",
  2039. extra: 895 / 850,
  2040. bottom: 5.3 / 897.956
  2041. }
  2042. },
  2043. frontNsfw: {
  2044. height: math.unit(1.65, "meters"),
  2045. weight: math.unit(50, "kg"),
  2046. name: "Front (NSFW)",
  2047. image: {
  2048. source: "./media/characters/elijah/front-nsfw.svg",
  2049. extra: 858 / 830,
  2050. bottom: 95.5 / 953.8559
  2051. }
  2052. },
  2053. backNsfw: {
  2054. height: math.unit(1.65, "meters"),
  2055. weight: math.unit(50, "kg"),
  2056. name: "Back (NSFW)",
  2057. image: {
  2058. source: "./media/characters/elijah/back-nsfw.svg",
  2059. extra: 895 / 850,
  2060. bottom: 5.3 / 897.956
  2061. }
  2062. },
  2063. dick: {
  2064. height: math.unit(1, "feet"),
  2065. name: "Dick",
  2066. image: {
  2067. source: "./media/characters/elijah/dick.svg"
  2068. }
  2069. },
  2070. beakOpen: {
  2071. height: math.unit(1.25, "feet"),
  2072. name: "Beak (Open)",
  2073. image: {
  2074. source: "./media/characters/elijah/beak-open.svg"
  2075. }
  2076. },
  2077. beakShut: {
  2078. height: math.unit(1.25, "feet"),
  2079. name: "Beak (Shut)",
  2080. image: {
  2081. source: "./media/characters/elijah/beak-shut.svg"
  2082. }
  2083. },
  2084. footFlexing: {
  2085. height: math.unit(1.61, "feet"),
  2086. name: "Foot (Flexing)",
  2087. image: {
  2088. source: "./media/characters/elijah/foot-flexing.svg"
  2089. }
  2090. },
  2091. footStepping: {
  2092. height: math.unit(1.44, "feet"),
  2093. name: "Foot (Stepping)",
  2094. image: {
  2095. source: "./media/characters/elijah/foot-stepping.svg"
  2096. }
  2097. },
  2098. plantigradeLeg: {
  2099. height: math.unit(2.34, "feet"),
  2100. name: "Plantigrade Leg",
  2101. image: {
  2102. source: "./media/characters/elijah/plantigrade-leg.svg"
  2103. }
  2104. },
  2105. plantigradeFootLeft: {
  2106. height: math.unit(0.9, "feet"),
  2107. name: "Plantigrade Foot (Left)",
  2108. image: {
  2109. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2110. }
  2111. },
  2112. plantigradeFootRight: {
  2113. height: math.unit(0.9, "feet"),
  2114. name: "Plantigrade Foot (Right)",
  2115. image: {
  2116. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2117. }
  2118. },
  2119. },
  2120. [
  2121. {
  2122. name: "Normal",
  2123. height: math.unit(1.65, "meters")
  2124. },
  2125. {
  2126. name: "Macro",
  2127. height: math.unit(55, "meters"),
  2128. default: true
  2129. },
  2130. {
  2131. name: "Macro+",
  2132. height: math.unit(105, "meters")
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(11, "feet"),
  2141. weight: math.unit(80, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/rai/front.svg",
  2145. extra: 1,
  2146. bottom: 0.03
  2147. }
  2148. },
  2149. side: {
  2150. height: math.unit(11, "feet"),
  2151. weight: math.unit(80, "kg"),
  2152. name: "Side",
  2153. image: {
  2154. source: "./media/characters/rai/side.svg"
  2155. }
  2156. },
  2157. back: {
  2158. height: math.unit(11, "feet"),
  2159. weight: math.unit(80, "lb"),
  2160. name: "Back",
  2161. image: {
  2162. source: "./media/characters/rai/back.svg",
  2163. extra: 1,
  2164. bottom: 0.01
  2165. }
  2166. },
  2167. feral: {
  2168. height: math.unit(11, "feet"),
  2169. weight: math.unit(800, "lb"),
  2170. name: "Feral",
  2171. image: {
  2172. source: "./media/characters/rai/feral.svg",
  2173. extra: 1050 / 659,
  2174. bottom: 0.07
  2175. }
  2176. },
  2177. dragon: {
  2178. height: math.unit(23, "feet"),
  2179. weight: math.unit(50000, "lb"),
  2180. name: "Dragon",
  2181. image: {
  2182. source: "./media/characters/rai/dragon.svg",
  2183. extra: 2498 / 2030,
  2184. bottom: 85.2 / 2584
  2185. }
  2186. },
  2187. maw: {
  2188. height: math.unit(6 / 3.81416, "feet"),
  2189. name: "Maw",
  2190. image: {
  2191. source: "./media/characters/rai/maw.svg"
  2192. }
  2193. },
  2194. },
  2195. [
  2196. {
  2197. name: "Normal",
  2198. height: math.unit(11, "feet")
  2199. },
  2200. {
  2201. name: "Macro",
  2202. height: math.unit(302, "feet"),
  2203. default: true
  2204. },
  2205. ]
  2206. ))
  2207. characterMakers.push(() => makeCharacter(
  2208. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2209. {
  2210. frontDressed: {
  2211. height: math.unit(216, "feet"),
  2212. weight: math.unit(7000000, "lb"),
  2213. name: "Front (Dressed)",
  2214. image: {
  2215. source: "./media/characters/jazzy/front-dressed.svg",
  2216. extra: 2738 / 2651,
  2217. bottom: 41.8 / 2786
  2218. }
  2219. },
  2220. backDressed: {
  2221. height: math.unit(216, "feet"),
  2222. weight: math.unit(7000000, "lb"),
  2223. name: "Back (Dressed)",
  2224. image: {
  2225. source: "./media/characters/jazzy/back-dressed.svg",
  2226. extra: 2775 / 2673,
  2227. bottom: 36.8 / 2817
  2228. }
  2229. },
  2230. front: {
  2231. height: math.unit(216, "feet"),
  2232. weight: math.unit(7000000, "lb"),
  2233. name: "Front",
  2234. image: {
  2235. source: "./media/characters/jazzy/front.svg",
  2236. extra: 2738 / 2651,
  2237. bottom: 41.8 / 2786
  2238. }
  2239. },
  2240. back: {
  2241. height: math.unit(216, "feet"),
  2242. weight: math.unit(7000000, "lb"),
  2243. name: "Back",
  2244. image: {
  2245. source: "./media/characters/jazzy/back.svg",
  2246. extra: 2775 / 2673,
  2247. bottom: 36.8 / 2817
  2248. }
  2249. },
  2250. maw: {
  2251. height: math.unit(20, "feet"),
  2252. name: "Maw",
  2253. image: {
  2254. source: "./media/characters/jazzy/maw.svg"
  2255. }
  2256. },
  2257. paws: {
  2258. height: math.unit(27.5, "feet"),
  2259. name: "Paws",
  2260. image: {
  2261. source: "./media/characters/jazzy/paws.svg"
  2262. }
  2263. },
  2264. eye: {
  2265. height: math.unit(4.4, "feet"),
  2266. name: "Eye",
  2267. image: {
  2268. source: "./media/characters/jazzy/eye.svg"
  2269. }
  2270. },
  2271. droneOffense: {
  2272. height: math.unit(9.5, "inches"),
  2273. name: "Drone (Offense)",
  2274. image: {
  2275. source: "./media/characters/jazzy/drone-offense.svg"
  2276. }
  2277. },
  2278. droneRecon: {
  2279. height: math.unit(9.5, "inches"),
  2280. name: "Drone (Recon)",
  2281. image: {
  2282. source: "./media/characters/jazzy/drone-recon.svg"
  2283. }
  2284. },
  2285. droneDefense: {
  2286. height: math.unit(9.5, "inches"),
  2287. name: "Drone (Defense)",
  2288. image: {
  2289. source: "./media/characters/jazzy/drone-defense.svg"
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Macro",
  2296. height: math.unit(216, "feet"),
  2297. default: true
  2298. },
  2299. ]
  2300. ))
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2303. {
  2304. front: {
  2305. height: math.unit(7, "feet"),
  2306. weight: math.unit(80, "kg"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/flamm/front.svg",
  2310. extra: 1794 / 1677,
  2311. bottom: 31.7 / 1828.5
  2312. }
  2313. },
  2314. },
  2315. [
  2316. {
  2317. name: "Normal",
  2318. height: math.unit(9.5, "feet")
  2319. },
  2320. {
  2321. name: "Macro",
  2322. height: math.unit(200, "feet"),
  2323. default: true
  2324. },
  2325. ]
  2326. ))
  2327. characterMakers.push(() => makeCharacter(
  2328. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2329. {
  2330. front: {
  2331. height: math.unit(5 + 3/12, "feet"),
  2332. weight: math.unit(60, "kg"),
  2333. name: "Front",
  2334. image: {
  2335. source: "./media/characters/zephiro/front.svg",
  2336. extra: 2309 / 2162,
  2337. bottom: 0.069
  2338. }
  2339. },
  2340. side: {
  2341. height: math.unit(5 + 3/12, "feet"),
  2342. weight: math.unit(60, "kg"),
  2343. name: "Side",
  2344. image: {
  2345. source: "./media/characters/zephiro/side.svg",
  2346. extra: 2403 / 2279,
  2347. bottom: 0.015
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(5 + 3/12, "feet"),
  2352. weight: math.unit(60, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/zephiro/back.svg",
  2356. extra: 2373 / 2244,
  2357. bottom: 0.013
  2358. }
  2359. },
  2360. hand: {
  2361. height: math.unit(0.68, "feet"),
  2362. name: "Hand",
  2363. image: {
  2364. source: "./media/characters/zephiro/hand.svg"
  2365. }
  2366. },
  2367. paw: {
  2368. height: math.unit(1, "feet"),
  2369. name: "Paw",
  2370. image: {
  2371. source: "./media/characters/zephiro/paw.svg"
  2372. }
  2373. },
  2374. beans: {
  2375. height: math.unit(0.93, "feet"),
  2376. name: "Beans",
  2377. image: {
  2378. source: "./media/characters/zephiro/beans.svg"
  2379. }
  2380. },
  2381. },
  2382. [
  2383. {
  2384. name: "Micro",
  2385. height: math.unit(3, "inches")
  2386. },
  2387. {
  2388. name: "Normal",
  2389. height: math.unit(5 + 3 / 12, "feet"),
  2390. default: true
  2391. },
  2392. {
  2393. name: "Macro",
  2394. height: math.unit(118, "feet")
  2395. },
  2396. ]
  2397. ))
  2398. characterMakers.push(() => makeCharacter(
  2399. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2400. {
  2401. front: {
  2402. height: math.unit(5, "feet"),
  2403. weight: math.unit(90, "kg"),
  2404. name: "Front",
  2405. image: {
  2406. source: "./media/characters/fory/front.svg",
  2407. extra: 2862 / 2674,
  2408. bottom: 180 / 3043.8
  2409. }
  2410. },
  2411. back: {
  2412. height: math.unit(5, "feet"),
  2413. weight: math.unit(90, "kg"),
  2414. name: "Back",
  2415. image: {
  2416. source: "./media/characters/fory/back.svg",
  2417. extra: 2962 / 2791,
  2418. bottom: 106 / 3071.8
  2419. }
  2420. },
  2421. foot: {
  2422. height: math.unit(2.14, "feet"),
  2423. name: "Foot",
  2424. image: {
  2425. source: "./media/characters/fory/foot.svg"
  2426. }
  2427. },
  2428. },
  2429. [
  2430. {
  2431. name: "Normal",
  2432. height: math.unit(5, "feet")
  2433. },
  2434. {
  2435. name: "Macro",
  2436. height: math.unit(50, "feet"),
  2437. default: true
  2438. },
  2439. {
  2440. name: "Megamacro",
  2441. height: math.unit(10, "miles")
  2442. },
  2443. {
  2444. name: "Gigamacro",
  2445. height: math.unit(5, "earths")
  2446. },
  2447. ]
  2448. ))
  2449. characterMakers.push(() => makeCharacter(
  2450. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2451. {
  2452. front: {
  2453. height: math.unit(7, "feet"),
  2454. weight: math.unit(90, "kg"),
  2455. name: "Front",
  2456. image: {
  2457. source: "./media/characters/kurrikage/front.svg",
  2458. extra: 1,
  2459. bottom: 0.035
  2460. }
  2461. },
  2462. back: {
  2463. height: math.unit(7, "feet"),
  2464. weight: math.unit(90, "lb"),
  2465. name: "Back",
  2466. image: {
  2467. source: "./media/characters/kurrikage/back.svg"
  2468. }
  2469. },
  2470. paw: {
  2471. height: math.unit(1.5, "feet"),
  2472. name: "Paw",
  2473. image: {
  2474. source: "./media/characters/kurrikage/paw.svg"
  2475. }
  2476. },
  2477. staff: {
  2478. height: math.unit(6.7, "feet"),
  2479. name: "Staff",
  2480. image: {
  2481. source: "./media/characters/kurrikage/staff.svg"
  2482. }
  2483. },
  2484. peek: {
  2485. height: math.unit(1.05, "feet"),
  2486. name: "Peeking",
  2487. image: {
  2488. source: "./media/characters/kurrikage/peek.svg",
  2489. bottom: 0.08
  2490. }
  2491. },
  2492. },
  2493. [
  2494. {
  2495. name: "Normal",
  2496. height: math.unit(12, "feet"),
  2497. default: true
  2498. },
  2499. {
  2500. name: "Big",
  2501. height: math.unit(20, "feet")
  2502. },
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(500, "feet")
  2506. },
  2507. {
  2508. name: "Megamacro",
  2509. height: math.unit(20, "miles")
  2510. },
  2511. ]
  2512. ))
  2513. characterMakers.push(() => makeCharacter(
  2514. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2515. {
  2516. front: {
  2517. height: math.unit(6, "feet"),
  2518. weight: math.unit(75, "kg"),
  2519. name: "Front",
  2520. image: {
  2521. source: "./media/characters/shingo/front.svg",
  2522. extra: 706/681,
  2523. bottom: 11/717
  2524. }
  2525. },
  2526. frontAlt: {
  2527. height: math.unit(6, "feet"),
  2528. weight: math.unit(75, "kg"),
  2529. name: "Front (Alt)",
  2530. image: {
  2531. source: "./media/characters/shingo/front-alt.svg",
  2532. extra: 3511 / 3338,
  2533. bottom: 0.005
  2534. }
  2535. },
  2536. paw: {
  2537. height: math.unit(1, "feet"),
  2538. name: "Paw",
  2539. image: {
  2540. source: "./media/characters/shingo/paw.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Micro",
  2547. height: math.unit(4, "inches")
  2548. },
  2549. {
  2550. name: "Normal",
  2551. height: math.unit(6, "feet"),
  2552. default: true
  2553. },
  2554. {
  2555. name: "Macro",
  2556. height: math.unit(108, "feet")
  2557. },
  2558. {
  2559. name: "Macro+",
  2560. height: math.unit(1500, "feet")
  2561. },
  2562. ]
  2563. ))
  2564. characterMakers.push(() => makeCharacter(
  2565. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2566. {
  2567. side: {
  2568. height: math.unit(6, "feet"),
  2569. weight: math.unit(75, "kg"),
  2570. name: "Side",
  2571. image: {
  2572. source: "./media/characters/aigey/side.svg"
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Macro",
  2579. height: math.unit(200, "feet"),
  2580. default: true
  2581. },
  2582. {
  2583. name: "Megamacro",
  2584. height: math.unit(100, "miles")
  2585. },
  2586. ]
  2587. )
  2588. )
  2589. characterMakers.push(() => makeCharacter(
  2590. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2591. {
  2592. front: {
  2593. height: math.unit(5 + 5 / 12, "feet"),
  2594. weight: math.unit(75, "kg"),
  2595. name: "Front",
  2596. image: {
  2597. source: "./media/characters/natasha/front.svg",
  2598. extra: 859 / 824,
  2599. bottom: 23 / 879.6
  2600. }
  2601. },
  2602. frontNsfw: {
  2603. height: math.unit(5 + 5 / 12, "feet"),
  2604. weight: math.unit(75, "kg"),
  2605. name: "Front (NSFW)",
  2606. image: {
  2607. source: "./media/characters/natasha/front-nsfw.svg",
  2608. extra: 859 / 824,
  2609. bottom: 23 / 879.6
  2610. }
  2611. },
  2612. frontErect: {
  2613. height: math.unit(5 + 5 / 12, "feet"),
  2614. weight: math.unit(75, "kg"),
  2615. name: "Front (Erect)",
  2616. image: {
  2617. source: "./media/characters/natasha/front-erect.svg",
  2618. extra: 859 / 824,
  2619. bottom: 23 / 879.6
  2620. }
  2621. },
  2622. back: {
  2623. height: math.unit(5 + 5 / 12, "feet"),
  2624. weight: math.unit(75, "kg"),
  2625. name: "Back",
  2626. image: {
  2627. source: "./media/characters/natasha/back.svg",
  2628. extra: 887.9 / 852.6,
  2629. bottom: 9.7 / 896.4
  2630. }
  2631. },
  2632. backAlt: {
  2633. height: math.unit(5 + 5 / 12, "feet"),
  2634. weight: math.unit(75, "kg"),
  2635. name: "Back (Alt)",
  2636. image: {
  2637. source: "./media/characters/natasha/back-alt.svg",
  2638. extra: 1236.7 / 1192,
  2639. bottom: 22.3 / 1258.2
  2640. }
  2641. },
  2642. dick: {
  2643. height: math.unit(1.772, "feet"),
  2644. name: "Dick",
  2645. image: {
  2646. source: "./media/characters/natasha/dick.svg"
  2647. }
  2648. },
  2649. paw: {
  2650. height: math.unit(0.250, "meters"),
  2651. name: "Paw",
  2652. image: {
  2653. source: "./media/characters/natasha/paw.svg"
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Normal",
  2660. height: math.unit(5 + 5 / 12, "feet")
  2661. },
  2662. {
  2663. name: "Large",
  2664. height: math.unit(12, "feet")
  2665. },
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(100, "feet"),
  2669. default: true
  2670. },
  2671. {
  2672. name: "Macro+",
  2673. height: math.unit(260, "feet")
  2674. },
  2675. {
  2676. name: "Macro++",
  2677. height: math.unit(1, "mile")
  2678. },
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2683. {
  2684. front: {
  2685. height: math.unit(6, "feet"),
  2686. weight: math.unit(75, "kg"),
  2687. name: "Front",
  2688. image: {
  2689. source: "./media/characters/malik/front.svg"
  2690. }
  2691. },
  2692. side: {
  2693. height: math.unit(6, "feet"),
  2694. weight: math.unit(75, "kg"),
  2695. name: "Side",
  2696. image: {
  2697. source: "./media/characters/malik/side.svg",
  2698. extra: 1.1539
  2699. }
  2700. },
  2701. back: {
  2702. height: math.unit(6, "feet"),
  2703. weight: math.unit(75, "kg"),
  2704. name: "Back",
  2705. image: {
  2706. source: "./media/characters/malik/back.svg"
  2707. }
  2708. },
  2709. },
  2710. [
  2711. {
  2712. name: "Macro",
  2713. height: math.unit(156, "feet"),
  2714. default: true
  2715. },
  2716. {
  2717. name: "Macro+",
  2718. height: math.unit(1188, "feet")
  2719. },
  2720. ]
  2721. ))
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2724. {
  2725. front: {
  2726. height: math.unit(6, "feet"),
  2727. weight: math.unit(75, "kg"),
  2728. name: "Front",
  2729. image: {
  2730. source: "./media/characters/sefer/front.svg",
  2731. extra: 848 / 659,
  2732. bottom: 28.3 / 876.442
  2733. }
  2734. },
  2735. back: {
  2736. height: math.unit(6, "feet"),
  2737. weight: math.unit(75, "kg"),
  2738. name: "Back",
  2739. image: {
  2740. source: "./media/characters/sefer/back.svg",
  2741. extra: 864 / 695,
  2742. bottom: 10 / 871
  2743. }
  2744. },
  2745. frontDressed: {
  2746. height: math.unit(6, "feet"),
  2747. weight: math.unit(75, "kg"),
  2748. name: "Front (Dressed)",
  2749. image: {
  2750. source: "./media/characters/sefer/front-dressed.svg",
  2751. extra: 839 / 653,
  2752. bottom: 37.6 / 878
  2753. }
  2754. },
  2755. },
  2756. [
  2757. {
  2758. name: "Normal",
  2759. height: math.unit(6, "feet"),
  2760. default: true
  2761. },
  2762. ]
  2763. ))
  2764. characterMakers.push(() => makeCharacter(
  2765. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2766. {
  2767. body: {
  2768. height: math.unit(2.2428, "meter"),
  2769. weight: math.unit(124.738, "kg"),
  2770. name: "Body",
  2771. image: {
  2772. extra: 1225 / 1050,
  2773. source: "./media/characters/north/front.svg"
  2774. }
  2775. }
  2776. },
  2777. [
  2778. {
  2779. name: "Micro",
  2780. height: math.unit(4, "inches")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(63, "meters")
  2785. },
  2786. {
  2787. name: "Megamacro",
  2788. height: math.unit(101, "miles"),
  2789. default: true
  2790. }
  2791. ]
  2792. ))
  2793. characterMakers.push(() => makeCharacter(
  2794. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2795. {
  2796. angled: {
  2797. height: math.unit(4, "meter"),
  2798. weight: math.unit(150, "kg"),
  2799. name: "Angled",
  2800. image: {
  2801. source: "./media/characters/talan/angled-sfw.svg",
  2802. bottom: 29 / 3734
  2803. }
  2804. },
  2805. angledNsfw: {
  2806. height: math.unit(4, "meter"),
  2807. weight: math.unit(150, "kg"),
  2808. name: "Angled (NSFW)",
  2809. image: {
  2810. source: "./media/characters/talan/angled-nsfw.svg",
  2811. bottom: 29 / 3734
  2812. }
  2813. },
  2814. frontNsfw: {
  2815. height: math.unit(4, "meter"),
  2816. weight: math.unit(150, "kg"),
  2817. name: "Front (NSFW)",
  2818. image: {
  2819. source: "./media/characters/talan/front-nsfw.svg",
  2820. bottom: 29 / 3734
  2821. }
  2822. },
  2823. sideNsfw: {
  2824. height: math.unit(4, "meter"),
  2825. weight: math.unit(150, "kg"),
  2826. name: "Side (NSFW)",
  2827. image: {
  2828. source: "./media/characters/talan/side-nsfw.svg",
  2829. bottom: 29 / 3734
  2830. }
  2831. },
  2832. back: {
  2833. height: math.unit(4, "meter"),
  2834. weight: math.unit(150, "kg"),
  2835. name: "Back",
  2836. image: {
  2837. source: "./media/characters/talan/back.svg"
  2838. }
  2839. },
  2840. dickBottom: {
  2841. height: math.unit(0.621, "meter"),
  2842. name: "Dick (Bottom)",
  2843. image: {
  2844. source: "./media/characters/talan/dick-bottom.svg"
  2845. }
  2846. },
  2847. dickTop: {
  2848. height: math.unit(0.621, "meter"),
  2849. name: "Dick (Top)",
  2850. image: {
  2851. source: "./media/characters/talan/dick-top.svg"
  2852. }
  2853. },
  2854. dickSide: {
  2855. height: math.unit(0.305, "meter"),
  2856. name: "Dick (Side)",
  2857. image: {
  2858. source: "./media/characters/talan/dick-side.svg"
  2859. }
  2860. },
  2861. dickFront: {
  2862. height: math.unit(0.305, "meter"),
  2863. name: "Dick (Front)",
  2864. image: {
  2865. source: "./media/characters/talan/dick-front.svg"
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(4, "meters")
  2873. },
  2874. {
  2875. name: "Macro",
  2876. height: math.unit(100, "meters")
  2877. },
  2878. {
  2879. name: "Megamacro",
  2880. height: math.unit(2, "miles"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Gigamacro",
  2885. height: math.unit(5000, "miles")
  2886. },
  2887. {
  2888. name: "Teramacro",
  2889. height: math.unit(100, "parsecs")
  2890. }
  2891. ]
  2892. ))
  2893. characterMakers.push(() => makeCharacter(
  2894. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2895. {
  2896. front: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(90, "kg"),
  2899. name: "Front",
  2900. image: {
  2901. source: "./media/characters/gael'rathus/front.svg"
  2902. }
  2903. },
  2904. frontAlt: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(90, "kg"),
  2907. name: "Front (alt)",
  2908. image: {
  2909. source: "./media/characters/gael'rathus/front-alt.svg"
  2910. }
  2911. },
  2912. frontAlt2: {
  2913. height: math.unit(2, "meter"),
  2914. weight: math.unit(90, "kg"),
  2915. name: "Front (alt 2)",
  2916. image: {
  2917. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2918. }
  2919. }
  2920. },
  2921. [
  2922. {
  2923. name: "Normal",
  2924. height: math.unit(9, "feet"),
  2925. default: true
  2926. },
  2927. {
  2928. name: "Large",
  2929. height: math.unit(25, "feet")
  2930. },
  2931. {
  2932. name: "Macro",
  2933. height: math.unit(0.25, "miles")
  2934. },
  2935. {
  2936. name: "Megamacro",
  2937. height: math.unit(10, "miles")
  2938. }
  2939. ]
  2940. ))
  2941. characterMakers.push(() => makeCharacter(
  2942. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2943. {
  2944. side: {
  2945. height: math.unit(2, "meter"),
  2946. weight: math.unit(140, "kg"),
  2947. name: "Side",
  2948. image: {
  2949. source: "./media/characters/sosha/side.svg",
  2950. bottom: 0.042
  2951. }
  2952. },
  2953. },
  2954. [
  2955. {
  2956. name: "Normal",
  2957. height: math.unit(12, "feet"),
  2958. default: true
  2959. }
  2960. ]
  2961. ))
  2962. characterMakers.push(() => makeCharacter(
  2963. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2964. {
  2965. side: {
  2966. height: math.unit(5 + 5 / 12, "feet"),
  2967. weight: math.unit(170, "kg"),
  2968. name: "Side",
  2969. image: {
  2970. source: "./media/characters/runnola/side.svg",
  2971. extra: 741 / 448,
  2972. bottom: 0.05
  2973. }
  2974. },
  2975. },
  2976. [
  2977. {
  2978. name: "Small",
  2979. height: math.unit(3, "feet")
  2980. },
  2981. {
  2982. name: "Normal",
  2983. height: math.unit(5 + 5 / 12, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Big",
  2988. height: math.unit(10, "feet")
  2989. },
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2994. {
  2995. front: {
  2996. height: math.unit(2, "meter"),
  2997. weight: math.unit(50, "kg"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/kurribird/front.svg",
  3001. bottom: 0.015
  3002. }
  3003. },
  3004. frontAlt: {
  3005. height: math.unit(1.5, "meter"),
  3006. weight: math.unit(50, "kg"),
  3007. name: "Front (Alt)",
  3008. image: {
  3009. source: "./media/characters/kurribird/front-alt.svg",
  3010. extra: 1.45
  3011. }
  3012. },
  3013. },
  3014. [
  3015. {
  3016. name: "Normal",
  3017. height: math.unit(7, "feet")
  3018. },
  3019. {
  3020. name: "Big",
  3021. height: math.unit(12, "feet"),
  3022. default: true
  3023. },
  3024. {
  3025. name: "Macro",
  3026. height: math.unit(1500, "feet")
  3027. },
  3028. {
  3029. name: "Megamacro",
  3030. height: math.unit(2, "miles")
  3031. }
  3032. ]
  3033. ))
  3034. characterMakers.push(() => makeCharacter(
  3035. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3036. {
  3037. front: {
  3038. height: math.unit(2, "meter"),
  3039. weight: math.unit(80, "kg"),
  3040. name: "Front",
  3041. image: {
  3042. source: "./media/characters/elbial/front.svg",
  3043. extra: 1643 / 1556,
  3044. bottom: 60.2 / 1696
  3045. }
  3046. },
  3047. side: {
  3048. height: math.unit(2, "meter"),
  3049. weight: math.unit(80, "kg"),
  3050. name: "Side",
  3051. image: {
  3052. source: "./media/characters/elbial/side.svg",
  3053. extra: 1630 / 1565,
  3054. bottom: 71.5 / 1697
  3055. }
  3056. },
  3057. back: {
  3058. height: math.unit(2, "meter"),
  3059. weight: math.unit(80, "kg"),
  3060. name: "Back",
  3061. image: {
  3062. source: "./media/characters/elbial/back.svg",
  3063. extra: 1668 / 1595,
  3064. bottom: 5.6 / 1672
  3065. }
  3066. },
  3067. frontDressed: {
  3068. height: math.unit(2, "meter"),
  3069. weight: math.unit(80, "kg"),
  3070. name: "Front (Dressed)",
  3071. image: {
  3072. source: "./media/characters/elbial/front-dressed.svg",
  3073. extra: 1653 / 1584,
  3074. bottom: 57 / 1708
  3075. }
  3076. },
  3077. genitals: {
  3078. height: math.unit(2 / 3.367, "meter"),
  3079. name: "Genitals",
  3080. image: {
  3081. source: "./media/characters/elbial/genitals.svg"
  3082. }
  3083. },
  3084. },
  3085. [
  3086. {
  3087. name: "Large",
  3088. height: math.unit(100, "feet")
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(500, "feet"),
  3093. default: true
  3094. },
  3095. {
  3096. name: "Megamacro",
  3097. height: math.unit(10, "miles")
  3098. },
  3099. {
  3100. name: "Gigamacro",
  3101. height: math.unit(25000, "miles")
  3102. },
  3103. {
  3104. name: "Full-Size",
  3105. height: math.unit(8000000, "gigaparsecs")
  3106. }
  3107. ]
  3108. ))
  3109. characterMakers.push(() => makeCharacter(
  3110. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3111. {
  3112. front: {
  3113. height: math.unit(2, "meter"),
  3114. weight: math.unit(60, "kg"),
  3115. name: "Front",
  3116. image: {
  3117. source: "./media/characters/noah/front.svg"
  3118. }
  3119. },
  3120. talons: {
  3121. height: math.unit(0.315, "meter"),
  3122. name: "Talons",
  3123. image: {
  3124. source: "./media/characters/noah/talons.svg"
  3125. }
  3126. }
  3127. },
  3128. [
  3129. {
  3130. name: "Large",
  3131. height: math.unit(50, "feet")
  3132. },
  3133. {
  3134. name: "Macro",
  3135. height: math.unit(750, "feet"),
  3136. default: true
  3137. },
  3138. {
  3139. name: "Megamacro",
  3140. height: math.unit(50, "miles")
  3141. },
  3142. {
  3143. name: "Gigamacro",
  3144. height: math.unit(100000, "miles")
  3145. },
  3146. {
  3147. name: "Full-Size",
  3148. height: math.unit(3000000000, "miles")
  3149. }
  3150. ]
  3151. ))
  3152. characterMakers.push(() => makeCharacter(
  3153. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3154. {
  3155. front: {
  3156. height: math.unit(2, "meter"),
  3157. weight: math.unit(80, "kg"),
  3158. name: "Front",
  3159. image: {
  3160. source: "./media/characters/natalya/front.svg"
  3161. }
  3162. },
  3163. back: {
  3164. height: math.unit(2, "meter"),
  3165. weight: math.unit(80, "kg"),
  3166. name: "Back",
  3167. image: {
  3168. source: "./media/characters/natalya/back.svg"
  3169. }
  3170. }
  3171. },
  3172. [
  3173. {
  3174. name: "Normal",
  3175. height: math.unit(150, "feet"),
  3176. default: true
  3177. },
  3178. {
  3179. name: "Megamacro",
  3180. height: math.unit(5, "miles")
  3181. },
  3182. {
  3183. name: "Full-Size",
  3184. height: math.unit(600, "kiloparsecs")
  3185. }
  3186. ]
  3187. ))
  3188. characterMakers.push(() => makeCharacter(
  3189. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3190. {
  3191. front: {
  3192. height: math.unit(2, "meter"),
  3193. weight: math.unit(50, "kg"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/erestrebah/front.svg",
  3197. extra: 208 / 193,
  3198. bottom: 0.055
  3199. }
  3200. },
  3201. back: {
  3202. height: math.unit(2, "meter"),
  3203. weight: math.unit(50, "kg"),
  3204. name: "Back",
  3205. image: {
  3206. source: "./media/characters/erestrebah/back.svg",
  3207. extra: 1.3
  3208. }
  3209. }
  3210. },
  3211. [
  3212. {
  3213. name: "Normal",
  3214. height: math.unit(10, "feet")
  3215. },
  3216. {
  3217. name: "Large",
  3218. height: math.unit(50, "feet"),
  3219. default: true
  3220. },
  3221. {
  3222. name: "Macro",
  3223. height: math.unit(300, "feet")
  3224. },
  3225. {
  3226. name: "Macro+",
  3227. height: math.unit(750, "feet")
  3228. },
  3229. {
  3230. name: "Megamacro",
  3231. height: math.unit(3, "miles")
  3232. }
  3233. ]
  3234. ))
  3235. characterMakers.push(() => makeCharacter(
  3236. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3237. {
  3238. front: {
  3239. height: math.unit(2, "meter"),
  3240. weight: math.unit(80, "kg"),
  3241. name: "Front",
  3242. image: {
  3243. source: "./media/characters/jennifer/front.svg",
  3244. bottom: 0.11,
  3245. extra: 1.16
  3246. }
  3247. },
  3248. frontAlt: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(80, "kg"),
  3251. name: "Front (Alt)",
  3252. image: {
  3253. source: "./media/characters/jennifer/front-alt.svg"
  3254. }
  3255. }
  3256. },
  3257. [
  3258. {
  3259. name: "Canon Height",
  3260. height: math.unit(120, "feet"),
  3261. default: true
  3262. },
  3263. {
  3264. name: "Macro+",
  3265. height: math.unit(300, "feet")
  3266. },
  3267. {
  3268. name: "Megamacro",
  3269. height: math.unit(20000, "feet")
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(50, "kg"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/kalista/front.svg",
  3282. extra: 1947 / 1700,
  3283. bottom: 76.6 / 1412.98
  3284. }
  3285. },
  3286. back: {
  3287. height: math.unit(2, "meter"),
  3288. weight: math.unit(50, "kg"),
  3289. name: "Back",
  3290. image: {
  3291. source: "./media/characters/kalista/back.svg",
  3292. extra: 1366 / 1156,
  3293. bottom: 33.9 / 1362.78
  3294. }
  3295. }
  3296. },
  3297. [
  3298. {
  3299. name: "Uncomfortably Small",
  3300. height: math.unit(10, "feet")
  3301. },
  3302. {
  3303. name: "Small",
  3304. height: math.unit(30, "feet")
  3305. },
  3306. {
  3307. name: "Macro",
  3308. height: math.unit(100, "feet"),
  3309. default: true
  3310. },
  3311. {
  3312. name: "Macro+",
  3313. height: math.unit(2000, "feet")
  3314. },
  3315. {
  3316. name: "True Form",
  3317. height: math.unit(8924, "miles")
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3323. {
  3324. front: {
  3325. height: math.unit(2, "meter"),
  3326. weight: math.unit(120, "kg"),
  3327. name: "Front",
  3328. image: {
  3329. source: "./media/characters/ggv/front.svg"
  3330. }
  3331. },
  3332. side: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(120, "kg"),
  3335. name: "Side",
  3336. image: {
  3337. source: "./media/characters/ggv/side.svg"
  3338. }
  3339. }
  3340. },
  3341. [
  3342. {
  3343. name: "Extremely Puny",
  3344. height: math.unit(9 + 5 / 12, "feet")
  3345. },
  3346. {
  3347. name: "Horribly Small",
  3348. height: math.unit(47.7, "miles"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Reasonably Sized",
  3353. height: math.unit(25000, "parsecs")
  3354. },
  3355. {
  3356. name: "Slightly Uncompressed",
  3357. height: math.unit(7.77e31, "parsecs")
  3358. },
  3359. {
  3360. name: "Omniversal",
  3361. height: math.unit(1e300, "meters")
  3362. },
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3367. {
  3368. front: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(75, "lb"),
  3371. name: "Front",
  3372. image: {
  3373. source: "./media/characters/napalm/front.svg"
  3374. }
  3375. },
  3376. back: {
  3377. height: math.unit(2, "meter"),
  3378. weight: math.unit(75, "lb"),
  3379. name: "Back",
  3380. image: {
  3381. source: "./media/characters/napalm/back.svg"
  3382. }
  3383. }
  3384. },
  3385. [
  3386. {
  3387. name: "Standard",
  3388. height: math.unit(55, "feet"),
  3389. default: true
  3390. }
  3391. ]
  3392. ))
  3393. characterMakers.push(() => makeCharacter(
  3394. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3395. {
  3396. front: {
  3397. height: math.unit(7 + 5 / 6, "feet"),
  3398. weight: math.unit(325, "lb"),
  3399. name: "Front",
  3400. image: {
  3401. source: "./media/characters/asana/front.svg",
  3402. extra: 1133 / 1060,
  3403. bottom: 15.2 / 1148.6
  3404. }
  3405. },
  3406. back: {
  3407. height: math.unit(7 + 5 / 6, "feet"),
  3408. weight: math.unit(325, "lb"),
  3409. name: "Back",
  3410. image: {
  3411. source: "./media/characters/asana/back.svg",
  3412. extra: 1114 / 1043,
  3413. bottom: 5 / 1120
  3414. }
  3415. },
  3416. dressedDark: {
  3417. height: math.unit(7 + 5 / 6, "feet"),
  3418. weight: math.unit(325, "lb"),
  3419. name: "Dressed (Dark)",
  3420. image: {
  3421. source: "./media/characters/asana/dressed-dark.svg",
  3422. extra: 1133 / 1060,
  3423. bottom: 15.2 / 1148.6
  3424. }
  3425. },
  3426. dressedLight: {
  3427. height: math.unit(7 + 5 / 6, "feet"),
  3428. weight: math.unit(325, "lb"),
  3429. name: "Dressed (Light)",
  3430. image: {
  3431. source: "./media/characters/asana/dressed-light.svg",
  3432. extra: 1133 / 1060,
  3433. bottom: 15.2 / 1148.6
  3434. }
  3435. },
  3436. },
  3437. [
  3438. {
  3439. name: "Standard",
  3440. height: math.unit(7 + 5 / 6, "feet"),
  3441. default: true
  3442. },
  3443. {
  3444. name: "Large",
  3445. height: math.unit(10, "meters")
  3446. },
  3447. {
  3448. name: "Macro",
  3449. height: math.unit(2500, "meters")
  3450. },
  3451. {
  3452. name: "Megamacro",
  3453. height: math.unit(5e6, "meters")
  3454. },
  3455. {
  3456. name: "Examacro",
  3457. height: math.unit(5e12, "lightyears")
  3458. },
  3459. {
  3460. name: "Max Size",
  3461. height: math.unit(1e31, "lightyears")
  3462. }
  3463. ]
  3464. ))
  3465. characterMakers.push(() => makeCharacter(
  3466. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3467. {
  3468. front: {
  3469. height: math.unit(2, "meter"),
  3470. weight: math.unit(60, "kg"),
  3471. name: "Front",
  3472. image: {
  3473. source: "./media/characters/ebony/front.svg",
  3474. bottom: 0.03,
  3475. extra: 1045 / 810 + 0.03
  3476. }
  3477. },
  3478. side: {
  3479. height: math.unit(2, "meter"),
  3480. weight: math.unit(60, "kg"),
  3481. name: "Side",
  3482. image: {
  3483. source: "./media/characters/ebony/side.svg",
  3484. bottom: 0.03,
  3485. extra: 1045 / 810 + 0.03
  3486. }
  3487. },
  3488. back: {
  3489. height: math.unit(2, "meter"),
  3490. weight: math.unit(60, "kg"),
  3491. name: "Back",
  3492. image: {
  3493. source: "./media/characters/ebony/back.svg",
  3494. bottom: 0.01,
  3495. extra: 1045 / 810 + 0.01
  3496. }
  3497. },
  3498. },
  3499. [
  3500. // TODO check why I did this lol
  3501. {
  3502. name: "Standard",
  3503. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(200, "feet")
  3509. },
  3510. {
  3511. name: "Gigamacro",
  3512. height: math.unit(13000, "km")
  3513. }
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(6, "feet"),
  3521. weight: math.unit(175, "lb"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/mountain/front.svg",
  3525. extra: 972 / 955,
  3526. bottom: 64 / 1036.6
  3527. }
  3528. },
  3529. back: {
  3530. height: math.unit(6, "feet"),
  3531. weight: math.unit(175, "lb"),
  3532. name: "Back",
  3533. image: {
  3534. source: "./media/characters/mountain/back.svg",
  3535. extra: 970 / 950,
  3536. bottom: 28.25 / 999
  3537. }
  3538. },
  3539. },
  3540. [
  3541. {
  3542. name: "Large",
  3543. height: math.unit(20, "meters")
  3544. },
  3545. {
  3546. name: "Macro",
  3547. height: math.unit(300, "meters")
  3548. },
  3549. {
  3550. name: "Gigamacro",
  3551. height: math.unit(10000, "km"),
  3552. default: true
  3553. },
  3554. {
  3555. name: "Examacro",
  3556. height: math.unit(10e9, "lightyears")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(8, "feet"),
  3565. weight: math.unit(500, "lb"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/rick/front.svg"
  3569. }
  3570. }
  3571. },
  3572. [
  3573. {
  3574. name: "Normal",
  3575. height: math.unit(8, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Macro",
  3580. height: math.unit(5, "km")
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(8, "feet"),
  3589. weight: math.unit(120, "lb"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/ona/front.svg"
  3593. }
  3594. },
  3595. frontAlt: {
  3596. height: math.unit(8, "feet"),
  3597. weight: math.unit(120, "lb"),
  3598. name: "Front (Alt)",
  3599. image: {
  3600. source: "./media/characters/ona/front-alt.svg"
  3601. }
  3602. },
  3603. back: {
  3604. height: math.unit(8, "feet"),
  3605. weight: math.unit(120, "lb"),
  3606. name: "Back",
  3607. image: {
  3608. source: "./media/characters/ona/back.svg"
  3609. }
  3610. },
  3611. foot: {
  3612. height: math.unit(1.1, "feet"),
  3613. name: "Foot",
  3614. image: {
  3615. source: "./media/characters/ona/foot.svg"
  3616. }
  3617. }
  3618. },
  3619. [
  3620. {
  3621. name: "Megamacro",
  3622. height: math.unit(70, "km"),
  3623. default: true
  3624. },
  3625. {
  3626. name: "Gigamacro",
  3627. height: math.unit(681818, "miles")
  3628. },
  3629. {
  3630. name: "Examacro",
  3631. height: math.unit(3800000, "lightyears")
  3632. },
  3633. ]
  3634. ))
  3635. characterMakers.push(() => makeCharacter(
  3636. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3637. {
  3638. front: {
  3639. height: math.unit(12, "feet"),
  3640. weight: math.unit(3000, "lb"),
  3641. name: "Front",
  3642. image: {
  3643. source: "./media/characters/mech/front.svg",
  3644. extra: 2900 / 2770,
  3645. bottom: 110 / 3010
  3646. }
  3647. },
  3648. back: {
  3649. height: math.unit(12, "feet"),
  3650. weight: math.unit(3000, "lb"),
  3651. name: "Back",
  3652. image: {
  3653. source: "./media/characters/mech/back.svg",
  3654. extra: 3011 / 2890,
  3655. bottom: 94 / 3105
  3656. }
  3657. },
  3658. maw: {
  3659. height: math.unit(3.07, "feet"),
  3660. name: "Maw",
  3661. image: {
  3662. source: "./media/characters/mech/maw.svg"
  3663. }
  3664. },
  3665. head: {
  3666. height: math.unit(2.82, "feet"),
  3667. name: "Head",
  3668. image: {
  3669. source: "./media/characters/mech/head.svg"
  3670. }
  3671. },
  3672. dick: {
  3673. height: math.unit(1.43, "feet"),
  3674. name: "Dick",
  3675. image: {
  3676. source: "./media/characters/mech/dick.svg"
  3677. }
  3678. },
  3679. },
  3680. [
  3681. {
  3682. name: "Normal",
  3683. height: math.unit(12, "feet")
  3684. },
  3685. {
  3686. name: "Macro",
  3687. height: math.unit(300, "feet"),
  3688. default: true
  3689. },
  3690. {
  3691. name: "Macro+",
  3692. height: math.unit(1500, "feet")
  3693. },
  3694. ]
  3695. ))
  3696. characterMakers.push(() => makeCharacter(
  3697. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3698. {
  3699. front: {
  3700. height: math.unit(1.3, "meter"),
  3701. weight: math.unit(30, "kg"),
  3702. name: "Front",
  3703. image: {
  3704. source: "./media/characters/gregory/front.svg",
  3705. }
  3706. }
  3707. },
  3708. [
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(1.3, "meter"),
  3712. default: true
  3713. },
  3714. {
  3715. name: "Macro",
  3716. height: math.unit(20, "meter")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(2.8, "meter"),
  3725. weight: math.unit(200, "kg"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/elory/front.svg",
  3729. }
  3730. }
  3731. },
  3732. [
  3733. {
  3734. name: "Normal",
  3735. height: math.unit(2.8, "meter"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Macro",
  3740. height: math.unit(38, "meter")
  3741. }
  3742. ]
  3743. ))
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3746. {
  3747. front: {
  3748. height: math.unit(470, "feet"),
  3749. weight: math.unit(924, "tons"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/angelpatamon/front.svg",
  3753. }
  3754. }
  3755. },
  3756. [
  3757. {
  3758. name: "Normal",
  3759. height: math.unit(470, "feet"),
  3760. default: true
  3761. },
  3762. {
  3763. name: "Deity Size I",
  3764. height: math.unit(28651.2, "km")
  3765. },
  3766. {
  3767. name: "Deity Size II",
  3768. height: math.unit(171907.2, "km")
  3769. }
  3770. ]
  3771. ))
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3774. {
  3775. side: {
  3776. height: math.unit(7.2, "meter"),
  3777. weight: math.unit(8.2, "tons"),
  3778. name: "Side",
  3779. image: {
  3780. source: "./media/characters/cryae/side.svg",
  3781. extra: 3500 / 1500
  3782. }
  3783. }
  3784. },
  3785. [
  3786. {
  3787. name: "Normal",
  3788. height: math.unit(7.2, "meter"),
  3789. default: true
  3790. }
  3791. ]
  3792. ))
  3793. characterMakers.push(() => makeCharacter(
  3794. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3795. {
  3796. front: {
  3797. height: math.unit(6, "feet"),
  3798. weight: math.unit(175, "lb"),
  3799. name: "Front",
  3800. image: {
  3801. source: "./media/characters/xera/front.svg",
  3802. extra: 2377 / 1972,
  3803. bottom: 75.5 / 2452
  3804. }
  3805. },
  3806. side: {
  3807. height: math.unit(6, "feet"),
  3808. weight: math.unit(175, "lb"),
  3809. name: "Side",
  3810. image: {
  3811. source: "./media/characters/xera/side.svg",
  3812. extra: 2345 / 2019,
  3813. bottom: 39.7 / 2384
  3814. }
  3815. },
  3816. back: {
  3817. height: math.unit(6, "feet"),
  3818. weight: math.unit(175, "lb"),
  3819. name: "Back",
  3820. image: {
  3821. source: "./media/characters/xera/back.svg",
  3822. extra: 2095 / 1984,
  3823. bottom: 67 / 2166
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Small",
  3830. height: math.unit(10, "feet")
  3831. },
  3832. {
  3833. name: "Macro",
  3834. height: math.unit(500, "meters"),
  3835. default: true
  3836. },
  3837. {
  3838. name: "Macro+",
  3839. height: math.unit(10, "km")
  3840. },
  3841. {
  3842. name: "Gigamacro",
  3843. height: math.unit(25000, "km")
  3844. },
  3845. {
  3846. name: "Teramacro",
  3847. height: math.unit(3e6, "km")
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(6, "feet"),
  3856. weight: math.unit(175, "lb"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/nebula/front.svg",
  3860. extra: 2566 / 2362,
  3861. bottom: 81 / 2644
  3862. }
  3863. }
  3864. },
  3865. [
  3866. {
  3867. name: "Small",
  3868. height: math.unit(4.5, "meters")
  3869. },
  3870. {
  3871. name: "Macro",
  3872. height: math.unit(1500, "meters"),
  3873. default: true
  3874. },
  3875. {
  3876. name: "Megamacro",
  3877. height: math.unit(150, "km")
  3878. },
  3879. {
  3880. name: "Gigamacro",
  3881. height: math.unit(27000, "km")
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(6, "feet"),
  3890. weight: math.unit(225, "lb"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/abysgar/front.svg"
  3894. }
  3895. }
  3896. },
  3897. [
  3898. {
  3899. name: "Small",
  3900. height: math.unit(4.5, "meters")
  3901. },
  3902. {
  3903. name: "Macro",
  3904. height: math.unit(1250, "meters"),
  3905. default: true
  3906. },
  3907. {
  3908. name: "Megamacro",
  3909. height: math.unit(125, "km")
  3910. },
  3911. {
  3912. name: "Gigamacro",
  3913. height: math.unit(26000, "km")
  3914. }
  3915. ]
  3916. ))
  3917. characterMakers.push(() => makeCharacter(
  3918. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3919. {
  3920. front: {
  3921. height: math.unit(6, "feet"),
  3922. weight: math.unit(180, "lb"),
  3923. name: "Front",
  3924. image: {
  3925. source: "./media/characters/yakuz/front.svg"
  3926. }
  3927. }
  3928. },
  3929. [
  3930. {
  3931. name: "Small",
  3932. height: math.unit(5, "meters")
  3933. },
  3934. {
  3935. name: "Macro",
  3936. height: math.unit(1500, "meters"),
  3937. default: true
  3938. },
  3939. {
  3940. name: "Megamacro",
  3941. height: math.unit(200, "km")
  3942. },
  3943. {
  3944. name: "Gigamacro",
  3945. height: math.unit(100000, "km")
  3946. }
  3947. ]
  3948. ))
  3949. characterMakers.push(() => makeCharacter(
  3950. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3951. {
  3952. front: {
  3953. height: math.unit(6, "feet"),
  3954. weight: math.unit(175, "lb"),
  3955. name: "Front",
  3956. image: {
  3957. source: "./media/characters/mirova/front.svg",
  3958. extra: 3334 / 3071,
  3959. bottom: 42 / 3375.6
  3960. }
  3961. }
  3962. },
  3963. [
  3964. {
  3965. name: "Small",
  3966. height: math.unit(5, "meters")
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(900, "meters"),
  3971. default: true
  3972. },
  3973. {
  3974. name: "Megamacro",
  3975. height: math.unit(135, "km")
  3976. },
  3977. {
  3978. name: "Gigamacro",
  3979. height: math.unit(20000, "km")
  3980. }
  3981. ]
  3982. ))
  3983. characterMakers.push(() => makeCharacter(
  3984. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3985. {
  3986. side: {
  3987. height: math.unit(28.35, "feet"),
  3988. weight: math.unit(99.75, "tons"),
  3989. name: "Side",
  3990. image: {
  3991. source: "./media/characters/asana-mech/side.svg",
  3992. extra: 923 / 699,
  3993. bottom: 50 / 975
  3994. }
  3995. },
  3996. chaingun: {
  3997. height: math.unit(7, "feet"),
  3998. weight: math.unit(2400, "lb"),
  3999. name: "Chaingun",
  4000. image: {
  4001. source: "./media/characters/asana-mech/chaingun.svg"
  4002. }
  4003. },
  4004. laser: {
  4005. height: math.unit(7.12, "feet"),
  4006. weight: math.unit(2000, "lb"),
  4007. name: "Laser",
  4008. image: {
  4009. source: "./media/characters/asana-mech/laser.svg"
  4010. }
  4011. },
  4012. },
  4013. [
  4014. {
  4015. name: "Normal",
  4016. height: math.unit(28.35, "feet"),
  4017. default: true
  4018. },
  4019. {
  4020. name: "Macro",
  4021. height: math.unit(2500, "feet")
  4022. },
  4023. {
  4024. name: "Megamacro",
  4025. height: math.unit(25, "miles")
  4026. },
  4027. {
  4028. name: "Examacro",
  4029. height: math.unit(6e8, "lightyears")
  4030. },
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4035. {
  4036. front: {
  4037. height: math.unit(5, "meters"),
  4038. weight: math.unit(1000, "kg"),
  4039. name: "Front",
  4040. image: {
  4041. source: "./media/characters/asche/front.svg",
  4042. extra: 1258 / 1190,
  4043. bottom: 47 / 1305
  4044. }
  4045. },
  4046. frontUnderwear: {
  4047. height: math.unit(5, "meters"),
  4048. weight: math.unit(1000, "kg"),
  4049. name: "Front (Underwear)",
  4050. image: {
  4051. source: "./media/characters/asche/front-underwear.svg",
  4052. extra: 1258 / 1190,
  4053. bottom: 47 / 1305
  4054. }
  4055. },
  4056. frontDressed: {
  4057. height: math.unit(5, "meters"),
  4058. weight: math.unit(1000, "kg"),
  4059. name: "Front (Dressed)",
  4060. image: {
  4061. source: "./media/characters/asche/front-dressed.svg",
  4062. extra: 1258 / 1190,
  4063. bottom: 47 / 1305
  4064. }
  4065. },
  4066. frontArmor: {
  4067. height: math.unit(5, "meters"),
  4068. weight: math.unit(1000, "kg"),
  4069. name: "Front (Armored)",
  4070. image: {
  4071. source: "./media/characters/asche/front-armored.svg",
  4072. extra: 1374 / 1308,
  4073. bottom: 23 / 1397
  4074. }
  4075. },
  4076. mp724: {
  4077. height: math.unit(0.96, "meters"),
  4078. weight: math.unit(38, "kg"),
  4079. name: "H&K MP724",
  4080. image: {
  4081. source: "./media/characters/asche/h&k-mp724.svg"
  4082. }
  4083. },
  4084. side: {
  4085. height: math.unit(5, "meters"),
  4086. weight: math.unit(1000, "kg"),
  4087. name: "Side",
  4088. image: {
  4089. source: "./media/characters/asche/side.svg",
  4090. extra: 1717 / 1609,
  4091. bottom: 0.005
  4092. }
  4093. },
  4094. back: {
  4095. height: math.unit(5, "meters"),
  4096. weight: math.unit(1000, "kg"),
  4097. name: "Back",
  4098. image: {
  4099. source: "./media/characters/asche/back.svg",
  4100. extra: 1570 / 1501
  4101. }
  4102. },
  4103. },
  4104. [
  4105. {
  4106. name: "DEFCON 5",
  4107. height: math.unit(5, "meters")
  4108. },
  4109. {
  4110. name: "DEFCON 4",
  4111. height: math.unit(500, "meters"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "DEFCON 3",
  4116. height: math.unit(5, "km")
  4117. },
  4118. {
  4119. name: "DEFCON 2",
  4120. height: math.unit(500, "km")
  4121. },
  4122. {
  4123. name: "DEFCON 1",
  4124. height: math.unit(500000, "km")
  4125. },
  4126. {
  4127. name: "DEFCON 0",
  4128. height: math.unit(3, "gigaparsecs")
  4129. },
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4134. {
  4135. front: {
  4136. height: math.unit(2, "meters"),
  4137. weight: math.unit(76, "kg"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/gale/front.svg"
  4141. }
  4142. },
  4143. frontAlt1: {
  4144. height: math.unit(2, "meters"),
  4145. weight: math.unit(76, "kg"),
  4146. name: "Front (Alt 1)",
  4147. image: {
  4148. source: "./media/characters/gale/front-alt-1.svg"
  4149. }
  4150. },
  4151. frontAlt2: {
  4152. height: math.unit(2, "meters"),
  4153. weight: math.unit(76, "kg"),
  4154. name: "Front (Alt 2)",
  4155. image: {
  4156. source: "./media/characters/gale/front-alt-2.svg"
  4157. }
  4158. },
  4159. },
  4160. [
  4161. {
  4162. name: "Normal",
  4163. height: math.unit(7, "feet")
  4164. },
  4165. {
  4166. name: "Macro",
  4167. height: math.unit(150, "feet"),
  4168. default: true
  4169. },
  4170. {
  4171. name: "Macro+",
  4172. height: math.unit(300, "feet")
  4173. },
  4174. ]
  4175. ))
  4176. characterMakers.push(() => makeCharacter(
  4177. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4178. {
  4179. front: {
  4180. height: math.unit(2, "meters"),
  4181. weight: math.unit(76, "kg"),
  4182. name: "Front",
  4183. image: {
  4184. source: "./media/characters/draylen/front.svg"
  4185. }
  4186. }
  4187. },
  4188. [
  4189. {
  4190. name: "Macro",
  4191. height: math.unit(150, "feet"),
  4192. default: true
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(7 + 9 / 12, "feet"),
  4201. weight: math.unit(379, "lbs"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/chez/front.svg"
  4205. }
  4206. },
  4207. side: {
  4208. height: math.unit(7 + 9 / 12, "feet"),
  4209. weight: math.unit(379, "lbs"),
  4210. name: "Side",
  4211. image: {
  4212. source: "./media/characters/chez/side.svg"
  4213. }
  4214. }
  4215. },
  4216. [
  4217. {
  4218. name: "Normal",
  4219. height: math.unit(7 + 9 / 12, "feet"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "God King",
  4224. height: math.unit(9750000, "meters")
  4225. }
  4226. ]
  4227. ))
  4228. characterMakers.push(() => makeCharacter(
  4229. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4230. {
  4231. front: {
  4232. height: math.unit(6, "feet"),
  4233. weight: math.unit(275, "lbs"),
  4234. name: "Front",
  4235. image: {
  4236. source: "./media/characters/kaylum/front.svg",
  4237. bottom: 0.01,
  4238. extra: 1166 / 1031
  4239. }
  4240. },
  4241. frontWingless: {
  4242. height: math.unit(6, "feet"),
  4243. weight: math.unit(275, "lbs"),
  4244. name: "Front (Wingless)",
  4245. image: {
  4246. source: "./media/characters/kaylum/front-wingless.svg",
  4247. bottom: 0.01,
  4248. extra: 1117 / 1031
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Normal",
  4255. height: math.unit(3.05, "meters")
  4256. },
  4257. {
  4258. name: "Master",
  4259. height: math.unit(5.5, "meters")
  4260. },
  4261. {
  4262. name: "Rampage",
  4263. height: math.unit(19, "meters")
  4264. },
  4265. {
  4266. name: "Macro Lite",
  4267. height: math.unit(37, "meters")
  4268. },
  4269. {
  4270. name: "Hyper Predator",
  4271. height: math.unit(61, "meters")
  4272. },
  4273. {
  4274. name: "Macro",
  4275. height: math.unit(138, "meters"),
  4276. default: true
  4277. }
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4282. {
  4283. front: {
  4284. height: math.unit(6, "feet"),
  4285. weight: math.unit(150, "lbs"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/geta/front.svg"
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Micro",
  4295. height: math.unit(3, "inches"),
  4296. default: true
  4297. },
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(5 + 5 / 12, "feet")
  4301. }
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(6, "feet"),
  4309. weight: math.unit(300, "lbs"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/tyrnn/front.svg"
  4313. }
  4314. }
  4315. },
  4316. [
  4317. {
  4318. name: "Main Height",
  4319. height: math.unit(355, "feet"),
  4320. default: true
  4321. },
  4322. {
  4323. name: "Fave. Height",
  4324. height: math.unit(2400, "feet")
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4330. {
  4331. front: {
  4332. height: math.unit(6, "feet"),
  4333. weight: math.unit(300, "lbs"),
  4334. name: "Front",
  4335. image: {
  4336. source: "./media/characters/appledectomy/front.svg"
  4337. }
  4338. }
  4339. },
  4340. [
  4341. {
  4342. name: "Macro",
  4343. height: math.unit(2500, "feet")
  4344. },
  4345. {
  4346. name: "Megamacro",
  4347. height: math.unit(50, "miles"),
  4348. default: true
  4349. },
  4350. {
  4351. name: "Gigamacro",
  4352. height: math.unit(5000, "miles")
  4353. },
  4354. {
  4355. name: "Teramacro",
  4356. height: math.unit(250000, "miles")
  4357. },
  4358. ]
  4359. ))
  4360. characterMakers.push(() => makeCharacter(
  4361. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4362. {
  4363. front: {
  4364. height: math.unit(6, "feet"),
  4365. weight: math.unit(200, "lbs"),
  4366. name: "Front",
  4367. image: {
  4368. source: "./media/characters/vulpes/front.svg",
  4369. extra: 573 / 543,
  4370. bottom: 0.033
  4371. }
  4372. },
  4373. side: {
  4374. height: math.unit(6, "feet"),
  4375. weight: math.unit(200, "lbs"),
  4376. name: "Side",
  4377. image: {
  4378. source: "./media/characters/vulpes/side.svg",
  4379. extra: 577 / 549,
  4380. bottom: 11 / 588
  4381. }
  4382. },
  4383. back: {
  4384. height: math.unit(6, "feet"),
  4385. weight: math.unit(200, "lbs"),
  4386. name: "Back",
  4387. image: {
  4388. source: "./media/characters/vulpes/back.svg",
  4389. extra: 573 / 549,
  4390. bottom: 20 / 593
  4391. }
  4392. },
  4393. feet: {
  4394. height: math.unit(1.276, "feet"),
  4395. name: "Feet",
  4396. image: {
  4397. source: "./media/characters/vulpes/feet.svg"
  4398. }
  4399. },
  4400. maw: {
  4401. height: math.unit(1.18, "feet"),
  4402. name: "Maw",
  4403. image: {
  4404. source: "./media/characters/vulpes/maw.svg"
  4405. }
  4406. },
  4407. },
  4408. [
  4409. {
  4410. name: "Micro",
  4411. height: math.unit(2, "inches")
  4412. },
  4413. {
  4414. name: "Normal",
  4415. height: math.unit(6.3, "feet")
  4416. },
  4417. {
  4418. name: "Macro",
  4419. height: math.unit(850, "feet")
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(7500, "feet"),
  4424. default: true
  4425. },
  4426. {
  4427. name: "Gigamacro",
  4428. height: math.unit(570000, "miles")
  4429. }
  4430. ]
  4431. ))
  4432. characterMakers.push(() => makeCharacter(
  4433. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4434. {
  4435. front: {
  4436. height: math.unit(6, "feet"),
  4437. weight: math.unit(210, "lbs"),
  4438. name: "Front",
  4439. image: {
  4440. source: "./media/characters/rain-fallen/front.svg"
  4441. }
  4442. },
  4443. side: {
  4444. height: math.unit(6, "feet"),
  4445. weight: math.unit(210, "lbs"),
  4446. name: "Side",
  4447. image: {
  4448. source: "./media/characters/rain-fallen/side.svg"
  4449. }
  4450. },
  4451. back: {
  4452. height: math.unit(6, "feet"),
  4453. weight: math.unit(210, "lbs"),
  4454. name: "Back",
  4455. image: {
  4456. source: "./media/characters/rain-fallen/back.svg"
  4457. }
  4458. },
  4459. feral: {
  4460. height: math.unit(9, "feet"),
  4461. weight: math.unit(700, "lbs"),
  4462. name: "Feral",
  4463. image: {
  4464. source: "./media/characters/rain-fallen/feral.svg"
  4465. }
  4466. },
  4467. },
  4468. [
  4469. {
  4470. name: "Meddling with Mortals",
  4471. height: math.unit(8 + 8/12, "feet")
  4472. },
  4473. {
  4474. name: "Normal",
  4475. height: math.unit(5, "meter")
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(150, "meter"),
  4480. default: true
  4481. },
  4482. {
  4483. name: "Megamacro",
  4484. height: math.unit(278e6, "meter")
  4485. },
  4486. {
  4487. name: "Gigamacro",
  4488. height: math.unit(2e9, "meter")
  4489. },
  4490. {
  4491. name: "Teramacro",
  4492. height: math.unit(8e12, "meter")
  4493. },
  4494. {
  4495. name: "Devourer",
  4496. height: math.unit(14, "zettameters")
  4497. },
  4498. {
  4499. name: "Scarlet King",
  4500. height: math.unit(18, "yottameters")
  4501. },
  4502. {
  4503. name: "Void",
  4504. height: math.unit(1e88, "yottameters")
  4505. }
  4506. ]
  4507. ))
  4508. characterMakers.push(() => makeCharacter(
  4509. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4510. {
  4511. standing: {
  4512. height: math.unit(6, "feet"),
  4513. weight: math.unit(180, "lbs"),
  4514. name: "Standing",
  4515. image: {
  4516. source: "./media/characters/zaakira/standing.svg"
  4517. }
  4518. },
  4519. laying: {
  4520. height: math.unit(3, "feet"),
  4521. weight: math.unit(180, "lbs"),
  4522. name: "Laying",
  4523. image: {
  4524. source: "./media/characters/zaakira/laying.svg"
  4525. }
  4526. },
  4527. },
  4528. [
  4529. {
  4530. name: "Normal",
  4531. height: math.unit(12, "feet")
  4532. },
  4533. {
  4534. name: "Macro",
  4535. height: math.unit(279, "feet"),
  4536. default: true
  4537. }
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4542. {
  4543. femSfw: {
  4544. height: math.unit(8, "feet"),
  4545. weight: math.unit(350, "lb"),
  4546. name: "Fem",
  4547. image: {
  4548. source: "./media/characters/sigvald/fem-sfw.svg",
  4549. extra: 182 / 164,
  4550. bottom: 8.7 / 190.5
  4551. }
  4552. },
  4553. femNsfw: {
  4554. height: math.unit(8, "feet"),
  4555. weight: math.unit(350, "lb"),
  4556. name: "Fem (NSFW)",
  4557. image: {
  4558. source: "./media/characters/sigvald/fem-nsfw.svg",
  4559. extra: 182 / 164,
  4560. bottom: 8.7 / 190.5
  4561. }
  4562. },
  4563. maleNsfw: {
  4564. height: math.unit(8, "feet"),
  4565. weight: math.unit(350, "lb"),
  4566. name: "Male (NSFW)",
  4567. image: {
  4568. source: "./media/characters/sigvald/male-nsfw.svg",
  4569. extra: 182 / 164,
  4570. bottom: 8.7 / 190.5
  4571. }
  4572. },
  4573. hermNsfw: {
  4574. height: math.unit(8, "feet"),
  4575. weight: math.unit(350, "lb"),
  4576. name: "Herm (NSFW)",
  4577. image: {
  4578. source: "./media/characters/sigvald/herm-nsfw.svg",
  4579. extra: 182 / 164,
  4580. bottom: 8.7 / 190.5
  4581. }
  4582. },
  4583. dick: {
  4584. height: math.unit(2.36, "feet"),
  4585. name: "Dick",
  4586. image: {
  4587. source: "./media/characters/sigvald/dick.svg"
  4588. }
  4589. },
  4590. eye: {
  4591. height: math.unit(0.31, "feet"),
  4592. name: "Eye",
  4593. image: {
  4594. source: "./media/characters/sigvald/eye.svg"
  4595. }
  4596. },
  4597. mouth: {
  4598. height: math.unit(0.92, "feet"),
  4599. name: "Mouth",
  4600. image: {
  4601. source: "./media/characters/sigvald/mouth.svg"
  4602. }
  4603. },
  4604. paws: {
  4605. height: math.unit(2.2, "feet"),
  4606. name: "Paws",
  4607. image: {
  4608. source: "./media/characters/sigvald/paws.svg"
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(8, "feet")
  4616. },
  4617. {
  4618. name: "Large",
  4619. height: math.unit(12, "feet")
  4620. },
  4621. {
  4622. name: "Larger",
  4623. height: math.unit(20, "feet")
  4624. },
  4625. {
  4626. name: "Macro",
  4627. height: math.unit(150, "feet")
  4628. },
  4629. {
  4630. name: "Macro+",
  4631. height: math.unit(200, "feet"),
  4632. default: true
  4633. },
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4638. {
  4639. side: {
  4640. height: math.unit(12, "feet"),
  4641. weight: math.unit(2000, "kg"),
  4642. name: "Side",
  4643. image: {
  4644. source: "./media/characters/scott/side.svg",
  4645. extra: 754 / 724,
  4646. bottom: 0.069
  4647. }
  4648. },
  4649. upright: {
  4650. height: math.unit(12, "feet"),
  4651. weight: math.unit(2000, "kg"),
  4652. name: "Upright",
  4653. image: {
  4654. source: "./media/characters/scott/upright.svg",
  4655. extra: 3881 / 3722,
  4656. bottom: 0.05
  4657. }
  4658. },
  4659. },
  4660. [
  4661. {
  4662. name: "Normal",
  4663. height: math.unit(12, "feet"),
  4664. default: true
  4665. },
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4670. {
  4671. side: {
  4672. height: math.unit(8, "meters"),
  4673. weight: math.unit(84755, "lbs"),
  4674. name: "Side",
  4675. image: {
  4676. source: "./media/characters/tobias/side.svg",
  4677. extra: 1474 / 1096,
  4678. bottom: 38.9 / 1513.1235
  4679. }
  4680. },
  4681. },
  4682. [
  4683. {
  4684. name: "Normal",
  4685. height: math.unit(8, "meters"),
  4686. default: true
  4687. },
  4688. ]
  4689. ))
  4690. characterMakers.push(() => makeCharacter(
  4691. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4692. {
  4693. front: {
  4694. height: math.unit(5.5, "feet"),
  4695. weight: math.unit(400, "lbs"),
  4696. name: "Front",
  4697. image: {
  4698. source: "./media/characters/kieran/front.svg",
  4699. extra: 2694 / 2364,
  4700. bottom: 217 / 2908
  4701. }
  4702. },
  4703. side: {
  4704. height: math.unit(5.5, "feet"),
  4705. weight: math.unit(400, "lbs"),
  4706. name: "Side",
  4707. image: {
  4708. source: "./media/characters/kieran/side.svg",
  4709. extra: 875 / 777,
  4710. bottom: 84.6 / 959
  4711. }
  4712. },
  4713. },
  4714. [
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(5.5, "feet"),
  4718. default: true
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4724. {
  4725. side: {
  4726. height: math.unit(2, "meters"),
  4727. weight: math.unit(70, "kg"),
  4728. name: "Side",
  4729. image: {
  4730. source: "./media/characters/sanya/side.svg",
  4731. bottom: 0.02,
  4732. extra: 1.02
  4733. }
  4734. },
  4735. },
  4736. [
  4737. {
  4738. name: "Small",
  4739. height: math.unit(2, "meters")
  4740. },
  4741. {
  4742. name: "Normal",
  4743. height: math.unit(3, "meters")
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(16, "meters"),
  4748. default: true
  4749. },
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(2, "meters"),
  4757. weight: math.unit(120, "kg"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/miranda/front.svg",
  4761. extra: 195 / 185,
  4762. bottom: 10.9 / 206.5
  4763. }
  4764. },
  4765. back: {
  4766. height: math.unit(2, "meters"),
  4767. weight: math.unit(120, "kg"),
  4768. name: "Back",
  4769. image: {
  4770. source: "./media/characters/miranda/back.svg",
  4771. extra: 201 / 193,
  4772. bottom: 2.3 / 203.7
  4773. }
  4774. },
  4775. },
  4776. [
  4777. {
  4778. name: "Normal",
  4779. height: math.unit(10, "feet"),
  4780. default: true
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "James", species: ["deer"], tags: ["anthro"] },
  4786. {
  4787. side: {
  4788. height: math.unit(2, "meters"),
  4789. weight: math.unit(100, "kg"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/james/front.svg",
  4793. extra: 10 / 8.5
  4794. }
  4795. },
  4796. },
  4797. [
  4798. {
  4799. name: "Normal",
  4800. height: math.unit(8.5, "feet"),
  4801. default: true
  4802. }
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4807. {
  4808. side: {
  4809. height: math.unit(9.5, "feet"),
  4810. weight: math.unit(2500, "lbs"),
  4811. name: "Side",
  4812. image: {
  4813. source: "./media/characters/heather/side.svg"
  4814. }
  4815. },
  4816. },
  4817. [
  4818. {
  4819. name: "Normal",
  4820. height: math.unit(9.5, "feet"),
  4821. default: true
  4822. }
  4823. ]
  4824. ))
  4825. characterMakers.push(() => makeCharacter(
  4826. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4827. {
  4828. side: {
  4829. height: math.unit(6.5, "feet"),
  4830. weight: math.unit(400, "lbs"),
  4831. name: "Side",
  4832. image: {
  4833. source: "./media/characters/lukas/side.svg",
  4834. extra: 7.25 / 6.5
  4835. }
  4836. },
  4837. },
  4838. [
  4839. {
  4840. name: "Normal",
  4841. height: math.unit(6.5, "feet"),
  4842. default: true
  4843. }
  4844. ]
  4845. ))
  4846. characterMakers.push(() => makeCharacter(
  4847. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4848. {
  4849. side: {
  4850. height: math.unit(5, "feet"),
  4851. weight: math.unit(3000, "lbs"),
  4852. name: "Side",
  4853. image: {
  4854. source: "./media/characters/louise/side.svg"
  4855. }
  4856. },
  4857. },
  4858. [
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(5, "feet"),
  4862. default: true
  4863. }
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4868. {
  4869. side: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(150, "lbs"),
  4872. name: "Side",
  4873. image: {
  4874. source: "./media/characters/ramona/side.svg"
  4875. }
  4876. },
  4877. },
  4878. [
  4879. {
  4880. name: "Normal",
  4881. height: math.unit(5.3, "meters"),
  4882. default: true
  4883. },
  4884. {
  4885. name: "Macro",
  4886. height: math.unit(20, "stories")
  4887. },
  4888. {
  4889. name: "Macro+",
  4890. height: math.unit(50, "stories")
  4891. },
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4896. {
  4897. standing: {
  4898. height: math.unit(5.75, "feet"),
  4899. weight: math.unit(160, "lbs"),
  4900. name: "Standing",
  4901. image: {
  4902. source: "./media/characters/deerpuff/standing.svg",
  4903. extra: 682 / 624
  4904. }
  4905. },
  4906. sitting: {
  4907. height: math.unit(5.75 / 1.79, "feet"),
  4908. weight: math.unit(160, "lbs"),
  4909. name: "Sitting",
  4910. image: {
  4911. source: "./media/characters/deerpuff/sitting.svg",
  4912. bottom: 44 / 400,
  4913. extra: 1
  4914. }
  4915. },
  4916. taurLaying: {
  4917. height: math.unit(6, "feet"),
  4918. weight: math.unit(400, "lbs"),
  4919. name: "Taur (Laying)",
  4920. image: {
  4921. source: "./media/characters/deerpuff/taur-laying.svg"
  4922. }
  4923. },
  4924. },
  4925. [
  4926. {
  4927. name: "Puffball",
  4928. height: math.unit(6, "inches")
  4929. },
  4930. {
  4931. name: "Normalpuff",
  4932. height: math.unit(5.75, "feet")
  4933. },
  4934. {
  4935. name: "Macropuff",
  4936. height: math.unit(1500, "feet"),
  4937. default: true
  4938. },
  4939. {
  4940. name: "Megapuff",
  4941. height: math.unit(500, "miles")
  4942. },
  4943. {
  4944. name: "Gigapuff",
  4945. height: math.unit(250000, "miles")
  4946. },
  4947. {
  4948. name: "Omegapuff",
  4949. height: math.unit(1000, "lightyears")
  4950. },
  4951. ]
  4952. ))
  4953. characterMakers.push(() => makeCharacter(
  4954. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4955. {
  4956. stomping: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(170, "lbs"),
  4959. name: "Stomping",
  4960. image: {
  4961. source: "./media/characters/vivian/stomping.svg"
  4962. }
  4963. },
  4964. sitting: {
  4965. height: math.unit(6 / 1.75, "feet"),
  4966. weight: math.unit(170, "lbs"),
  4967. name: "Sitting",
  4968. image: {
  4969. source: "./media/characters/vivian/sitting.svg",
  4970. bottom: 1 / 6.4,
  4971. extra: 1,
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(7, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Macro",
  4983. height: math.unit(10, "stories")
  4984. },
  4985. {
  4986. name: "Macro+",
  4987. height: math.unit(30, "stories")
  4988. },
  4989. {
  4990. name: "Megamacro",
  4991. height: math.unit(10, "miles")
  4992. },
  4993. {
  4994. name: "Megamacro+",
  4995. height: math.unit(2750000, "meters")
  4996. },
  4997. ]
  4998. ))
  4999. characterMakers.push(() => makeCharacter(
  5000. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5001. {
  5002. front: {
  5003. height: math.unit(6, "feet"),
  5004. weight: math.unit(160, "lbs"),
  5005. name: "Front",
  5006. image: {
  5007. source: "./media/characters/prince/front.svg",
  5008. extra: 3400 / 3000
  5009. }
  5010. },
  5011. jumping: {
  5012. height: math.unit(6, "feet"),
  5013. weight: math.unit(160, "lbs"),
  5014. name: "Jumping",
  5015. image: {
  5016. source: "./media/characters/prince/jump.svg",
  5017. extra: 2555 / 2134
  5018. }
  5019. },
  5020. },
  5021. [
  5022. {
  5023. name: "Normal",
  5024. height: math.unit(7.75, "feet"),
  5025. default: true
  5026. },
  5027. {
  5028. name: "Not cute",
  5029. height: math.unit(17, "feet")
  5030. },
  5031. {
  5032. name: "I said NOT",
  5033. height: math.unit(91, "feet")
  5034. },
  5035. {
  5036. name: "Please stop",
  5037. height: math.unit(560, "feet")
  5038. },
  5039. {
  5040. name: "What have you done",
  5041. height: math.unit(2200, "feet")
  5042. },
  5043. {
  5044. name: "Deer God",
  5045. height: math.unit(3.6, "miles")
  5046. },
  5047. ]
  5048. ))
  5049. characterMakers.push(() => makeCharacter(
  5050. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5051. {
  5052. standing: {
  5053. height: math.unit(6, "feet"),
  5054. weight: math.unit(300, "lbs"),
  5055. name: "Standing",
  5056. image: {
  5057. source: "./media/characters/psymon/standing.svg",
  5058. extra: 1888 / 1810,
  5059. bottom: 0.05
  5060. }
  5061. },
  5062. slithering: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(300, "lbs"),
  5065. name: "Slithering",
  5066. image: {
  5067. source: "./media/characters/psymon/slithering.svg",
  5068. extra: 1330 / 1224
  5069. }
  5070. },
  5071. slitheringAlt: {
  5072. height: math.unit(6, "feet"),
  5073. weight: math.unit(300, "lbs"),
  5074. name: "Slithering (Alt)",
  5075. image: {
  5076. source: "./media/characters/psymon/slithering-alt.svg",
  5077. extra: 1330 / 1224
  5078. }
  5079. },
  5080. },
  5081. [
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(11.25, "feet"),
  5085. default: true
  5086. },
  5087. {
  5088. name: "Large",
  5089. height: math.unit(27, "feet")
  5090. },
  5091. {
  5092. name: "Giant",
  5093. height: math.unit(87, "feet")
  5094. },
  5095. {
  5096. name: "Macro",
  5097. height: math.unit(365, "feet")
  5098. },
  5099. {
  5100. name: "Megamacro",
  5101. height: math.unit(3, "miles")
  5102. },
  5103. {
  5104. name: "World Serpent",
  5105. height: math.unit(8000, "miles")
  5106. },
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(6, "feet"),
  5114. weight: math.unit(180, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/daimos/front.svg",
  5118. extra: 4160 / 3897,
  5119. bottom: 0.021
  5120. }
  5121. }
  5122. },
  5123. [
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(8, "feet"),
  5127. default: true
  5128. },
  5129. {
  5130. name: "Big Dog",
  5131. height: math.unit(22, "feet")
  5132. },
  5133. {
  5134. name: "Macro",
  5135. height: math.unit(127, "feet")
  5136. },
  5137. {
  5138. name: "Megamacro",
  5139. height: math.unit(3600, "feet")
  5140. },
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5145. {
  5146. side: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(180, "lbs"),
  5149. name: "Side",
  5150. image: {
  5151. source: "./media/characters/blake/side.svg",
  5152. extra: 1212 / 1120,
  5153. bottom: 0.05
  5154. }
  5155. },
  5156. crouched: {
  5157. height: math.unit(6 * 0.57, "feet"),
  5158. weight: math.unit(180, "lbs"),
  5159. name: "Crouched",
  5160. image: {
  5161. source: "./media/characters/blake/crouched.svg",
  5162. extra: 840 / 587,
  5163. bottom: 0.04
  5164. }
  5165. },
  5166. bent: {
  5167. height: math.unit(6 * 0.75, "feet"),
  5168. weight: math.unit(180, "lbs"),
  5169. name: "Bent",
  5170. image: {
  5171. source: "./media/characters/blake/bent.svg",
  5172. extra: 592 / 544,
  5173. bottom: 0.035
  5174. }
  5175. },
  5176. },
  5177. [
  5178. {
  5179. name: "Normal",
  5180. height: math.unit(8 + 1 / 6, "feet"),
  5181. default: true
  5182. },
  5183. {
  5184. name: "Big Backside",
  5185. height: math.unit(37, "feet")
  5186. },
  5187. {
  5188. name: "Subway Shredder",
  5189. height: math.unit(72, "feet")
  5190. },
  5191. {
  5192. name: "City Carver",
  5193. height: math.unit(1675, "feet")
  5194. },
  5195. {
  5196. name: "Tectonic Tweaker",
  5197. height: math.unit(2300, "miles")
  5198. },
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5203. {
  5204. front: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(180, "lbs"),
  5207. name: "Front",
  5208. image: {
  5209. source: "./media/characters/guisetto/front.svg",
  5210. extra: 856 / 817,
  5211. bottom: 0.06
  5212. }
  5213. },
  5214. airborne: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(180, "lbs"),
  5217. name: "Airborne",
  5218. image: {
  5219. source: "./media/characters/guisetto/airborne.svg",
  5220. extra: 584 / 525
  5221. }
  5222. },
  5223. },
  5224. [
  5225. {
  5226. name: "Normal",
  5227. height: math.unit(10 + 11 / 12, "feet"),
  5228. default: true
  5229. },
  5230. {
  5231. name: "Large",
  5232. height: math.unit(35, "feet")
  5233. },
  5234. {
  5235. name: "Macro",
  5236. height: math.unit(475, "feet")
  5237. },
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5242. {
  5243. front: {
  5244. height: math.unit(6, "feet"),
  5245. weight: math.unit(180, "lbs"),
  5246. name: "Front",
  5247. image: {
  5248. source: "./media/characters/luxor/front.svg",
  5249. extra: 2940 / 2152
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(6, "feet"),
  5254. weight: math.unit(180, "lbs"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/luxor/back.svg",
  5258. extra: 1083 / 960
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(5 + 5 / 6, "feet"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Lamp",
  5270. height: math.unit(50, "feet")
  5271. },
  5272. {
  5273. name: "Lämp",
  5274. height: math.unit(300, "feet")
  5275. },
  5276. {
  5277. name: "The sun is a lamp",
  5278. height: math.unit(250000, "miles")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(50, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/huoyan/front.svg"
  5291. }
  5292. },
  5293. side: {
  5294. height: math.unit(6, "feet"),
  5295. weight: math.unit(180, "lbs"),
  5296. name: "Side",
  5297. image: {
  5298. source: "./media/characters/huoyan/side.svg"
  5299. }
  5300. },
  5301. },
  5302. [
  5303. {
  5304. name: "Chef",
  5305. height: math.unit(9, "feet")
  5306. },
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(65, "feet"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(780, "feet")
  5315. },
  5316. {
  5317. name: "Flaming Mountain",
  5318. height: math.unit(4.8, "miles")
  5319. },
  5320. {
  5321. name: "Celestial",
  5322. height: math.unit(765000, "miles")
  5323. },
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(5 + 3 / 4, "feet"),
  5331. weight: math.unit(120, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/tails/front.svg"
  5335. }
  5336. }
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(5 + 3 / 4, "feet"),
  5342. default: true
  5343. }
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5348. {
  5349. front: {
  5350. height: math.unit(4, "feet"),
  5351. weight: math.unit(50, "lbs"),
  5352. name: "Front",
  5353. image: {
  5354. source: "./media/characters/rainy/front.svg"
  5355. }
  5356. }
  5357. },
  5358. [
  5359. {
  5360. name: "Macro",
  5361. height: math.unit(800, "feet"),
  5362. default: true
  5363. }
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5368. {
  5369. front: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(150, "lbs"),
  5372. name: "Front",
  5373. image: {
  5374. source: "./media/characters/rainier/front.svg"
  5375. }
  5376. }
  5377. },
  5378. [
  5379. {
  5380. name: "Micro",
  5381. height: math.unit(2, "mm"),
  5382. default: true
  5383. }
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5388. {
  5389. front: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(180, "lbs"),
  5392. name: "Front",
  5393. image: {
  5394. source: "./media/characters/andy/front.svg"
  5395. }
  5396. }
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(8, "feet"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Macro",
  5406. height: math.unit(1000, "feet")
  5407. },
  5408. {
  5409. name: "Megamacro",
  5410. height: math.unit(5, "miles")
  5411. },
  5412. {
  5413. name: "Gigamacro",
  5414. height: math.unit(5000, "miles")
  5415. },
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5420. {
  5421. front: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(210, "lbs"),
  5424. name: "Front",
  5425. image: {
  5426. source: "./media/characters/cimmaron/front-sfw.svg",
  5427. extra: 701 / 676,
  5428. bottom: 0.046
  5429. }
  5430. },
  5431. back: {
  5432. height: math.unit(6, "feet"),
  5433. weight: math.unit(210, "lbs"),
  5434. name: "Back",
  5435. image: {
  5436. source: "./media/characters/cimmaron/back-sfw.svg",
  5437. extra: 701 / 676,
  5438. bottom: 0.046
  5439. }
  5440. },
  5441. frontNsfw: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(210, "lbs"),
  5444. name: "Front (NSFW)",
  5445. image: {
  5446. source: "./media/characters/cimmaron/front-nsfw.svg",
  5447. extra: 701 / 676,
  5448. bottom: 0.046
  5449. }
  5450. },
  5451. backNsfw: {
  5452. height: math.unit(6, "feet"),
  5453. weight: math.unit(210, "lbs"),
  5454. name: "Back (NSFW)",
  5455. image: {
  5456. source: "./media/characters/cimmaron/back-nsfw.svg",
  5457. extra: 701 / 676,
  5458. bottom: 0.046
  5459. }
  5460. },
  5461. dick: {
  5462. height: math.unit(1.714, "feet"),
  5463. name: "Dick",
  5464. image: {
  5465. source: "./media/characters/cimmaron/dick.svg"
  5466. }
  5467. },
  5468. },
  5469. [
  5470. {
  5471. name: "Normal",
  5472. height: math.unit(6, "feet"),
  5473. default: true
  5474. },
  5475. {
  5476. name: "Macro Mayor",
  5477. height: math.unit(350, "meters")
  5478. },
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5483. {
  5484. front: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(200, "lbs"),
  5487. name: "Front",
  5488. image: {
  5489. source: "./media/characters/akari/front.svg",
  5490. extra: 962 / 901,
  5491. bottom: 0.04
  5492. }
  5493. }
  5494. },
  5495. [
  5496. {
  5497. name: "Micro",
  5498. height: math.unit(5, "inches"),
  5499. default: true
  5500. },
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(7, "feet")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(6, "feet"),
  5512. weight: math.unit(140, "lbs"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/cynosura/front.svg",
  5516. extra: 896 / 847
  5517. }
  5518. },
  5519. back: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(140, "lbs"),
  5522. name: "Back",
  5523. image: {
  5524. source: "./media/characters/cynosura/back.svg",
  5525. extra: 1365 / 1250
  5526. }
  5527. },
  5528. },
  5529. [
  5530. {
  5531. name: "Micro",
  5532. height: math.unit(4, "inches")
  5533. },
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(5.75, "feet"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Tall",
  5541. height: math.unit(10, "feet")
  5542. },
  5543. {
  5544. name: "Big",
  5545. height: math.unit(20, "feet")
  5546. },
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(50, "feet")
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(170, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/gin/front.svg",
  5562. extra: 1.053,
  5563. bottom: 0.025
  5564. }
  5565. },
  5566. foot: {
  5567. height: math.unit(6 / 4.25, "feet"),
  5568. name: "Foot",
  5569. image: {
  5570. source: "./media/characters/gin/foot.svg"
  5571. }
  5572. },
  5573. sole: {
  5574. height: math.unit(6 / 4.40, "feet"),
  5575. name: "Sole",
  5576. image: {
  5577. source: "./media/characters/gin/sole.svg"
  5578. }
  5579. },
  5580. },
  5581. [
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(13 + 2 / 12, "feet")
  5585. },
  5586. {
  5587. name: "Macro",
  5588. height: math.unit(1500, "feet")
  5589. },
  5590. {
  5591. name: "Megamacro",
  5592. height: math.unit(200, "miles"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Gigamacro",
  5597. height: math.unit(500, "megameters")
  5598. },
  5599. {
  5600. name: "Teramacro",
  5601. height: math.unit(15, "lightyears")
  5602. }
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6 + 1 / 6, "feet"),
  5610. weight: math.unit(178, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/guy/front.svg"
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(6 + 1 / 6, "feet"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "Large",
  5625. height: math.unit(25 + 7 / 12, "feet")
  5626. },
  5627. {
  5628. name: "Macro",
  5629. height: math.unit(60 + 9 / 12, "feet")
  5630. },
  5631. {
  5632. name: "Macro+",
  5633. height: math.unit(246, "feet")
  5634. },
  5635. {
  5636. name: "Macro++",
  5637. height: math.unit(878, "feet")
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(9, "feet"),
  5646. weight: math.unit(800, "lbs"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/tiberius/front.svg",
  5650. extra: 2295 / 2071
  5651. }
  5652. },
  5653. back: {
  5654. height: math.unit(9, "feet"),
  5655. weight: math.unit(800, "lbs"),
  5656. name: "Back",
  5657. image: {
  5658. source: "./media/characters/tiberius/back.svg",
  5659. extra: 2373 / 2160
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Normal",
  5666. height: math.unit(9, "feet"),
  5667. default: true
  5668. }
  5669. ]
  5670. ))
  5671. characterMakers.push(() => makeCharacter(
  5672. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5673. {
  5674. front: {
  5675. height: math.unit(6, "feet"),
  5676. weight: math.unit(600, "lbs"),
  5677. name: "Front",
  5678. image: {
  5679. source: "./media/characters/surgo/front.svg",
  5680. extra: 3591 / 2227
  5681. }
  5682. },
  5683. back: {
  5684. height: math.unit(6, "feet"),
  5685. weight: math.unit(600, "lbs"),
  5686. name: "Back",
  5687. image: {
  5688. source: "./media/characters/surgo/back.svg",
  5689. extra: 3557 / 2228
  5690. }
  5691. },
  5692. laying: {
  5693. height: math.unit(6 * 0.85, "feet"),
  5694. weight: math.unit(600, "lbs"),
  5695. name: "Laying",
  5696. image: {
  5697. source: "./media/characters/surgo/laying.svg"
  5698. }
  5699. },
  5700. },
  5701. [
  5702. {
  5703. name: "Normal",
  5704. height: math.unit(6, "feet"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5711. {
  5712. side: {
  5713. height: math.unit(6, "feet"),
  5714. weight: math.unit(150, "lbs"),
  5715. name: "Side",
  5716. image: {
  5717. source: "./media/characters/cibus/side.svg",
  5718. extra: 800 / 400
  5719. }
  5720. },
  5721. },
  5722. [
  5723. {
  5724. name: "Normal",
  5725. height: math.unit(6, "feet"),
  5726. default: true
  5727. }
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5732. {
  5733. front: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(240, "lbs"),
  5736. name: "Front",
  5737. image: {
  5738. source: "./media/characters/nibbles/front.svg"
  5739. }
  5740. },
  5741. side: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(240, "lbs"),
  5744. name: "Side",
  5745. image: {
  5746. source: "./media/characters/nibbles/side.svg"
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(9, "feet"),
  5754. default: true
  5755. }
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5760. {
  5761. side: {
  5762. height: math.unit(5 + 1 / 6, "feet"),
  5763. weight: math.unit(130, "lbs"),
  5764. name: "Side",
  5765. image: {
  5766. source: "./media/characters/rikky/side.svg",
  5767. extra: 851 / 801
  5768. }
  5769. },
  5770. },
  5771. [
  5772. {
  5773. name: "Normal",
  5774. height: math.unit(5 + 1 / 6, "feet")
  5775. },
  5776. {
  5777. name: "Macro",
  5778. height: math.unit(152, "feet"),
  5779. default: true
  5780. },
  5781. {
  5782. name: "Megamacro",
  5783. height: math.unit(7, "miles")
  5784. }
  5785. ]
  5786. ))
  5787. characterMakers.push(() => makeCharacter(
  5788. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5789. {
  5790. side: {
  5791. height: math.unit(370, "cm"),
  5792. weight: math.unit(350, "lbs"),
  5793. name: "Side",
  5794. image: {
  5795. source: "./media/characters/malfressa/side.svg"
  5796. }
  5797. },
  5798. walking: {
  5799. height: math.unit(370, "cm"),
  5800. weight: math.unit(350, "lbs"),
  5801. name: "Walking",
  5802. image: {
  5803. source: "./media/characters/malfressa/walking.svg"
  5804. }
  5805. },
  5806. feral: {
  5807. height: math.unit(2500, "cm"),
  5808. weight: math.unit(100000, "lbs"),
  5809. name: "Feral",
  5810. image: {
  5811. source: "./media/characters/malfressa/feral.svg",
  5812. extra: 2108 / 837,
  5813. bottom: 0.02
  5814. }
  5815. },
  5816. },
  5817. [
  5818. {
  5819. name: "Normal",
  5820. height: math.unit(370, "cm")
  5821. },
  5822. {
  5823. name: "Macro",
  5824. height: math.unit(300, "meters"),
  5825. default: true
  5826. }
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(60, "kg"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/jaro/front.svg"
  5838. }
  5839. },
  5840. back: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(60, "kg"),
  5843. name: "Back",
  5844. image: {
  5845. source: "./media/characters/jaro/back.svg"
  5846. }
  5847. },
  5848. },
  5849. [
  5850. {
  5851. name: "Micro",
  5852. height: math.unit(7, "inches")
  5853. },
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(5.5, "feet"),
  5857. default: true
  5858. },
  5859. {
  5860. name: "Minimacro",
  5861. height: math.unit(20, "feet")
  5862. },
  5863. {
  5864. name: "Macro",
  5865. height: math.unit(200, "meters")
  5866. }
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5871. {
  5872. front: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(195, "lb"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/rogue/front.svg"
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Macro",
  5884. height: math.unit(90, "feet"),
  5885. default: true
  5886. },
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5891. {
  5892. front: {
  5893. height: math.unit(5 + 8 / 12, "feet"),
  5894. weight: math.unit(140, "lb"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/piper/front.svg",
  5898. extra: 3948/3655,
  5899. bottom: 0/3948
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Micro",
  5906. height: math.unit(2, "inches")
  5907. },
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(5 + 8 / 12, "feet")
  5911. },
  5912. {
  5913. name: "Macro",
  5914. height: math.unit(250, "feet"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Megamacro",
  5919. height: math.unit(7, "miles")
  5920. },
  5921. ]
  5922. ))
  5923. characterMakers.push(() => makeCharacter(
  5924. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5925. {
  5926. front: {
  5927. height: math.unit(6, "feet"),
  5928. weight: math.unit(220, "lb"),
  5929. name: "Front",
  5930. image: {
  5931. source: "./media/characters/gemini/front.svg"
  5932. }
  5933. },
  5934. back: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(220, "lb"),
  5937. name: "Back",
  5938. image: {
  5939. source: "./media/characters/gemini/back.svg"
  5940. }
  5941. },
  5942. kneeling: {
  5943. height: math.unit(6 / 1.5, "feet"),
  5944. weight: math.unit(220, "lb"),
  5945. name: "Kneeling",
  5946. image: {
  5947. source: "./media/characters/gemini/kneeling.svg",
  5948. bottom: 0.02
  5949. }
  5950. },
  5951. },
  5952. [
  5953. {
  5954. name: "Macro",
  5955. height: math.unit(300, "meters"),
  5956. default: true
  5957. },
  5958. {
  5959. name: "Megamacro",
  5960. height: math.unit(6900, "meters")
  5961. },
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5966. {
  5967. anthro: {
  5968. height: math.unit(2.35, "meters"),
  5969. weight: math.unit(73, "kg"),
  5970. name: "Anthro",
  5971. image: {
  5972. source: "./media/characters/alicia/anthro.svg",
  5973. extra: 2571 / 2385,
  5974. bottom: 75 / 2648
  5975. }
  5976. },
  5977. paw: {
  5978. height: math.unit(1.32, "feet"),
  5979. name: "Paw",
  5980. image: {
  5981. source: "./media/characters/alicia/paw.svg"
  5982. }
  5983. },
  5984. feral: {
  5985. height: math.unit(1.69, "meters"),
  5986. weight: math.unit(73, "kg"),
  5987. name: "Feral",
  5988. image: {
  5989. source: "./media/characters/alicia/feral.svg",
  5990. extra: 2123 / 1715,
  5991. bottom: 222 / 2349
  5992. }
  5993. },
  5994. },
  5995. [
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(2.35, "meters")
  5999. },
  6000. {
  6001. name: "Macro",
  6002. height: math.unit(60, "meters"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Megamacro",
  6007. height: math.unit(10000, "kilometers")
  6008. },
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6013. {
  6014. front: {
  6015. height: math.unit(7, "feet"),
  6016. weight: math.unit(250, "lbs"),
  6017. name: "Front",
  6018. image: {
  6019. source: "./media/characters/archy/front.svg"
  6020. }
  6021. }
  6022. },
  6023. [
  6024. {
  6025. name: "Micro",
  6026. height: math.unit(1, "inch")
  6027. },
  6028. {
  6029. name: "Shorty",
  6030. height: math.unit(5, "feet")
  6031. },
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(7, "feet")
  6035. },
  6036. {
  6037. name: "Macro",
  6038. height: math.unit(600, "meters"),
  6039. default: true
  6040. },
  6041. {
  6042. name: "Megamacro",
  6043. height: math.unit(1, "mile")
  6044. },
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6049. {
  6050. front: {
  6051. height: math.unit(1.65, "meters"),
  6052. weight: math.unit(74, "kg"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/berri/front.svg",
  6056. extra: 857 / 837,
  6057. bottom: 18 / 877
  6058. }
  6059. },
  6060. bum: {
  6061. height: math.unit(1.46, "feet"),
  6062. name: "Bum",
  6063. image: {
  6064. source: "./media/characters/berri/bum.svg"
  6065. }
  6066. },
  6067. mouth: {
  6068. height: math.unit(0.44, "feet"),
  6069. name: "Mouth",
  6070. image: {
  6071. source: "./media/characters/berri/mouth.svg"
  6072. }
  6073. },
  6074. paw: {
  6075. height: math.unit(0.826, "feet"),
  6076. name: "Paw",
  6077. image: {
  6078. source: "./media/characters/berri/paw.svg"
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(1.65, "meters")
  6086. },
  6087. {
  6088. name: "Macro",
  6089. height: math.unit(60, "m"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Megamacro",
  6094. height: math.unit(9.213, "km")
  6095. },
  6096. {
  6097. name: "Planet Eater",
  6098. height: math.unit(489, "megameters")
  6099. },
  6100. {
  6101. name: "Teramacro",
  6102. height: math.unit(2471635000000, "meters")
  6103. },
  6104. {
  6105. name: "Examacro",
  6106. height: math.unit(8.0624e+26, "meters")
  6107. }
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(1.72, "meters"),
  6115. weight: math.unit(68, "kg"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/lexi/front.svg"
  6119. }
  6120. }
  6121. },
  6122. [
  6123. {
  6124. name: "Very Smol",
  6125. height: math.unit(10, "mm")
  6126. },
  6127. {
  6128. name: "Micro",
  6129. height: math.unit(6.8, "cm"),
  6130. default: true
  6131. },
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(1.72, "m")
  6135. }
  6136. ]
  6137. ))
  6138. characterMakers.push(() => makeCharacter(
  6139. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6140. {
  6141. front: {
  6142. height: math.unit(1.69, "meters"),
  6143. weight: math.unit(68, "kg"),
  6144. name: "Front",
  6145. image: {
  6146. source: "./media/characters/martin/front.svg",
  6147. extra: 596 / 581
  6148. }
  6149. }
  6150. },
  6151. [
  6152. {
  6153. name: "Micro",
  6154. height: math.unit(6.85, "cm"),
  6155. default: true
  6156. },
  6157. {
  6158. name: "Normal",
  6159. height: math.unit(1.69, "m")
  6160. }
  6161. ]
  6162. ))
  6163. characterMakers.push(() => makeCharacter(
  6164. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6165. {
  6166. front: {
  6167. height: math.unit(1.69, "meters"),
  6168. weight: math.unit(68, "kg"),
  6169. name: "Front",
  6170. image: {
  6171. source: "./media/characters/juno/front.svg"
  6172. }
  6173. }
  6174. },
  6175. [
  6176. {
  6177. name: "Micro",
  6178. height: math.unit(7, "cm")
  6179. },
  6180. {
  6181. name: "Normal",
  6182. height: math.unit(1.89, "m")
  6183. },
  6184. {
  6185. name: "Macro",
  6186. height: math.unit(353, "meters"),
  6187. default: true
  6188. }
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6193. {
  6194. front: {
  6195. height: math.unit(1.93, "meters"),
  6196. weight: math.unit(83, "kg"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/samantha/front.svg"
  6200. }
  6201. },
  6202. frontClothed: {
  6203. height: math.unit(1.93, "meters"),
  6204. weight: math.unit(83, "kg"),
  6205. name: "Front (Clothed)",
  6206. image: {
  6207. source: "./media/characters/samantha/front-clothed.svg"
  6208. }
  6209. },
  6210. back: {
  6211. height: math.unit(1.93, "meters"),
  6212. weight: math.unit(83, "kg"),
  6213. name: "Back",
  6214. image: {
  6215. source: "./media/characters/samantha/back.svg"
  6216. }
  6217. },
  6218. },
  6219. [
  6220. {
  6221. name: "Normal",
  6222. height: math.unit(1.93, "m")
  6223. },
  6224. {
  6225. name: "Macro",
  6226. height: math.unit(74, "meters"),
  6227. default: true
  6228. },
  6229. {
  6230. name: "Macro+",
  6231. height: math.unit(223, "meters"),
  6232. },
  6233. {
  6234. name: "Megamacro",
  6235. height: math.unit(8381, "meters"),
  6236. },
  6237. {
  6238. name: "Megamacro+",
  6239. height: math.unit(12000, "kilometers")
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(1.92, "meters"),
  6248. weight: math.unit(80, "kg"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/dr-clay/front.svg"
  6252. }
  6253. },
  6254. frontClothed: {
  6255. height: math.unit(1.92, "meters"),
  6256. weight: math.unit(80, "kg"),
  6257. name: "Front (Clothed)",
  6258. image: {
  6259. source: "./media/characters/dr-clay/front-clothed.svg"
  6260. }
  6261. }
  6262. },
  6263. [
  6264. {
  6265. name: "Normal",
  6266. height: math.unit(1.92, "m")
  6267. },
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(214, "meters"),
  6271. default: true
  6272. },
  6273. {
  6274. name: "Macro+",
  6275. height: math.unit(12.237, "meters"),
  6276. },
  6277. {
  6278. name: "Megamacro",
  6279. height: math.unit(557, "megameters"),
  6280. },
  6281. {
  6282. name: "Unimaginable",
  6283. height: math.unit(120e9, "lightyears")
  6284. },
  6285. ]
  6286. ))
  6287. characterMakers.push(() => makeCharacter(
  6288. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6289. {
  6290. front: {
  6291. height: math.unit(2, "meters"),
  6292. weight: math.unit(80, "kg"),
  6293. name: "Front",
  6294. image: {
  6295. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6296. }
  6297. }
  6298. },
  6299. [
  6300. {
  6301. name: "Teramacro",
  6302. height: math.unit(500000, "lightyears"),
  6303. default: true
  6304. },
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6309. {
  6310. front: {
  6311. height: math.unit(2, "meters"),
  6312. weight: math.unit(150, "kg"),
  6313. name: "Front",
  6314. image: {
  6315. source: "./media/characters/vemus/front.svg",
  6316. extra: 2384 / 2084,
  6317. bottom: 0.0123
  6318. }
  6319. }
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(3.75, "meters"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Big",
  6329. height: math.unit(8, "meters")
  6330. },
  6331. {
  6332. name: "Macro",
  6333. height: math.unit(100, "meters")
  6334. },
  6335. {
  6336. name: "Macro+",
  6337. height: math.unit(1500, "meters")
  6338. },
  6339. {
  6340. name: "Stellar",
  6341. height: math.unit(14e8, "meters")
  6342. },
  6343. ]
  6344. ))
  6345. characterMakers.push(() => makeCharacter(
  6346. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6347. {
  6348. front: {
  6349. height: math.unit(2, "meters"),
  6350. weight: math.unit(70, "kg"),
  6351. name: "Front",
  6352. image: {
  6353. source: "./media/characters/beherit/front.svg",
  6354. extra: 1408 / 1242
  6355. }
  6356. }
  6357. },
  6358. [
  6359. {
  6360. name: "Normal",
  6361. height: math.unit(6, "feet")
  6362. },
  6363. {
  6364. name: "Lorg",
  6365. height: math.unit(25, "feet"),
  6366. default: true
  6367. },
  6368. {
  6369. name: "Lorger",
  6370. height: math.unit(75, "feet")
  6371. },
  6372. {
  6373. name: "Macro",
  6374. height: math.unit(200, "meters")
  6375. },
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6380. {
  6381. front: {
  6382. height: math.unit(2, "meters"),
  6383. weight: math.unit(150, "kg"),
  6384. name: "Front",
  6385. image: {
  6386. source: "./media/characters/everett/front.svg",
  6387. extra: 2038 / 1737,
  6388. bottom: 0.03
  6389. }
  6390. },
  6391. paw: {
  6392. height: math.unit(2 / 3.6, "meters"),
  6393. name: "Paw",
  6394. image: {
  6395. source: "./media/characters/everett/paw.svg"
  6396. }
  6397. },
  6398. },
  6399. [
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(15, "feet"),
  6403. default: true
  6404. },
  6405. {
  6406. name: "Lorg",
  6407. height: math.unit(70, "feet"),
  6408. default: true
  6409. },
  6410. {
  6411. name: "Lorger",
  6412. height: math.unit(250, "feet")
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(500, "meters")
  6417. },
  6418. ]
  6419. ))
  6420. characterMakers.push(() => makeCharacter(
  6421. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6422. {
  6423. front: {
  6424. height: math.unit(2, "meters"),
  6425. weight: math.unit(86, "kg"),
  6426. name: "Front",
  6427. image: {
  6428. source: "./media/characters/rose/front.svg",
  6429. extra: 350/335,
  6430. bottom: 10/360
  6431. }
  6432. },
  6433. frontAlt: {
  6434. height: math.unit(1.6, "meters"),
  6435. weight: math.unit(86, "kg"),
  6436. name: "Front (Alt)",
  6437. image: {
  6438. source: "./media/characters/rose/front-alt.svg",
  6439. extra: 299/283,
  6440. bottom: 3/302
  6441. }
  6442. },
  6443. plush: {
  6444. height: math.unit(2, "meters"),
  6445. weight: math.unit(86/3, "kg"),
  6446. name: "Plush",
  6447. image: {
  6448. source: "./media/characters/rose/plush.svg",
  6449. extra: 361/337,
  6450. bottom: 11/372
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Mini-Micro",
  6457. height: math.unit(1, "cm")
  6458. },
  6459. {
  6460. name: "Micro",
  6461. height: math.unit(3.5, "inches"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(6 + 1 / 6, "feet")
  6467. },
  6468. {
  6469. name: "Mini-Macro",
  6470. height: math.unit(9 + 10 / 12, "feet")
  6471. },
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(2, "meters"),
  6479. weight: math.unit(350, "lbs"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/regal/front.svg"
  6483. }
  6484. },
  6485. back: {
  6486. height: math.unit(2, "meters"),
  6487. weight: math.unit(350, "lbs"),
  6488. name: "Back",
  6489. image: {
  6490. source: "./media/characters/regal/back.svg"
  6491. }
  6492. },
  6493. },
  6494. [
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(350, "feet"),
  6498. default: true
  6499. }
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(4 + 11 / 12, "feet"),
  6507. weight: math.unit(100, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/opal/front.svg"
  6511. }
  6512. },
  6513. frontAlt: {
  6514. height: math.unit(4 + 11 / 12, "feet"),
  6515. weight: math.unit(100, "lbs"),
  6516. name: "Front (Alt)",
  6517. image: {
  6518. source: "./media/characters/opal/front-alt.svg"
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Small",
  6525. height: math.unit(4 + 11 / 12, "feet")
  6526. },
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(20, "feet"),
  6530. default: true
  6531. },
  6532. {
  6533. name: "Macro",
  6534. height: math.unit(120, "feet")
  6535. },
  6536. {
  6537. name: "Megamacro",
  6538. height: math.unit(80, "miles")
  6539. },
  6540. {
  6541. name: "True Size",
  6542. height: math.unit(100000, "lightyears")
  6543. },
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(200, "lbs"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/vector-wuff/front.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(2.8, "meters")
  6562. },
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(450, "meters"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Megamacro",
  6570. height: math.unit(15, "kilometers")
  6571. }
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(6, "feet"),
  6579. weight: math.unit(256, "lbs"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/dannik/front.svg"
  6583. }
  6584. }
  6585. },
  6586. [
  6587. {
  6588. name: "Macro",
  6589. height: math.unit(69.57, "meters"),
  6590. default: true
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(120, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/azura-saharah/front.svg"
  6603. }
  6604. },
  6605. back: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(120, "lbs"),
  6608. name: "Back",
  6609. image: {
  6610. source: "./media/characters/azura-saharah/back.svg"
  6611. }
  6612. },
  6613. },
  6614. [
  6615. {
  6616. name: "Macro",
  6617. height: math.unit(100, "feet"),
  6618. default: true
  6619. },
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6624. {
  6625. side: {
  6626. height: math.unit(5 + 4 / 12, "feet"),
  6627. weight: math.unit(163, "lbs"),
  6628. name: "Side",
  6629. image: {
  6630. source: "./media/characters/kennedy/side.svg"
  6631. }
  6632. }
  6633. },
  6634. [
  6635. {
  6636. name: "Standard Doggo",
  6637. height: math.unit(5 + 4 / 12, "feet")
  6638. },
  6639. {
  6640. name: "Big Doggo",
  6641. height: math.unit(25 + 3 / 12, "feet"),
  6642. default: true
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(90, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/odi-lunar/front.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Micro",
  6661. height: math.unit(3, "inches"),
  6662. default: true
  6663. },
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(5.5, "feet")
  6667. }
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6672. {
  6673. back: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(220, "lbs"),
  6676. name: "Back",
  6677. image: {
  6678. source: "./media/characters/mandake/back.svg"
  6679. }
  6680. }
  6681. },
  6682. [
  6683. {
  6684. name: "Normal",
  6685. height: math.unit(7, "feet"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(78, "feet")
  6691. },
  6692. {
  6693. name: "Macro+",
  6694. height: math.unit(300, "meters")
  6695. },
  6696. {
  6697. name: "Macro++",
  6698. height: math.unit(2400, "feet")
  6699. },
  6700. {
  6701. name: "Megamacro",
  6702. height: math.unit(5167, "meters")
  6703. },
  6704. {
  6705. name: "Gigamacro",
  6706. height: math.unit(41769, "miles")
  6707. },
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(120, "lbs"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/yozey/front.svg"
  6719. }
  6720. },
  6721. frontAlt: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(120, "lbs"),
  6724. name: "Front (Alt)",
  6725. image: {
  6726. source: "./media/characters/yozey/front-alt.svg"
  6727. }
  6728. },
  6729. side: {
  6730. height: math.unit(6, "feet"),
  6731. weight: math.unit(120, "lbs"),
  6732. name: "Side",
  6733. image: {
  6734. source: "./media/characters/yozey/side.svg"
  6735. }
  6736. },
  6737. },
  6738. [
  6739. {
  6740. name: "Micro",
  6741. height: math.unit(3, "inches"),
  6742. default: true
  6743. },
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(6, "feet")
  6747. }
  6748. ]
  6749. ))
  6750. characterMakers.push(() => makeCharacter(
  6751. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6752. {
  6753. front: {
  6754. height: math.unit(6, "feet"),
  6755. weight: math.unit(103, "lbs"),
  6756. name: "Front",
  6757. image: {
  6758. source: "./media/characters/valeska-voss/front.svg"
  6759. }
  6760. }
  6761. },
  6762. [
  6763. {
  6764. name: "Mini-Sized Sub",
  6765. height: math.unit(3.1, "inches")
  6766. },
  6767. {
  6768. name: "Mid-Sized Sub",
  6769. height: math.unit(6.2, "inches")
  6770. },
  6771. {
  6772. name: "Full-Sized Sub",
  6773. height: math.unit(9.3, "inches")
  6774. },
  6775. {
  6776. name: "Normal",
  6777. height: math.unit(5 + 2 / 12, "foot"),
  6778. default: true
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6784. {
  6785. front: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(160, "lbs"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/gene-zeta/front.svg",
  6791. extra: 3006 / 2826,
  6792. bottom: 182 / 3188
  6793. }
  6794. }
  6795. },
  6796. [
  6797. {
  6798. name: "Micro",
  6799. height: math.unit(6, "inches")
  6800. },
  6801. {
  6802. name: "Normal",
  6803. height: math.unit(5 + 11 / 12, "foot"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Macro",
  6808. height: math.unit(140, "feet")
  6809. },
  6810. {
  6811. name: "Supercharged",
  6812. height: math.unit(2500, "feet")
  6813. },
  6814. ]
  6815. ))
  6816. characterMakers.push(() => makeCharacter(
  6817. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6818. {
  6819. front: {
  6820. height: math.unit(6, "feet"),
  6821. weight: math.unit(350, "lbs"),
  6822. name: "Front",
  6823. image: {
  6824. source: "./media/characters/razinox/front.svg",
  6825. extra: 1686 / 1548,
  6826. bottom: 28.2 / 1868
  6827. }
  6828. },
  6829. back: {
  6830. height: math.unit(6, "feet"),
  6831. weight: math.unit(350, "lbs"),
  6832. name: "Back",
  6833. image: {
  6834. source: "./media/characters/razinox/back.svg",
  6835. extra: 1660 / 1590,
  6836. bottom: 15 / 1665
  6837. }
  6838. },
  6839. },
  6840. [
  6841. {
  6842. name: "Normal",
  6843. height: math.unit(10 + 8 / 12, "foot")
  6844. },
  6845. {
  6846. name: "Minimacro",
  6847. height: math.unit(15, "foot")
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(60, "foot"),
  6852. default: true
  6853. },
  6854. {
  6855. name: "Megamacro",
  6856. height: math.unit(5, "miles")
  6857. },
  6858. {
  6859. name: "Gigamacro",
  6860. height: math.unit(6000, "miles")
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(6, "feet"),
  6869. weight: math.unit(150, "lbs"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/cobalt/front.svg"
  6873. }
  6874. }
  6875. },
  6876. [
  6877. {
  6878. name: "Normal",
  6879. height: math.unit(8 + 1 / 12, "foot")
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(111, "foot"),
  6884. default: true
  6885. },
  6886. {
  6887. name: "Supracosmic",
  6888. height: math.unit(1e42, "feet")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(6, "feet"),
  6897. weight: math.unit(140, "lbs"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/amanda/front.svg"
  6901. }
  6902. }
  6903. },
  6904. [
  6905. {
  6906. name: "Micro",
  6907. height: math.unit(5, "inches"),
  6908. default: true
  6909. },
  6910. ]
  6911. ))
  6912. characterMakers.push(() => makeCharacter(
  6913. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6914. {
  6915. front: {
  6916. height: math.unit(2.75, "meters"),
  6917. weight: math.unit(1200, "lb"),
  6918. name: "Front",
  6919. image: {
  6920. source: "./media/characters/teal/front.svg",
  6921. extra: 2463 / 2320,
  6922. bottom: 166 / 2629
  6923. }
  6924. },
  6925. back: {
  6926. height: math.unit(2.75, "meters"),
  6927. weight: math.unit(1200, "lb"),
  6928. name: "Back",
  6929. image: {
  6930. source: "./media/characters/teal/back.svg",
  6931. extra: 2580 / 2489,
  6932. bottom: 151 / 2731
  6933. }
  6934. },
  6935. sitting: {
  6936. height: math.unit(1.9, "meters"),
  6937. weight: math.unit(1200, "lb"),
  6938. name: "Sitting",
  6939. image: {
  6940. source: "./media/characters/teal/sitting.svg",
  6941. extra: 623 / 590,
  6942. bottom: 121 / 744
  6943. }
  6944. },
  6945. standing: {
  6946. height: math.unit(2.75, "meters"),
  6947. weight: math.unit(1200, "lb"),
  6948. name: "Standing",
  6949. image: {
  6950. source: "./media/characters/teal/standing.svg",
  6951. extra: 923 / 893,
  6952. bottom: 60 / 983
  6953. }
  6954. },
  6955. stretching: {
  6956. height: math.unit(3.65, "meters"),
  6957. weight: math.unit(1200, "lb"),
  6958. name: "Stretching",
  6959. image: {
  6960. source: "./media/characters/teal/stretching.svg",
  6961. extra: 1276 / 1244,
  6962. bottom: 0 / 1276
  6963. }
  6964. },
  6965. legged: {
  6966. height: math.unit(1.3, "meters"),
  6967. weight: math.unit(100, "lb"),
  6968. name: "Legged",
  6969. image: {
  6970. source: "./media/characters/teal/legged.svg",
  6971. extra: 462 / 437,
  6972. bottom: 24 / 486
  6973. }
  6974. },
  6975. naga: {
  6976. height: math.unit(5.4, "meters"),
  6977. weight: math.unit(4000, "lb"),
  6978. name: "Naga",
  6979. image: {
  6980. source: "./media/characters/teal/naga.svg",
  6981. extra: 1902 / 1858,
  6982. bottom: 0 / 1902
  6983. }
  6984. },
  6985. hand: {
  6986. height: math.unit(0.52, "meters"),
  6987. name: "Hand",
  6988. image: {
  6989. source: "./media/characters/teal/hand.svg"
  6990. }
  6991. },
  6992. maw: {
  6993. height: math.unit(0.43, "meters"),
  6994. name: "Maw",
  6995. image: {
  6996. source: "./media/characters/teal/maw.svg"
  6997. }
  6998. },
  6999. slit: {
  7000. height: math.unit(0.25, "meters"),
  7001. name: "Slit",
  7002. image: {
  7003. source: "./media/characters/teal/slit.svg"
  7004. }
  7005. },
  7006. },
  7007. [
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(2.75, "meters"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Macro",
  7015. height: math.unit(300, "feet")
  7016. },
  7017. {
  7018. name: "Macro+",
  7019. height: math.unit(2000, "feet")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7025. {
  7026. frontCat: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(180, "lbs"),
  7029. name: "Front (Cat)",
  7030. image: {
  7031. source: "./media/characters/ravin-amulet/front-cat.svg"
  7032. }
  7033. },
  7034. frontCatAlt: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(180, "lbs"),
  7037. name: "Front (Alt, Cat)",
  7038. image: {
  7039. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7040. }
  7041. },
  7042. frontWerewolf: {
  7043. height: math.unit(6 * 1.2, "feet"),
  7044. weight: math.unit(225, "lbs"),
  7045. name: "Front (Werewolf)",
  7046. image: {
  7047. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7048. }
  7049. },
  7050. backWerewolf: {
  7051. height: math.unit(6 * 1.2, "feet"),
  7052. weight: math.unit(225, "lbs"),
  7053. name: "Back (Werewolf)",
  7054. image: {
  7055. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Nano",
  7062. height: math.unit(1, "micrometer")
  7063. },
  7064. {
  7065. name: "Micro",
  7066. height: math.unit(1, "inch")
  7067. },
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(6, "feet"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro",
  7075. height: math.unit(60, "feet")
  7076. }
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(165, "lbs"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/fluoresce/front.svg"
  7088. }
  7089. }
  7090. },
  7091. [
  7092. {
  7093. name: "Micro",
  7094. height: math.unit(6, "cm")
  7095. },
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(5 + 7 / 12, "feet"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(56, "feet")
  7104. },
  7105. {
  7106. name: "Megamacro",
  7107. height: math.unit(1.9, "miles")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(9 + 6 / 12, "feet"),
  7116. weight: math.unit(523, "lbs"),
  7117. name: "Side",
  7118. image: {
  7119. source: "./media/characters/aurora/side.svg"
  7120. }
  7121. }
  7122. },
  7123. [
  7124. {
  7125. name: "Normal",
  7126. height: math.unit(9 + 6 / 12, "feet")
  7127. },
  7128. {
  7129. name: "Macro",
  7130. height: math.unit(96, "feet"),
  7131. default: true
  7132. },
  7133. {
  7134. name: "Macro+",
  7135. height: math.unit(243, "feet")
  7136. },
  7137. ]
  7138. ))
  7139. characterMakers.push(() => makeCharacter(
  7140. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7141. {
  7142. front: {
  7143. height: math.unit(194, "cm"),
  7144. weight: math.unit(90, "kg"),
  7145. name: "Front",
  7146. image: {
  7147. source: "./media/characters/ranek/front.svg"
  7148. }
  7149. },
  7150. side: {
  7151. height: math.unit(194, "cm"),
  7152. weight: math.unit(90, "kg"),
  7153. name: "Side",
  7154. image: {
  7155. source: "./media/characters/ranek/side.svg"
  7156. }
  7157. },
  7158. back: {
  7159. height: math.unit(194, "cm"),
  7160. weight: math.unit(90, "kg"),
  7161. name: "Back",
  7162. image: {
  7163. source: "./media/characters/ranek/back.svg"
  7164. }
  7165. },
  7166. feral: {
  7167. height: math.unit(30, "cm"),
  7168. weight: math.unit(1.6, "lbs"),
  7169. name: "Feral",
  7170. image: {
  7171. source: "./media/characters/ranek/feral.svg"
  7172. }
  7173. },
  7174. },
  7175. [
  7176. {
  7177. name: "Normal",
  7178. height: math.unit(194, "cm"),
  7179. default: true
  7180. },
  7181. {
  7182. name: "Macro",
  7183. height: math.unit(100, "meters")
  7184. },
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(5 + 6 / 12, "feet"),
  7192. weight: math.unit(153, "lbs"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/andrew-cooper/front.svg"
  7196. }
  7197. },
  7198. },
  7199. [
  7200. {
  7201. name: "Nano",
  7202. height: math.unit(1, "mm")
  7203. },
  7204. {
  7205. name: "Micro",
  7206. height: math.unit(2, "inches")
  7207. },
  7208. {
  7209. name: "Normal",
  7210. height: math.unit(5 + 6 / 12, "feet"),
  7211. default: true
  7212. }
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(6, "feet"),
  7220. weight: math.unit(180, "lbs"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/akane-sato/front.svg",
  7224. extra: 1219 / 1140
  7225. }
  7226. },
  7227. back: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(180, "lbs"),
  7230. name: "Back",
  7231. image: {
  7232. source: "./media/characters/akane-sato/back.svg",
  7233. extra: 1219 / 1170
  7234. }
  7235. },
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(2.5, "meters")
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(250, "meters"),
  7245. default: true
  7246. },
  7247. {
  7248. name: "Megamacro",
  7249. height: math.unit(25, "km")
  7250. },
  7251. ]
  7252. ))
  7253. characterMakers.push(() => makeCharacter(
  7254. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7255. {
  7256. front: {
  7257. height: math.unit(6, "feet"),
  7258. weight: math.unit(65, "kg"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/rook/front.svg",
  7262. extra: 960 / 950
  7263. }
  7264. }
  7265. },
  7266. [
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(8.8, "feet")
  7270. },
  7271. {
  7272. name: "Macro",
  7273. height: math.unit(88, "feet"),
  7274. default: true
  7275. },
  7276. {
  7277. name: "Megamacro",
  7278. height: math.unit(8, "miles")
  7279. },
  7280. ]
  7281. ))
  7282. characterMakers.push(() => makeCharacter(
  7283. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7284. {
  7285. front: {
  7286. height: math.unit(12 + 2 / 12, "feet"),
  7287. weight: math.unit(808, "lbs"),
  7288. name: "Front",
  7289. image: {
  7290. source: "./media/characters/prodigy/front.svg"
  7291. }
  7292. }
  7293. },
  7294. [
  7295. {
  7296. name: "Normal",
  7297. height: math.unit(12 + 2 / 12, "feet"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Macro",
  7302. height: math.unit(143, "feet")
  7303. },
  7304. {
  7305. name: "Macro+",
  7306. height: math.unit(400, "feet")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(225, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/daniel/front.svg"
  7319. }
  7320. },
  7321. leaning: {
  7322. height: math.unit(6, "feet"),
  7323. weight: math.unit(225, "lbs"),
  7324. name: "Leaning",
  7325. image: {
  7326. source: "./media/characters/daniel/leaning.svg"
  7327. }
  7328. },
  7329. },
  7330. [
  7331. {
  7332. name: "Macro",
  7333. height: math.unit(1000, "feet"),
  7334. default: true
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(88, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/chiros/front.svg",
  7347. extra: 306 / 226
  7348. }
  7349. },
  7350. side: {
  7351. height: math.unit(6, "feet"),
  7352. weight: math.unit(88, "lbs"),
  7353. name: "Side",
  7354. image: {
  7355. source: "./media/characters/chiros/side.svg",
  7356. extra: 306 / 226
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(6, "cm"),
  7364. default: true
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7370. {
  7371. front: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(100, "lbs"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/selka/front.svg",
  7377. extra: 947 / 887
  7378. }
  7379. }
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(5, "cm"),
  7385. default: true
  7386. },
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(8 + 3 / 12, "feet"),
  7394. weight: math.unit(424, "lbs"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/verin/front.svg",
  7398. extra: 1845 / 1550
  7399. }
  7400. },
  7401. frontArmored: {
  7402. height: math.unit(8 + 3 / 12, "feet"),
  7403. weight: math.unit(424, "lbs"),
  7404. name: "Front (Armored)",
  7405. image: {
  7406. source: "./media/characters/verin/front-armor.svg",
  7407. extra: 1845 / 1550,
  7408. bottom: 0.01
  7409. }
  7410. },
  7411. back: {
  7412. height: math.unit(8 + 3 / 12, "feet"),
  7413. weight: math.unit(424, "lbs"),
  7414. name: "Back",
  7415. image: {
  7416. source: "./media/characters/verin/back.svg",
  7417. bottom: 0.1,
  7418. extra: 1
  7419. }
  7420. },
  7421. foot: {
  7422. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7423. name: "Foot",
  7424. image: {
  7425. source: "./media/characters/verin/foot.svg"
  7426. }
  7427. },
  7428. },
  7429. [
  7430. {
  7431. name: "Normal",
  7432. height: math.unit(8 + 3 / 12, "feet")
  7433. },
  7434. {
  7435. name: "Minimacro",
  7436. height: math.unit(21, "feet"),
  7437. default: true
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(626, "feet")
  7442. },
  7443. ]
  7444. ))
  7445. characterMakers.push(() => makeCharacter(
  7446. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7447. {
  7448. front: {
  7449. height: math.unit(2.718, "meters"),
  7450. weight: math.unit(150, "lbs"),
  7451. name: "Front",
  7452. image: {
  7453. source: "./media/characters/sovrim-terraquian/front.svg"
  7454. }
  7455. },
  7456. back: {
  7457. height: math.unit(2.718, "meters"),
  7458. weight: math.unit(150, "lbs"),
  7459. name: "Back",
  7460. image: {
  7461. source: "./media/characters/sovrim-terraquian/back.svg"
  7462. }
  7463. }
  7464. },
  7465. [
  7466. {
  7467. name: "Micro",
  7468. height: math.unit(2, "inches")
  7469. },
  7470. {
  7471. name: "Small",
  7472. height: math.unit(1, "meter")
  7473. },
  7474. {
  7475. name: "Normal",
  7476. height: math.unit(Math.E, "meters"),
  7477. default: true
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(20, "meters")
  7482. },
  7483. {
  7484. name: "Macro+",
  7485. height: math.unit(400, "meters")
  7486. },
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7491. {
  7492. front: {
  7493. height: math.unit(7, "feet"),
  7494. weight: math.unit(489, "lbs"),
  7495. name: "Front",
  7496. image: {
  7497. source: "./media/characters/reece-silvermane/front.svg",
  7498. bottom: 0.02,
  7499. extra: 1
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(1.5, "miles"),
  7507. default: true
  7508. },
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7513. {
  7514. front: {
  7515. height: math.unit(6, "feet"),
  7516. weight: math.unit(78, "kg"),
  7517. name: "Front",
  7518. image: {
  7519. source: "./media/characters/kane/front.svg",
  7520. extra: 978 / 899
  7521. }
  7522. },
  7523. },
  7524. [
  7525. {
  7526. name: "Normal",
  7527. height: math.unit(2.1, "m"),
  7528. },
  7529. {
  7530. name: "Macro",
  7531. height: math.unit(1, "km"),
  7532. default: true
  7533. },
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7538. {
  7539. front: {
  7540. height: math.unit(6, "feet"),
  7541. weight: math.unit(200, "kg"),
  7542. name: "Front",
  7543. image: {
  7544. source: "./media/characters/tegon/front.svg",
  7545. bottom: 0.01,
  7546. extra: 1
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Micro",
  7553. height: math.unit(1, "inch")
  7554. },
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(6 + 3 / 12, "feet"),
  7558. default: true
  7559. },
  7560. {
  7561. name: "Macro",
  7562. height: math.unit(300, "feet")
  7563. },
  7564. {
  7565. name: "Megamacro",
  7566. height: math.unit(69, "miles")
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7572. {
  7573. side: {
  7574. height: math.unit(6, "feet"),
  7575. weight: math.unit(2304, "lbs"),
  7576. name: "Side",
  7577. image: {
  7578. source: "./media/characters/arcturax/side.svg",
  7579. extra: 790 / 376,
  7580. bottom: 0.01
  7581. }
  7582. },
  7583. },
  7584. [
  7585. {
  7586. name: "Micro",
  7587. height: math.unit(2, "inch")
  7588. },
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(6, "feet")
  7592. },
  7593. {
  7594. name: "Macro",
  7595. height: math.unit(39, "feet"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Megamacro",
  7600. height: math.unit(7, "miles")
  7601. },
  7602. ]
  7603. ))
  7604. characterMakers.push(() => makeCharacter(
  7605. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7606. {
  7607. front: {
  7608. height: math.unit(6, "feet"),
  7609. weight: math.unit(50, "lbs"),
  7610. name: "Front",
  7611. image: {
  7612. source: "./media/characters/sentri/front.svg",
  7613. extra: 1750 / 1570,
  7614. bottom: 0.025
  7615. }
  7616. },
  7617. frontAlt: {
  7618. height: math.unit(6, "feet"),
  7619. weight: math.unit(50, "lbs"),
  7620. name: "Front (Alt)",
  7621. image: {
  7622. source: "./media/characters/sentri/front-alt.svg",
  7623. extra: 1750 / 1570,
  7624. bottom: 0.025
  7625. }
  7626. },
  7627. },
  7628. [
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(15, "feet"),
  7632. default: true
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(2500, "feet")
  7637. }
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(5 + 8 / 12, "feet"),
  7645. weight: math.unit(130, "lbs"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/corvin/front.svg",
  7649. extra: 1803 / 1629
  7650. }
  7651. },
  7652. frontShirt: {
  7653. height: math.unit(5 + 8 / 12, "feet"),
  7654. weight: math.unit(130, "lbs"),
  7655. name: "Front (Shirt)",
  7656. image: {
  7657. source: "./media/characters/corvin/front-shirt.svg",
  7658. extra: 1803 / 1629
  7659. }
  7660. },
  7661. frontPoncho: {
  7662. height: math.unit(5 + 8 / 12, "feet"),
  7663. weight: math.unit(130, "lbs"),
  7664. name: "Front (Poncho)",
  7665. image: {
  7666. source: "./media/characters/corvin/front-poncho.svg",
  7667. extra: 1803 / 1629
  7668. }
  7669. },
  7670. side: {
  7671. height: math.unit(5 + 8 / 12, "feet"),
  7672. weight: math.unit(130, "lbs"),
  7673. name: "Side",
  7674. image: {
  7675. source: "./media/characters/corvin/side.svg",
  7676. extra: 1012 / 945
  7677. }
  7678. },
  7679. back: {
  7680. height: math.unit(5 + 8 / 12, "feet"),
  7681. weight: math.unit(130, "lbs"),
  7682. name: "Back",
  7683. image: {
  7684. source: "./media/characters/corvin/back.svg",
  7685. extra: 1803 / 1629
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Micro",
  7692. height: math.unit(3, "inches")
  7693. },
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(5 + 8 / 12, "feet")
  7697. },
  7698. {
  7699. name: "Macro",
  7700. height: math.unit(300, "feet"),
  7701. default: true
  7702. },
  7703. {
  7704. name: "Megamacro",
  7705. height: math.unit(500, "miles")
  7706. }
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7711. {
  7712. front: {
  7713. height: math.unit(6, "feet"),
  7714. weight: math.unit(135, "lbs"),
  7715. name: "Front",
  7716. image: {
  7717. source: "./media/characters/q/front.svg",
  7718. extra: 854 / 752,
  7719. bottom: 0.005
  7720. }
  7721. },
  7722. back: {
  7723. height: math.unit(6, "feet"),
  7724. weight: math.unit(130, "lbs"),
  7725. name: "Back",
  7726. image: {
  7727. source: "./media/characters/q/back.svg",
  7728. extra: 854 / 752
  7729. }
  7730. },
  7731. },
  7732. [
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(90, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Extra Macro",
  7740. height: math.unit(300, "feet"),
  7741. },
  7742. {
  7743. name: "BIG WALF",
  7744. height: math.unit(750, "feet"),
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7750. {
  7751. front: {
  7752. height: math.unit(6, "feet"),
  7753. weight: math.unit(150, "lbs"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/carley/front.svg",
  7757. extra: 3927 / 3540,
  7758. bottom: 29.2 / 735
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(6 + 3 / 12, "feet")
  7766. },
  7767. {
  7768. name: "Macro",
  7769. height: math.unit(185, "feet"),
  7770. default: true
  7771. },
  7772. {
  7773. name: "Megamacro",
  7774. height: math.unit(8, "miles"),
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(3, "feet"),
  7783. weight: math.unit(28, "lbs"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/citrine/front.svg"
  7787. }
  7788. }
  7789. },
  7790. [
  7791. {
  7792. name: "Normal",
  7793. height: math.unit(3, "feet"),
  7794. default: true
  7795. }
  7796. ]
  7797. ))
  7798. characterMakers.push(() => makeCharacter(
  7799. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7800. {
  7801. front: {
  7802. height: math.unit(14, "feet"),
  7803. weight: math.unit(1450, "kg"),
  7804. capacity: math.unit(15, "people"),
  7805. name: "Front",
  7806. image: {
  7807. source: "./media/characters/aura-starwind/front.svg",
  7808. extra: 1455 / 1335
  7809. }
  7810. },
  7811. side: {
  7812. height: math.unit(14, "feet"),
  7813. weight: math.unit(1450, "kg"),
  7814. capacity: math.unit(15, "people"),
  7815. name: "Side",
  7816. image: {
  7817. source: "./media/characters/aura-starwind/side.svg",
  7818. extra: 1654 / 1497
  7819. }
  7820. },
  7821. taur: {
  7822. height: math.unit(18, "feet"),
  7823. weight: math.unit(5500, "kg"),
  7824. capacity: math.unit(50, "people"),
  7825. name: "Taur",
  7826. image: {
  7827. source: "./media/characters/aura-starwind/taur.svg",
  7828. extra: 1760 / 1650
  7829. }
  7830. },
  7831. feral: {
  7832. height: math.unit(46, "feet"),
  7833. weight: math.unit(25000, "kg"),
  7834. capacity: math.unit(120, "people"),
  7835. name: "Feral",
  7836. image: {
  7837. source: "./media/characters/aura-starwind/feral.svg"
  7838. }
  7839. },
  7840. },
  7841. [
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(14, "feet"),
  7845. default: true
  7846. },
  7847. {
  7848. name: "Macro",
  7849. height: math.unit(50, "meters")
  7850. },
  7851. {
  7852. name: "Megamacro",
  7853. height: math.unit(5000, "meters")
  7854. },
  7855. {
  7856. name: "Gigamacro",
  7857. height: math.unit(100000, "kilometers")
  7858. },
  7859. ]
  7860. ))
  7861. characterMakers.push(() => makeCharacter(
  7862. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7863. {
  7864. front: {
  7865. height: math.unit(2 + 7 / 12, "feet"),
  7866. weight: math.unit(32, "lbs"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/rivet/front.svg",
  7870. extra: 1716 / 1658,
  7871. bottom: 0.03
  7872. }
  7873. },
  7874. foot: {
  7875. height: math.unit(0.551, "feet"),
  7876. name: "Rivet's Foot",
  7877. image: {
  7878. source: "./media/characters/rivet/foot.svg"
  7879. },
  7880. rename: true
  7881. }
  7882. },
  7883. [
  7884. {
  7885. name: "Micro",
  7886. height: math.unit(1.5, "inches"),
  7887. },
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(2 + 7 / 12, "feet"),
  7891. default: true
  7892. },
  7893. {
  7894. name: "Macro",
  7895. height: math.unit(85, "feet")
  7896. },
  7897. {
  7898. name: "Megamacro",
  7899. height: math.unit(2.2, "km")
  7900. }
  7901. ]
  7902. ))
  7903. characterMakers.push(() => makeCharacter(
  7904. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7905. {
  7906. front: {
  7907. height: math.unit(5 + 9 / 12, "feet"),
  7908. weight: math.unit(150, "lbs"),
  7909. name: "Front",
  7910. image: {
  7911. source: "./media/characters/coffee/front.svg",
  7912. extra: 3666 / 3032,
  7913. bottom: 0.04
  7914. }
  7915. },
  7916. foot: {
  7917. height: math.unit(1.29, "feet"),
  7918. name: "Foot",
  7919. image: {
  7920. source: "./media/characters/coffee/foot.svg"
  7921. }
  7922. },
  7923. },
  7924. [
  7925. {
  7926. name: "Micro",
  7927. height: math.unit(2, "inches"),
  7928. },
  7929. {
  7930. name: "Normal",
  7931. height: math.unit(5 + 9 / 12, "feet"),
  7932. default: true
  7933. },
  7934. {
  7935. name: "Macro",
  7936. height: math.unit(800, "feet")
  7937. },
  7938. {
  7939. name: "Megamacro",
  7940. height: math.unit(25, "miles")
  7941. }
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(6, "feet"),
  7949. weight: math.unit(200, "lbs"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/chari-gal/front.svg",
  7953. extra: 1568 / 1385,
  7954. bottom: 0.047
  7955. }
  7956. },
  7957. gigantamax: {
  7958. height: math.unit(6 * 16, "feet"),
  7959. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7960. name: "Gigantamax",
  7961. image: {
  7962. source: "./media/characters/chari-gal/gigantamax.svg",
  7963. extra: 1124 / 888,
  7964. bottom: 0.03
  7965. }
  7966. },
  7967. },
  7968. [
  7969. {
  7970. name: "Normal",
  7971. height: math.unit(5 + 7 / 12, "feet")
  7972. },
  7973. {
  7974. name: "Macro",
  7975. height: math.unit(200, "feet"),
  7976. default: true
  7977. }
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7982. {
  7983. front: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(150, "lbs"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/nova/front.svg",
  7989. extra: 5000 / 4722,
  7990. bottom: 0.02
  7991. }
  7992. }
  7993. },
  7994. [
  7995. {
  7996. name: "Micro-",
  7997. height: math.unit(0.8, "inches")
  7998. },
  7999. {
  8000. name: "Micro",
  8001. height: math.unit(2, "inches"),
  8002. default: true
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8008. {
  8009. front: {
  8010. height: math.unit(3 + 1 / 12, "feet"),
  8011. weight: math.unit(21.7, "lbs"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/argent/front.svg",
  8015. extra: 1471 / 1331,
  8016. bottom: 100.8 / 1575.5
  8017. }
  8018. }
  8019. },
  8020. [
  8021. {
  8022. name: "Micro",
  8023. height: math.unit(2, "inches")
  8024. },
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(3 + 1 / 12, "feet"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(120, "feet")
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8038. {
  8039. lamp: {
  8040. height: math.unit(7 * 1559 / 989, "feet"),
  8041. name: "Magic Lamp",
  8042. image: {
  8043. source: "./media/characters/mira-al-cul/lamp.svg",
  8044. extra: 1617 / 1559
  8045. }
  8046. },
  8047. front: {
  8048. height: math.unit(7, "feet"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/mira-al-cul/front.svg",
  8052. extra: 1044 / 990
  8053. }
  8054. },
  8055. },
  8056. [
  8057. {
  8058. name: "Heavily Restricted",
  8059. height: math.unit(7 * 1559 / 989, "feet")
  8060. },
  8061. {
  8062. name: "Freshly Freed",
  8063. height: math.unit(50 * 1559 / 989, "feet")
  8064. },
  8065. {
  8066. name: "World Encompassing",
  8067. height: math.unit(10000 * 1559 / 989, "miles")
  8068. },
  8069. {
  8070. name: "Galactic",
  8071. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8072. },
  8073. {
  8074. name: "Palmed Universe",
  8075. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8076. default: true
  8077. },
  8078. {
  8079. name: "Multiversal Matriarch",
  8080. height: math.unit(8.87e10, "yottameters")
  8081. },
  8082. {
  8083. name: "Void Mother",
  8084. height: math.unit(3.14e110, "yottaparsecs")
  8085. },
  8086. {
  8087. name: "Toying with Transcendence",
  8088. height: math.unit(1e307, "meters")
  8089. },
  8090. ]
  8091. ))
  8092. characterMakers.push(() => makeCharacter(
  8093. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8094. {
  8095. front: {
  8096. height: math.unit(17 + 1 / 12, "feet"),
  8097. weight: math.unit(476.2 * 5, "lbs"),
  8098. name: "Front",
  8099. image: {
  8100. source: "./media/characters/kuro-shi-uchū/front.svg",
  8101. extra: 2329 / 1835,
  8102. bottom: 0.02
  8103. }
  8104. },
  8105. },
  8106. [
  8107. {
  8108. name: "Micro",
  8109. height: math.unit(2, "inches")
  8110. },
  8111. {
  8112. name: "Normal",
  8113. height: math.unit(12, "meters")
  8114. },
  8115. {
  8116. name: "Planetary",
  8117. height: math.unit(0.00929, "AU"),
  8118. default: true
  8119. },
  8120. {
  8121. name: "Universal",
  8122. height: math.unit(20, "gigaparsecs")
  8123. },
  8124. ]
  8125. ))
  8126. characterMakers.push(() => makeCharacter(
  8127. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8128. {
  8129. front: {
  8130. height: math.unit(5 + 2 / 12, "feet"),
  8131. weight: math.unit(120, "lbs"),
  8132. name: "Front",
  8133. image: {
  8134. source: "./media/characters/katherine/front.svg",
  8135. extra: 2075 / 1969
  8136. }
  8137. },
  8138. dress: {
  8139. height: math.unit(5 + 2 / 12, "feet"),
  8140. weight: math.unit(120, "lbs"),
  8141. name: "Dress",
  8142. image: {
  8143. source: "./media/characters/katherine/dress.svg",
  8144. extra: 2258 / 2064
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Micro",
  8151. height: math.unit(1, "inches"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(5 + 2 / 12, "feet")
  8157. },
  8158. {
  8159. name: "Macro",
  8160. height: math.unit(100, "meters")
  8161. },
  8162. {
  8163. name: "Megamacro",
  8164. height: math.unit(80, "miles")
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8170. {
  8171. front: {
  8172. height: math.unit(7 + 8 / 12, "feet"),
  8173. weight: math.unit(250, "lbs"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/yevis/front.svg",
  8177. extra: 1938 / 1755
  8178. }
  8179. }
  8180. },
  8181. [
  8182. {
  8183. name: "Mortal",
  8184. height: math.unit(7 + 8 / 12, "feet")
  8185. },
  8186. {
  8187. name: "Battle",
  8188. height: math.unit(25 + 11 / 12, "feet")
  8189. },
  8190. {
  8191. name: "Wrath",
  8192. height: math.unit(1654 + 11 / 12, "feet")
  8193. },
  8194. {
  8195. name: "Planet Destroyer",
  8196. height: math.unit(12000, "miles")
  8197. },
  8198. {
  8199. name: "Galaxy Conqueror",
  8200. height: math.unit(1.45, "zettameters"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Universal War",
  8205. height: math.unit(184, "gigaparsecs")
  8206. },
  8207. {
  8208. name: "Eternity War",
  8209. height: math.unit(1.98e55, "yottaparsecs")
  8210. },
  8211. ]
  8212. ))
  8213. characterMakers.push(() => makeCharacter(
  8214. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8215. {
  8216. front: {
  8217. height: math.unit(5 + 8 / 12, "feet"),
  8218. weight: math.unit(63, "kg"),
  8219. name: "Front",
  8220. image: {
  8221. source: "./media/characters/xavier/front.svg",
  8222. extra: 944 / 883
  8223. }
  8224. },
  8225. frontStretch: {
  8226. height: math.unit(5 + 8 / 12, "feet"),
  8227. weight: math.unit(63, "kg"),
  8228. name: "Stretching",
  8229. image: {
  8230. source: "./media/characters/xavier/front-stretch.svg",
  8231. extra: 962 / 820
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(5 + 8 / 12, "feet")
  8239. },
  8240. {
  8241. name: "Macro",
  8242. height: math.unit(100, "meters"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "McLargeHuge",
  8247. height: math.unit(10, "miles")
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(5 + 5 / 12, "feet"),
  8256. weight: math.unit(150, "lb"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/joshii/front.svg",
  8260. extra: 765 / 653,
  8261. bottom: 51 / 816
  8262. }
  8263. },
  8264. foot: {
  8265. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8266. name: "Foot",
  8267. image: {
  8268. source: "./media/characters/joshii/foot.svg"
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Micro",
  8275. height: math.unit(2, "inches"),
  8276. default: true
  8277. },
  8278. {
  8279. name: "Normal",
  8280. height: math.unit(5 + 5 / 12, "feet")
  8281. },
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(785, "feet")
  8285. },
  8286. {
  8287. name: "Megamacro",
  8288. height: math.unit(24.5, "miles")
  8289. },
  8290. ]
  8291. ))
  8292. characterMakers.push(() => makeCharacter(
  8293. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8294. {
  8295. front: {
  8296. height: math.unit(6, "feet"),
  8297. weight: math.unit(150, "lb"),
  8298. name: "Front",
  8299. image: {
  8300. source: "./media/characters/goddess-elizabeth/front.svg",
  8301. extra: 1800 / 1525,
  8302. bottom: 0.005
  8303. }
  8304. },
  8305. foot: {
  8306. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8307. name: "Foot",
  8308. image: {
  8309. source: "./media/characters/goddess-elizabeth/foot.svg"
  8310. }
  8311. },
  8312. mouth: {
  8313. height: math.unit(6, "feet"),
  8314. name: "Mouth",
  8315. image: {
  8316. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Micro",
  8323. height: math.unit(12, "feet")
  8324. },
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(80, "miles"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(15000, "parsecs")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(5 + 9 / 12, "feet"),
  8341. weight: math.unit(144, "lb"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/kara/front.svg"
  8345. }
  8346. },
  8347. feet: {
  8348. height: math.unit(6 / 6.765, "feet"),
  8349. name: "Kara's Feet",
  8350. rename: true,
  8351. image: {
  8352. source: "./media/characters/kara/feet.svg"
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(5 + 9 / 12, "feet")
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(174, "feet"),
  8364. default: true
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(18, "feet"),
  8373. weight: math.unit(4050, "lb"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/tyrone/front.svg",
  8377. extra: 2405 / 2270,
  8378. bottom: 182 / 2587
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Normal",
  8385. height: math.unit(18, "feet"),
  8386. default: true
  8387. },
  8388. {
  8389. name: "Macro",
  8390. height: math.unit(300, "feet")
  8391. },
  8392. {
  8393. name: "Megamacro",
  8394. height: math.unit(15, "km")
  8395. },
  8396. {
  8397. name: "Gigamacro",
  8398. height: math.unit(500, "km")
  8399. },
  8400. {
  8401. name: "Teramacro",
  8402. height: math.unit(0.5, "gigameters")
  8403. },
  8404. {
  8405. name: "Omnimacro",
  8406. height: math.unit(1e252, "yottauniverse")
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(7 + 8 / 12, "feet"),
  8415. weight: math.unit(120, "lb"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/danny/front.svg",
  8419. extra: 1490 / 1350
  8420. }
  8421. },
  8422. back: {
  8423. height: math.unit(7 + 8 / 12, "feet"),
  8424. weight: math.unit(120, "lb"),
  8425. name: "Back",
  8426. image: {
  8427. source: "./media/characters/danny/back.svg",
  8428. extra: 1490 / 1350
  8429. }
  8430. },
  8431. },
  8432. [
  8433. {
  8434. name: "Normal",
  8435. height: math.unit(7 + 8 / 12, "feet"),
  8436. default: true
  8437. },
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8442. {
  8443. front: {
  8444. height: math.unit(3.5, "inches"),
  8445. weight: math.unit(19, "grams"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/mallow/front.svg",
  8449. extra: 471 / 431
  8450. }
  8451. },
  8452. back: {
  8453. height: math.unit(3.5, "inches"),
  8454. weight: math.unit(19, "grams"),
  8455. name: "Back",
  8456. image: {
  8457. source: "./media/characters/mallow/back.svg",
  8458. extra: 471 / 431
  8459. }
  8460. },
  8461. },
  8462. [
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(3.5, "inches"),
  8466. default: true
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(9, "feet"),
  8475. weight: math.unit(230, "kg"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/starry-aqua/front.svg"
  8479. }
  8480. },
  8481. back: {
  8482. height: math.unit(9, "feet"),
  8483. weight: math.unit(230, "kg"),
  8484. name: "Back",
  8485. image: {
  8486. source: "./media/characters/starry-aqua/back.svg"
  8487. }
  8488. },
  8489. hand: {
  8490. height: math.unit(9 * 0.1168, "feet"),
  8491. name: "Hand",
  8492. image: {
  8493. source: "./media/characters/starry-aqua/hand.svg"
  8494. }
  8495. },
  8496. foot: {
  8497. height: math.unit(9 * 0.18, "feet"),
  8498. name: "Foot",
  8499. image: {
  8500. source: "./media/characters/starry-aqua/foot.svg"
  8501. }
  8502. }
  8503. },
  8504. [
  8505. {
  8506. name: "Micro",
  8507. height: math.unit(3, "inches")
  8508. },
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(9, "feet")
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(300, "feet"),
  8516. default: true
  8517. },
  8518. {
  8519. name: "Megamacro",
  8520. height: math.unit(3200, "feet")
  8521. }
  8522. ]
  8523. ))
  8524. characterMakers.push(() => makeCharacter(
  8525. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8526. {
  8527. front: {
  8528. height: math.unit(6, "feet"),
  8529. weight: math.unit(230, "lb"),
  8530. name: "Front",
  8531. image: {
  8532. source: "./media/characters/luka/front.svg",
  8533. extra: 1,
  8534. bottom: 0.025
  8535. }
  8536. },
  8537. },
  8538. [
  8539. {
  8540. name: "Normal",
  8541. height: math.unit(12 + 8 / 12, "feet"),
  8542. default: true
  8543. },
  8544. {
  8545. name: "Minimacro",
  8546. height: math.unit(20, "feet")
  8547. },
  8548. {
  8549. name: "Macro",
  8550. height: math.unit(250, "feet")
  8551. },
  8552. {
  8553. name: "Megamacro",
  8554. height: math.unit(5, "miles")
  8555. },
  8556. {
  8557. name: "Gigamacro",
  8558. height: math.unit(8000, "miles")
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(6, "feet"),
  8567. weight: math.unit(150, "lb"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/natalie-nightring/front.svg",
  8571. extra: 1,
  8572. bottom: 0.06
  8573. }
  8574. },
  8575. },
  8576. [
  8577. {
  8578. name: "Uh Oh",
  8579. height: math.unit(0.1, "mm")
  8580. },
  8581. {
  8582. name: "Small",
  8583. height: math.unit(3, "inches")
  8584. },
  8585. {
  8586. name: "Human Scale",
  8587. height: math.unit(6, "feet")
  8588. },
  8589. {
  8590. name: "Librarian",
  8591. height: math.unit(50, "feet"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Immense",
  8596. height: math.unit(200, "miles")
  8597. },
  8598. ]
  8599. ))
  8600. characterMakers.push(() => makeCharacter(
  8601. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8602. {
  8603. front: {
  8604. height: math.unit(6, "feet"),
  8605. weight: math.unit(180, "lbs"),
  8606. name: "Front",
  8607. image: {
  8608. source: "./media/characters/danni-rosie/front.svg",
  8609. extra: 1260 / 1128,
  8610. bottom: 0.022
  8611. }
  8612. },
  8613. },
  8614. [
  8615. {
  8616. name: "Micro",
  8617. height: math.unit(2, "inches"),
  8618. default: true
  8619. },
  8620. ]
  8621. ))
  8622. characterMakers.push(() => makeCharacter(
  8623. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8624. {
  8625. front: {
  8626. height: math.unit(5 + 9 / 12, "feet"),
  8627. weight: math.unit(220, "lb"),
  8628. name: "Front",
  8629. image: {
  8630. source: "./media/characters/samantha-kruse/front.svg",
  8631. extra: (985 / 935),
  8632. bottom: 0.03
  8633. }
  8634. },
  8635. frontUndressed: {
  8636. height: math.unit(5 + 9 / 12, "feet"),
  8637. weight: math.unit(220, "lb"),
  8638. name: "Front (Undressed)",
  8639. image: {
  8640. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8641. extra: (973 / 923),
  8642. bottom: 0.025
  8643. }
  8644. },
  8645. fat: {
  8646. height: math.unit(5 + 9 / 12, "feet"),
  8647. weight: math.unit(900, "lb"),
  8648. name: "Front (Fat)",
  8649. image: {
  8650. source: "./media/characters/samantha-kruse/fat.svg",
  8651. extra: 2688 / 2561
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(5 + 9 / 12, "feet"),
  8659. default: true
  8660. }
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8665. {
  8666. back: {
  8667. height: math.unit(5 + 4 / 12, "feet"),
  8668. weight: math.unit(4963, "lb"),
  8669. name: "Back",
  8670. image: {
  8671. source: "./media/characters/amelia-rosie/back.svg",
  8672. extra: 1113 / 963,
  8673. bottom: 0.01
  8674. }
  8675. },
  8676. },
  8677. [
  8678. {
  8679. name: "Level 0",
  8680. height: math.unit(5 + 4 / 12, "feet")
  8681. },
  8682. {
  8683. name: "Level 1",
  8684. height: math.unit(164597, "feet"),
  8685. default: true
  8686. },
  8687. {
  8688. name: "Level 2",
  8689. height: math.unit(956243, "miles")
  8690. },
  8691. {
  8692. name: "Level 3",
  8693. height: math.unit(29421709423, "miles")
  8694. },
  8695. {
  8696. name: "Level 4",
  8697. height: math.unit(154, "lightyears")
  8698. },
  8699. {
  8700. name: "Level 5",
  8701. height: math.unit(4738272, "lightyears")
  8702. },
  8703. {
  8704. name: "Level 6",
  8705. height: math.unit(145787152896, "lightyears")
  8706. },
  8707. ]
  8708. ))
  8709. characterMakers.push(() => makeCharacter(
  8710. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8711. {
  8712. front: {
  8713. height: math.unit(5 + 11 / 12, "feet"),
  8714. weight: math.unit(65, "kg"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/rook-kitara/front.svg",
  8718. extra: 1347 / 1274,
  8719. bottom: 0.005
  8720. }
  8721. },
  8722. },
  8723. [
  8724. {
  8725. name: "Totally Unfair",
  8726. height: math.unit(1.8, "mm")
  8727. },
  8728. {
  8729. name: "Lap Rookie",
  8730. height: math.unit(1.4, "feet")
  8731. },
  8732. {
  8733. name: "Normal",
  8734. height: math.unit(5 + 11 / 12, "feet"),
  8735. default: true
  8736. },
  8737. {
  8738. name: "How Did This Happen",
  8739. height: math.unit(80, "miles")
  8740. }
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(7, "feet"),
  8748. weight: math.unit(300, "lb"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/pisces/front.svg",
  8752. extra: 2255 / 2115,
  8753. bottom: 0.03
  8754. }
  8755. },
  8756. back: {
  8757. height: math.unit(7, "feet"),
  8758. weight: math.unit(300, "lb"),
  8759. name: "Back",
  8760. image: {
  8761. source: "./media/characters/pisces/back.svg",
  8762. extra: 2146 / 2055,
  8763. bottom: 0.04
  8764. }
  8765. },
  8766. },
  8767. [
  8768. {
  8769. name: "Normal",
  8770. height: math.unit(7, "feet"),
  8771. default: true
  8772. },
  8773. {
  8774. name: "Swimming Pool",
  8775. height: math.unit(12.2, "meters")
  8776. },
  8777. {
  8778. name: "Olympic Swimming Pool",
  8779. height: math.unit(56.3, "meters")
  8780. },
  8781. {
  8782. name: "Lake Superior",
  8783. height: math.unit(93900, "meters")
  8784. },
  8785. {
  8786. name: "Mediterranean Sea",
  8787. height: math.unit(644457, "meters")
  8788. },
  8789. {
  8790. name: "World's Oceans",
  8791. height: math.unit(4567491, "meters")
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(2.3, "meters"),
  8800. weight: math.unit(120, "kg"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/zelas/front.svg"
  8804. }
  8805. },
  8806. side: {
  8807. height: math.unit(2.3, "meters"),
  8808. weight: math.unit(120, "kg"),
  8809. name: "Side",
  8810. image: {
  8811. source: "./media/characters/zelas/side.svg"
  8812. }
  8813. },
  8814. back: {
  8815. height: math.unit(2.3, "meters"),
  8816. weight: math.unit(120, "kg"),
  8817. name: "Back",
  8818. image: {
  8819. source: "./media/characters/zelas/back.svg"
  8820. }
  8821. },
  8822. foot: {
  8823. height: math.unit(1.116, "feet"),
  8824. name: "Foot",
  8825. image: {
  8826. source: "./media/characters/zelas/foot.svg"
  8827. }
  8828. },
  8829. },
  8830. [
  8831. {
  8832. name: "Normal",
  8833. height: math.unit(2.3, "meters")
  8834. },
  8835. {
  8836. name: "Macro",
  8837. height: math.unit(30, "meters"),
  8838. default: true
  8839. },
  8840. ]
  8841. ))
  8842. characterMakers.push(() => makeCharacter(
  8843. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8844. {
  8845. front: {
  8846. height: math.unit(1, "inch"),
  8847. weight: math.unit(0.21, "grams"),
  8848. name: "Front",
  8849. image: {
  8850. source: "./media/characters/talbot/front.svg",
  8851. extra: 594 / 544
  8852. }
  8853. },
  8854. },
  8855. [
  8856. {
  8857. name: "Micro",
  8858. height: math.unit(1, "inch"),
  8859. default: true
  8860. },
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8865. {
  8866. front: {
  8867. height: math.unit(3 + 3 / 12, "feet"),
  8868. weight: math.unit(51.8, "lb"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/fliss/front.svg",
  8872. extra: 840 / 640
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Teeny Tiny",
  8879. height: math.unit(1, "mm")
  8880. },
  8881. {
  8882. name: "Small",
  8883. height: math.unit(1, "inch"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Standard Sylveon",
  8888. height: math.unit(3 + 3 / 12, "feet")
  8889. },
  8890. {
  8891. name: "Large Nuisance",
  8892. height: math.unit(33, "feet")
  8893. },
  8894. {
  8895. name: "City Filler",
  8896. height: math.unit(3000, "feet")
  8897. },
  8898. {
  8899. name: "New Horizon",
  8900. height: math.unit(6000, "miles")
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8906. {
  8907. front: {
  8908. height: math.unit(5, "cm"),
  8909. weight: math.unit(1.94, "g"),
  8910. name: "Front",
  8911. image: {
  8912. source: "./media/characters/fleta/front.svg",
  8913. extra: 835 / 803
  8914. }
  8915. },
  8916. back: {
  8917. height: math.unit(5, "cm"),
  8918. weight: math.unit(1.94, "g"),
  8919. name: "Back",
  8920. image: {
  8921. source: "./media/characters/fleta/back.svg",
  8922. extra: 835 / 803
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Micro",
  8929. height: math.unit(5, "cm"),
  8930. default: true
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8936. {
  8937. front: {
  8938. height: math.unit(6, "feet"),
  8939. weight: math.unit(225, "lb"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/dominic/front.svg",
  8943. extra: 1770 / 1620,
  8944. bottom: 0.025
  8945. }
  8946. },
  8947. back: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(225, "lb"),
  8950. name: "Back",
  8951. image: {
  8952. source: "./media/characters/dominic/back.svg",
  8953. extra: 1745 / 1620,
  8954. bottom: 0.065
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Nano",
  8961. height: math.unit(0.1, "mm")
  8962. },
  8963. {
  8964. name: "Micro-",
  8965. height: math.unit(1, "mm")
  8966. },
  8967. {
  8968. name: "Micro",
  8969. height: math.unit(4, "inches")
  8970. },
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(6 + 4 / 12, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(115, "feet")
  8979. },
  8980. {
  8981. name: "Macro+",
  8982. height: math.unit(955, "feet")
  8983. },
  8984. {
  8985. name: "Megamacro",
  8986. height: math.unit(8990, "feet")
  8987. },
  8988. {
  8989. name: "Gigmacro",
  8990. height: math.unit(9310, "miles")
  8991. },
  8992. {
  8993. name: "Teramacro",
  8994. height: math.unit(1567005010, "miles")
  8995. },
  8996. {
  8997. name: "Examacro",
  8998. height: math.unit(1425, "parsecs")
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9004. {
  9005. front: {
  9006. height: math.unit(400, "feet"),
  9007. weight: math.unit(44444444, "lb"),
  9008. name: "Front",
  9009. image: {
  9010. source: "./media/characters/major-colonel/front.svg"
  9011. }
  9012. },
  9013. back: {
  9014. height: math.unit(400, "feet"),
  9015. weight: math.unit(44444444, "lb"),
  9016. name: "Back",
  9017. image: {
  9018. source: "./media/characters/major-colonel/back.svg"
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(400, "feet"),
  9026. default: true
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9032. {
  9033. catFront: {
  9034. height: math.unit(6, "feet"),
  9035. weight: math.unit(120, "lb"),
  9036. name: "Front (Cat Side)",
  9037. image: {
  9038. source: "./media/characters/axel-lycan/cat-front.svg",
  9039. extra: 430 / 402,
  9040. bottom: 43 / 472.35
  9041. }
  9042. },
  9043. catBack: {
  9044. height: math.unit(6, "feet"),
  9045. weight: math.unit(120, "lb"),
  9046. name: "Back (Cat Side)",
  9047. image: {
  9048. source: "./media/characters/axel-lycan/cat-back.svg",
  9049. extra: 447 / 419,
  9050. bottom: 23.3 / 469
  9051. }
  9052. },
  9053. wolfFront: {
  9054. height: math.unit(6, "feet"),
  9055. weight: math.unit(120, "lb"),
  9056. name: "Front (Wolf Side)",
  9057. image: {
  9058. source: "./media/characters/axel-lycan/wolf-front.svg",
  9059. extra: 485 / 456,
  9060. bottom: 19 / 504
  9061. }
  9062. },
  9063. wolfBack: {
  9064. height: math.unit(6, "feet"),
  9065. weight: math.unit(120, "lb"),
  9066. name: "Back (Wolf Side)",
  9067. image: {
  9068. source: "./media/characters/axel-lycan/wolf-back.svg",
  9069. extra: 475 / 438,
  9070. bottom: 39.2 / 514
  9071. }
  9072. },
  9073. },
  9074. [
  9075. {
  9076. name: "Macro",
  9077. height: math.unit(1, "km"),
  9078. default: true
  9079. },
  9080. ]
  9081. ))
  9082. characterMakers.push(() => makeCharacter(
  9083. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9084. {
  9085. front: {
  9086. height: math.unit(5 + 9 / 12, "feet"),
  9087. weight: math.unit(175, "lb"),
  9088. name: "Front",
  9089. image: {
  9090. source: "./media/characters/vanrel-hyena/front.svg",
  9091. extra: 1086 / 1010,
  9092. bottom: 0.04
  9093. }
  9094. },
  9095. },
  9096. [
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(5 + 9 / 12, "feet"),
  9100. default: true
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(103, "lb"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/abbott-absol/front.svg",
  9113. extra: 2010 / 1842
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Megamicro",
  9120. height: math.unit(0.1, "mm")
  9121. },
  9122. {
  9123. name: "Micro",
  9124. height: math.unit(1, "inch")
  9125. },
  9126. {
  9127. name: "Normal",
  9128. height: math.unit(6, "feet"),
  9129. default: true
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(6, "feet"),
  9138. weight: math.unit(264, "lb"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/hector/front.svg",
  9142. extra: 2280 / 2130,
  9143. bottom: 0.07
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Normal",
  9150. height: math.unit(12.25, "foot"),
  9151. default: true
  9152. },
  9153. {
  9154. name: "Macro",
  9155. height: math.unit(160, "feet")
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(6, "feet"),
  9164. weight: math.unit(150, "lb"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/sal/front.svg",
  9168. extra: 1846 / 1699,
  9169. bottom: 0.04
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Megamacro",
  9176. height: math.unit(10, "miles"),
  9177. default: true
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9183. {
  9184. front: {
  9185. height: math.unit(3, "meters"),
  9186. weight: math.unit(450, "kg"),
  9187. name: "front",
  9188. image: {
  9189. source: "./media/characters/ranger/front.svg",
  9190. extra: 2401 / 2243,
  9191. bottom: 0.05
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(3, "meters"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(14, "feet"),
  9208. weight: math.unit(800, "kg"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/theresa/front.svg",
  9212. extra: 3575 / 3346,
  9213. bottom: 0.03
  9214. }
  9215. },
  9216. },
  9217. [
  9218. {
  9219. name: "Normal",
  9220. height: math.unit(14, "feet"),
  9221. default: true
  9222. },
  9223. ]
  9224. ))
  9225. characterMakers.push(() => makeCharacter(
  9226. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9227. {
  9228. front: {
  9229. height: math.unit(6, "feet"),
  9230. weight: math.unit(3, "kg"),
  9231. name: "Front",
  9232. image: {
  9233. source: "./media/characters/ine/front.svg",
  9234. extra: 678 / 539,
  9235. bottom: 0.023
  9236. }
  9237. },
  9238. },
  9239. [
  9240. {
  9241. name: "Normal",
  9242. height: math.unit(2.265, "feet"),
  9243. default: true
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9249. {
  9250. front: {
  9251. height: math.unit(5, "feet"),
  9252. weight: math.unit(30, "kg"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/vial/front.svg",
  9256. extra: 1365 / 1277,
  9257. bottom: 0.04
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(5, "feet"),
  9265. default: true
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9271. {
  9272. side: {
  9273. height: math.unit(3.4, "meters"),
  9274. weight: math.unit(1000, "lb"),
  9275. name: "Side",
  9276. image: {
  9277. source: "./media/characters/rovoska/side.svg",
  9278. extra: 4403 / 1515
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(3.4, "meters"),
  9286. default: true
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(8, "feet"),
  9295. weight: math.unit(315, "lb"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/gunner-rotthbauer/front.svg"
  9299. }
  9300. },
  9301. back: {
  9302. height: math.unit(8, "feet"),
  9303. weight: math.unit(315, "lb"),
  9304. name: "Back",
  9305. image: {
  9306. source: "./media/characters/gunner-rotthbauer/back.svg"
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Micro",
  9313. height: math.unit(3.5, "inches")
  9314. },
  9315. {
  9316. name: "Normal",
  9317. height: math.unit(8, "feet"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(250, "feet")
  9323. },
  9324. {
  9325. name: "Megamacro",
  9326. height: math.unit(1, "AU")
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9332. {
  9333. front: {
  9334. height: math.unit(5 + 5 / 12, "feet"),
  9335. weight: math.unit(140, "lb"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/allatia/front.svg",
  9339. extra: 1227 / 1180,
  9340. bottom: 0.027
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(5 + 5 / 12, "feet")
  9348. },
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(250, "feet"),
  9352. default: true
  9353. },
  9354. {
  9355. name: "Megamacro",
  9356. height: math.unit(8, "miles")
  9357. }
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(6, "feet"),
  9365. weight: math.unit(120, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/tene/front.svg",
  9369. extra: 1728 / 1578,
  9370. bottom: 0.022
  9371. }
  9372. },
  9373. stomping: {
  9374. height: math.unit(2.025, "meters"),
  9375. weight: math.unit(120, "lb"),
  9376. name: "Stomping",
  9377. image: {
  9378. source: "./media/characters/tene/stomping.svg",
  9379. extra: 938 / 873,
  9380. bottom: 0.01
  9381. }
  9382. },
  9383. sitting: {
  9384. height: math.unit(1, "meter"),
  9385. weight: math.unit(120, "lb"),
  9386. name: "Sitting",
  9387. image: {
  9388. source: "./media/characters/tene/sitting.svg",
  9389. extra: 437 / 415,
  9390. bottom: 0.1
  9391. }
  9392. },
  9393. feral: {
  9394. height: math.unit(3.9, "feet"),
  9395. weight: math.unit(250, "lb"),
  9396. name: "Feral",
  9397. image: {
  9398. source: "./media/characters/tene/feral.svg",
  9399. extra: 717 / 458,
  9400. bottom: 0.179
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Normal",
  9407. height: math.unit(6, "feet")
  9408. },
  9409. {
  9410. name: "Macro",
  9411. height: math.unit(300, "feet"),
  9412. default: true
  9413. },
  9414. {
  9415. name: "Megamacro",
  9416. height: math.unit(5, "miles")
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9422. {
  9423. side: {
  9424. height: math.unit(6, "feet"),
  9425. name: "Side",
  9426. image: {
  9427. source: "./media/characters/evander/side.svg",
  9428. extra: 877 / 477
  9429. }
  9430. },
  9431. },
  9432. [
  9433. {
  9434. name: "Normal",
  9435. height: math.unit(0.83, "meters"),
  9436. default: true
  9437. },
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9442. {
  9443. front: {
  9444. height: math.unit(12, "feet"),
  9445. weight: math.unit(1000, "lb"),
  9446. name: "Front",
  9447. image: {
  9448. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9449. extra: 1762 / 1611
  9450. }
  9451. },
  9452. back: {
  9453. height: math.unit(12, "feet"),
  9454. weight: math.unit(1000, "lb"),
  9455. name: "Back",
  9456. image: {
  9457. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9458. extra: 1762 / 1611
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(12, "feet"),
  9466. default: true
  9467. },
  9468. {
  9469. name: "Kaiju",
  9470. height: math.unit(150, "feet")
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(150, "lb"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/zero-alurus/front.svg"
  9483. }
  9484. },
  9485. back: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(150, "lb"),
  9488. name: "Back",
  9489. image: {
  9490. source: "./media/characters/zero-alurus/back.svg"
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(5 + 10 / 12, "feet")
  9498. },
  9499. {
  9500. name: "Macro",
  9501. height: math.unit(60, "feet"),
  9502. default: true
  9503. },
  9504. {
  9505. name: "Macro+",
  9506. height: math.unit(450, "feet")
  9507. },
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(6, "feet"),
  9515. weight: math.unit(200, "lb"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/mega-shi/front.svg",
  9519. extra: 1279 / 1250,
  9520. bottom: 0.02
  9521. }
  9522. },
  9523. back: {
  9524. height: math.unit(6, "feet"),
  9525. weight: math.unit(200, "lb"),
  9526. name: "Back",
  9527. image: {
  9528. source: "./media/characters/mega-shi/back.svg",
  9529. extra: 1279 / 1250,
  9530. bottom: 0.02
  9531. }
  9532. },
  9533. },
  9534. [
  9535. {
  9536. name: "Micro",
  9537. height: math.unit(16 + 6 / 12, "feet")
  9538. },
  9539. {
  9540. name: "Third Dimension",
  9541. height: math.unit(40, "meters")
  9542. },
  9543. {
  9544. name: "Normal",
  9545. height: math.unit(660, "feet"),
  9546. default: true
  9547. },
  9548. {
  9549. name: "Megamacro",
  9550. height: math.unit(10, "miles")
  9551. },
  9552. {
  9553. name: "Planetary Launch",
  9554. height: math.unit(500, "miles")
  9555. },
  9556. {
  9557. name: "Interstellar",
  9558. height: math.unit(1e9, "miles")
  9559. },
  9560. {
  9561. name: "Leaving the Universe",
  9562. height: math.unit(1, "gigaparsec")
  9563. },
  9564. {
  9565. name: "Travelling Universes",
  9566. height: math.unit(30e15, "parsecs")
  9567. },
  9568. ]
  9569. ))
  9570. characterMakers.push(() => makeCharacter(
  9571. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9572. {
  9573. front: {
  9574. height: math.unit(6, "feet"),
  9575. weight: math.unit(150, "lb"),
  9576. name: "Front",
  9577. image: {
  9578. source: "./media/characters/odyssey/front.svg",
  9579. extra: 1782 / 1582,
  9580. bottom: 0.01
  9581. }
  9582. },
  9583. side: {
  9584. height: math.unit(5.7, "feet"),
  9585. weight: math.unit(140, "lb"),
  9586. name: "Side",
  9587. image: {
  9588. source: "./media/characters/odyssey/side.svg",
  9589. extra: 6462 / 5700
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(5 + 4 / 12, "feet")
  9597. },
  9598. {
  9599. name: "Macro",
  9600. height: math.unit(1, "km")
  9601. },
  9602. {
  9603. name: "Megamacro",
  9604. height: math.unit(3000, "km")
  9605. },
  9606. {
  9607. name: "Gigamacro",
  9608. height: math.unit(1, "AU"),
  9609. default: true
  9610. },
  9611. {
  9612. name: "Omniversal",
  9613. height: math.unit(100e14, "lightyears")
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(6, "feet"),
  9622. weight: math.unit(300, "lb"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/mekuto/front.svg",
  9626. extra: 921 / 832,
  9627. bottom: 0.03
  9628. }
  9629. },
  9630. hand: {
  9631. height: math.unit(6 / 10.24, "feet"),
  9632. name: "Hand",
  9633. image: {
  9634. source: "./media/characters/mekuto/hand.svg"
  9635. }
  9636. },
  9637. foot: {
  9638. height: math.unit(6 / 5.05, "feet"),
  9639. name: "Foot",
  9640. image: {
  9641. source: "./media/characters/mekuto/foot.svg"
  9642. }
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Minimicro",
  9648. height: math.unit(0.2, "inches")
  9649. },
  9650. {
  9651. name: "Micro",
  9652. height: math.unit(1.5, "inches")
  9653. },
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(5 + 11 / 12, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Minimacro",
  9661. height: math.unit(17 + 9 / 12, "feet")
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(177.5, "feet")
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(152, "miles")
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(6.5, "inches"),
  9678. weight: math.unit(13, "oz"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/dafydd-tomos/front.svg",
  9682. extra: 2990 / 2603,
  9683. bottom: 0.03
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Micro",
  9690. height: math.unit(6.5, "inches"),
  9691. default: true
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9697. {
  9698. front: {
  9699. height: math.unit(6, "feet"),
  9700. weight: math.unit(150, "lb"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/splinter/front.svg",
  9704. extra: 2990 / 2882,
  9705. bottom: 0.04
  9706. }
  9707. },
  9708. back: {
  9709. height: math.unit(6, "feet"),
  9710. weight: math.unit(150, "lb"),
  9711. name: "Back",
  9712. image: {
  9713. source: "./media/characters/splinter/back.svg",
  9714. extra: 2990 / 2882,
  9715. bottom: 0.04
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Normal",
  9722. height: math.unit(6, "feet")
  9723. },
  9724. {
  9725. name: "Macro",
  9726. height: math.unit(230, "meters"),
  9727. default: true
  9728. },
  9729. ]
  9730. ))
  9731. characterMakers.push(() => makeCharacter(
  9732. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9733. {
  9734. front: {
  9735. height: math.unit(4 + 10 / 12, "feet"),
  9736. weight: math.unit(480, "lb"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/snow-gabumon/front.svg",
  9740. extra: 1140 / 963,
  9741. bottom: 0.058
  9742. }
  9743. },
  9744. back: {
  9745. height: math.unit(4 + 10 / 12, "feet"),
  9746. weight: math.unit(480, "lb"),
  9747. name: "Back",
  9748. image: {
  9749. source: "./media/characters/snow-gabumon/back.svg",
  9750. extra: 1115 / 962,
  9751. bottom: 0.041
  9752. }
  9753. },
  9754. frontUndresed: {
  9755. height: math.unit(4 + 10 / 12, "feet"),
  9756. weight: math.unit(480, "lb"),
  9757. name: "Front (Undressed)",
  9758. image: {
  9759. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9760. extra: 1061 / 960,
  9761. bottom: 0.045
  9762. }
  9763. },
  9764. },
  9765. [
  9766. {
  9767. name: "Micro",
  9768. height: math.unit(1, "inch")
  9769. },
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(4 + 10 / 12, "feet"),
  9773. default: true
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(200, "feet")
  9778. },
  9779. {
  9780. name: "Megamacro",
  9781. height: math.unit(120, "miles")
  9782. },
  9783. {
  9784. name: "Gigamacro",
  9785. height: math.unit(9800, "miles")
  9786. },
  9787. ]
  9788. ))
  9789. characterMakers.push(() => makeCharacter(
  9790. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9791. {
  9792. front: {
  9793. height: math.unit(1.7, "meters"),
  9794. weight: math.unit(140, "lb"),
  9795. name: "Front",
  9796. image: {
  9797. source: "./media/characters/moody/front.svg",
  9798. extra: 3226 / 3007,
  9799. bottom: 0.087
  9800. }
  9801. },
  9802. },
  9803. [
  9804. {
  9805. name: "Micro",
  9806. height: math.unit(1, "mm")
  9807. },
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(1.7, "meters"),
  9811. default: true
  9812. },
  9813. {
  9814. name: "Macro",
  9815. height: math.unit(80, "meters")
  9816. },
  9817. {
  9818. name: "Macro+",
  9819. height: math.unit(500, "meters")
  9820. },
  9821. ]
  9822. ))
  9823. characterMakers.push(() => makeCharacter(
  9824. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9825. {
  9826. front: {
  9827. height: math.unit(6, "feet"),
  9828. weight: math.unit(150, "lb"),
  9829. name: "Front",
  9830. image: {
  9831. source: "./media/characters/zyas/front.svg",
  9832. extra: 1180 / 1120,
  9833. bottom: 0.045
  9834. }
  9835. },
  9836. },
  9837. [
  9838. {
  9839. name: "Normal",
  9840. height: math.unit(10, "feet"),
  9841. default: true
  9842. },
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(500, "feet")
  9846. },
  9847. {
  9848. name: "Megamacro",
  9849. height: math.unit(5, "miles")
  9850. },
  9851. {
  9852. name: "Teramacro",
  9853. height: math.unit(150000, "miles")
  9854. },
  9855. ]
  9856. ))
  9857. characterMakers.push(() => makeCharacter(
  9858. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9859. {
  9860. front: {
  9861. height: math.unit(6, "feet"),
  9862. weight: math.unit(150, "lb"),
  9863. name: "Front",
  9864. image: {
  9865. source: "./media/characters/cuon/front.svg",
  9866. extra: 1390 / 1320,
  9867. bottom: 0.008
  9868. }
  9869. },
  9870. },
  9871. [
  9872. {
  9873. name: "Micro",
  9874. height: math.unit(3, "inches")
  9875. },
  9876. {
  9877. name: "Normal",
  9878. height: math.unit(18 + 9 / 12, "feet"),
  9879. default: true
  9880. },
  9881. {
  9882. name: "Macro",
  9883. height: math.unit(360, "feet")
  9884. },
  9885. {
  9886. name: "Megamacro",
  9887. height: math.unit(360, "miles")
  9888. },
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9893. {
  9894. front: {
  9895. height: math.unit(2.4, "meters"),
  9896. weight: math.unit(70, "kg"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/nyanuxk/front.svg",
  9900. extra: 1172 / 1084,
  9901. bottom: 0.065
  9902. }
  9903. },
  9904. side: {
  9905. height: math.unit(2.4, "meters"),
  9906. weight: math.unit(70, "kg"),
  9907. name: "Side",
  9908. image: {
  9909. source: "./media/characters/nyanuxk/side.svg",
  9910. extra: 1190 / 1132,
  9911. bottom: 0.007
  9912. }
  9913. },
  9914. back: {
  9915. height: math.unit(2.4, "meters"),
  9916. weight: math.unit(70, "kg"),
  9917. name: "Back",
  9918. image: {
  9919. source: "./media/characters/nyanuxk/back.svg",
  9920. extra: 1200 / 1141,
  9921. bottom: 0.015
  9922. }
  9923. },
  9924. foot: {
  9925. height: math.unit(0.52, "meters"),
  9926. name: "Foot",
  9927. image: {
  9928. source: "./media/characters/nyanuxk/foot.svg"
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Micro",
  9935. height: math.unit(2, "cm")
  9936. },
  9937. {
  9938. name: "Normal",
  9939. height: math.unit(2.4, "meters"),
  9940. default: true
  9941. },
  9942. {
  9943. name: "Smaller Macro",
  9944. height: math.unit(120, "meters")
  9945. },
  9946. {
  9947. name: "Bigger Macro",
  9948. height: math.unit(1.2, "km")
  9949. },
  9950. {
  9951. name: "Megamacro",
  9952. height: math.unit(15, "kilometers")
  9953. },
  9954. {
  9955. name: "Gigamacro",
  9956. height: math.unit(2000, "km")
  9957. },
  9958. {
  9959. name: "Teramacro",
  9960. height: math.unit(500000, "km")
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9966. {
  9967. side: {
  9968. height: math.unit(6, "feet"),
  9969. name: "Side",
  9970. image: {
  9971. source: "./media/characters/ailbhe/side.svg",
  9972. extra: 757 / 464,
  9973. bottom: 0.041
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(1.07, "meters"),
  9981. default: true
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(6, "feet"),
  9990. weight: math.unit(120, "kg"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/zevulfius/front.svg",
  9994. extra: 965 / 903
  9995. }
  9996. },
  9997. side: {
  9998. height: math.unit(6, "feet"),
  9999. weight: math.unit(120, "kg"),
  10000. name: "Side",
  10001. image: {
  10002. source: "./media/characters/zevulfius/side.svg",
  10003. extra: 939 / 900
  10004. }
  10005. },
  10006. back: {
  10007. height: math.unit(6, "feet"),
  10008. weight: math.unit(120, "kg"),
  10009. name: "Back",
  10010. image: {
  10011. source: "./media/characters/zevulfius/back.svg",
  10012. extra: 918 / 854,
  10013. bottom: 0.005
  10014. }
  10015. },
  10016. foot: {
  10017. height: math.unit(6 / 3.72, "feet"),
  10018. name: "Foot",
  10019. image: {
  10020. source: "./media/characters/zevulfius/foot.svg"
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Macro",
  10027. height: math.unit(750, "meters")
  10028. },
  10029. {
  10030. name: "Megamacro",
  10031. height: math.unit(20, "km"),
  10032. default: true
  10033. },
  10034. {
  10035. name: "Gigamacro",
  10036. height: math.unit(2000, "km")
  10037. },
  10038. {
  10039. name: "Teramacro",
  10040. height: math.unit(250000, "km")
  10041. },
  10042. ]
  10043. ))
  10044. characterMakers.push(() => makeCharacter(
  10045. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10046. {
  10047. front: {
  10048. height: math.unit(100, "feet"),
  10049. weight: math.unit(350, "kg"),
  10050. name: "Front",
  10051. image: {
  10052. source: "./media/characters/rikes/front.svg",
  10053. extra: 1565 / 1483,
  10054. bottom: 0.017
  10055. }
  10056. },
  10057. },
  10058. [
  10059. {
  10060. name: "Macro",
  10061. height: math.unit(100, "feet"),
  10062. default: true
  10063. },
  10064. ]
  10065. ))
  10066. characterMakers.push(() => makeCharacter(
  10067. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10068. {
  10069. anthro: {
  10070. height: math.unit(8, "feet"),
  10071. weight: math.unit(120, "kg"),
  10072. name: "Anthro",
  10073. image: {
  10074. source: "./media/characters/adam-silver-mane/anthro.svg",
  10075. extra: 5743 / 5339,
  10076. bottom: 0.07
  10077. }
  10078. },
  10079. taur: {
  10080. height: math.unit(16, "feet"),
  10081. weight: math.unit(1500, "kg"),
  10082. name: "Taur",
  10083. image: {
  10084. source: "./media/characters/adam-silver-mane/taur.svg",
  10085. extra: 1713 / 1571,
  10086. bottom: 0.01
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(8, "feet")
  10094. },
  10095. {
  10096. name: "Minimacro",
  10097. height: math.unit(80, "feet")
  10098. },
  10099. {
  10100. name: "Macro",
  10101. height: math.unit(800, "feet"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Megamacro",
  10106. height: math.unit(8000, "feet")
  10107. },
  10108. {
  10109. name: "Gigamacro",
  10110. height: math.unit(800, "miles")
  10111. },
  10112. {
  10113. name: "Teramacro",
  10114. height: math.unit(80000, "miles")
  10115. },
  10116. {
  10117. name: "Celestial",
  10118. height: math.unit(8e6, "miles")
  10119. },
  10120. {
  10121. name: "Star Dragon",
  10122. height: math.unit(800000, "parsecs")
  10123. },
  10124. {
  10125. name: "Godly",
  10126. height: math.unit(800, "teraparsecs")
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10132. {
  10133. front: {
  10134. height: math.unit(6, "feet"),
  10135. weight: math.unit(150, "lb"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/ky'owin/front.svg",
  10139. extra: 3888 / 3068,
  10140. bottom: 0.015
  10141. }
  10142. },
  10143. },
  10144. [
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(6 + 8 / 12, "feet")
  10148. },
  10149. {
  10150. name: "Large",
  10151. height: math.unit(68, "feet")
  10152. },
  10153. {
  10154. name: "Macro",
  10155. height: math.unit(132, "feet")
  10156. },
  10157. {
  10158. name: "Macro+",
  10159. height: math.unit(340, "feet")
  10160. },
  10161. {
  10162. name: "Macro++",
  10163. height: math.unit(680, "feet"),
  10164. default: true
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(1, "mile")
  10169. },
  10170. {
  10171. name: "Megamacro+",
  10172. height: math.unit(10, "miles")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(4, "feet"),
  10181. weight: math.unit(50, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/mal/front.svg",
  10185. extra: 785 / 724,
  10186. bottom: 0.07
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Micro",
  10193. height: math.unit(4, "inches")
  10194. },
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(4, "feet"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(200, "feet")
  10203. },
  10204. ]
  10205. ))
  10206. characterMakers.push(() => makeCharacter(
  10207. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10208. {
  10209. front: {
  10210. height: math.unit(6, "feet"),
  10211. weight: math.unit(150, "lb"),
  10212. name: "Front",
  10213. image: {
  10214. source: "./media/characters/jordan-deware/front.svg",
  10215. extra: 1191 / 1012
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Nano",
  10222. height: math.unit(0.01, "mm")
  10223. },
  10224. {
  10225. name: "Minimicro",
  10226. height: math.unit(1, "mm")
  10227. },
  10228. {
  10229. name: "Micro",
  10230. height: math.unit(0.5, "inches")
  10231. },
  10232. {
  10233. name: "Normal",
  10234. height: math.unit(4, "feet"),
  10235. default: true
  10236. },
  10237. {
  10238. name: "Minimacro",
  10239. height: math.unit(40, "meters")
  10240. },
  10241. {
  10242. name: "Small Macro",
  10243. height: math.unit(400, "meters")
  10244. },
  10245. {
  10246. name: "Macro",
  10247. height: math.unit(4, "miles")
  10248. },
  10249. {
  10250. name: "Megamacro",
  10251. height: math.unit(40, "miles")
  10252. },
  10253. {
  10254. name: "Megamacro+",
  10255. height: math.unit(400, "miles")
  10256. },
  10257. {
  10258. name: "Gigamacro",
  10259. height: math.unit(400000, "miles")
  10260. },
  10261. ]
  10262. ))
  10263. characterMakers.push(() => makeCharacter(
  10264. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10265. {
  10266. side: {
  10267. height: math.unit(6, "feet"),
  10268. weight: math.unit(150, "lb"),
  10269. name: "Side",
  10270. image: {
  10271. source: "./media/characters/kimiko/side.svg",
  10272. extra: 600 / 358
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(15, "feet"),
  10280. default: true
  10281. },
  10282. {
  10283. name: "Macro",
  10284. height: math.unit(220, "feet")
  10285. },
  10286. {
  10287. name: "Macro+",
  10288. height: math.unit(1450, "feet")
  10289. },
  10290. {
  10291. name: "Megamacro",
  10292. height: math.unit(11500, "feet")
  10293. },
  10294. {
  10295. name: "Gigamacro",
  10296. height: math.unit(9500, "miles")
  10297. },
  10298. {
  10299. name: "Teramacro",
  10300. height: math.unit(2208005005, "miles")
  10301. },
  10302. {
  10303. name: "Examacro",
  10304. height: math.unit(2750, "parsecs")
  10305. },
  10306. {
  10307. name: "Zettamacro",
  10308. height: math.unit(101500, "parsecs")
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(70, "kg"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/andrew-sleepy/front.svg"
  10321. }
  10322. },
  10323. side: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(70, "kg"),
  10326. name: "Side",
  10327. image: {
  10328. source: "./media/characters/andrew-sleepy/side.svg"
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Micro",
  10335. height: math.unit(1, "mm"),
  10336. default: true
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(150, "lb"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/judio/front.svg",
  10349. extra: 1258 / 1110
  10350. }
  10351. },
  10352. },
  10353. [
  10354. {
  10355. name: "Normal",
  10356. height: math.unit(5 + 6 / 12, "feet")
  10357. },
  10358. {
  10359. name: "Macro",
  10360. height: math.unit(1000, "feet"),
  10361. default: true
  10362. },
  10363. {
  10364. name: "Megamacro",
  10365. height: math.unit(10, "miles")
  10366. },
  10367. ]
  10368. ))
  10369. characterMakers.push(() => makeCharacter(
  10370. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10371. {
  10372. front: {
  10373. height: math.unit(6, "feet"),
  10374. weight: math.unit(68, "kg"),
  10375. name: "Front",
  10376. image: {
  10377. source: "./media/characters/nomaxice/front.svg",
  10378. extra: 1498 / 1073,
  10379. bottom: 0.075
  10380. }
  10381. },
  10382. foot: {
  10383. height: math.unit(1.1, "feet"),
  10384. name: "Foot",
  10385. image: {
  10386. source: "./media/characters/nomaxice/foot.svg"
  10387. }
  10388. },
  10389. },
  10390. [
  10391. {
  10392. name: "Micro",
  10393. height: math.unit(8, "cm")
  10394. },
  10395. {
  10396. name: "Norm",
  10397. height: math.unit(1.82, "m")
  10398. },
  10399. {
  10400. name: "Norm+",
  10401. height: math.unit(8.8, "feet")
  10402. },
  10403. {
  10404. name: "Big",
  10405. height: math.unit(8, "meters"),
  10406. default: true
  10407. },
  10408. {
  10409. name: "Macro",
  10410. height: math.unit(18, "meters")
  10411. },
  10412. {
  10413. name: "Macro+",
  10414. height: math.unit(88, "meters")
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10420. {
  10421. front: {
  10422. height: math.unit(12, "feet"),
  10423. weight: math.unit(1.5, "tons"),
  10424. name: "Front",
  10425. image: {
  10426. source: "./media/characters/dydros/front.svg",
  10427. extra: 863 / 800,
  10428. bottom: 0.015
  10429. }
  10430. },
  10431. back: {
  10432. height: math.unit(12, "feet"),
  10433. weight: math.unit(1.5, "tons"),
  10434. name: "Back",
  10435. image: {
  10436. source: "./media/characters/dydros/back.svg",
  10437. extra: 900 / 843,
  10438. bottom: 0.005
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Normal",
  10445. height: math.unit(12, "feet"),
  10446. default: true
  10447. },
  10448. ]
  10449. ))
  10450. characterMakers.push(() => makeCharacter(
  10451. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10452. {
  10453. front: {
  10454. height: math.unit(6, "feet"),
  10455. weight: math.unit(100, "kg"),
  10456. name: "Front",
  10457. image: {
  10458. source: "./media/characters/riggi/front.svg",
  10459. extra: 5787 / 5303
  10460. }
  10461. },
  10462. hyper: {
  10463. height: math.unit(6 * 5 / 3, "feet"),
  10464. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10465. name: "Hyper",
  10466. image: {
  10467. source: "./media/characters/riggi/hyper.svg",
  10468. extra: 3595 / 3485
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Small Macro",
  10475. height: math.unit(50, "feet")
  10476. },
  10477. {
  10478. name: "Default",
  10479. height: math.unit(200, "feet"),
  10480. default: true
  10481. },
  10482. {
  10483. name: "Loom",
  10484. height: math.unit(10000, "feet")
  10485. },
  10486. {
  10487. name: "Cruising Altitude",
  10488. height: math.unit(30000, "feet")
  10489. },
  10490. {
  10491. name: "Megamacro",
  10492. height: math.unit(100, "miles")
  10493. },
  10494. {
  10495. name: "Continent Sized",
  10496. height: math.unit(2800, "miles")
  10497. },
  10498. {
  10499. name: "Earth Sized",
  10500. height: math.unit(8000, "miles")
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10506. {
  10507. front: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(250, "lb"),
  10510. name: "Front",
  10511. image: {
  10512. source: "./media/characters/alexi/front.svg",
  10513. extra: 3483 / 3291,
  10514. bottom: 0.04
  10515. }
  10516. },
  10517. back: {
  10518. height: math.unit(6, "feet"),
  10519. weight: math.unit(250, "lb"),
  10520. name: "Back",
  10521. image: {
  10522. source: "./media/characters/alexi/back.svg",
  10523. extra: 3533 / 3356,
  10524. bottom: 0.021
  10525. }
  10526. },
  10527. frontTransforming: {
  10528. height: math.unit(8.58, "feet"),
  10529. weight: math.unit(1300, "lb"),
  10530. name: "Transforming",
  10531. image: {
  10532. source: "./media/characters/alexi/front-transforming.svg",
  10533. extra: 437 / 409,
  10534. bottom: 19 / 458.66
  10535. }
  10536. },
  10537. frontTransformed: {
  10538. height: math.unit(12.5, "feet"),
  10539. weight: math.unit(4000, "lb"),
  10540. name: "Transformed",
  10541. image: {
  10542. source: "./media/characters/alexi/front-transformed.svg",
  10543. extra: 639 / 614,
  10544. bottom: 30.55 / 671
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Normal",
  10551. height: math.unit(14, "feet"),
  10552. default: true
  10553. },
  10554. {
  10555. name: "Minimacro",
  10556. height: math.unit(30, "meters")
  10557. },
  10558. {
  10559. name: "Macro",
  10560. height: math.unit(500, "meters")
  10561. },
  10562. {
  10563. name: "Megamacro",
  10564. height: math.unit(9000, "km")
  10565. },
  10566. {
  10567. name: "Teramacro",
  10568. height: math.unit(384000, "km")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(150, "lb"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/kayroo/front.svg",
  10581. extra: 1153 / 1038,
  10582. bottom: 0.06
  10583. }
  10584. },
  10585. foot: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(150, "lb"),
  10588. name: "Foot",
  10589. image: {
  10590. source: "./media/characters/kayroo/foot.svg"
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(8, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Minimacro",
  10602. height: math.unit(250, "feet")
  10603. },
  10604. {
  10605. name: "Macro",
  10606. height: math.unit(2800, "feet")
  10607. },
  10608. {
  10609. name: "Megamacro",
  10610. height: math.unit(5200, "feet")
  10611. },
  10612. {
  10613. name: "Gigamacro",
  10614. height: math.unit(27000, "feet")
  10615. },
  10616. {
  10617. name: "Omega",
  10618. height: math.unit(45000, "feet")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(18, "feet"),
  10627. weight: math.unit(5800, "lb"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/rhys/front.svg",
  10631. extra: 3386 / 3090,
  10632. bottom: 0.07
  10633. }
  10634. },
  10635. },
  10636. [
  10637. {
  10638. name: "Normal",
  10639. height: math.unit(18, "feet"),
  10640. default: true
  10641. },
  10642. {
  10643. name: "Working Size",
  10644. height: math.unit(200, "feet")
  10645. },
  10646. {
  10647. name: "Demolition Size",
  10648. height: math.unit(2000, "feet")
  10649. },
  10650. {
  10651. name: "Maximum Licensed Size",
  10652. height: math.unit(5, "miles")
  10653. },
  10654. {
  10655. name: "Maximum Observed Size",
  10656. height: math.unit(10, "yottameters")
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10662. {
  10663. front: {
  10664. height: math.unit(6, "feet"),
  10665. weight: math.unit(250, "lb"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/toto/front.svg",
  10669. extra: 527 / 479,
  10670. bottom: 0.05
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Micro",
  10677. height: math.unit(3, "feet")
  10678. },
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(10, "feet")
  10682. },
  10683. {
  10684. name: "Macro",
  10685. height: math.unit(150, "feet"),
  10686. default: true
  10687. },
  10688. {
  10689. name: "Megamacro",
  10690. height: math.unit(1200, "feet")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "King", species: ["lion"], tags: ["anthro"] },
  10696. {
  10697. back: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(150, "lb"),
  10700. name: "Back",
  10701. image: {
  10702. source: "./media/characters/king/back.svg"
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Micro",
  10709. height: math.unit(2, "inches")
  10710. },
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(8, "feet")
  10714. },
  10715. {
  10716. name: "Macro",
  10717. height: math.unit(200, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Megamacro",
  10722. height: math.unit(50, "miles")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10728. {
  10729. anthro: {
  10730. height: math.unit(6 + 5 / 12, "feet"),
  10731. weight: math.unit(280, "lb"),
  10732. name: "Anthro",
  10733. image: {
  10734. source: "./media/characters/cordite/anthro.svg",
  10735. extra: 1986 / 1905,
  10736. bottom: 0.025
  10737. }
  10738. },
  10739. feral: {
  10740. height: math.unit(2, "feet"),
  10741. weight: math.unit(90, "lb"),
  10742. name: "Feral",
  10743. image: {
  10744. source: "./media/characters/cordite/feral.svg",
  10745. extra: 1260 / 755,
  10746. bottom: 0.05
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(6 + 5 / 12, "feet"),
  10754. default: true
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(6, "feet"),
  10763. weight: math.unit(150, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/pianostrong/front.svg",
  10767. extra: 6577 / 6254,
  10768. bottom: 0.02
  10769. }
  10770. },
  10771. side: {
  10772. height: math.unit(6, "feet"),
  10773. weight: math.unit(150, "lb"),
  10774. name: "Side",
  10775. image: {
  10776. source: "./media/characters/pianostrong/side.svg",
  10777. extra: 6106 / 5730
  10778. }
  10779. },
  10780. back: {
  10781. height: math.unit(6, "feet"),
  10782. weight: math.unit(150, "lb"),
  10783. name: "Back",
  10784. image: {
  10785. source: "./media/characters/pianostrong/back.svg",
  10786. extra: 6085 / 5733,
  10787. bottom: 0.01
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(100, "feet")
  10795. },
  10796. {
  10797. name: "Macro+",
  10798. height: math.unit(300, "feet"),
  10799. default: true
  10800. },
  10801. {
  10802. name: "Macro++",
  10803. height: math.unit(1000, "feet")
  10804. },
  10805. ]
  10806. ))
  10807. characterMakers.push(() => makeCharacter(
  10808. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10809. {
  10810. front: {
  10811. height: math.unit(6, "feet"),
  10812. weight: math.unit(150, "lb"),
  10813. name: "Front",
  10814. image: {
  10815. source: "./media/characters/kona/front.svg",
  10816. extra: 2960 / 2629,
  10817. bottom: 0.005
  10818. }
  10819. },
  10820. },
  10821. [
  10822. {
  10823. name: "Normal",
  10824. height: math.unit(11 + 8 / 12, "feet")
  10825. },
  10826. {
  10827. name: "Macro",
  10828. height: math.unit(850, "feet"),
  10829. default: true
  10830. },
  10831. {
  10832. name: "Macro+",
  10833. height: math.unit(1.5, "km"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Megamacro",
  10838. height: math.unit(80, "miles")
  10839. },
  10840. {
  10841. name: "Gigamacro",
  10842. height: math.unit(3500, "miles")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10848. {
  10849. side: {
  10850. height: math.unit(1.9, "meters"),
  10851. weight: math.unit(326, "kg"),
  10852. name: "Side",
  10853. image: {
  10854. source: "./media/characters/levi/side.svg",
  10855. extra: 1704 / 1334,
  10856. bottom: 0.02
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Normal",
  10863. height: math.unit(1.9, "meters"),
  10864. default: true
  10865. },
  10866. {
  10867. name: "Macro",
  10868. height: math.unit(20, "meters")
  10869. },
  10870. {
  10871. name: "Macro+",
  10872. height: math.unit(200, "meters")
  10873. },
  10874. {
  10875. name: "Megamacro",
  10876. height: math.unit(2, "km")
  10877. },
  10878. {
  10879. name: "Megamacro+",
  10880. height: math.unit(20, "km")
  10881. },
  10882. {
  10883. name: "Gigamacro",
  10884. height: math.unit(2500, "km")
  10885. },
  10886. {
  10887. name: "Gigamacro+",
  10888. height: math.unit(120000, "km")
  10889. },
  10890. {
  10891. name: "Teramacro",
  10892. height: math.unit(7.77e6, "km")
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10898. {
  10899. front: {
  10900. height: math.unit(6 + 4 / 12, "feet"),
  10901. weight: math.unit(188, "lb"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/bmc/front.svg",
  10905. extra: 1067 / 1022,
  10906. bottom: 0.047
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Human-sized",
  10913. height: math.unit(6 + 4 / 12, "feet")
  10914. },
  10915. {
  10916. name: "Small",
  10917. height: math.unit(250, "feet")
  10918. },
  10919. {
  10920. name: "Normal",
  10921. height: math.unit(1250, "feet"),
  10922. default: true
  10923. },
  10924. {
  10925. name: "Good Day",
  10926. height: math.unit(88, "miles")
  10927. },
  10928. {
  10929. name: "Largest Measured Size",
  10930. height: math.unit(11.2e6, "lightyears")
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10936. {
  10937. front: {
  10938. height: math.unit(20, "feet"),
  10939. weight: math.unit(2016, "kg"),
  10940. name: "Front",
  10941. image: {
  10942. source: "./media/characters/sven-the-kaiju/front.svg",
  10943. extra: 1479 / 1449,
  10944. bottom: 0.05
  10945. }
  10946. },
  10947. },
  10948. [
  10949. {
  10950. name: "Fairy",
  10951. height: math.unit(6, "inches")
  10952. },
  10953. {
  10954. name: "Normal",
  10955. height: math.unit(20, "feet"),
  10956. default: true
  10957. },
  10958. {
  10959. name: "Rampage",
  10960. height: math.unit(200, "feet")
  10961. },
  10962. {
  10963. name: "Archfey Forest Guardian",
  10964. height: math.unit(1, "mile")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10970. {
  10971. front: {
  10972. height: math.unit(4, "meters"),
  10973. weight: math.unit(2, "tons"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/marik/front.svg",
  10977. extra: 1057 / 1003,
  10978. bottom: 0.08
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(4, "meters"),
  10986. default: true
  10987. },
  10988. {
  10989. name: "Macro",
  10990. height: math.unit(20, "meters")
  10991. },
  10992. {
  10993. name: "Megamacro",
  10994. height: math.unit(50, "km")
  10995. },
  10996. {
  10997. name: "Gigamacro",
  10998. height: math.unit(100, "km")
  10999. },
  11000. {
  11001. name: "Alpha Macro",
  11002. height: math.unit(7.88e7, "yottameters")
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11008. {
  11009. front: {
  11010. height: math.unit(6, "feet"),
  11011. weight: math.unit(110, "lb"),
  11012. name: "Front",
  11013. image: {
  11014. source: "./media/characters/mel/front.svg",
  11015. extra: 736 / 617,
  11016. bottom: 0.017
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Pico",
  11023. height: math.unit(3, "pm")
  11024. },
  11025. {
  11026. name: "Nano",
  11027. height: math.unit(3, "nm")
  11028. },
  11029. {
  11030. name: "Micro",
  11031. height: math.unit(0.3, "mm"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Micro+",
  11036. height: math.unit(3, "mm")
  11037. },
  11038. {
  11039. name: "Normal",
  11040. height: math.unit(5 + 10.5 / 12, "feet")
  11041. },
  11042. ]
  11043. ))
  11044. characterMakers.push(() => makeCharacter(
  11045. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11046. {
  11047. kaiju: {
  11048. height: math.unit(1.75, "meters"),
  11049. weight: math.unit(55, "kg"),
  11050. name: "Kaiju",
  11051. image: {
  11052. source: "./media/characters/lykonous/kaiju.svg",
  11053. extra: 1055 / 946,
  11054. bottom: 0.135
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(2.5, "meters"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Kaiju Dragon",
  11066. height: math.unit(60, "meters")
  11067. },
  11068. {
  11069. name: "Mega Kaiju",
  11070. height: math.unit(120, "km")
  11071. },
  11072. {
  11073. name: "Giga Kaiju",
  11074. height: math.unit(200, "megameters")
  11075. },
  11076. {
  11077. name: "Terra Kaiju",
  11078. height: math.unit(400, "gigameters")
  11079. },
  11080. {
  11081. name: "Kaiju Dragon God",
  11082. height: math.unit(13000, "exaparsecs")
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11088. {
  11089. front: {
  11090. height: math.unit(6, "feet"),
  11091. weight: math.unit(150, "lb"),
  11092. name: "Front",
  11093. image: {
  11094. source: "./media/characters/blü/front.svg",
  11095. extra: 1883 / 1564,
  11096. bottom: 0.031
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Normal",
  11103. height: math.unit(13, "feet"),
  11104. default: true
  11105. },
  11106. {
  11107. name: "Big Boi",
  11108. height: math.unit(150, "meters")
  11109. },
  11110. {
  11111. name: "Mini Stomper",
  11112. height: math.unit(300, "meters")
  11113. },
  11114. {
  11115. name: "Macro",
  11116. height: math.unit(1000, "meters")
  11117. },
  11118. {
  11119. name: "Megamacro",
  11120. height: math.unit(11000, "meters")
  11121. },
  11122. {
  11123. name: "Gigamacro",
  11124. height: math.unit(11000, "km")
  11125. },
  11126. {
  11127. name: "Teramacro",
  11128. height: math.unit(420000, "km")
  11129. },
  11130. {
  11131. name: "Examacro",
  11132. height: math.unit(120, "parsecs")
  11133. },
  11134. {
  11135. name: "God Tho",
  11136. height: math.unit(98000000000, "parsecs")
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11142. {
  11143. taurFront: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(200, "lb"),
  11146. name: "Taur (Front)",
  11147. image: {
  11148. source: "./media/characters/scales/taur-front.svg",
  11149. extra: 1,
  11150. bottom: 0.05
  11151. }
  11152. },
  11153. taurBack: {
  11154. height: math.unit(6, "feet"),
  11155. weight: math.unit(200, "lb"),
  11156. name: "Taur (Back)",
  11157. image: {
  11158. source: "./media/characters/scales/taur-back.svg",
  11159. extra: 1,
  11160. bottom: 0.08
  11161. }
  11162. },
  11163. anthro: {
  11164. height: math.unit(6 * 7 / 12, "feet"),
  11165. weight: math.unit(100, "lb"),
  11166. name: "Anthro",
  11167. image: {
  11168. source: "./media/characters/scales/anthro.svg",
  11169. extra: 1,
  11170. bottom: 0.06
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Normal",
  11177. height: math.unit(12, "feet"),
  11178. default: true
  11179. },
  11180. ]
  11181. ))
  11182. characterMakers.push(() => makeCharacter(
  11183. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11184. {
  11185. front: {
  11186. height: math.unit(6, "feet"),
  11187. weight: math.unit(150, "lb"),
  11188. name: "Front",
  11189. image: {
  11190. source: "./media/characters/koragos/front.svg",
  11191. extra: 841 / 794,
  11192. bottom: 0.035
  11193. }
  11194. },
  11195. back: {
  11196. height: math.unit(6, "feet"),
  11197. weight: math.unit(150, "lb"),
  11198. name: "Back",
  11199. image: {
  11200. source: "./media/characters/koragos/back.svg",
  11201. extra: 841 / 810,
  11202. bottom: 0.022
  11203. }
  11204. },
  11205. },
  11206. [
  11207. {
  11208. name: "Normal",
  11209. height: math.unit(6 + 11 / 12, "feet"),
  11210. default: true
  11211. },
  11212. {
  11213. name: "Macro",
  11214. height: math.unit(490, "feet")
  11215. },
  11216. {
  11217. name: "Megamacro",
  11218. height: math.unit(10, "miles")
  11219. },
  11220. {
  11221. name: "Gigamacro",
  11222. height: math.unit(50, "miles")
  11223. },
  11224. ]
  11225. ))
  11226. characterMakers.push(() => makeCharacter(
  11227. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11228. {
  11229. front: {
  11230. height: math.unit(6, "feet"),
  11231. weight: math.unit(250, "lb"),
  11232. name: "Front",
  11233. image: {
  11234. source: "./media/characters/xylrem/front.svg",
  11235. extra: 3323 / 3050,
  11236. bottom: 0.065
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Micro",
  11243. height: math.unit(4, "feet")
  11244. },
  11245. {
  11246. name: "Normal",
  11247. height: math.unit(16, "feet"),
  11248. default: true
  11249. },
  11250. {
  11251. name: "Macro",
  11252. height: math.unit(2720, "feet")
  11253. },
  11254. {
  11255. name: "Megamacro",
  11256. height: math.unit(25000, "miles")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(8, "feet"),
  11265. weight: math.unit(250, "kg"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/ikideru/front.svg",
  11269. extra: 930 / 870,
  11270. bottom: 0.087
  11271. }
  11272. },
  11273. back: {
  11274. height: math.unit(8, "feet"),
  11275. weight: math.unit(250, "kg"),
  11276. name: "Back",
  11277. image: {
  11278. source: "./media/characters/ikideru/back.svg",
  11279. extra: 919 / 852,
  11280. bottom: 0.055
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Rare",
  11287. height: math.unit(8, "feet"),
  11288. default: true
  11289. },
  11290. {
  11291. name: "Playful Loom",
  11292. height: math.unit(80, "feet")
  11293. },
  11294. {
  11295. name: "City Leaner",
  11296. height: math.unit(230, "feet")
  11297. },
  11298. {
  11299. name: "Megamacro",
  11300. height: math.unit(2500, "feet")
  11301. },
  11302. {
  11303. name: "Gigamacro",
  11304. height: math.unit(26400, "feet")
  11305. },
  11306. {
  11307. name: "Tectonic Shifter",
  11308. height: math.unit(1.7, "megameters")
  11309. },
  11310. {
  11311. name: "Planet Carer",
  11312. height: math.unit(21, "megameters")
  11313. },
  11314. {
  11315. name: "God",
  11316. height: math.unit(11157.22, "parsecs")
  11317. },
  11318. ]
  11319. ))
  11320. characterMakers.push(() => makeCharacter(
  11321. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11322. {
  11323. front: {
  11324. height: math.unit(6, "feet"),
  11325. weight: math.unit(120, "lb"),
  11326. name: "Front",
  11327. image: {
  11328. source: "./media/characters/neo/front.svg"
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Micro",
  11335. height: math.unit(2, "inches"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Human Size",
  11340. height: math.unit(5 + 8 / 12, "feet")
  11341. },
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11346. {
  11347. front: {
  11348. height: math.unit(13 + 10 / 12, "feet"),
  11349. weight: math.unit(5320, "lb"),
  11350. name: "Front",
  11351. image: {
  11352. source: "./media/characters/chauncey-chantz/front.svg",
  11353. extra: 1587 / 1435,
  11354. bottom: 0.02
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Normal",
  11361. height: math.unit(13 + 10 / 12, "feet"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(45, "feet")
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(250, "miles")
  11371. },
  11372. {
  11373. name: "Planetary",
  11374. height: math.unit(10000, "miles")
  11375. },
  11376. {
  11377. name: "Galactic",
  11378. height: math.unit(40000, "parsecs")
  11379. },
  11380. {
  11381. name: "Universal",
  11382. height: math.unit(1, "yottameter")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11388. {
  11389. front: {
  11390. height: math.unit(6, "feet"),
  11391. weight: math.unit(150, "lb"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/epifox/front.svg",
  11395. extra: 1,
  11396. bottom: 0.075
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Micro",
  11403. height: math.unit(6, "inches")
  11404. },
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(12, "feet"),
  11408. default: true
  11409. },
  11410. {
  11411. name: "Macro",
  11412. height: math.unit(3810, "feet")
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(500, "miles")
  11417. },
  11418. ]
  11419. ))
  11420. characterMakers.push(() => makeCharacter(
  11421. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11422. {
  11423. front: {
  11424. height: math.unit(1.8796, "m"),
  11425. weight: math.unit(230, "lb"),
  11426. name: "Front",
  11427. image: {
  11428. source: "./media/characters/colin-t/front.svg",
  11429. extra: 1272 / 1193,
  11430. bottom: 0.07
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Micro",
  11437. height: math.unit(0.571, "meters")
  11438. },
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(1.8796, "meters"),
  11442. default: true
  11443. },
  11444. {
  11445. name: "Tall",
  11446. height: math.unit(4, "meters")
  11447. },
  11448. {
  11449. name: "Macro",
  11450. height: math.unit(67.241, "meters")
  11451. },
  11452. {
  11453. name: "Megamacro",
  11454. height: math.unit(371.856, "meters")
  11455. },
  11456. {
  11457. name: "Planetary",
  11458. height: math.unit(12631.5689, "km")
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(1.85, "meters"),
  11467. weight: math.unit(80, "kg"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/matvei/front.svg",
  11471. extra: 614 / 594,
  11472. bottom: 0.01
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(1.85, "meters"),
  11480. default: true
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(5 + 9 / 12, "feet"),
  11489. weight: math.unit(70, "lb"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/quincy/front.svg",
  11493. extra: 3041 / 2751
  11494. }
  11495. },
  11496. back: {
  11497. height: math.unit(5 + 9 / 12, "feet"),
  11498. weight: math.unit(70, "lb"),
  11499. name: "Back",
  11500. image: {
  11501. source: "./media/characters/quincy/back.svg",
  11502. extra: 3041 / 2751
  11503. }
  11504. },
  11505. flying: {
  11506. height: math.unit(5 + 4 / 12, "feet"),
  11507. weight: math.unit(70, "lb"),
  11508. name: "Flying",
  11509. image: {
  11510. source: "./media/characters/quincy/flying.svg",
  11511. extra: 1044 / 930
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Micro",
  11518. height: math.unit(3, "cm")
  11519. },
  11520. {
  11521. name: "Normal",
  11522. height: math.unit(5 + 9 / 12, "feet")
  11523. },
  11524. {
  11525. name: "Macro",
  11526. height: math.unit(200, "meters"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Megamacro",
  11531. height: math.unit(1000, "meters")
  11532. },
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11537. {
  11538. front: {
  11539. height: math.unit(4 + 7 / 12, "feet"),
  11540. weight: math.unit(50, "lb"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/vanrel/front.svg",
  11544. extra: 1,
  11545. bottom: 0.02
  11546. }
  11547. },
  11548. frontAlt: {
  11549. height: math.unit(4 + 7 / 12, "feet"),
  11550. weight: math.unit(50, "lb"),
  11551. name: "Front-alt",
  11552. image: {
  11553. source: "./media/characters/vanrel/front-alt.svg",
  11554. extra: 1,
  11555. bottom: 15 / 1511
  11556. }
  11557. },
  11558. elemental: {
  11559. height: math.unit(3, "feet"),
  11560. weight: math.unit(50, "lb"),
  11561. name: "Elemental",
  11562. image: {
  11563. source: "./media/characters/vanrel/elemental.svg",
  11564. extra: 192.3 / 162.8,
  11565. bottom: 1.79 / 194.17
  11566. }
  11567. },
  11568. side: {
  11569. height: math.unit(4 + 7 / 12, "feet"),
  11570. weight: math.unit(50, "lb"),
  11571. name: "Side",
  11572. image: {
  11573. source: "./media/characters/vanrel/side.svg",
  11574. extra: 1,
  11575. bottom: 0.025
  11576. }
  11577. },
  11578. tome: {
  11579. height: math.unit(1.35, "feet"),
  11580. weight: math.unit(10, "lb"),
  11581. name: "Vanrel's Tome",
  11582. rename: true,
  11583. image: {
  11584. source: "./media/characters/vanrel/tome.svg"
  11585. }
  11586. },
  11587. beans: {
  11588. height: math.unit(0.89, "feet"),
  11589. name: "Beans",
  11590. image: {
  11591. source: "./media/characters/vanrel/beans.svg"
  11592. }
  11593. },
  11594. },
  11595. [
  11596. {
  11597. name: "Normal",
  11598. height: math.unit(4 + 7 / 12, "feet"),
  11599. default: true
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11605. {
  11606. front: {
  11607. height: math.unit(7 + 5 / 12, "feet"),
  11608. weight: math.unit(150, "lb"),
  11609. name: "Front",
  11610. image: {
  11611. source: "./media/characters/kuiper-vanrel/front.svg",
  11612. extra: 1118 / 1068,
  11613. bottom: 0.09
  11614. }
  11615. },
  11616. foot: {
  11617. height: math.unit(0.55, "meters"),
  11618. name: "Foot",
  11619. image: {
  11620. source: "./media/characters/kuiper-vanrel/foot.svg",
  11621. }
  11622. },
  11623. battle: {
  11624. height: math.unit(6.824, "feet"),
  11625. weight: math.unit(150, "lb"),
  11626. name: "Battle",
  11627. image: {
  11628. source: "./media/characters/kuiper-vanrel/battle.svg",
  11629. extra: 1466 / 1327,
  11630. bottom: 29 / 1492.5
  11631. }
  11632. },
  11633. battleAlt: {
  11634. height: math.unit(6.824, "feet"),
  11635. weight: math.unit(150, "lb"),
  11636. name: "Battle (Alt)",
  11637. image: {
  11638. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11639. extra: 2081 / 1965,
  11640. bottom: 40 / 2121
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(7 + 5 / 12, "feet"),
  11648. default: true
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(8 + 5 / 12, "feet"),
  11657. weight: math.unit(150, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/keset-vanrel/front.svg",
  11661. extra: 1150 / 1084,
  11662. bottom: 0.05
  11663. }
  11664. },
  11665. hand: {
  11666. height: math.unit(0.6, "meters"),
  11667. name: "Hand",
  11668. image: {
  11669. source: "./media/characters/keset-vanrel/hand.svg"
  11670. }
  11671. },
  11672. foot: {
  11673. height: math.unit(0.94978, "meters"),
  11674. name: "Foot",
  11675. image: {
  11676. source: "./media/characters/keset-vanrel/foot.svg"
  11677. }
  11678. },
  11679. battle: {
  11680. height: math.unit(7.408, "feet"),
  11681. weight: math.unit(150, "lb"),
  11682. name: "Battle",
  11683. image: {
  11684. source: "./media/characters/keset-vanrel/battle.svg",
  11685. extra: 1890 / 1386,
  11686. bottom: 73.28 / 1970
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(8 + 5 / 12, "feet"),
  11694. default: true
  11695. },
  11696. ]
  11697. ))
  11698. characterMakers.push(() => makeCharacter(
  11699. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11700. {
  11701. front: {
  11702. height: math.unit(6, "feet"),
  11703. weight: math.unit(150, "lb"),
  11704. name: "Front",
  11705. image: {
  11706. source: "./media/characters/neos/front.svg",
  11707. extra: 1696 / 992,
  11708. bottom: 0.14
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(54, "cm"),
  11716. default: true
  11717. },
  11718. {
  11719. name: "Macro",
  11720. height: math.unit(100, "m")
  11721. },
  11722. {
  11723. name: "Megamacro",
  11724. height: math.unit(10, "km")
  11725. },
  11726. {
  11727. name: "Megamacro+",
  11728. height: math.unit(100, "km")
  11729. },
  11730. {
  11731. name: "Gigamacro",
  11732. height: math.unit(100, "Mm")
  11733. },
  11734. {
  11735. name: "Teramacro",
  11736. height: math.unit(100, "Gm")
  11737. },
  11738. {
  11739. name: "Examacro",
  11740. height: math.unit(100, "Em")
  11741. },
  11742. {
  11743. name: "Godly",
  11744. height: math.unit(10000, "Ym")
  11745. },
  11746. {
  11747. name: "Beyond Godly",
  11748. height: math.unit(25, "multiverses")
  11749. },
  11750. ]
  11751. ))
  11752. characterMakers.push(() => makeCharacter(
  11753. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11754. {
  11755. feminine: {
  11756. height: math.unit(5, "feet"),
  11757. weight: math.unit(100, "lb"),
  11758. name: "Feminine",
  11759. image: {
  11760. source: "./media/characters/sammy-mouse/feminine.svg",
  11761. extra: 2526 / 2425,
  11762. bottom: 0.123
  11763. }
  11764. },
  11765. masculine: {
  11766. height: math.unit(5, "feet"),
  11767. weight: math.unit(100, "lb"),
  11768. name: "Masculine",
  11769. image: {
  11770. source: "./media/characters/sammy-mouse/masculine.svg",
  11771. extra: 2526 / 2425,
  11772. bottom: 0.123
  11773. }
  11774. },
  11775. },
  11776. [
  11777. {
  11778. name: "Micro",
  11779. height: math.unit(5, "inches")
  11780. },
  11781. {
  11782. name: "Normal",
  11783. height: math.unit(5, "feet"),
  11784. default: true
  11785. },
  11786. {
  11787. name: "Macro",
  11788. height: math.unit(60, "feet")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11794. {
  11795. front: {
  11796. height: math.unit(4, "feet"),
  11797. weight: math.unit(50, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/kole/front.svg",
  11801. extra: 1423 / 1303,
  11802. bottom: 0.025
  11803. }
  11804. },
  11805. back: {
  11806. height: math.unit(4, "feet"),
  11807. weight: math.unit(50, "lb"),
  11808. name: "Back",
  11809. image: {
  11810. source: "./media/characters/kole/back.svg",
  11811. extra: 1426 / 1280,
  11812. bottom: 0.02
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(4, "feet"),
  11820. default: true
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(2 + 6 / 12, "feet"),
  11829. weight: math.unit(20, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/rufran/front.svg",
  11833. extra: 2041 / 1839,
  11834. bottom: 0.055
  11835. }
  11836. },
  11837. back: {
  11838. height: math.unit(2 + 6 / 12, "feet"),
  11839. weight: math.unit(20, "lb"),
  11840. name: "Back",
  11841. image: {
  11842. source: "./media/characters/rufran/back.svg",
  11843. extra: 2054 / 1839,
  11844. bottom: 0.01
  11845. }
  11846. },
  11847. hand: {
  11848. height: math.unit(0.2166, "meters"),
  11849. name: "Hand",
  11850. image: {
  11851. source: "./media/characters/rufran/hand.svg"
  11852. }
  11853. },
  11854. foot: {
  11855. height: math.unit(0.185, "meters"),
  11856. name: "Foot",
  11857. image: {
  11858. source: "./media/characters/rufran/foot.svg"
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Micro",
  11865. height: math.unit(1, "inch")
  11866. },
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(2 + 6 / 12, "feet"),
  11870. default: true
  11871. },
  11872. {
  11873. name: "Big",
  11874. height: math.unit(60, "feet")
  11875. },
  11876. {
  11877. name: "Macro",
  11878. height: math.unit(325, "feet")
  11879. },
  11880. ]
  11881. ))
  11882. characterMakers.push(() => makeCharacter(
  11883. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11884. {
  11885. front: {
  11886. height: math.unit(0.3, "meters"),
  11887. weight: math.unit(3.5, "kg"),
  11888. name: "Front",
  11889. image: {
  11890. source: "./media/characters/chip/front.svg",
  11891. extra: 748 / 674
  11892. }
  11893. },
  11894. },
  11895. [
  11896. {
  11897. name: "Micro",
  11898. height: math.unit(1, "inch"),
  11899. default: true
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11905. {
  11906. side: {
  11907. height: math.unit(2.3, "meters"),
  11908. weight: math.unit(3500, "lb"),
  11909. name: "Side",
  11910. image: {
  11911. source: "./media/characters/torvid/side.svg",
  11912. extra: 1972 / 722,
  11913. bottom: 0.035
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Normal",
  11920. height: math.unit(2.3, "meters"),
  11921. default: true
  11922. },
  11923. ]
  11924. ))
  11925. characterMakers.push(() => makeCharacter(
  11926. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11927. {
  11928. front: {
  11929. height: math.unit(2, "meters"),
  11930. weight: math.unit(150.5, "kg"),
  11931. name: "Front",
  11932. image: {
  11933. source: "./media/characters/susan/front.svg",
  11934. extra: 693 / 635,
  11935. bottom: 0.05
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Megamacro",
  11942. height: math.unit(505, "miles"),
  11943. default: true
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(150, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/raindrops/front.svg",
  11956. extra: 2655 / 2461,
  11957. bottom: 49 / 2705
  11958. }
  11959. },
  11960. back: {
  11961. height: math.unit(6, "feet"),
  11962. weight: math.unit(150, "lb"),
  11963. name: "Back",
  11964. image: {
  11965. source: "./media/characters/raindrops/back.svg",
  11966. extra: 2574 / 2400,
  11967. bottom: 65 / 2634
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Micro",
  11974. height: math.unit(6, "inches")
  11975. },
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(6 + 2 / 12, "feet")
  11979. },
  11980. {
  11981. name: "Macro",
  11982. height: math.unit(131, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(15, "miles")
  11988. },
  11989. {
  11990. name: "Gigamacro",
  11991. height: math.unit(4000, "miles")
  11992. },
  11993. {
  11994. name: "Teramacro",
  11995. height: math.unit(315000, "miles")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(2.794, "meters"),
  12004. weight: math.unit(325, "kg"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/tezwa/front.svg",
  12008. extra: 2083 / 1906,
  12009. bottom: 0.031
  12010. }
  12011. },
  12012. foot: {
  12013. height: math.unit(0.687, "meters"),
  12014. name: "Foot",
  12015. image: {
  12016. source: "./media/characters/tezwa/foot.svg"
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Normal",
  12023. height: math.unit(9 + 2 / 12, "feet"),
  12024. default: true
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12030. {
  12031. front: {
  12032. height: math.unit(58, "feet"),
  12033. weight: math.unit(89000, "lb"),
  12034. name: "Front",
  12035. image: {
  12036. source: "./media/characters/typhus/front.svg",
  12037. extra: 816 / 800,
  12038. bottom: 0.065
  12039. }
  12040. },
  12041. },
  12042. [
  12043. {
  12044. name: "Macro",
  12045. height: math.unit(58, "feet"),
  12046. default: true
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12052. {
  12053. front: {
  12054. height: math.unit(12, "feet"),
  12055. weight: math.unit(6, "tonnes"),
  12056. name: "Front",
  12057. image: {
  12058. source: "./media/characters/lyra-von-wulf/front.svg",
  12059. extra: 1,
  12060. bottom: 0.10
  12061. }
  12062. },
  12063. frontMecha: {
  12064. height: math.unit(12, "feet"),
  12065. weight: math.unit(12, "tonnes"),
  12066. name: "Front (Mecha)",
  12067. image: {
  12068. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12069. extra: 1,
  12070. bottom: 0.042
  12071. }
  12072. },
  12073. maw: {
  12074. height: math.unit(2.2, "feet"),
  12075. name: "Maw",
  12076. image: {
  12077. source: "./media/characters/lyra-von-wulf/maw.svg"
  12078. }
  12079. },
  12080. },
  12081. [
  12082. {
  12083. name: "Normal",
  12084. height: math.unit(12, "feet"),
  12085. default: true
  12086. },
  12087. {
  12088. name: "Classic",
  12089. height: math.unit(50, "feet")
  12090. },
  12091. {
  12092. name: "Macro",
  12093. height: math.unit(500, "feet")
  12094. },
  12095. {
  12096. name: "Megamacro",
  12097. height: math.unit(1, "mile")
  12098. },
  12099. {
  12100. name: "Gigamacro",
  12101. height: math.unit(400, "miles")
  12102. },
  12103. {
  12104. name: "Teramacro",
  12105. height: math.unit(22000, "miles")
  12106. },
  12107. {
  12108. name: "Solarmacro",
  12109. height: math.unit(8600000, "miles")
  12110. },
  12111. {
  12112. name: "Galactic",
  12113. height: math.unit(1057000, "lightyears")
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12119. {
  12120. front: {
  12121. height: math.unit(6 + 10 / 12, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/dixon/front.svg",
  12126. extra: 3361 / 3209,
  12127. bottom: 0.01
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Normal",
  12134. height: math.unit(6 + 10 / 12, "feet"),
  12135. default: true
  12136. },
  12137. {
  12138. name: "Big",
  12139. height: math.unit(12, "meters")
  12140. },
  12141. {
  12142. name: "Macro",
  12143. height: math.unit(500, "meters")
  12144. },
  12145. {
  12146. name: "Megamacro",
  12147. height: math.unit(2, "km")
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12153. {
  12154. front: {
  12155. height: math.unit(185, "cm"),
  12156. weight: math.unit(68, "kg"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/kauko/front.svg",
  12160. extra: 1455 / 1421,
  12161. bottom: 0.03
  12162. }
  12163. },
  12164. back: {
  12165. height: math.unit(185, "cm"),
  12166. weight: math.unit(68, "kg"),
  12167. name: "Back",
  12168. image: {
  12169. source: "./media/characters/kauko/back.svg",
  12170. extra: 1455 / 1421,
  12171. bottom: 0.004
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(185, "cm"),
  12179. default: true
  12180. },
  12181. ]
  12182. ))
  12183. characterMakers.push(() => makeCharacter(
  12184. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12185. {
  12186. front: {
  12187. height: math.unit(6, "feet"),
  12188. weight: math.unit(150, "kg"),
  12189. name: "Front",
  12190. image: {
  12191. source: "./media/characters/varg/front.svg",
  12192. extra: 1108 / 1018,
  12193. bottom: 0.0375
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Normal",
  12200. height: math.unit(5, "meters")
  12201. },
  12202. {
  12203. name: "Macro",
  12204. height: math.unit(200, "meters")
  12205. },
  12206. {
  12207. name: "Megamacro",
  12208. height: math.unit(20, "kilometers")
  12209. },
  12210. {
  12211. name: "True Size",
  12212. height: math.unit(211, "km"),
  12213. default: true
  12214. },
  12215. {
  12216. name: "Gigamacro",
  12217. height: math.unit(1000, "km")
  12218. },
  12219. {
  12220. name: "Gigamacro+",
  12221. height: math.unit(8000, "km")
  12222. },
  12223. {
  12224. name: "Teramacro",
  12225. height: math.unit(1000000, "km")
  12226. },
  12227. ]
  12228. ))
  12229. characterMakers.push(() => makeCharacter(
  12230. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12231. {
  12232. front: {
  12233. height: math.unit(7 + 7 / 12, "feet"),
  12234. weight: math.unit(267, "lb"),
  12235. name: "Front",
  12236. image: {
  12237. source: "./media/characters/dayza/front.svg",
  12238. extra: 1262 / 1200,
  12239. bottom: 0.035
  12240. }
  12241. },
  12242. side: {
  12243. height: math.unit(7 + 7 / 12, "feet"),
  12244. weight: math.unit(267, "lb"),
  12245. name: "Side",
  12246. image: {
  12247. source: "./media/characters/dayza/side.svg",
  12248. extra: 1295 / 1245,
  12249. bottom: 0.05
  12250. }
  12251. },
  12252. back: {
  12253. height: math.unit(7 + 7 / 12, "feet"),
  12254. weight: math.unit(267, "lb"),
  12255. name: "Back",
  12256. image: {
  12257. source: "./media/characters/dayza/back.svg",
  12258. extra: 1241 / 1170
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Normal",
  12265. height: math.unit(7 + 7 / 12, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(155, "feet")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(6 + 5 / 12, "feet"),
  12279. weight: math.unit(160, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/xanthos/front.svg",
  12283. extra: 1,
  12284. bottom: 0.04
  12285. }
  12286. },
  12287. back: {
  12288. height: math.unit(6 + 5 / 12, "feet"),
  12289. weight: math.unit(160, "lb"),
  12290. name: "Back",
  12291. image: {
  12292. source: "./media/characters/xanthos/back.svg",
  12293. extra: 1,
  12294. bottom: 0.03
  12295. }
  12296. },
  12297. hand: {
  12298. height: math.unit(0.928, "feet"),
  12299. name: "Hand",
  12300. image: {
  12301. source: "./media/characters/xanthos/hand.svg"
  12302. }
  12303. },
  12304. foot: {
  12305. height: math.unit(1.286, "feet"),
  12306. name: "Foot",
  12307. image: {
  12308. source: "./media/characters/xanthos/foot.svg"
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(6 + 5 / 12, "feet"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Normal+",
  12320. height: math.unit(6, "meters")
  12321. },
  12322. {
  12323. name: "Macro",
  12324. height: math.unit(40, "feet")
  12325. },
  12326. {
  12327. name: "Macro+",
  12328. height: math.unit(200, "meters")
  12329. },
  12330. {
  12331. name: "Megamacro",
  12332. height: math.unit(20, "km")
  12333. },
  12334. {
  12335. name: "Megamacro+",
  12336. height: math.unit(100, "km")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(6 + 3 / 12, "feet"),
  12345. weight: math.unit(215, "lb"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/grynn/front.svg",
  12349. extra: 4627 / 4209,
  12350. bottom: 0.047
  12351. }
  12352. },
  12353. },
  12354. [
  12355. {
  12356. name: "Micro",
  12357. height: math.unit(6, "inches")
  12358. },
  12359. {
  12360. name: "Normal",
  12361. height: math.unit(6 + 3 / 12, "feet"),
  12362. default: true
  12363. },
  12364. {
  12365. name: "Big",
  12366. height: math.unit(104, "feet")
  12367. },
  12368. {
  12369. name: "Macro",
  12370. height: math.unit(944, "feet")
  12371. },
  12372. {
  12373. name: "Macro+",
  12374. height: math.unit(9480, "feet")
  12375. },
  12376. {
  12377. name: "Megamacro",
  12378. height: math.unit(78752, "feet")
  12379. },
  12380. {
  12381. name: "Megamacro+",
  12382. height: math.unit(630128, "feet")
  12383. },
  12384. {
  12385. name: "Megamacro++",
  12386. height: math.unit(3150695, "feet")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12392. {
  12393. front: {
  12394. height: math.unit(7 + 5 / 12, "feet"),
  12395. weight: math.unit(450, "lb"),
  12396. name: "Front",
  12397. image: {
  12398. source: "./media/characters/mocha-aura/front.svg",
  12399. extra: 1907 / 1817,
  12400. bottom: 0.04
  12401. }
  12402. },
  12403. back: {
  12404. height: math.unit(7 + 5 / 12, "feet"),
  12405. weight: math.unit(450, "lb"),
  12406. name: "Back",
  12407. image: {
  12408. source: "./media/characters/mocha-aura/back.svg",
  12409. extra: 1900 / 1825,
  12410. bottom: 0.045
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Nano",
  12417. height: math.unit(1, "nm")
  12418. },
  12419. {
  12420. name: "Megamicro",
  12421. height: math.unit(1, "mm")
  12422. },
  12423. {
  12424. name: "Micro",
  12425. height: math.unit(3, "inches")
  12426. },
  12427. {
  12428. name: "Normal",
  12429. height: math.unit(7 + 5 / 12, "feet"),
  12430. default: true
  12431. },
  12432. {
  12433. name: "Macro",
  12434. height: math.unit(30, "feet")
  12435. },
  12436. {
  12437. name: "Megamacro",
  12438. height: math.unit(3500, "feet")
  12439. },
  12440. {
  12441. name: "Teramacro",
  12442. height: math.unit(500000, "miles")
  12443. },
  12444. {
  12445. name: "Petamacro",
  12446. height: math.unit(50000000000000000, "parsecs")
  12447. },
  12448. ]
  12449. ))
  12450. characterMakers.push(() => makeCharacter(
  12451. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12452. {
  12453. front: {
  12454. height: math.unit(6, "feet"),
  12455. weight: math.unit(150, "lb"),
  12456. name: "Front",
  12457. image: {
  12458. source: "./media/characters/ilisha-devya/front.svg",
  12459. extra: 1,
  12460. bottom: 0.175
  12461. }
  12462. },
  12463. back: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(150, "lb"),
  12466. name: "Back",
  12467. image: {
  12468. source: "./media/characters/ilisha-devya/back.svg",
  12469. extra: 1,
  12470. bottom: 0.015
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Macro",
  12477. height: math.unit(500, "feet"),
  12478. default: true
  12479. },
  12480. {
  12481. name: "Megamacro",
  12482. height: math.unit(10, "miles")
  12483. },
  12484. {
  12485. name: "Gigamacro",
  12486. height: math.unit(100000, "miles")
  12487. },
  12488. {
  12489. name: "Examacro",
  12490. height: math.unit(1e9, "lightyears")
  12491. },
  12492. {
  12493. name: "Omniversal",
  12494. height: math.unit(1e33, "lightyears")
  12495. },
  12496. {
  12497. name: "Beyond Infinite",
  12498. height: math.unit(1e100, "lightyears")
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12504. {
  12505. Side: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(150, "lb"),
  12508. name: "Side",
  12509. image: {
  12510. source: "./media/characters/mira/side.svg",
  12511. extra: 900 / 799,
  12512. bottom: 0.02
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Human Size",
  12519. height: math.unit(6, "feet")
  12520. },
  12521. {
  12522. name: "Macro",
  12523. height: math.unit(100, "feet"),
  12524. default: true
  12525. },
  12526. {
  12527. name: "Megamacro",
  12528. height: math.unit(10, "miles")
  12529. },
  12530. {
  12531. name: "Gigamacro",
  12532. height: math.unit(25000, "miles")
  12533. },
  12534. {
  12535. name: "Teramacro",
  12536. height: math.unit(300, "AU")
  12537. },
  12538. {
  12539. name: "Full Size",
  12540. height: math.unit(4.5e10, "lightyears")
  12541. },
  12542. ]
  12543. ))
  12544. characterMakers.push(() => makeCharacter(
  12545. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12546. {
  12547. front: {
  12548. height: math.unit(6, "feet"),
  12549. weight: math.unit(150, "lb"),
  12550. name: "Front",
  12551. image: {
  12552. source: "./media/characters/holly/front.svg",
  12553. extra: 639 / 606
  12554. }
  12555. },
  12556. back: {
  12557. height: math.unit(6, "feet"),
  12558. weight: math.unit(150, "lb"),
  12559. name: "Back",
  12560. image: {
  12561. source: "./media/characters/holly/back.svg",
  12562. extra: 623 / 598
  12563. }
  12564. },
  12565. frontWorking: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(150, "lb"),
  12568. name: "Front (Working)",
  12569. image: {
  12570. source: "./media/characters/holly/front-working.svg",
  12571. extra: 607 / 577,
  12572. bottom: 0.048
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(12 + 3 / 12, "feet"),
  12580. default: true
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12586. {
  12587. front: {
  12588. height: math.unit(6, "feet"),
  12589. weight: math.unit(150, "lb"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/porter/front.svg",
  12593. extra: 1,
  12594. bottom: 0.01
  12595. }
  12596. },
  12597. frontRobes: {
  12598. height: math.unit(6, "feet"),
  12599. weight: math.unit(150, "lb"),
  12600. name: "Front (Robes)",
  12601. image: {
  12602. source: "./media/characters/porter/front-robes.svg",
  12603. extra: 1.01,
  12604. bottom: 0.01
  12605. }
  12606. },
  12607. },
  12608. [
  12609. {
  12610. name: "Normal",
  12611. height: math.unit(11 + 9 / 12, "feet"),
  12612. default: true
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12618. {
  12619. legendary: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(150, "lb"),
  12622. name: "Legendary",
  12623. image: {
  12624. source: "./media/characters/lucy/legendary.svg",
  12625. extra: 1355 / 1100,
  12626. bottom: 0.045
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Legendary",
  12633. height: math.unit(86882 * 2, "miles"),
  12634. default: true
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6, "feet"),
  12643. weight: math.unit(150, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/drusilla/front.svg",
  12647. extra: 678 / 635,
  12648. bottom: 0.03
  12649. }
  12650. },
  12651. back: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(150, "lb"),
  12654. name: "Back",
  12655. image: {
  12656. source: "./media/characters/drusilla/back.svg",
  12657. extra: 678 / 635,
  12658. bottom: 0.005
  12659. }
  12660. },
  12661. },
  12662. [
  12663. {
  12664. name: "Macro",
  12665. height: math.unit(100, "feet")
  12666. },
  12667. {
  12668. name: "Canon Height",
  12669. height: math.unit(2000, "feet"),
  12670. default: true
  12671. },
  12672. ]
  12673. ))
  12674. characterMakers.push(() => makeCharacter(
  12675. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12676. {
  12677. front: {
  12678. height: math.unit(6, "feet"),
  12679. weight: math.unit(180, "lb"),
  12680. name: "Front",
  12681. image: {
  12682. source: "./media/characters/renard-thatch/front.svg",
  12683. extra: 2411 / 2275,
  12684. bottom: 0.01
  12685. }
  12686. },
  12687. frontPosing: {
  12688. height: math.unit(6, "feet"),
  12689. weight: math.unit(180, "lb"),
  12690. name: "Front (Posing)",
  12691. image: {
  12692. source: "./media/characters/renard-thatch/front-posing.svg",
  12693. extra: 2381 / 2261,
  12694. bottom: 0.01
  12695. }
  12696. },
  12697. back: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(180, "lb"),
  12700. name: "Back",
  12701. image: {
  12702. source: "./media/characters/renard-thatch/back.svg",
  12703. extra: 2428 / 2288
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Micro",
  12710. height: math.unit(3, "inches")
  12711. },
  12712. {
  12713. name: "Default",
  12714. height: math.unit(6, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Macro",
  12719. height: math.unit(75, "feet")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(1450, "feet"),
  12728. weight: math.unit(1.21e6, "tons"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/sekvra/front.svg",
  12732. extra: 1,
  12733. bottom: 0.03
  12734. }
  12735. },
  12736. frontClothed: {
  12737. height: math.unit(1450, "feet"),
  12738. weight: math.unit(1.21e6, "tons"),
  12739. name: "Front (Clothed)",
  12740. image: {
  12741. source: "./media/characters/sekvra/front-clothed.svg",
  12742. extra: 1,
  12743. bottom: 0.03
  12744. }
  12745. },
  12746. side: {
  12747. height: math.unit(1450, "feet"),
  12748. weight: math.unit(1.21e6, "tons"),
  12749. name: "Side",
  12750. image: {
  12751. source: "./media/characters/sekvra/side.svg",
  12752. extra: 1,
  12753. bottom: 0.025
  12754. }
  12755. },
  12756. back: {
  12757. height: math.unit(1450, "feet"),
  12758. weight: math.unit(1.21e6, "tons"),
  12759. name: "Back",
  12760. image: {
  12761. source: "./media/characters/sekvra/back.svg",
  12762. extra: 1,
  12763. bottom: 0.005
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Macro",
  12770. height: math.unit(1450, "feet"),
  12771. default: true
  12772. },
  12773. {
  12774. name: "Megamacro",
  12775. height: math.unit(15000, "feet")
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12781. {
  12782. front: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "lb"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/carmine/front.svg",
  12788. extra: 1,
  12789. bottom: 0.035
  12790. }
  12791. },
  12792. frontArmor: {
  12793. height: math.unit(6, "feet"),
  12794. weight: math.unit(150, "lb"),
  12795. name: "Front (Armor)",
  12796. image: {
  12797. source: "./media/characters/carmine/front-armor.svg",
  12798. extra: 1,
  12799. bottom: 0.035
  12800. }
  12801. },
  12802. },
  12803. [
  12804. {
  12805. name: "Large",
  12806. height: math.unit(1, "mile")
  12807. },
  12808. {
  12809. name: "Huge",
  12810. height: math.unit(40, "miles"),
  12811. default: true
  12812. },
  12813. {
  12814. name: "Colossal",
  12815. height: math.unit(2500, "miles")
  12816. },
  12817. ]
  12818. ))
  12819. characterMakers.push(() => makeCharacter(
  12820. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12821. {
  12822. front: {
  12823. height: math.unit(6, "feet"),
  12824. weight: math.unit(150, "lb"),
  12825. name: "Front",
  12826. image: {
  12827. source: "./media/characters/elyssia/front.svg",
  12828. extra: 2201 / 2035,
  12829. bottom: 0.05
  12830. }
  12831. },
  12832. frontClothed: {
  12833. height: math.unit(6, "feet"),
  12834. weight: math.unit(150, "lb"),
  12835. name: "Front (Clothed)",
  12836. image: {
  12837. source: "./media/characters/elyssia/front-clothed.svg",
  12838. extra: 2201 / 2035,
  12839. bottom: 0.05
  12840. }
  12841. },
  12842. back: {
  12843. height: math.unit(6, "feet"),
  12844. weight: math.unit(150, "lb"),
  12845. name: "Back",
  12846. image: {
  12847. source: "./media/characters/elyssia/back.svg",
  12848. extra: 2201 / 2035,
  12849. bottom: 0.013
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Smaller",
  12856. height: math.unit(150, "feet")
  12857. },
  12858. {
  12859. name: "Standard",
  12860. height: math.unit(1400, "feet"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Distracted",
  12865. height: math.unit(15000, "feet")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(7 + 4 / 12, "feet"),
  12874. weight: math.unit(500, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/geno-maxwell/front.svg",
  12878. extra: 2207 / 2040,
  12879. bottom: 0.015
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Micro",
  12886. height: math.unit(3, "inches")
  12887. },
  12888. {
  12889. name: "Normal",
  12890. height: math.unit(7 + 4 / 12, "feet"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Macro",
  12895. height: math.unit(220, "feet")
  12896. },
  12897. {
  12898. name: "Megamacro",
  12899. height: math.unit(11, "miles")
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12905. {
  12906. front: {
  12907. height: math.unit(7 + 4 / 12, "feet"),
  12908. weight: math.unit(500, "lb"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/regena-maxwell/front.svg",
  12912. extra: 3115 / 2770,
  12913. bottom: 0.02
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Normal",
  12920. height: math.unit(7 + 4 / 12, "feet"),
  12921. default: true
  12922. },
  12923. {
  12924. name: "Macro",
  12925. height: math.unit(220, "feet")
  12926. },
  12927. {
  12928. name: "Megamacro",
  12929. height: math.unit(11, "miles")
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12935. {
  12936. front: {
  12937. height: math.unit(6, "feet"),
  12938. weight: math.unit(150, "lb"),
  12939. name: "Front",
  12940. image: {
  12941. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12942. extra: 860 / 690,
  12943. bottom: 0.03
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(1.7, "meters"),
  12951. default: true
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12957. {
  12958. front: {
  12959. height: math.unit(6, "feet"),
  12960. weight: math.unit(150, "lb"),
  12961. name: "Front",
  12962. image: {
  12963. source: "./media/characters/quilly/front.svg",
  12964. extra: 890 / 776
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Gigamacro",
  12971. height: math.unit(404090, "miles"),
  12972. default: true
  12973. },
  12974. ]
  12975. ))
  12976. characterMakers.push(() => makeCharacter(
  12977. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12978. {
  12979. front: {
  12980. height: math.unit(7 + 8 / 12, "feet"),
  12981. weight: math.unit(350, "lb"),
  12982. name: "Front",
  12983. image: {
  12984. source: "./media/characters/tempest/front.svg",
  12985. extra: 1175 / 1086,
  12986. bottom: 0.02
  12987. }
  12988. },
  12989. },
  12990. [
  12991. {
  12992. name: "Normal",
  12993. height: math.unit(7 + 8 / 12, "feet"),
  12994. default: true
  12995. },
  12996. ]
  12997. ))
  12998. characterMakers.push(() => makeCharacter(
  12999. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13000. {
  13001. side: {
  13002. height: math.unit(4 + 5 / 12, "feet"),
  13003. weight: math.unit(80, "lb"),
  13004. name: "Side",
  13005. image: {
  13006. source: "./media/characters/rodger/side.svg",
  13007. extra: 1235 / 1118
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Micro",
  13014. height: math.unit(1, "inch")
  13015. },
  13016. {
  13017. name: "Normal",
  13018. height: math.unit(4 + 5 / 12, "feet"),
  13019. default: true
  13020. },
  13021. {
  13022. name: "Macro",
  13023. height: math.unit(120, "feet")
  13024. },
  13025. ]
  13026. ))
  13027. characterMakers.push(() => makeCharacter(
  13028. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13029. {
  13030. front: {
  13031. height: math.unit(6, "feet"),
  13032. weight: math.unit(150, "lb"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/danyel/front.svg",
  13036. extra: 1185 / 1123,
  13037. bottom: 0.05
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Shrunken",
  13044. height: math.unit(0.5, "mm")
  13045. },
  13046. {
  13047. name: "Micro",
  13048. height: math.unit(1, "mm"),
  13049. default: true
  13050. },
  13051. {
  13052. name: "Upsized",
  13053. height: math.unit(5 + 5 / 12, "feet")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(5 + 6 / 12, "feet"),
  13062. weight: math.unit(200, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/vivian-bijoux/front.svg",
  13066. extra: 1,
  13067. bottom: 0.072
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Normal",
  13074. height: math.unit(5 + 6 / 12, "feet"),
  13075. default: true
  13076. },
  13077. {
  13078. name: "Bad Dream",
  13079. height: math.unit(500, "feet")
  13080. },
  13081. {
  13082. name: "Nightmare",
  13083. height: math.unit(500, "miles")
  13084. },
  13085. ]
  13086. ))
  13087. characterMakers.push(() => makeCharacter(
  13088. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13089. {
  13090. front: {
  13091. height: math.unit(6 + 1 / 12, "feet"),
  13092. weight: math.unit(260, "lb"),
  13093. name: "Front",
  13094. image: {
  13095. source: "./media/characters/zeta/front.svg",
  13096. extra: 1968 / 1889,
  13097. bottom: 0.06
  13098. }
  13099. },
  13100. back: {
  13101. height: math.unit(6 + 1 / 12, "feet"),
  13102. weight: math.unit(260, "lb"),
  13103. name: "Back",
  13104. image: {
  13105. source: "./media/characters/zeta/back.svg",
  13106. extra: 1944 / 1858,
  13107. bottom: 0.03
  13108. }
  13109. },
  13110. hand: {
  13111. height: math.unit(1.112, "feet"),
  13112. name: "Hand",
  13113. image: {
  13114. source: "./media/characters/zeta/hand.svg"
  13115. }
  13116. },
  13117. foot: {
  13118. height: math.unit(1.48, "feet"),
  13119. name: "Foot",
  13120. image: {
  13121. source: "./media/characters/zeta/foot.svg"
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Micro",
  13128. height: math.unit(6, "inches")
  13129. },
  13130. {
  13131. name: "Normal",
  13132. height: math.unit(6 + 1 / 12, "feet"),
  13133. default: true
  13134. },
  13135. {
  13136. name: "Macro",
  13137. height: math.unit(20, "feet")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(6, "feet"),
  13146. weight: math.unit(150, "lb"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/jamie-larsen/front.svg",
  13150. extra: 962 / 933,
  13151. bottom: 0.02
  13152. }
  13153. },
  13154. back: {
  13155. height: math.unit(6, "feet"),
  13156. weight: math.unit(150, "lb"),
  13157. name: "Back",
  13158. image: {
  13159. source: "./media/characters/jamie-larsen/back.svg",
  13160. extra: 997 / 946
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Macro",
  13167. height: math.unit(28 + 7 / 12, "feet"),
  13168. default: true
  13169. },
  13170. {
  13171. name: "Macro+",
  13172. height: math.unit(180, "feet")
  13173. },
  13174. {
  13175. name: "Megamacro",
  13176. height: math.unit(10, "miles")
  13177. },
  13178. {
  13179. name: "Gigamacro",
  13180. height: math.unit(200000, "miles")
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(120, "lb"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/vance/front.svg",
  13193. extra: 1980 / 1890,
  13194. bottom: 0.09
  13195. }
  13196. },
  13197. back: {
  13198. height: math.unit(6, "feet"),
  13199. weight: math.unit(120, "lb"),
  13200. name: "Back",
  13201. image: {
  13202. source: "./media/characters/vance/back.svg",
  13203. extra: 2081 / 1994,
  13204. bottom: 0.014
  13205. }
  13206. },
  13207. hand: {
  13208. height: math.unit(0.88, "feet"),
  13209. name: "Hand",
  13210. image: {
  13211. source: "./media/characters/vance/hand.svg"
  13212. }
  13213. },
  13214. foot: {
  13215. height: math.unit(0.64, "feet"),
  13216. name: "Foot",
  13217. image: {
  13218. source: "./media/characters/vance/foot.svg"
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Small",
  13225. height: math.unit(90, "feet"),
  13226. default: true
  13227. },
  13228. {
  13229. name: "Macro",
  13230. height: math.unit(100, "meters")
  13231. },
  13232. {
  13233. name: "Megamacro",
  13234. height: math.unit(15, "miles")
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13240. {
  13241. front: {
  13242. height: math.unit(6, "feet"),
  13243. weight: math.unit(180, "lb"),
  13244. name: "Front",
  13245. image: {
  13246. source: "./media/characters/xochitl/front.svg",
  13247. extra: 2297 / 2261,
  13248. bottom: 0.065
  13249. }
  13250. },
  13251. back: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(180, "lb"),
  13254. name: "Back",
  13255. image: {
  13256. source: "./media/characters/xochitl/back.svg",
  13257. extra: 2386 / 2354,
  13258. bottom: 0.01
  13259. }
  13260. },
  13261. foot: {
  13262. height: math.unit(6 / 5 * 1.15, "feet"),
  13263. weight: math.unit(150, "lb"),
  13264. name: "Foot",
  13265. image: {
  13266. source: "./media/characters/xochitl/foot.svg"
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Macro",
  13273. height: math.unit(80, "feet")
  13274. },
  13275. {
  13276. name: "Macro+",
  13277. height: math.unit(400, "feet"),
  13278. default: true
  13279. },
  13280. {
  13281. name: "Gigamacro",
  13282. height: math.unit(80000, "miles")
  13283. },
  13284. {
  13285. name: "Gigamacro+",
  13286. height: math.unit(400000, "miles")
  13287. },
  13288. {
  13289. name: "Teramacro",
  13290. height: math.unit(300, "AU")
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(6, "feet"),
  13299. weight: math.unit(150, "lb"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/vincent/front.svg",
  13303. extra: 1130 / 1080,
  13304. bottom: 0.055
  13305. }
  13306. },
  13307. beak: {
  13308. height: math.unit(6 * 0.1, "feet"),
  13309. name: "Beak",
  13310. image: {
  13311. source: "./media/characters/vincent/beak.svg"
  13312. }
  13313. },
  13314. hand: {
  13315. height: math.unit(6 * 0.85, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Hand",
  13318. image: {
  13319. source: "./media/characters/vincent/hand.svg"
  13320. }
  13321. },
  13322. foot: {
  13323. height: math.unit(6 * 0.19, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Foot",
  13326. image: {
  13327. source: "./media/characters/vincent/foot.svg"
  13328. }
  13329. },
  13330. },
  13331. [
  13332. {
  13333. name: "Base",
  13334. height: math.unit(6 + 5 / 12, "feet"),
  13335. default: true
  13336. },
  13337. {
  13338. name: "Macro",
  13339. height: math.unit(300, "feet")
  13340. },
  13341. {
  13342. name: "Megamacro",
  13343. height: math.unit(2, "miles")
  13344. },
  13345. {
  13346. name: "Gigamacro",
  13347. height: math.unit(1000, "miles")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(6 + 2 / 12, "feet"),
  13356. weight: math.unit(265, "lb"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/jay/front.svg",
  13360. extra: 1510 / 1430,
  13361. bottom: 0.042
  13362. }
  13363. },
  13364. back: {
  13365. height: math.unit(6 + 2 / 12, "feet"),
  13366. weight: math.unit(265, "lb"),
  13367. name: "Back",
  13368. image: {
  13369. source: "./media/characters/jay/back.svg",
  13370. extra: 1510 / 1430,
  13371. bottom: 0.025
  13372. }
  13373. },
  13374. clothed: {
  13375. height: math.unit(6 + 2 / 12, "feet"),
  13376. weight: math.unit(265, "lb"),
  13377. name: "Front (Clothed)",
  13378. image: {
  13379. source: "./media/characters/jay/clothed.svg",
  13380. extra: 744 / 699,
  13381. bottom: 0.043
  13382. }
  13383. },
  13384. head: {
  13385. height: math.unit(1.772, "feet"),
  13386. name: "Head",
  13387. image: {
  13388. source: "./media/characters/jay/head.svg"
  13389. }
  13390. },
  13391. sizeRay: {
  13392. height: math.unit(1.331, "feet"),
  13393. name: "Size Ray",
  13394. image: {
  13395. source: "./media/characters/jay/size-ray.svg"
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Micro",
  13402. height: math.unit(1, "inch")
  13403. },
  13404. {
  13405. name: "Normal",
  13406. height: math.unit(6 + 2 / 12, "feet"),
  13407. default: true
  13408. },
  13409. {
  13410. name: "Macro",
  13411. height: math.unit(1, "mile")
  13412. },
  13413. {
  13414. name: "Megamacro",
  13415. height: math.unit(100, "miles")
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(2, "meters"),
  13424. weight: math.unit(500, "kg"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/coatl/front.svg",
  13428. extra: 3948 / 3500,
  13429. bottom: 0.082
  13430. }
  13431. },
  13432. },
  13433. [
  13434. {
  13435. name: "Normal",
  13436. height: math.unit(4, "meters")
  13437. },
  13438. {
  13439. name: "Macro",
  13440. height: math.unit(100, "meters"),
  13441. default: true
  13442. },
  13443. {
  13444. name: "Macro+",
  13445. height: math.unit(300, "meters")
  13446. },
  13447. {
  13448. name: "Megamacro",
  13449. height: math.unit(3, "gigameters")
  13450. },
  13451. {
  13452. name: "Megamacro+",
  13453. height: math.unit(300, "terameters")
  13454. },
  13455. {
  13456. name: "Megamacro++",
  13457. height: math.unit(3, "lightyears")
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(50, "kg"),
  13467. name: "front",
  13468. image: {
  13469. source: "./media/characters/shiroryu/front.svg",
  13470. extra: 1990 / 1935
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Mortal Mingling",
  13477. height: math.unit(3, "meters")
  13478. },
  13479. {
  13480. name: "Kaiju-ish",
  13481. height: math.unit(250, "meters")
  13482. },
  13483. {
  13484. name: "Somewhat Godly",
  13485. height: math.unit(400, "km"),
  13486. default: true
  13487. },
  13488. {
  13489. name: "Planetary",
  13490. height: math.unit(300, "megameters")
  13491. },
  13492. {
  13493. name: "Galaxy-dwarfing",
  13494. height: math.unit(450, "kiloparsecs")
  13495. },
  13496. {
  13497. name: "Universe Eater",
  13498. height: math.unit(150, "gigaparsecs")
  13499. },
  13500. {
  13501. name: "Almost Immeasurable",
  13502. height: math.unit(1.3e266, "yottaparsecs")
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13508. {
  13509. front: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(150, "lb"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/umeko/front.svg",
  13515. extra: 1,
  13516. bottom: 0.019
  13517. }
  13518. },
  13519. frontArmored: {
  13520. height: math.unit(6, "feet"),
  13521. weight: math.unit(150, "lb"),
  13522. name: "Front (Armored)",
  13523. image: {
  13524. source: "./media/characters/umeko/front-armored.svg",
  13525. extra: 1,
  13526. bottom: 0.021
  13527. }
  13528. },
  13529. },
  13530. [
  13531. {
  13532. name: "Macro",
  13533. height: math.unit(220, "feet"),
  13534. default: true
  13535. },
  13536. {
  13537. name: "Guardian Dragon",
  13538. height: math.unit(50, "miles")
  13539. },
  13540. {
  13541. name: "Cosmic",
  13542. height: math.unit(800000, "miles")
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13548. {
  13549. front: {
  13550. height: math.unit(6, "feet"),
  13551. weight: math.unit(150, "lb"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/cassidy/front.svg",
  13555. extra: 1,
  13556. bottom: 0.043
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Canon Height",
  13563. height: math.unit(120, "feet"),
  13564. default: true
  13565. },
  13566. {
  13567. name: "Macro+",
  13568. height: math.unit(400, "feet")
  13569. },
  13570. {
  13571. name: "Macro++",
  13572. height: math.unit(4000, "feet")
  13573. },
  13574. {
  13575. name: "Megamacro",
  13576. height: math.unit(3, "miles")
  13577. },
  13578. ]
  13579. ))
  13580. characterMakers.push(() => makeCharacter(
  13581. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13582. {
  13583. front: {
  13584. height: math.unit(6, "feet"),
  13585. weight: math.unit(150, "lb"),
  13586. name: "Front",
  13587. image: {
  13588. source: "./media/characters/isaac/front.svg",
  13589. extra: 896 / 815,
  13590. bottom: 0.11
  13591. }
  13592. },
  13593. },
  13594. [
  13595. {
  13596. name: "Human Size",
  13597. height: math.unit(8, "feet"),
  13598. default: true
  13599. },
  13600. {
  13601. name: "Macro",
  13602. height: math.unit(400, "feet")
  13603. },
  13604. {
  13605. name: "Megamacro",
  13606. height: math.unit(50, "miles")
  13607. },
  13608. {
  13609. name: "Canon Height",
  13610. height: math.unit(200, "AU")
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13616. {
  13617. front: {
  13618. height: math.unit(6, "feet"),
  13619. weight: math.unit(72, "kg"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/sleekit/front.svg",
  13623. extra: 4693 / 4487,
  13624. bottom: 0.012
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Minimum Height",
  13631. height: math.unit(10, "meters")
  13632. },
  13633. {
  13634. name: "Smaller",
  13635. height: math.unit(25, "meters")
  13636. },
  13637. {
  13638. name: "Larger",
  13639. height: math.unit(38, "meters"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Maximum height",
  13644. height: math.unit(100, "meters")
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/nillia/front.svg",
  13657. extra: 2195 / 2037,
  13658. bottom: 0.005
  13659. }
  13660. },
  13661. back: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(150, "lb"),
  13664. name: "Back",
  13665. image: {
  13666. source: "./media/characters/nillia/back.svg",
  13667. extra: 2195 / 2037,
  13668. bottom: 0.005
  13669. }
  13670. },
  13671. },
  13672. [
  13673. {
  13674. name: "Canon Height",
  13675. height: math.unit(489, "feet"),
  13676. default: true
  13677. }
  13678. ]
  13679. ))
  13680. characterMakers.push(() => makeCharacter(
  13681. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13682. {
  13683. front: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(150, "lb"),
  13686. name: "Front",
  13687. image: {
  13688. source: "./media/characters/mesmyriza/front.svg",
  13689. extra: 2067 / 1784,
  13690. bottom: 0.035
  13691. }
  13692. },
  13693. foot: {
  13694. height: math.unit(6 / (250 / 35), "feet"),
  13695. name: "Foot",
  13696. image: {
  13697. source: "./media/characters/mesmyriza/foot.svg"
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Macro",
  13704. height: math.unit(457, "meters"),
  13705. default: true
  13706. },
  13707. {
  13708. name: "Megamacro",
  13709. height: math.unit(8, "megameters")
  13710. },
  13711. ]
  13712. ))
  13713. characterMakers.push(() => makeCharacter(
  13714. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13715. {
  13716. front: {
  13717. height: math.unit(6, "feet"),
  13718. weight: math.unit(250, "lb"),
  13719. name: "Front",
  13720. image: {
  13721. source: "./media/characters/saudade/front.svg",
  13722. extra: 1172 / 1139,
  13723. bottom: 0.035
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Micro",
  13730. height: math.unit(3, "inches")
  13731. },
  13732. {
  13733. name: "Normal",
  13734. height: math.unit(6, "feet"),
  13735. default: true
  13736. },
  13737. {
  13738. name: "Macro",
  13739. height: math.unit(50, "feet")
  13740. },
  13741. {
  13742. name: "Megamacro",
  13743. height: math.unit(2800, "feet")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(5 + 4 / 12, "feet"),
  13752. weight: math.unit(100, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/keireer/front.svg",
  13756. extra: 716 / 666,
  13757. bottom: 0.05
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(5 + 4 / 12, "feet"),
  13765. default: true
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(6, "feet"),
  13774. weight: math.unit(90, "kg"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/mirja/front.svg",
  13778. extra: 1789 / 1683,
  13779. bottom: 0.05
  13780. }
  13781. },
  13782. frontDressed: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(90, "lb"),
  13785. name: "Front (Dressed)",
  13786. image: {
  13787. source: "./media/characters/mirja/front-dressed.svg",
  13788. extra: 1789 / 1683,
  13789. bottom: 0.05
  13790. }
  13791. },
  13792. back: {
  13793. height: math.unit(6, "feet"),
  13794. weight: math.unit(90, "lb"),
  13795. name: "Back",
  13796. image: {
  13797. source: "./media/characters/mirja/back.svg",
  13798. extra: 953 / 917,
  13799. bottom: 0.017
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "\"Incognito\"",
  13806. height: math.unit(3, "meters")
  13807. },
  13808. {
  13809. name: "Strolling Size",
  13810. height: math.unit(15, "km")
  13811. },
  13812. {
  13813. name: "Larger Strolling Size",
  13814. height: math.unit(400, "km")
  13815. },
  13816. {
  13817. name: "Preferred Size",
  13818. height: math.unit(5000, "km")
  13819. },
  13820. {
  13821. name: "True Size",
  13822. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13823. default: true
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(15, "feet"),
  13832. weight: math.unit(880, "kg"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/nightraver/front.svg",
  13836. extra: 2444 / 2160,
  13837. bottom: 0.027
  13838. }
  13839. },
  13840. back: {
  13841. height: math.unit(15, "feet"),
  13842. weight: math.unit(880, "kg"),
  13843. name: "Back",
  13844. image: {
  13845. source: "./media/characters/nightraver/back.svg",
  13846. extra: 2309 / 2180,
  13847. bottom: 0.005
  13848. }
  13849. },
  13850. sole: {
  13851. height: math.unit(2.878, "feet"),
  13852. name: "Sole",
  13853. image: {
  13854. source: "./media/characters/nightraver/sole.svg"
  13855. }
  13856. },
  13857. foot: {
  13858. height: math.unit(2.285, "feet"),
  13859. name: "Foot",
  13860. image: {
  13861. source: "./media/characters/nightraver/foot.svg"
  13862. }
  13863. },
  13864. maw: {
  13865. height: math.unit(2.67, "feet"),
  13866. name: "Maw",
  13867. image: {
  13868. source: "./media/characters/nightraver/maw.svg"
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Micro",
  13875. height: math.unit(1, "cm")
  13876. },
  13877. {
  13878. name: "Normal",
  13879. height: math.unit(15, "feet"),
  13880. default: true
  13881. },
  13882. {
  13883. name: "Macro",
  13884. height: math.unit(300, "feet")
  13885. },
  13886. {
  13887. name: "Megamacro",
  13888. height: math.unit(300, "miles")
  13889. },
  13890. {
  13891. name: "Gigamacro",
  13892. height: math.unit(10000, "miles")
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13898. {
  13899. side: {
  13900. height: math.unit(2, "inches"),
  13901. weight: math.unit(5, "grams"),
  13902. name: "Side",
  13903. image: {
  13904. source: "./media/characters/arc/side.svg"
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Micro",
  13911. height: math.unit(2, "inches"),
  13912. default: true
  13913. },
  13914. ]
  13915. ))
  13916. characterMakers.push(() => makeCharacter(
  13917. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13918. {
  13919. front: {
  13920. height: math.unit(1.1938, "meters"),
  13921. weight: math.unit(54, "kg"),
  13922. name: "Front",
  13923. image: {
  13924. source: "./media/characters/nebula-shahar/front.svg",
  13925. extra: 1642 / 1436,
  13926. bottom: 0.06
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Megamicro",
  13933. height: math.unit(0.3, "mm")
  13934. },
  13935. {
  13936. name: "Micro",
  13937. height: math.unit(3, "cm")
  13938. },
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(138, "cm"),
  13942. default: true
  13943. },
  13944. {
  13945. name: "Macro",
  13946. height: math.unit(30, "m")
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(5.24, "feet"),
  13955. weight: math.unit(150, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/shayla/front.svg",
  13959. extra: 1512 / 1414,
  13960. bottom: 0.01
  13961. }
  13962. },
  13963. back: {
  13964. height: math.unit(5.24, "feet"),
  13965. weight: math.unit(150, "lb"),
  13966. name: "Back",
  13967. image: {
  13968. source: "./media/characters/shayla/back.svg",
  13969. extra: 1512 / 1414
  13970. }
  13971. },
  13972. hand: {
  13973. height: math.unit(0.7781496062992126, "feet"),
  13974. name: "Hand",
  13975. image: {
  13976. source: "./media/characters/shayla/hand.svg"
  13977. }
  13978. },
  13979. foot: {
  13980. height: math.unit(1.4206036745406823, "feet"),
  13981. name: "Foot",
  13982. image: {
  13983. source: "./media/characters/shayla/foot.svg"
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Micro",
  13990. height: math.unit(0.32, "feet")
  13991. },
  13992. {
  13993. name: "Normal",
  13994. height: math.unit(5.24, "feet"),
  13995. default: true
  13996. },
  13997. {
  13998. name: "Macro",
  13999. height: math.unit(492.12, "feet")
  14000. },
  14001. {
  14002. name: "Megamacro",
  14003. height: math.unit(186.41, "miles")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(2.2, "m"),
  14012. weight: math.unit(120, "kg"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/pia-jr/front.svg",
  14016. extra: 1000 / 970,
  14017. bottom: 0.035
  14018. }
  14019. },
  14020. hand: {
  14021. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14022. name: "Hand",
  14023. image: {
  14024. source: "./media/characters/pia-jr/hand.svg"
  14025. }
  14026. },
  14027. paw: {
  14028. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14029. name: "Paw",
  14030. image: {
  14031. source: "./media/characters/pia-jr/paw.svg"
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Micro",
  14038. height: math.unit(1.2, "cm")
  14039. },
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(2.2, "m"),
  14043. default: true
  14044. },
  14045. {
  14046. name: "Macro",
  14047. height: math.unit(180, "m")
  14048. },
  14049. {
  14050. name: "Megamacro",
  14051. height: math.unit(420, "km")
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(2, "m"),
  14060. weight: math.unit(115, "kg"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/pia-sr/front.svg",
  14064. extra: 760 / 730,
  14065. bottom: 0.015
  14066. }
  14067. },
  14068. back: {
  14069. height: math.unit(2, "m"),
  14070. weight: math.unit(115, "kg"),
  14071. name: "Back",
  14072. image: {
  14073. source: "./media/characters/pia-sr/back.svg",
  14074. extra: 760 / 730,
  14075. bottom: 0.01
  14076. }
  14077. },
  14078. hand: {
  14079. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14080. name: "Hand",
  14081. image: {
  14082. source: "./media/characters/pia-sr/hand.svg"
  14083. }
  14084. },
  14085. foot: {
  14086. height: math.unit(1.83, "feet"),
  14087. name: "Foot",
  14088. image: {
  14089. source: "./media/characters/pia-sr/foot.svg"
  14090. }
  14091. },
  14092. },
  14093. [
  14094. {
  14095. name: "Micro",
  14096. height: math.unit(88, "mm")
  14097. },
  14098. {
  14099. name: "Normal",
  14100. height: math.unit(2, "m"),
  14101. default: true
  14102. },
  14103. {
  14104. name: "Macro",
  14105. height: math.unit(200, "m")
  14106. },
  14107. {
  14108. name: "Megamacro",
  14109. height: math.unit(420, "km")
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(8 + 2 / 12, "feet"),
  14118. weight: math.unit(300, "lb"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/kibibyte/front.svg",
  14122. extra: 2221 / 2098,
  14123. bottom: 0.04
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Normal",
  14130. height: math.unit(8 + 2 / 12, "feet"),
  14131. default: true
  14132. },
  14133. {
  14134. name: "Socialable Macro",
  14135. height: math.unit(50, "feet")
  14136. },
  14137. {
  14138. name: "Macro",
  14139. height: math.unit(300, "feet")
  14140. },
  14141. {
  14142. name: "Megamacro",
  14143. height: math.unit(500, "miles")
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14149. {
  14150. front: {
  14151. height: math.unit(6, "feet"),
  14152. weight: math.unit(150, "lb"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/felix/front.svg",
  14156. extra: 762 / 722,
  14157. bottom: 0.02
  14158. }
  14159. },
  14160. frontClothed: {
  14161. height: math.unit(6, "feet"),
  14162. weight: math.unit(150, "lb"),
  14163. name: "Front (Clothed)",
  14164. image: {
  14165. source: "./media/characters/felix/front-clothed.svg",
  14166. extra: 762 / 722,
  14167. bottom: 0.02
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(6 + 8 / 12, "feet"),
  14175. default: true
  14176. },
  14177. {
  14178. name: "Macro",
  14179. height: math.unit(2600, "feet")
  14180. },
  14181. {
  14182. name: "Megamacro",
  14183. height: math.unit(450, "miles")
  14184. },
  14185. ]
  14186. ))
  14187. characterMakers.push(() => makeCharacter(
  14188. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14189. {
  14190. front: {
  14191. height: math.unit(6 + 1 / 12, "feet"),
  14192. weight: math.unit(250, "lb"),
  14193. name: "Front",
  14194. image: {
  14195. source: "./media/characters/tobo/front.svg",
  14196. extra: 608 / 586,
  14197. bottom: 0.023
  14198. }
  14199. },
  14200. back: {
  14201. height: math.unit(6 + 1 / 12, "feet"),
  14202. weight: math.unit(250, "lb"),
  14203. name: "Back",
  14204. image: {
  14205. source: "./media/characters/tobo/back.svg",
  14206. extra: 608 / 586
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Nano",
  14213. height: math.unit(2, "nm")
  14214. },
  14215. {
  14216. name: "Megamicro",
  14217. height: math.unit(0.1, "mm")
  14218. },
  14219. {
  14220. name: "Micro",
  14221. height: math.unit(1, "inch"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Human-sized",
  14226. height: math.unit(6 + 1 / 12, "feet")
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(250, "feet")
  14231. },
  14232. {
  14233. name: "Megamacro",
  14234. height: math.unit(75, "miles")
  14235. },
  14236. {
  14237. name: "Texas-sized",
  14238. height: math.unit(750, "miles")
  14239. },
  14240. {
  14241. name: "Teramacro",
  14242. height: math.unit(50000, "miles")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(269, "lb"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/danny-kapowsky/front.svg",
  14255. extra: 766 / 736,
  14256. bottom: 0.044
  14257. }
  14258. },
  14259. back: {
  14260. height: math.unit(6, "feet"),
  14261. weight: math.unit(269, "lb"),
  14262. name: "Back",
  14263. image: {
  14264. source: "./media/characters/danny-kapowsky/back.svg",
  14265. extra: 797 / 760,
  14266. bottom: 0.025
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Macro",
  14273. height: math.unit(150, "feet"),
  14274. default: true
  14275. },
  14276. {
  14277. name: "Macro+",
  14278. height: math.unit(200, "feet")
  14279. },
  14280. {
  14281. name: "Macro++",
  14282. height: math.unit(300, "feet")
  14283. },
  14284. {
  14285. name: "Macro+++",
  14286. height: math.unit(400, "feet")
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14292. {
  14293. side: {
  14294. height: math.unit(6, "feet"),
  14295. weight: math.unit(170, "lb"),
  14296. name: "Side",
  14297. image: {
  14298. source: "./media/characters/finn/side.svg",
  14299. extra: 1953 / 1807,
  14300. bottom: 0.057
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Megamacro",
  14307. height: math.unit(14445, "feet"),
  14308. default: true
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14314. {
  14315. front: {
  14316. height: math.unit(5 + 6 / 12, "feet"),
  14317. weight: math.unit(125, "lb"),
  14318. name: "Front",
  14319. image: {
  14320. source: "./media/characters/roy/front.svg",
  14321. extra: 1,
  14322. bottom: 0.11
  14323. }
  14324. },
  14325. },
  14326. [
  14327. {
  14328. name: "Micro",
  14329. height: math.unit(3, "inches"),
  14330. default: true
  14331. },
  14332. {
  14333. name: "Normal",
  14334. height: math.unit(5 + 6 / 12, "feet")
  14335. },
  14336. {
  14337. name: "Lesser Macro",
  14338. height: math.unit(60, "feet")
  14339. },
  14340. {
  14341. name: "Greater Macro",
  14342. height: math.unit(120, "feet")
  14343. },
  14344. ]
  14345. ))
  14346. characterMakers.push(() => makeCharacter(
  14347. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14348. {
  14349. front: {
  14350. height: math.unit(6, "feet"),
  14351. weight: math.unit(100, "lb"),
  14352. name: "Front",
  14353. image: {
  14354. source: "./media/characters/aevsivs/front.svg",
  14355. extra: 1,
  14356. bottom: 0.03
  14357. }
  14358. },
  14359. back: {
  14360. height: math.unit(6, "feet"),
  14361. weight: math.unit(100, "lb"),
  14362. name: "Back",
  14363. image: {
  14364. source: "./media/characters/aevsivs/back.svg"
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Micro",
  14371. height: math.unit(2, "inches"),
  14372. default: true
  14373. },
  14374. {
  14375. name: "Normal",
  14376. height: math.unit(5, "feet")
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(5 + 7 / 12, "feet"),
  14385. weight: math.unit(159, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/hildegard/front.svg",
  14389. extra: 289 / 269,
  14390. bottom: 7.63 / 297.8
  14391. }
  14392. },
  14393. back: {
  14394. height: math.unit(5 + 7 / 12, "feet"),
  14395. weight: math.unit(159, "lb"),
  14396. name: "Back",
  14397. image: {
  14398. source: "./media/characters/hildegard/back.svg",
  14399. extra: 280 / 260,
  14400. bottom: 2.3 / 282
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Normal",
  14407. height: math.unit(5 + 7 / 12, "feet"),
  14408. default: true
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14414. {
  14415. bernard: {
  14416. height: math.unit(2 + 7 / 12, "feet"),
  14417. weight: math.unit(66, "lb"),
  14418. name: "Bernard",
  14419. rename: true,
  14420. image: {
  14421. source: "./media/characters/bernard-wilder/bernard.svg",
  14422. extra: 192 / 128,
  14423. bottom: 0.05
  14424. }
  14425. },
  14426. wilder: {
  14427. height: math.unit(5 + 8 / 12, "feet"),
  14428. weight: math.unit(143, "lb"),
  14429. name: "Wilder",
  14430. rename: true,
  14431. image: {
  14432. source: "./media/characters/bernard-wilder/wilder.svg",
  14433. extra: 361 / 312,
  14434. bottom: 0.02
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(2 + 7 / 12, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14448. {
  14449. anthro: {
  14450. height: math.unit(6 + 1 / 12, "feet"),
  14451. weight: math.unit(155, "lb"),
  14452. name: "Anthro",
  14453. image: {
  14454. source: "./media/characters/hearth/anthro.svg",
  14455. extra: 260 / 250,
  14456. bottom: 0.02
  14457. }
  14458. },
  14459. feral: {
  14460. height: math.unit(3.78, "feet"),
  14461. weight: math.unit(35, "kg"),
  14462. name: "Feral",
  14463. image: {
  14464. source: "./media/characters/hearth/feral.svg",
  14465. extra: 153 / 135,
  14466. bottom: 0.03
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(6 + 1 / 12, "feet"),
  14474. default: true
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14480. {
  14481. front: {
  14482. height: math.unit(6, "feet"),
  14483. weight: math.unit(182, "lb"),
  14484. name: "Front",
  14485. image: {
  14486. source: "./media/characters/ingrid/front.svg",
  14487. extra: 294 / 268,
  14488. bottom: 0.027
  14489. }
  14490. },
  14491. },
  14492. [
  14493. {
  14494. name: "Normal",
  14495. height: math.unit(6, "feet"),
  14496. default: true
  14497. },
  14498. ]
  14499. ))
  14500. characterMakers.push(() => makeCharacter(
  14501. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14502. {
  14503. eevee: {
  14504. height: math.unit(2 + 10 / 12, "feet"),
  14505. weight: math.unit(86, "lb"),
  14506. name: "Malgam",
  14507. image: {
  14508. source: "./media/characters/malgam/eevee.svg",
  14509. extra: 218 / 180,
  14510. bottom: 0.2
  14511. }
  14512. },
  14513. sylveon: {
  14514. height: math.unit(4, "feet"),
  14515. weight: math.unit(101, "lb"),
  14516. name: "Future Malgam",
  14517. rename: true,
  14518. image: {
  14519. source: "./media/characters/malgam/sylveon.svg",
  14520. extra: 371 / 325,
  14521. bottom: 0.015
  14522. }
  14523. },
  14524. gigantamax: {
  14525. height: math.unit(50, "feet"),
  14526. name: "Gigantamax Malgam",
  14527. rename: true,
  14528. image: {
  14529. source: "./media/characters/malgam/gigantamax.svg"
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(2 + 10 / 12, "feet"),
  14537. default: true
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14543. {
  14544. front: {
  14545. height: math.unit(5 + 11 / 12, "feet"),
  14546. weight: math.unit(188, "lb"),
  14547. name: "Front",
  14548. image: {
  14549. source: "./media/characters/fleur/front.svg",
  14550. extra: 309 / 283,
  14551. bottom: 0.007
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(5 + 11 / 12, "feet"),
  14559. default: true
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14565. {
  14566. front: {
  14567. height: math.unit(5 + 4 / 12, "feet"),
  14568. weight: math.unit(122, "lb"),
  14569. name: "Front",
  14570. image: {
  14571. source: "./media/characters/jude/front.svg",
  14572. extra: 288 / 273,
  14573. bottom: 0.03
  14574. }
  14575. },
  14576. },
  14577. [
  14578. {
  14579. name: "Normal",
  14580. height: math.unit(5 + 4 / 12, "feet"),
  14581. default: true
  14582. },
  14583. ]
  14584. ))
  14585. characterMakers.push(() => makeCharacter(
  14586. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14587. {
  14588. front: {
  14589. height: math.unit(5 + 11 / 12, "feet"),
  14590. weight: math.unit(190, "lb"),
  14591. name: "Front",
  14592. image: {
  14593. source: "./media/characters/seara/front.svg",
  14594. extra: 1,
  14595. bottom: 0.05
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Normal",
  14602. height: math.unit(5 + 11 / 12, "feet"),
  14603. default: true
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(16 + 5 / 12, "feet"),
  14612. weight: math.unit(524, "lb"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/caspian/front.svg",
  14616. extra: 1,
  14617. bottom: 0.04
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(16 + 5 / 12, "feet"),
  14625. default: true
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(5 + 7 / 12, "feet"),
  14634. weight: math.unit(170, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/mika/front.svg",
  14638. extra: 1,
  14639. bottom: 0.016
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(5 + 7 / 12, "feet"),
  14647. default: true
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(6 + 2 / 12, "feet"),
  14656. weight: math.unit(268, "lb"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/sol/front.svg",
  14660. extra: 247 / 231,
  14661. bottom: 0.05
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Normal",
  14668. height: math.unit(6 + 2 / 12, "feet"),
  14669. default: true
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14675. {
  14676. buizel: {
  14677. height: math.unit(2 + 5 / 12, "feet"),
  14678. weight: math.unit(87, "lb"),
  14679. name: "Buizel",
  14680. image: {
  14681. source: "./media/characters/umiko/buizel.svg",
  14682. extra: 172 / 157,
  14683. bottom: 0.01
  14684. }
  14685. },
  14686. floatzel: {
  14687. height: math.unit(5 + 9 / 12, "feet"),
  14688. weight: math.unit(250, "lb"),
  14689. name: "Floatzel",
  14690. image: {
  14691. source: "./media/characters/umiko/floatzel.svg",
  14692. extra: 262 / 248
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(2 + 5 / 12, "feet"),
  14700. default: true
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14706. {
  14707. front: {
  14708. height: math.unit(6 + 2 / 12, "feet"),
  14709. weight: math.unit(146, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/iliac/front.svg",
  14713. extra: 389 / 365,
  14714. bottom: 0.035
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(6 + 2 / 12, "feet"),
  14722. default: true
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14728. {
  14729. front: {
  14730. height: math.unit(6, "feet"),
  14731. weight: math.unit(170, "lb"),
  14732. name: "Front",
  14733. image: {
  14734. source: "./media/characters/topaz/front.svg",
  14735. extra: 317 / 303,
  14736. bottom: 0.055
  14737. }
  14738. },
  14739. },
  14740. [
  14741. {
  14742. name: "Normal",
  14743. height: math.unit(6, "feet"),
  14744. default: true
  14745. },
  14746. ]
  14747. ))
  14748. characterMakers.push(() => makeCharacter(
  14749. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14750. {
  14751. front: {
  14752. height: math.unit(5 + 11 / 12, "feet"),
  14753. weight: math.unit(144, "lb"),
  14754. name: "Front",
  14755. image: {
  14756. source: "./media/characters/gabriel/front.svg",
  14757. extra: 285 / 262,
  14758. bottom: 0.004
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(5 + 11 / 12, "feet"),
  14766. default: true
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14772. {
  14773. side: {
  14774. height: math.unit(6 + 5 / 12, "feet"),
  14775. weight: math.unit(300, "lb"),
  14776. name: "Side",
  14777. image: {
  14778. source: "./media/characters/tempest-suicune/side.svg",
  14779. extra: 195 / 154,
  14780. bottom: 0.04
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(6 + 5 / 12, "feet"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14794. {
  14795. front: {
  14796. height: math.unit(7 + 2 / 12, "feet"),
  14797. weight: math.unit(322, "lb"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/vulcan/front.svg",
  14801. extra: 154 / 147,
  14802. bottom: 0.04
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(7 + 2 / 12, "feet"),
  14810. default: true
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14816. {
  14817. front: {
  14818. height: math.unit(5 + 10 / 12, "feet"),
  14819. weight: math.unit(264, "lb"),
  14820. name: "Front",
  14821. image: {
  14822. source: "./media/characters/gault/front.svg",
  14823. extra: 161 / 140,
  14824. bottom: 0.028
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(5 + 10 / 12, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(6, "feet"),
  14841. weight: math.unit(150, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/shard/front.svg",
  14845. extra: 273 / 238,
  14846. bottom: 0.02
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(3 + 6 / 12, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(5 + 11 / 12, "feet"),
  14863. weight: math.unit(146, "lb"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/ashe/front.svg",
  14867. extra: 400 / 373,
  14868. bottom: 0.01
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(5 + 11 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(5 + 5 / 12, "feet"),
  14885. weight: math.unit(135, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/beatrix/front.svg",
  14889. extra: 392 / 379,
  14890. bottom: 0.01
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(6, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(150, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/ignatius/front.svg",
  14911. extra: 245 / 222,
  14912. bottom: 0.01
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(5 + 5 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(6 + 2 / 12, "feet"),
  14929. weight: math.unit(138, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/mei-li/front.svg",
  14933. extra: 237 / 229,
  14934. bottom: 0.03
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(6 + 2 / 12, "feet"),
  14942. default: true
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(2 + 4 / 12, "feet"),
  14951. weight: math.unit(62, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/puru/front.svg",
  14955. extra: 206 / 149,
  14956. bottom: 0.06
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Normal",
  14963. height: math.unit(2 + 4 / 12, "feet"),
  14964. default: true
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14970. {
  14971. taur: {
  14972. height: math.unit(11, "feet"),
  14973. weight: math.unit(500, "lb"),
  14974. name: "Taur",
  14975. image: {
  14976. source: "./media/characters/kee/taur.svg",
  14977. extra: 1,
  14978. bottom: 0.04
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(11, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14992. {
  14993. anthro: {
  14994. height: math.unit(7, "feet"),
  14995. weight: math.unit(190, "lb"),
  14996. name: "Anthro",
  14997. image: {
  14998. source: "./media/characters/cobalt-dracha/anthro.svg",
  14999. extra: 231 / 225,
  15000. bottom: 0.04
  15001. }
  15002. },
  15003. feral: {
  15004. height: math.unit(9 + 7 / 12, "feet"),
  15005. weight: math.unit(294, "lb"),
  15006. name: "Feral",
  15007. image: {
  15008. source: "./media/characters/cobalt-dracha/feral.svg",
  15009. extra: 692 / 633,
  15010. bottom: 0.05
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(7, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15024. {
  15025. fallen: {
  15026. height: math.unit(11 + 8 / 12, "feet"),
  15027. weight: math.unit(485, "lb"),
  15028. name: "Java (Fallen)",
  15029. rename: true,
  15030. image: {
  15031. source: "./media/characters/java/fallen.svg",
  15032. extra: 226 / 208,
  15033. bottom: 0.005
  15034. }
  15035. },
  15036. godkin: {
  15037. height: math.unit(10 + 6 / 12, "feet"),
  15038. weight: math.unit(328, "lb"),
  15039. name: "Java (Godkin)",
  15040. rename: true,
  15041. image: {
  15042. source: "./media/characters/java/godkin.svg",
  15043. extra: 270 / 262,
  15044. bottom: 0.02
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(11 + 8 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(7 + 8 / 12, "feet"),
  15061. weight: math.unit(320, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/skoll/front.svg",
  15065. extra: 232 / 220,
  15066. bottom: 0.02
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(7 + 8 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(5 + 9 / 12, "feet"),
  15083. weight: math.unit(170, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/purna/front.svg",
  15087. extra: 239 / 229,
  15088. bottom: 0.01
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(5 + 9 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(5 + 9 / 12, "feet"),
  15105. weight: math.unit(142, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/kuva/front.svg",
  15109. extra: 281 / 271,
  15110. bottom: 0.006
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(5 + 9 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15124. {
  15125. anthro: {
  15126. height: math.unit(9 + 2 / 12, "feet"),
  15127. weight: math.unit(270, "lb"),
  15128. name: "Anthro",
  15129. image: {
  15130. source: "./media/characters/embra/anthro.svg",
  15131. extra: 200 / 187,
  15132. bottom: 0.02
  15133. }
  15134. },
  15135. feral: {
  15136. height: math.unit(18 + 8 / 12, "feet"),
  15137. weight: math.unit(576, "lb"),
  15138. name: "Feral",
  15139. image: {
  15140. source: "./media/characters/embra/feral.svg",
  15141. extra: 152 / 137,
  15142. bottom: 0.037
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(9 + 2 / 12, "feet"),
  15150. default: true
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15156. {
  15157. anthro: {
  15158. height: math.unit(10 + 9 / 12, "feet"),
  15159. weight: math.unit(224, "lb"),
  15160. name: "Anthro",
  15161. image: {
  15162. source: "./media/characters/grottos/anthro.svg",
  15163. extra: 350 / 332,
  15164. bottom: 0.045
  15165. }
  15166. },
  15167. feral: {
  15168. height: math.unit(20 + 7 / 12, "feet"),
  15169. weight: math.unit(629, "lb"),
  15170. name: "Feral",
  15171. image: {
  15172. source: "./media/characters/grottos/feral.svg",
  15173. extra: 207 / 190,
  15174. bottom: 0.05
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(10 + 9 / 12, "feet"),
  15182. default: true
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15188. {
  15189. anthro: {
  15190. height: math.unit(9 + 6 / 12, "feet"),
  15191. weight: math.unit(298, "lb"),
  15192. name: "Anthro",
  15193. image: {
  15194. source: "./media/characters/frifna/anthro.svg",
  15195. extra: 282 / 269,
  15196. bottom: 0.015
  15197. }
  15198. },
  15199. feral: {
  15200. height: math.unit(16 + 2 / 12, "feet"),
  15201. weight: math.unit(624, "lb"),
  15202. name: "Feral",
  15203. image: {
  15204. source: "./media/characters/frifna/feral.svg"
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(9 + 6 / 12, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6 + 2 / 12, "feet"),
  15221. weight: math.unit(168, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/elise/front.svg",
  15225. extra: 276 / 271
  15226. }
  15227. },
  15228. },
  15229. [
  15230. {
  15231. name: "Normal",
  15232. height: math.unit(6 + 2 / 12, "feet"),
  15233. default: true
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15239. {
  15240. front: {
  15241. height: math.unit(5 + 10 / 12, "feet"),
  15242. weight: math.unit(210, "lb"),
  15243. name: "Front",
  15244. image: {
  15245. source: "./media/characters/glade/front.svg",
  15246. extra: 258 / 247,
  15247. bottom: 0.008
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Normal",
  15254. height: math.unit(5 + 10 / 12, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(5 + 10 / 12, "feet"),
  15264. weight: math.unit(129, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/rina/front.svg",
  15268. extra: 266 / 255,
  15269. bottom: 0.005
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(5 + 10 / 12, "feet"),
  15277. default: true
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(6 + 1 / 12, "feet"),
  15286. weight: math.unit(192, "lb"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/veronica/front.svg",
  15290. extra: 319 / 309,
  15291. bottom: 0.005
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(6 + 1 / 12, "feet"),
  15299. default: true
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15305. {
  15306. front: {
  15307. height: math.unit(9 + 3 / 12, "feet"),
  15308. weight: math.unit(1100, "lb"),
  15309. name: "Front",
  15310. image: {
  15311. source: "./media/characters/braxton/front.svg",
  15312. extra: 1057 / 984,
  15313. bottom: 0.05
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Normal",
  15320. height: math.unit(9 + 3 / 12, "feet")
  15321. },
  15322. {
  15323. name: "Giant",
  15324. height: math.unit(300, "feet"),
  15325. default: true
  15326. },
  15327. {
  15328. name: "Macro",
  15329. height: math.unit(700, "feet")
  15330. },
  15331. {
  15332. name: "Megamacro",
  15333. height: math.unit(6000, "feet")
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15339. {
  15340. front: {
  15341. height: math.unit(6 + 7 / 12, "feet"),
  15342. weight: math.unit(150, "lb"),
  15343. name: "Front",
  15344. image: {
  15345. source: "./media/characters/blue-feyonics/front.svg",
  15346. extra: 1403 / 1306,
  15347. bottom: 0.047
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(6 + 7 / 12, "feet"),
  15355. default: true
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(1.8, "meters"),
  15364. weight: math.unit(60, "kg"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/maxwell/front.svg",
  15368. extra: 2060 / 1873
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Micro",
  15375. height: math.unit(1, "mm")
  15376. },
  15377. {
  15378. name: "Normal",
  15379. height: math.unit(1.8, "meter"),
  15380. default: true
  15381. },
  15382. {
  15383. name: "Macro",
  15384. height: math.unit(30, "meters")
  15385. },
  15386. {
  15387. name: "Megamacro",
  15388. height: math.unit(10, "km")
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/jack/front.svg",
  15401. extra: 1754 / 1640,
  15402. bottom: 0.01
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(80000, "feet"),
  15410. default: true
  15411. },
  15412. {
  15413. name: "Max size",
  15414. height: math.unit(10, "lightyears")
  15415. },
  15416. ]
  15417. ))
  15418. characterMakers.push(() => makeCharacter(
  15419. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15420. {
  15421. upright: {
  15422. height: math.unit(7, "feet"),
  15423. weight: math.unit(170, "lb"),
  15424. name: "Upright",
  15425. image: {
  15426. source: "./media/characters/cafat/upright.svg",
  15427. bottom: 0.01
  15428. }
  15429. },
  15430. uprightFull: {
  15431. height: math.unit(7, "feet"),
  15432. weight: math.unit(170, "lb"),
  15433. name: "Upright (Full)",
  15434. image: {
  15435. source: "./media/characters/cafat/upright-full.svg",
  15436. bottom: 0.01
  15437. }
  15438. },
  15439. side: {
  15440. height: math.unit(5, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Side",
  15443. image: {
  15444. source: "./media/characters/cafat/side.svg"
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Small",
  15451. height: math.unit(7, "feet"),
  15452. default: true
  15453. },
  15454. {
  15455. name: "Large",
  15456. height: math.unit(15.5, "feet")
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(6, "feet"),
  15465. weight: math.unit(150, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/verin-raharra/front.svg",
  15469. extra: 5019 / 4835,
  15470. bottom: 0.023
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(7 + 5 / 12, "feet"),
  15478. default: true
  15479. },
  15480. {
  15481. name: "Upsized",
  15482. height: math.unit(20, "feet")
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(7, "feet"),
  15491. weight: math.unit(230, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/nakata/front.svg",
  15495. extra: 1.005,
  15496. bottom: 0.01
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(7, "feet"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Big",
  15508. height: math.unit(14, "feet")
  15509. },
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(400, "feet")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(4.91, "feet"),
  15521. weight: math.unit(100, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/lily/front.svg",
  15525. extra: 1585 / 1415,
  15526. bottom: 0.02
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Normal",
  15533. height: math.unit(4.91, "feet"),
  15534. default: true
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15540. {
  15541. laying: {
  15542. height: math.unit(4 + 4 / 12, "feet"),
  15543. weight: math.unit(600, "lb"),
  15544. name: "Laying",
  15545. image: {
  15546. source: "./media/characters/sheila/laying.svg",
  15547. extra: 1333 / 1265,
  15548. bottom: 0.16
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(4 + 4 / 12, "feet"),
  15556. default: true
  15557. },
  15558. ]
  15559. ))
  15560. characterMakers.push(() => makeCharacter(
  15561. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15562. {
  15563. front: {
  15564. height: math.unit(6, "feet"),
  15565. weight: math.unit(190, "lb"),
  15566. name: "Front",
  15567. image: {
  15568. source: "./media/characters/sax/front.svg",
  15569. extra: 1187 / 973,
  15570. bottom: 0.042
  15571. }
  15572. },
  15573. },
  15574. [
  15575. {
  15576. name: "Micro",
  15577. height: math.unit(4, "inches"),
  15578. default: true
  15579. },
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(6, "feet"),
  15587. weight: math.unit(150, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/pandora/front.svg",
  15591. extra: 2720 / 2556,
  15592. bottom: 0.015
  15593. }
  15594. },
  15595. back: {
  15596. height: math.unit(6, "feet"),
  15597. weight: math.unit(150, "lb"),
  15598. name: "Back",
  15599. image: {
  15600. source: "./media/characters/pandora/back.svg",
  15601. extra: 2720 / 2556,
  15602. bottom: 0.01
  15603. }
  15604. },
  15605. beans: {
  15606. height: math.unit(6 / 8, "feet"),
  15607. name: "Beans",
  15608. image: {
  15609. source: "./media/characters/pandora/beans.svg"
  15610. }
  15611. },
  15612. skirt: {
  15613. height: math.unit(6, "feet"),
  15614. weight: math.unit(150, "lb"),
  15615. name: "Skirt",
  15616. image: {
  15617. source: "./media/characters/pandora/skirt.svg",
  15618. extra: 1622 / 1525,
  15619. bottom: 0.015
  15620. }
  15621. },
  15622. hoodie: {
  15623. height: math.unit(6, "feet"),
  15624. weight: math.unit(150, "lb"),
  15625. name: "Hoodie",
  15626. image: {
  15627. source: "./media/characters/pandora/hoodie.svg",
  15628. extra: 1622 / 1525,
  15629. bottom: 0.015
  15630. }
  15631. },
  15632. casual: {
  15633. height: math.unit(6, "feet"),
  15634. weight: math.unit(150, "lb"),
  15635. name: "Casual",
  15636. image: {
  15637. source: "./media/characters/pandora/casual.svg",
  15638. extra: 1622 / 1525,
  15639. bottom: 0.015
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(6, "feet")
  15647. },
  15648. {
  15649. name: "Big Steppy",
  15650. height: math.unit(1, "km"),
  15651. default: true
  15652. },
  15653. ]
  15654. ))
  15655. characterMakers.push(() => makeCharacter(
  15656. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15657. {
  15658. side: {
  15659. height: math.unit(10, "feet"),
  15660. weight: math.unit(800, "kg"),
  15661. name: "Side",
  15662. image: {
  15663. source: "./media/characters/venio-darcony/side.svg",
  15664. extra: 1373 / 1003,
  15665. bottom: 0.037
  15666. }
  15667. },
  15668. front: {
  15669. height: math.unit(19, "feet"),
  15670. weight: math.unit(800, "kg"),
  15671. name: "Front",
  15672. image: {
  15673. source: "./media/characters/venio-darcony/front.svg"
  15674. }
  15675. },
  15676. back: {
  15677. height: math.unit(19, "feet"),
  15678. weight: math.unit(800, "kg"),
  15679. name: "Back",
  15680. image: {
  15681. source: "./media/characters/venio-darcony/back.svg"
  15682. }
  15683. },
  15684. sideNsfw: {
  15685. height: math.unit(10, "feet"),
  15686. weight: math.unit(800, "kg"),
  15687. name: "Side (NSFW)",
  15688. image: {
  15689. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15690. extra: 1373 / 1003,
  15691. bottom: 0.037
  15692. }
  15693. },
  15694. frontNsfw: {
  15695. height: math.unit(19, "feet"),
  15696. weight: math.unit(800, "kg"),
  15697. name: "Front (NSFW)",
  15698. image: {
  15699. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15700. }
  15701. },
  15702. backNsfw: {
  15703. height: math.unit(19, "feet"),
  15704. weight: math.unit(800, "kg"),
  15705. name: "Back (NSFW)",
  15706. image: {
  15707. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15708. }
  15709. },
  15710. sideArmored: {
  15711. height: math.unit(10, "feet"),
  15712. weight: math.unit(800, "kg"),
  15713. name: "Side (Armored)",
  15714. image: {
  15715. source: "./media/characters/venio-darcony/side-armored.svg",
  15716. extra: 1373 / 1003,
  15717. bottom: 0.037
  15718. }
  15719. },
  15720. frontArmored: {
  15721. height: math.unit(19, "feet"),
  15722. weight: math.unit(900, "kg"),
  15723. name: "Front (Armored)",
  15724. image: {
  15725. source: "./media/characters/venio-darcony/front-armored.svg"
  15726. }
  15727. },
  15728. backArmored: {
  15729. height: math.unit(19, "feet"),
  15730. weight: math.unit(900, "kg"),
  15731. name: "Back (Armored)",
  15732. image: {
  15733. source: "./media/characters/venio-darcony/back-armored.svg"
  15734. }
  15735. },
  15736. sword: {
  15737. height: math.unit(10, "feet"),
  15738. weight: math.unit(50, "lb"),
  15739. name: "Sword",
  15740. image: {
  15741. source: "./media/characters/venio-darcony/sword.svg"
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Normal",
  15748. height: math.unit(10, "feet")
  15749. },
  15750. {
  15751. name: "Macro",
  15752. height: math.unit(130, "feet"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Macro+",
  15757. height: math.unit(240, "feet")
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15763. {
  15764. front: {
  15765. height: math.unit(6, "feet"),
  15766. weight: math.unit(150, "lb"),
  15767. name: "Front",
  15768. image: {
  15769. source: "./media/characters/veski/front.svg",
  15770. extra: 1299 / 1225,
  15771. bottom: 0.04
  15772. }
  15773. },
  15774. back: {
  15775. height: math.unit(6, "feet"),
  15776. weight: math.unit(150, "lb"),
  15777. name: "Back",
  15778. image: {
  15779. source: "./media/characters/veski/back.svg",
  15780. extra: 1299 / 1225,
  15781. bottom: 0.008
  15782. }
  15783. },
  15784. maw: {
  15785. height: math.unit(1.5 * 1.21, "feet"),
  15786. name: "Maw",
  15787. image: {
  15788. source: "./media/characters/veski/maw.svg"
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Macro",
  15795. height: math.unit(2, "km"),
  15796. default: true
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15802. {
  15803. front: {
  15804. height: math.unit(5 + 7 / 12, "feet"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/isabelle/front.svg",
  15808. extra: 2130 / 1976,
  15809. bottom: 0.05
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Supermicro",
  15816. height: math.unit(10, "micrometers")
  15817. },
  15818. {
  15819. name: "Micro",
  15820. height: math.unit(1, "inch")
  15821. },
  15822. {
  15823. name: "Tiny",
  15824. height: math.unit(5, "inches")
  15825. },
  15826. {
  15827. name: "Standard",
  15828. height: math.unit(5 + 7 / 12, "inches")
  15829. },
  15830. {
  15831. name: "Macro",
  15832. height: math.unit(80, "meters"),
  15833. default: true
  15834. },
  15835. {
  15836. name: "Megamacro",
  15837. height: math.unit(250, "meters")
  15838. },
  15839. {
  15840. name: "Gigamacro",
  15841. height: math.unit(5, "km")
  15842. },
  15843. {
  15844. name: "Cosmic",
  15845. height: math.unit(2.5e6, "miles")
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(6, "feet"),
  15854. weight: math.unit(150, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/hanzo/front.svg",
  15858. extra: 374 / 344,
  15859. bottom: 0.02
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(8, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(7, "feet"),
  15876. weight: math.unit(130, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/anna/front.svg",
  15880. extra: 169 / 145,
  15881. bottom: 0.06
  15882. }
  15883. },
  15884. full: {
  15885. height: math.unit(4.96, "feet"),
  15886. weight: math.unit(220, "lb"),
  15887. name: "Full",
  15888. image: {
  15889. source: "./media/characters/anna/full.svg",
  15890. extra: 138 / 114,
  15891. bottom: 0.15
  15892. }
  15893. },
  15894. tongue: {
  15895. height: math.unit(2.53, "feet"),
  15896. name: "Tongue",
  15897. image: {
  15898. source: "./media/characters/anna/tongue.svg"
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Normal",
  15905. height: math.unit(7, "feet"),
  15906. default: true
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15912. {
  15913. front: {
  15914. height: math.unit(7, "feet"),
  15915. weight: math.unit(150, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/ian-corvid/front.svg",
  15919. extra: 150 / 142,
  15920. bottom: 0.02
  15921. }
  15922. },
  15923. back: {
  15924. height: math.unit(7, "feet"),
  15925. weight: math.unit(150, "lb"),
  15926. name: "Back",
  15927. image: {
  15928. source: "./media/characters/ian-corvid/back.svg",
  15929. extra: 150 / 143,
  15930. bottom: 0.01
  15931. }
  15932. },
  15933. stomping: {
  15934. height: math.unit(7, "feet"),
  15935. weight: math.unit(150, "lb"),
  15936. name: "Stomping",
  15937. image: {
  15938. source: "./media/characters/ian-corvid/stomping.svg",
  15939. extra: 76 / 72
  15940. }
  15941. },
  15942. sitting: {
  15943. height: math.unit(7 / 1.8, "feet"),
  15944. weight: math.unit(150, "lb"),
  15945. name: "Sitting",
  15946. image: {
  15947. source: "./media/characters/ian-corvid/sitting.svg",
  15948. extra: 1400 / 1269,
  15949. bottom: 0.15
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Tiny Microw",
  15956. height: math.unit(1, "inch")
  15957. },
  15958. {
  15959. name: "Microw",
  15960. height: math.unit(6, "inches")
  15961. },
  15962. {
  15963. name: "Crow",
  15964. height: math.unit(7 + 1 / 12, "feet"),
  15965. default: true
  15966. },
  15967. {
  15968. name: "Macrow",
  15969. height: math.unit(176, "feet")
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(5 + 7 / 12, "feet"),
  15978. weight: math.unit(147, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/natalie-kellon/front.svg",
  15982. extra: 1214 / 1141,
  15983. bottom: 0.02
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Micro",
  15990. height: math.unit(1 / 16, "inch")
  15991. },
  15992. {
  15993. name: "Tiny",
  15994. height: math.unit(4, "inches")
  15995. },
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(5 + 7 / 12, "feet"),
  15999. default: true
  16000. },
  16001. {
  16002. name: "Amazon",
  16003. height: math.unit(12, "feet")
  16004. },
  16005. {
  16006. name: "Giantess",
  16007. height: math.unit(160, "meters")
  16008. },
  16009. {
  16010. name: "Titaness",
  16011. height: math.unit(800, "meters")
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16017. {
  16018. front: {
  16019. height: math.unit(6, "feet"),
  16020. weight: math.unit(150, "lb"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/alluria/front.svg",
  16024. extra: 806 / 738,
  16025. bottom: 0.01
  16026. }
  16027. },
  16028. side: {
  16029. height: math.unit(6, "feet"),
  16030. weight: math.unit(150, "lb"),
  16031. name: "Side",
  16032. image: {
  16033. source: "./media/characters/alluria/side.svg",
  16034. extra: 800 / 750,
  16035. }
  16036. },
  16037. back: {
  16038. height: math.unit(6, "feet"),
  16039. weight: math.unit(150, "lb"),
  16040. name: "Back",
  16041. image: {
  16042. source: "./media/characters/alluria/back.svg",
  16043. extra: 806 / 738,
  16044. }
  16045. },
  16046. frontMaid: {
  16047. height: math.unit(6, "feet"),
  16048. weight: math.unit(150, "lb"),
  16049. name: "Front (Maid)",
  16050. image: {
  16051. source: "./media/characters/alluria/front-maid.svg",
  16052. extra: 806 / 738,
  16053. bottom: 0.01
  16054. }
  16055. },
  16056. sideMaid: {
  16057. height: math.unit(6, "feet"),
  16058. weight: math.unit(150, "lb"),
  16059. name: "Side (Maid)",
  16060. image: {
  16061. source: "./media/characters/alluria/side-maid.svg",
  16062. extra: 800 / 750,
  16063. bottom: 0.005
  16064. }
  16065. },
  16066. backMaid: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Back (Maid)",
  16070. image: {
  16071. source: "./media/characters/alluria/back-maid.svg",
  16072. extra: 806 / 738,
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Micro",
  16079. height: math.unit(6, "inches"),
  16080. default: true
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(6, "feet"),
  16089. weight: math.unit(150, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/kyle/front.svg",
  16093. extra: 1069 / 962,
  16094. bottom: 77.228 / 1727.45
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Macro",
  16101. height: math.unit(150, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(300, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/duncan/front.svg",
  16115. extra: 1650 / 1482,
  16116. bottom: 0.05
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Macro",
  16123. height: math.unit(100, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(5 + 4 / 12, "feet"),
  16133. weight: math.unit(220, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/memory/front.svg",
  16137. extra: 3641 / 3545,
  16138. bottom: 0.03
  16139. }
  16140. },
  16141. back: {
  16142. height: math.unit(5 + 4 / 12, "feet"),
  16143. weight: math.unit(220, "lb"),
  16144. name: "Back",
  16145. image: {
  16146. source: "./media/characters/memory/back.svg",
  16147. extra: 3641 / 3545,
  16148. bottom: 0.025
  16149. }
  16150. },
  16151. frontSkirt: {
  16152. height: math.unit(5 + 4 / 12, "feet"),
  16153. weight: math.unit(220, "lb"),
  16154. name: "Front (Skirt)",
  16155. image: {
  16156. source: "./media/characters/memory/front-skirt.svg",
  16157. extra: 3641 / 3545,
  16158. bottom: 0.03
  16159. }
  16160. },
  16161. frontDress: {
  16162. height: math.unit(5 + 4 / 12, "feet"),
  16163. weight: math.unit(220, "lb"),
  16164. name: "Front (Dress)",
  16165. image: {
  16166. source: "./media/characters/memory/front-dress.svg",
  16167. extra: 3641 / 3545,
  16168. bottom: 0.03
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Micro",
  16175. height: math.unit(6, "inches"),
  16176. default: true
  16177. },
  16178. {
  16179. name: "Normal",
  16180. height: math.unit(5 + 4 / 12, "feet")
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(4 + 11 / 12, "feet"),
  16189. weight: math.unit(100, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/luno/front.svg",
  16193. extra: 1535 / 1487,
  16194. bottom: 0.03
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Micro",
  16201. height: math.unit(3, "inches")
  16202. },
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(4 + 11 / 12, "feet"),
  16206. default: true
  16207. },
  16208. {
  16209. name: "Macro",
  16210. height: math.unit(300, "feet")
  16211. },
  16212. {
  16213. name: "Megamacro",
  16214. height: math.unit(700, "miles")
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16220. {
  16221. front: {
  16222. height: math.unit(6 + 2 / 12, "feet"),
  16223. weight: math.unit(170, "lb"),
  16224. name: "Front",
  16225. image: {
  16226. source: "./media/characters/jamesy/front.svg",
  16227. extra: 440 / 382,
  16228. bottom: 0.005
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Micro",
  16235. height: math.unit(3, "inches")
  16236. },
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(6 + 2 / 12, "feet"),
  16240. default: true
  16241. },
  16242. {
  16243. name: "Macro",
  16244. height: math.unit(300, "feet")
  16245. },
  16246. {
  16247. name: "Megamacro",
  16248. height: math.unit(700, "miles")
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(6, "feet"),
  16257. weight: math.unit(160, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/mark/front.svg",
  16261. extra: 3300 / 3100,
  16262. bottom: 136.42 / 3440.47
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Macro",
  16269. height: math.unit(120, "meters")
  16270. },
  16271. {
  16272. name: "Bigger Macro",
  16273. height: math.unit(350, "meters")
  16274. },
  16275. {
  16276. name: "Megamacro",
  16277. height: math.unit(8, "km"),
  16278. default: true
  16279. },
  16280. {
  16281. name: "Continental",
  16282. height: math.unit(4550, "km")
  16283. },
  16284. {
  16285. name: "Planetary",
  16286. height: math.unit(65000, "km")
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(400, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/mac/front.svg",
  16299. extra: 1048 / 987.7,
  16300. bottom: 60 / 1107.6,
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Macro",
  16307. height: math.unit(500, "feet"),
  16308. default: true
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(5 + 2 / 12, "feet"),
  16317. weight: math.unit(190, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/bari/front.svg",
  16321. extra: 3156 / 2880,
  16322. bottom: 0.03
  16323. }
  16324. },
  16325. back: {
  16326. height: math.unit(5 + 2 / 12, "feet"),
  16327. weight: math.unit(190, "lb"),
  16328. name: "Back",
  16329. image: {
  16330. source: "./media/characters/bari/back.svg",
  16331. extra: 3260 / 2834,
  16332. bottom: 0.025
  16333. }
  16334. },
  16335. frontPlush: {
  16336. height: math.unit(5 + 2 / 12, "feet"),
  16337. weight: math.unit(190, "lb"),
  16338. name: "Front (Plush)",
  16339. image: {
  16340. source: "./media/characters/bari/front-plush.svg",
  16341. extra: 1112 / 1061,
  16342. bottom: 0.002
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Micro",
  16349. height: math.unit(3, "inches")
  16350. },
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(5 + 2 / 12, "feet"),
  16354. default: true
  16355. },
  16356. {
  16357. name: "Macro",
  16358. height: math.unit(20, "feet")
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(6 + 1 / 12, "feet"),
  16367. weight: math.unit(275, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/hunter-misha-raven/front.svg"
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Mortal",
  16377. height: math.unit(6 + 1 / 12, "feet")
  16378. },
  16379. {
  16380. name: "Divine",
  16381. height: math.unit(1.12134e34, "parsecs"),
  16382. default: true
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16388. {
  16389. front: {
  16390. height: math.unit(6 + 3 / 12, "feet"),
  16391. weight: math.unit(220, "lb"),
  16392. name: "Front",
  16393. image: {
  16394. source: "./media/characters/max-calore/front.svg",
  16395. extra: 1700 / 1648,
  16396. bottom: 0.01
  16397. }
  16398. },
  16399. back: {
  16400. height: math.unit(6 + 3 / 12, "feet"),
  16401. weight: math.unit(220, "lb"),
  16402. name: "Back",
  16403. image: {
  16404. source: "./media/characters/max-calore/back.svg",
  16405. extra: 1700 / 1648,
  16406. bottom: 0.01
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Normal",
  16413. height: math.unit(6 + 3 / 12, "feet"),
  16414. default: true
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16420. {
  16421. side: {
  16422. height: math.unit(2 + 8 / 12, "feet"),
  16423. weight: math.unit(99, "lb"),
  16424. name: "Side",
  16425. image: {
  16426. source: "./media/characters/aspen/side.svg",
  16427. extra: 152 / 138,
  16428. bottom: 0.032
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(2 + 8 / 12, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16442. {
  16443. side: {
  16444. height: math.unit(3 + 2 / 12, "feet"),
  16445. weight: math.unit(224, "lb"),
  16446. name: "Side",
  16447. image: {
  16448. source: "./media/characters/sheila-feral-wolf/side.svg",
  16449. extra: 179 / 166,
  16450. bottom: 0.03
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(3 + 2 / 12, "feet"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16464. {
  16465. side: {
  16466. height: math.unit(1 + 9 / 12, "feet"),
  16467. weight: math.unit(38, "lb"),
  16468. name: "Side",
  16469. image: {
  16470. source: "./media/characters/michelle/side.svg",
  16471. extra: 147 / 136.7,
  16472. bottom: 0.03
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(1 + 9 / 12, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16486. {
  16487. front: {
  16488. height: math.unit(1 + 1 / 12, "feet"),
  16489. weight: math.unit(18, "lb"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/nino/front.svg"
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(1 + 1 / 12, "feet"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(1, "feet"),
  16509. weight: math.unit(16, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/viola/front.svg"
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Normal",
  16519. height: math.unit(1, "feet"),
  16520. default: true
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16526. {
  16527. front: {
  16528. height: math.unit(6 + 5 / 12, "feet"),
  16529. weight: math.unit(580, "lb"),
  16530. name: "Front",
  16531. image: {
  16532. source: "./media/characters/atlas/front.svg",
  16533. extra: 298.5 / 290,
  16534. bottom: 0.015
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(6 + 5 / 12, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16548. {
  16549. side: {
  16550. height: math.unit(1 + 10 / 12, "feet"),
  16551. weight: math.unit(25, "lb"),
  16552. name: "Side",
  16553. image: {
  16554. source: "./media/characters/davy/side.svg",
  16555. extra: 200 / 170,
  16556. bottom: 0.01
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(1 + 10 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16570. {
  16571. side: {
  16572. height: math.unit(4 + 8 / 12, "feet"),
  16573. weight: math.unit(166, "lb"),
  16574. name: "Side",
  16575. image: {
  16576. source: "./media/characters/fiona/side.svg",
  16577. extra: 232 / 220,
  16578. bottom: 0.03
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(4 + 8 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16592. {
  16593. front: {
  16594. height: math.unit(2, "feet"),
  16595. weight: math.unit(62, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/lyla/front.svg",
  16599. bottom: 0.1
  16600. }
  16601. },
  16602. },
  16603. [
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(2, "feet"),
  16607. default: true
  16608. },
  16609. ]
  16610. ))
  16611. characterMakers.push(() => makeCharacter(
  16612. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16613. {
  16614. side: {
  16615. height: math.unit(1.8, "feet"),
  16616. weight: math.unit(44, "lb"),
  16617. name: "Side",
  16618. image: {
  16619. source: "./media/characters/perseus/side.svg",
  16620. bottom: 0.21
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(1.8, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16634. {
  16635. side: {
  16636. height: math.unit(4 + 2 / 12, "feet"),
  16637. weight: math.unit(20, "lb"),
  16638. name: "Side",
  16639. image: {
  16640. source: "./media/characters/remus/side.svg"
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(4 + 2 / 12, "feet"),
  16648. default: true
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16654. {
  16655. front: {
  16656. height: math.unit(4 + 11 / 12, "feet"),
  16657. weight: math.unit(114, "lb"),
  16658. name: "Front",
  16659. image: {
  16660. source: "./media/characters/raf/front.svg",
  16661. bottom: 20.5 / 1863
  16662. }
  16663. },
  16664. side: {
  16665. height: math.unit(4 + 11 / 12, "feet"),
  16666. weight: math.unit(114, "lb"),
  16667. name: "Side",
  16668. image: {
  16669. source: "./media/characters/raf/side.svg",
  16670. bottom: 22 / 1822
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Micro",
  16677. height: math.unit(2, "inches")
  16678. },
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(4 + 11 / 12, "feet"),
  16682. default: true
  16683. },
  16684. {
  16685. name: "Macro",
  16686. height: math.unit(70, "feet")
  16687. },
  16688. ]
  16689. ))
  16690. characterMakers.push(() => makeCharacter(
  16691. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16692. {
  16693. front: {
  16694. height: math.unit(1.5, "meters"),
  16695. weight: math.unit(68, "kg"),
  16696. name: "Front",
  16697. image: {
  16698. source: "./media/characters/liam-einarr/front.svg",
  16699. extra: 2822 / 2666
  16700. }
  16701. },
  16702. back: {
  16703. height: math.unit(1.5, "meters"),
  16704. weight: math.unit(68, "kg"),
  16705. name: "Back",
  16706. image: {
  16707. source: "./media/characters/liam-einarr/back.svg",
  16708. extra: 2822 / 2666,
  16709. bottom: 0.015
  16710. }
  16711. },
  16712. },
  16713. [
  16714. {
  16715. name: "Normal",
  16716. height: math.unit(1.5, "meters"),
  16717. default: true
  16718. },
  16719. {
  16720. name: "Macro",
  16721. height: math.unit(150, "meters")
  16722. },
  16723. {
  16724. name: "Megamacro",
  16725. height: math.unit(35, "km")
  16726. },
  16727. ]
  16728. ))
  16729. characterMakers.push(() => makeCharacter(
  16730. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16731. {
  16732. front: {
  16733. height: math.unit(6, "feet"),
  16734. weight: math.unit(75, "kg"),
  16735. name: "Front",
  16736. image: {
  16737. source: "./media/characters/linda/front.svg",
  16738. extra: 930 / 874,
  16739. bottom: 0.004
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(6, "feet"),
  16747. default: true
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(6 + 8 / 12, "feet"),
  16756. weight: math.unit(220, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/caylex/front.svg",
  16760. extra: 821 / 772,
  16761. bottom: 0.07
  16762. }
  16763. },
  16764. back: {
  16765. height: math.unit(6 + 8 / 12, "feet"),
  16766. weight: math.unit(220, "lb"),
  16767. name: "Back",
  16768. image: {
  16769. source: "./media/characters/caylex/back.svg",
  16770. extra: 821 / 772,
  16771. bottom: 0.022
  16772. }
  16773. },
  16774. hand: {
  16775. height: math.unit(1.25, "feet"),
  16776. name: "Hand",
  16777. image: {
  16778. source: "./media/characters/caylex/hand.svg"
  16779. }
  16780. },
  16781. foot: {
  16782. height: math.unit(1.6, "feet"),
  16783. name: "Foot",
  16784. image: {
  16785. source: "./media/characters/caylex/foot.svg"
  16786. }
  16787. },
  16788. armored: {
  16789. height: math.unit(6 + 8 / 12, "feet"),
  16790. weight: math.unit(250, "lb"),
  16791. name: "Armored",
  16792. image: {
  16793. source: "./media/characters/caylex/armored.svg",
  16794. extra: 1420 / 1310,
  16795. bottom: 0.045
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(6 + 8 / 12, "feet"),
  16803. default: true
  16804. },
  16805. {
  16806. name: "Normal+",
  16807. height: math.unit(12, "feet")
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(7 + 6 / 12, "feet"),
  16816. weight: math.unit(288, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/alana/front.svg",
  16820. extra: 679 / 653,
  16821. bottom: 22.5 / 701
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(7 + 6 / 12, "feet")
  16829. },
  16830. {
  16831. name: "Large",
  16832. height: math.unit(50, "feet")
  16833. },
  16834. {
  16835. name: "Macro",
  16836. height: math.unit(100, "feet"),
  16837. default: true
  16838. },
  16839. {
  16840. name: "Macro+",
  16841. height: math.unit(200, "feet")
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(6 + 1 / 12, "feet"),
  16850. weight: math.unit(210, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/hasani/front.svg",
  16854. extra: 244 / 232,
  16855. bottom: 0.01
  16856. }
  16857. },
  16858. back: {
  16859. height: math.unit(6 + 1 / 12, "feet"),
  16860. weight: math.unit(210, "lb"),
  16861. name: "Back",
  16862. image: {
  16863. source: "./media/characters/hasani/back.svg",
  16864. extra: 244 / 232,
  16865. bottom: 0.01
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(6 + 1 / 12, "feet")
  16873. },
  16874. {
  16875. name: "Macro",
  16876. height: math.unit(175, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(1.82, "meters"),
  16886. weight: math.unit(140, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/nita/front.svg",
  16890. extra: 2473 / 2363,
  16891. bottom: 0.01
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Normal",
  16898. height: math.unit(1.82, "m")
  16899. },
  16900. {
  16901. name: "Macro",
  16902. height: math.unit(300, "m")
  16903. },
  16904. {
  16905. name: "Mistake Canon",
  16906. height: math.unit(0.5, "miles"),
  16907. default: true
  16908. },
  16909. {
  16910. name: "Big Mistake",
  16911. height: math.unit(13, "miles")
  16912. },
  16913. {
  16914. name: "Playing God",
  16915. height: math.unit(2450, "miles")
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16921. {
  16922. front: {
  16923. height: math.unit(4, "feet"),
  16924. weight: math.unit(120, "lb"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/shiriko/front.svg",
  16928. extra: 195 / 188
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(4, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(6, "feet"),
  16945. name: "front",
  16946. image: {
  16947. source: "./media/characters/deja/front.svg",
  16948. extra: 926 / 840,
  16949. bottom: 0.07
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Planck Length",
  16956. height: math.unit(1.6e-35, "meters")
  16957. },
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(30.48, "meters"),
  16961. default: true
  16962. },
  16963. {
  16964. name: "Universal",
  16965. height: math.unit(8.8e26, "meters")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16971. {
  16972. side: {
  16973. height: math.unit(8, "feet"),
  16974. weight: math.unit(6300, "lb"),
  16975. name: "Side",
  16976. image: {
  16977. source: "./media/characters/anima/side.svg",
  16978. bottom: 0.035
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(8, "feet"),
  16986. default: true
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16992. {
  16993. front: {
  16994. height: math.unit(8, "feet"),
  16995. weight: math.unit(350, "lb"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/bianca/front.svg",
  16999. extra: 234 / 225,
  17000. bottom: 0.03
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(8, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(6, "feet"),
  17017. weight: math.unit(150, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/adinia/front.svg",
  17021. extra: 1845 / 1672,
  17022. bottom: 0.02
  17023. }
  17024. },
  17025. back: {
  17026. height: math.unit(6, "feet"),
  17027. weight: math.unit(150, "lb"),
  17028. name: "Back",
  17029. image: {
  17030. source: "./media/characters/adinia/back.svg",
  17031. extra: 1845 / 1672,
  17032. bottom: 0.002
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(11 + 5 / 12, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(3, "meters"),
  17049. weight: math.unit(200, "kg"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/lykasa/front.svg",
  17053. extra: 1076 / 976,
  17054. bottom: 0.06
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(3, "meters")
  17062. },
  17063. {
  17064. name: "Kaiju",
  17065. height: math.unit(120, "meters"),
  17066. default: true
  17067. },
  17068. {
  17069. name: "Mega Kaiju",
  17070. height: math.unit(240, "km")
  17071. },
  17072. {
  17073. name: "Giga Kaiju",
  17074. height: math.unit(400, "megameters")
  17075. },
  17076. {
  17077. name: "Tera Kaiju",
  17078. height: math.unit(800, "gigameters")
  17079. },
  17080. {
  17081. name: "Kaiju Dragon Goddess",
  17082. height: math.unit(26, "zettaparsecs")
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17088. {
  17089. side: {
  17090. height: math.unit(283 / 124 * 6, "feet"),
  17091. weight: math.unit(35000, "lb"),
  17092. name: "Side",
  17093. image: {
  17094. source: "./media/characters/malfaren/side.svg",
  17095. extra: 2500 / 1010,
  17096. bottom: 0.01
  17097. }
  17098. },
  17099. front: {
  17100. height: math.unit(22.36, "feet"),
  17101. weight: math.unit(35000, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/malfaren/front.svg",
  17105. extra: 1631 / 1476,
  17106. bottom: 0.01
  17107. }
  17108. },
  17109. maw: {
  17110. height: math.unit(6.9, "feet"),
  17111. name: "Maw",
  17112. image: {
  17113. source: "./media/characters/malfaren/maw.svg"
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Big",
  17120. height: math.unit(283 / 162 * 6, "feet"),
  17121. },
  17122. {
  17123. name: "Bigger",
  17124. height: math.unit(283 / 124 * 6, "feet")
  17125. },
  17126. {
  17127. name: "Massive",
  17128. height: math.unit(283 / 92 * 6, "feet"),
  17129. default: true
  17130. },
  17131. {
  17132. name: "👀💦",
  17133. height: math.unit(283 / 73 * 6, "feet"),
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17139. {
  17140. front: {
  17141. height: math.unit(1.7, "m"),
  17142. weight: math.unit(70, "kg"),
  17143. name: "Front",
  17144. image: {
  17145. source: "./media/characters/kernel/front.svg",
  17146. extra: 222 / 210,
  17147. bottom: 0.007
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Nano",
  17154. height: math.unit(17, "micrometers")
  17155. },
  17156. {
  17157. name: "Micro",
  17158. height: math.unit(1.7, "mm")
  17159. },
  17160. {
  17161. name: "Small",
  17162. height: math.unit(1.7, "cm")
  17163. },
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(1.7, "m"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(1.75, "meters"),
  17176. weight: math.unit(65, "kg"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/jayne-folest/front.svg",
  17180. extra: 2115 / 2007,
  17181. bottom: 0.02
  17182. }
  17183. },
  17184. back: {
  17185. height: math.unit(1.75, "meters"),
  17186. weight: math.unit(65, "kg"),
  17187. name: "Back",
  17188. image: {
  17189. source: "./media/characters/jayne-folest/back.svg",
  17190. extra: 2115 / 2007,
  17191. bottom: 0.005
  17192. }
  17193. },
  17194. frontClothed: {
  17195. height: math.unit(1.75, "meters"),
  17196. weight: math.unit(65, "kg"),
  17197. name: "Front (Clothed)",
  17198. image: {
  17199. source: "./media/characters/jayne-folest/front-clothed.svg",
  17200. extra: 2115 / 2007,
  17201. bottom: 0.035
  17202. }
  17203. },
  17204. hand: {
  17205. height: math.unit(1 / 1.260, "feet"),
  17206. name: "Hand",
  17207. image: {
  17208. source: "./media/characters/jayne-folest/hand.svg"
  17209. }
  17210. },
  17211. foot: {
  17212. height: math.unit(1 / 0.918, "feet"),
  17213. name: "Foot",
  17214. image: {
  17215. source: "./media/characters/jayne-folest/foot.svg"
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Micro",
  17222. height: math.unit(4, "cm")
  17223. },
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(1.75, "meters")
  17227. },
  17228. {
  17229. name: "Macro",
  17230. height: math.unit(47.5, "meters"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17237. {
  17238. front: {
  17239. height: math.unit(180, "cm"),
  17240. weight: math.unit(70, "kg"),
  17241. name: "Front",
  17242. image: {
  17243. source: "./media/characters/algier/front.svg",
  17244. extra: 596 / 572,
  17245. bottom: 0.04
  17246. }
  17247. },
  17248. back: {
  17249. height: math.unit(180, "cm"),
  17250. weight: math.unit(70, "kg"),
  17251. name: "Back",
  17252. image: {
  17253. source: "./media/characters/algier/back.svg",
  17254. extra: 596 / 572,
  17255. bottom: 0.025
  17256. }
  17257. },
  17258. frontdressed: {
  17259. height: math.unit(180, "cm"),
  17260. weight: math.unit(150, "kg"),
  17261. name: "Front-dressed",
  17262. image: {
  17263. source: "./media/characters/algier/front-dressed.svg",
  17264. extra: 596 / 572,
  17265. bottom: 0.038
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Micro",
  17272. height: math.unit(5, "cm")
  17273. },
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(180, "cm"),
  17277. default: true
  17278. },
  17279. {
  17280. name: "Macro",
  17281. height: math.unit(64, "m")
  17282. },
  17283. ]
  17284. ))
  17285. characterMakers.push(() => makeCharacter(
  17286. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17287. {
  17288. upright: {
  17289. height: math.unit(7, "feet"),
  17290. weight: math.unit(300, "lb"),
  17291. name: "Upright",
  17292. image: {
  17293. source: "./media/characters/pretzel/upright.svg",
  17294. extra: 534 / 522,
  17295. bottom: 0.065
  17296. }
  17297. },
  17298. sprawling: {
  17299. height: math.unit(3.75, "feet"),
  17300. weight: math.unit(300, "lb"),
  17301. name: "Sprawling",
  17302. image: {
  17303. source: "./media/characters/pretzel/sprawling.svg",
  17304. extra: 314 / 281,
  17305. bottom: 0.1
  17306. }
  17307. },
  17308. tongue: {
  17309. height: math.unit(2, "feet"),
  17310. name: "Tongue",
  17311. image: {
  17312. source: "./media/characters/pretzel/tongue.svg"
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(7, "feet"),
  17320. default: true
  17321. },
  17322. {
  17323. name: "Oversized",
  17324. height: math.unit(15, "feet")
  17325. },
  17326. {
  17327. name: "Huge",
  17328. height: math.unit(30, "feet")
  17329. },
  17330. {
  17331. name: "Macro",
  17332. height: math.unit(250, "feet")
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17338. {
  17339. sideFront: {
  17340. height: math.unit(5 + 2 / 12, "feet"),
  17341. weight: math.unit(120, "lb"),
  17342. name: "Front Side",
  17343. image: {
  17344. source: "./media/characters/roxi/side-front.svg",
  17345. extra: 2924 / 2717,
  17346. bottom: 0.08
  17347. }
  17348. },
  17349. sideBack: {
  17350. height: math.unit(5 + 2 / 12, "feet"),
  17351. weight: math.unit(120, "lb"),
  17352. name: "Back Side",
  17353. image: {
  17354. source: "./media/characters/roxi/side-back.svg",
  17355. extra: 2904 / 2693,
  17356. bottom: 0.06
  17357. }
  17358. },
  17359. front: {
  17360. height: math.unit(5 + 2 / 12, "feet"),
  17361. weight: math.unit(120, "lb"),
  17362. name: "Front",
  17363. image: {
  17364. source: "./media/characters/roxi/front.svg",
  17365. extra: 2028 / 1907,
  17366. bottom: 0.01
  17367. }
  17368. },
  17369. frontAlt: {
  17370. height: math.unit(5 + 2 / 12, "feet"),
  17371. weight: math.unit(120, "lb"),
  17372. name: "Front (Alt)",
  17373. image: {
  17374. source: "./media/characters/roxi/front-alt.svg",
  17375. extra: 1828 / 1798,
  17376. bottom: 0.01
  17377. }
  17378. },
  17379. sitting: {
  17380. height: math.unit(2.8, "feet"),
  17381. weight: math.unit(120, "lb"),
  17382. name: "Sitting",
  17383. image: {
  17384. source: "./media/characters/roxi/sitting.svg",
  17385. extra: 2660 / 2462,
  17386. bottom: 0.1
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(5 + 2 / 12, "feet"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17400. {
  17401. side: {
  17402. height: math.unit(55, "feet"),
  17403. weight: math.unit(153, "tons"),
  17404. name: "Side",
  17405. image: {
  17406. source: "./media/characters/shadow/side.svg",
  17407. extra: 701 / 628,
  17408. bottom: 0.02
  17409. }
  17410. },
  17411. flying: {
  17412. height: math.unit(145, "feet"),
  17413. weight: math.unit(153, "tons"),
  17414. name: "Flying",
  17415. image: {
  17416. source: "./media/characters/shadow/flying.svg"
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(55, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(200, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/marcie/front.svg",
  17437. extra: 960 / 876,
  17438. bottom: 58 / 1017.87
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Macro",
  17445. height: math.unit(1, "mile"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(7, "feet"),
  17455. weight: math.unit(200, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/kachina/front.svg",
  17459. extra: 1290.68 / 1119,
  17460. bottom: 36.5 / 1327.18
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(7, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17474. {
  17475. looking: {
  17476. height: math.unit(2, "meters"),
  17477. weight: math.unit(300, "kg"),
  17478. name: "Looking",
  17479. image: {
  17480. source: "./media/characters/kash/looking.svg",
  17481. extra: 474 / 344,
  17482. bottom: 0.03
  17483. }
  17484. },
  17485. side: {
  17486. height: math.unit(2, "meters"),
  17487. weight: math.unit(300, "kg"),
  17488. name: "Side",
  17489. image: {
  17490. source: "./media/characters/kash/side.svg",
  17491. extra: 302 / 251,
  17492. bottom: 0.03
  17493. }
  17494. },
  17495. front: {
  17496. height: math.unit(2, "meters"),
  17497. weight: math.unit(300, "kg"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/kash/front.svg",
  17501. extra: 495 / 360,
  17502. bottom: 0.015
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(2, "meters"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Big",
  17514. height: math.unit(3, "meters")
  17515. },
  17516. {
  17517. name: "Large",
  17518. height: math.unit(5, "meters")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17524. {
  17525. feeding: {
  17526. height: math.unit(6.7, "feet"),
  17527. weight: math.unit(350, "lb"),
  17528. name: "Feeding",
  17529. image: {
  17530. source: "./media/characters/lalim/feeding.svg",
  17531. }
  17532. },
  17533. },
  17534. [
  17535. {
  17536. name: "Normal",
  17537. height: math.unit(6.7, "feet"),
  17538. default: true
  17539. },
  17540. ]
  17541. ))
  17542. characterMakers.push(() => makeCharacter(
  17543. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17544. {
  17545. front: {
  17546. height: math.unit(9.5, "feet"),
  17547. weight: math.unit(600, "lb"),
  17548. name: "Front",
  17549. image: {
  17550. source: "./media/characters/de'vout/front.svg",
  17551. extra: 1443 / 1328,
  17552. bottom: 0.025
  17553. }
  17554. },
  17555. back: {
  17556. height: math.unit(9.5, "feet"),
  17557. weight: math.unit(600, "lb"),
  17558. name: "Back",
  17559. image: {
  17560. source: "./media/characters/de'vout/back.svg",
  17561. extra: 1443 / 1328
  17562. }
  17563. },
  17564. frontDressed: {
  17565. height: math.unit(9.5, "feet"),
  17566. weight: math.unit(600, "lb"),
  17567. name: "Front (Dressed",
  17568. image: {
  17569. source: "./media/characters/de'vout/front-dressed.svg",
  17570. extra: 1443 / 1328,
  17571. bottom: 0.025
  17572. }
  17573. },
  17574. backDressed: {
  17575. height: math.unit(9.5, "feet"),
  17576. weight: math.unit(600, "lb"),
  17577. name: "Back (Dressed",
  17578. image: {
  17579. source: "./media/characters/de'vout/back-dressed.svg",
  17580. extra: 1443 / 1328
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(9.5, "feet"),
  17588. default: true
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17594. {
  17595. front: {
  17596. height: math.unit(8, "feet"),
  17597. weight: math.unit(225, "lb"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/talana/front.svg",
  17601. extra: 1410 / 1300,
  17602. bottom: 0.015
  17603. }
  17604. },
  17605. frontDressed: {
  17606. height: math.unit(8, "feet"),
  17607. weight: math.unit(225, "lb"),
  17608. name: "Front (Dressed",
  17609. image: {
  17610. source: "./media/characters/talana/front-dressed.svg",
  17611. extra: 1410 / 1300,
  17612. bottom: 0.015
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(8, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17626. {
  17627. side: {
  17628. height: math.unit(7.2, "feet"),
  17629. weight: math.unit(150, "lb"),
  17630. name: "Side",
  17631. image: {
  17632. source: "./media/characters/xeauvok/side.svg",
  17633. extra: 1975 / 1523,
  17634. bottom: 0.07
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(7.2, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17648. {
  17649. side: {
  17650. height: math.unit(10, "feet"),
  17651. weight: math.unit(900, "kg"),
  17652. name: "Side",
  17653. image: {
  17654. source: "./media/characters/zara/side.svg",
  17655. extra: 504 / 498
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Normal",
  17662. height: math.unit(10, "feet"),
  17663. default: true
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17669. {
  17670. side: {
  17671. height: math.unit(6, "feet"),
  17672. weight: math.unit(150, "lb"),
  17673. name: "Side",
  17674. image: {
  17675. source: "./media/characters/richard-dragon/side.svg",
  17676. extra: 845 / 340,
  17677. bottom: 0.017
  17678. }
  17679. },
  17680. maw: {
  17681. height: math.unit(2.97, "feet"),
  17682. name: "Maw",
  17683. image: {
  17684. source: "./media/characters/richard-dragon/maw.svg"
  17685. }
  17686. },
  17687. },
  17688. [
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17693. {
  17694. front: {
  17695. height: math.unit(4, "feet"),
  17696. weight: math.unit(100, "lb"),
  17697. name: "Front",
  17698. image: {
  17699. source: "./media/characters/richard-smeargle/front.svg",
  17700. extra: 2952 / 2820,
  17701. bottom: 0.028
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(4, "feet"),
  17709. default: true
  17710. },
  17711. {
  17712. name: "Dynamax",
  17713. height: math.unit(20, "meters")
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17719. {
  17720. front: {
  17721. height: math.unit(6, "feet"),
  17722. weight: math.unit(110, "lb"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/klay/front.svg",
  17726. extra: 962 / 883,
  17727. bottom: 0.04
  17728. }
  17729. },
  17730. back: {
  17731. height: math.unit(6, "feet"),
  17732. weight: math.unit(110, "lb"),
  17733. name: "Back",
  17734. image: {
  17735. source: "./media/characters/klay/back.svg",
  17736. extra: 962 / 883
  17737. }
  17738. },
  17739. beans: {
  17740. height: math.unit(1.15, "feet"),
  17741. name: "Beans",
  17742. image: {
  17743. source: "./media/characters/klay/beans.svg"
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Micro",
  17750. height: math.unit(6, "inches")
  17751. },
  17752. {
  17753. name: "Mini",
  17754. height: math.unit(3, "feet")
  17755. },
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(6, "feet"),
  17759. default: true
  17760. },
  17761. {
  17762. name: "Big",
  17763. height: math.unit(25, "feet")
  17764. },
  17765. {
  17766. name: "Macro",
  17767. height: math.unit(100, "feet")
  17768. },
  17769. {
  17770. name: "Megamacro",
  17771. height: math.unit(400, "feet")
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(6, "feet"),
  17780. weight: math.unit(160, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/marcus/front.svg",
  17784. extra: 734 / 676,
  17785. bottom: 0.03
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Little",
  17792. height: math.unit(6, "feet")
  17793. },
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(110, "feet"),
  17797. default: true
  17798. },
  17799. {
  17800. name: "Macro",
  17801. height: math.unit(250, "feet")
  17802. },
  17803. {
  17804. name: "Megamacro",
  17805. height: math.unit(1000, "feet")
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(7, "feet"),
  17814. weight: math.unit(275, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/claude-delroute/front.svg",
  17818. extra: 230 / 214,
  17819. bottom: 0.007
  17820. }
  17821. },
  17822. side: {
  17823. height: math.unit(7, "feet"),
  17824. weight: math.unit(275, "lb"),
  17825. name: "Side",
  17826. image: {
  17827. source: "./media/characters/claude-delroute/side.svg",
  17828. extra: 222 / 214,
  17829. bottom: 0.01
  17830. }
  17831. },
  17832. back: {
  17833. height: math.unit(7, "feet"),
  17834. weight: math.unit(275, "lb"),
  17835. name: "Back",
  17836. image: {
  17837. source: "./media/characters/claude-delroute/back.svg",
  17838. extra: 230 / 214,
  17839. bottom: 0.015
  17840. }
  17841. },
  17842. maw: {
  17843. height: math.unit(0.6407, "meters"),
  17844. name: "Maw",
  17845. image: {
  17846. source: "./media/characters/claude-delroute/maw.svg"
  17847. }
  17848. },
  17849. },
  17850. [
  17851. {
  17852. name: "Normal",
  17853. height: math.unit(7, "feet"),
  17854. default: true
  17855. },
  17856. {
  17857. name: "Lorge",
  17858. height: math.unit(20, "feet")
  17859. },
  17860. ]
  17861. ))
  17862. characterMakers.push(() => makeCharacter(
  17863. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17864. {
  17865. front: {
  17866. height: math.unit(8 + 4 / 12, "feet"),
  17867. weight: math.unit(600, "lb"),
  17868. name: "Front",
  17869. image: {
  17870. source: "./media/characters/dragonien/front.svg",
  17871. extra: 100 / 94,
  17872. bottom: 3.3 / 103.3445
  17873. }
  17874. },
  17875. back: {
  17876. height: math.unit(8 + 4 / 12, "feet"),
  17877. weight: math.unit(600, "lb"),
  17878. name: "Back",
  17879. image: {
  17880. source: "./media/characters/dragonien/back.svg",
  17881. extra: 776 / 746,
  17882. bottom: 6.4 / 782.0616
  17883. }
  17884. },
  17885. foot: {
  17886. height: math.unit(1.54, "feet"),
  17887. name: "Foot",
  17888. image: {
  17889. source: "./media/characters/dragonien/foot.svg",
  17890. }
  17891. },
  17892. },
  17893. [
  17894. {
  17895. name: "Normal",
  17896. height: math.unit(8 + 4 / 12, "feet"),
  17897. default: true
  17898. },
  17899. {
  17900. name: "Macro",
  17901. height: math.unit(200, "feet")
  17902. },
  17903. {
  17904. name: "Megamacro",
  17905. height: math.unit(1, "mile")
  17906. },
  17907. {
  17908. name: "Gigamacro",
  17909. height: math.unit(1000, "miles")
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17915. {
  17916. front: {
  17917. height: math.unit(5 + 2 / 12, "feet"),
  17918. weight: math.unit(110, "lb"),
  17919. name: "Front",
  17920. image: {
  17921. source: "./media/characters/desta/front.svg",
  17922. extra: 767 / 726,
  17923. bottom: 11.7 / 779
  17924. }
  17925. },
  17926. back: {
  17927. height: math.unit(5 + 2 / 12, "feet"),
  17928. weight: math.unit(110, "lb"),
  17929. name: "Back",
  17930. image: {
  17931. source: "./media/characters/desta/back.svg",
  17932. extra: 777 / 728,
  17933. bottom: 6 / 784
  17934. }
  17935. },
  17936. frontAlt: {
  17937. height: math.unit(5 + 2 / 12, "feet"),
  17938. weight: math.unit(110, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/desta/front-alt.svg",
  17942. extra: 1482 / 1417
  17943. }
  17944. },
  17945. side: {
  17946. height: math.unit(5 + 2 / 12, "feet"),
  17947. weight: math.unit(110, "lb"),
  17948. name: "Side",
  17949. image: {
  17950. source: "./media/characters/desta/side.svg",
  17951. extra: 2579 / 2491,
  17952. bottom: 0.053
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Micro",
  17959. height: math.unit(6, "inches")
  17960. },
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(5 + 2 / 12, "feet"),
  17964. default: true
  17965. },
  17966. {
  17967. name: "Macro",
  17968. height: math.unit(62, "feet")
  17969. },
  17970. {
  17971. name: "Megamacro",
  17972. height: math.unit(1800, "feet")
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(10, "feet"),
  17981. weight: math.unit(700, "lb"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/storm-alystar/front.svg",
  17985. extra: 2112 / 1898,
  17986. bottom: 0.034
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Micro",
  17993. height: math.unit(3.5, "inches")
  17994. },
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(10, "feet"),
  17998. default: true
  17999. },
  18000. {
  18001. name: "Macro",
  18002. height: math.unit(400, "feet")
  18003. },
  18004. {
  18005. name: "Deific",
  18006. height: math.unit(60, "miles")
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(2.35, "meters"),
  18015. weight: math.unit(119, "kg"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/ilia/front.svg",
  18019. extra: 1285 / 1255,
  18020. bottom: 0.06
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Normal",
  18027. height: math.unit(2.35, "meters")
  18028. },
  18029. {
  18030. name: "Macro",
  18031. height: math.unit(140, "meters"),
  18032. default: true
  18033. },
  18034. {
  18035. name: "Megamacro",
  18036. height: math.unit(100, "miles")
  18037. },
  18038. ]
  18039. ))
  18040. characterMakers.push(() => makeCharacter(
  18041. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18042. {
  18043. front: {
  18044. height: math.unit(6 + 5 / 12, "feet"),
  18045. weight: math.unit(190, "lb"),
  18046. name: "Front",
  18047. image: {
  18048. source: "./media/characters/kingdead/front.svg",
  18049. extra: 1228 / 1177
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Micro",
  18056. height: math.unit(7, "inches")
  18057. },
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(6 + 5 / 12, "feet")
  18061. },
  18062. {
  18063. name: "Macro",
  18064. height: math.unit(150, "feet"),
  18065. default: true
  18066. },
  18067. {
  18068. name: "Megamacro",
  18069. height: math.unit(200, "miles")
  18070. },
  18071. ]
  18072. ))
  18073. characterMakers.push(() => makeCharacter(
  18074. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18075. {
  18076. front: {
  18077. height: math.unit(8, "feet"),
  18078. weight: math.unit(600, "lb"),
  18079. name: "Front",
  18080. image: {
  18081. source: "./media/characters/kyrehx/front.svg",
  18082. extra: 1195 / 1095,
  18083. bottom: 0.034
  18084. }
  18085. },
  18086. },
  18087. [
  18088. {
  18089. name: "Micro",
  18090. height: math.unit(2, "inches")
  18091. },
  18092. {
  18093. name: "Normal",
  18094. height: math.unit(8, "feet"),
  18095. default: true
  18096. },
  18097. {
  18098. name: "Macro",
  18099. height: math.unit(255, "feet")
  18100. },
  18101. ]
  18102. ))
  18103. characterMakers.push(() => makeCharacter(
  18104. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18105. {
  18106. front: {
  18107. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18108. weight: math.unit(184, "lb"),
  18109. name: "Front",
  18110. image: {
  18111. source: "./media/characters/xang/front.svg",
  18112. extra: 845 / 755
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18120. default: true
  18121. },
  18122. {
  18123. name: "Macro",
  18124. height: math.unit(0.935 * 146, "feet")
  18125. },
  18126. {
  18127. name: "Megamacro",
  18128. height: math.unit(0.935 * 3, "miles")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18134. {
  18135. frontDressed: {
  18136. height: math.unit(5 + 7 / 12, "feet"),
  18137. weight: math.unit(140, "lb"),
  18138. name: "Front (Dressed)",
  18139. image: {
  18140. source: "./media/characters/doc-weardno/front-dressed.svg",
  18141. extra: 263 / 234
  18142. }
  18143. },
  18144. backDressed: {
  18145. height: math.unit(5 + 7 / 12, "feet"),
  18146. weight: math.unit(140, "lb"),
  18147. name: "Back (Dressed)",
  18148. image: {
  18149. source: "./media/characters/doc-weardno/back-dressed.svg",
  18150. extra: 266 / 238
  18151. }
  18152. },
  18153. front: {
  18154. height: math.unit(5 + 7 / 12, "feet"),
  18155. weight: math.unit(140, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/doc-weardno/front.svg",
  18159. extra: 254 / 233
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Micro",
  18166. height: math.unit(3, "inches")
  18167. },
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(5 + 7 / 12, "feet"),
  18171. default: true
  18172. },
  18173. {
  18174. name: "Macro",
  18175. height: math.unit(25, "feet")
  18176. },
  18177. {
  18178. name: "Megamacro",
  18179. height: math.unit(2, "miles")
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18185. {
  18186. front: {
  18187. height: math.unit(6 + 2 / 12, "feet"),
  18188. weight: math.unit(153, "lb"),
  18189. name: "Front",
  18190. image: {
  18191. source: "./media/characters/seth-whilst/front.svg",
  18192. bottom: 0.07
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Micro",
  18199. height: math.unit(5, "inches")
  18200. },
  18201. {
  18202. name: "Normal",
  18203. height: math.unit(6 + 2 / 12, "feet"),
  18204. default: true
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(3, "inches"),
  18213. weight: math.unit(8, "grams"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/pocket-jabari/front.svg",
  18217. extra: 1024 / 974,
  18218. bottom: 0.039
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Minimicro",
  18225. height: math.unit(8, "mm")
  18226. },
  18227. {
  18228. name: "Micro",
  18229. height: math.unit(3, "inches"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(3, "feet")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(15, "feet"),
  18243. weight: math.unit(3280, "lb"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/sapphy/front.svg",
  18247. extra: 671 / 577,
  18248. bottom: 0.085
  18249. }
  18250. },
  18251. back: {
  18252. height: math.unit(15, "feet"),
  18253. weight: math.unit(3280, "lb"),
  18254. name: "Back",
  18255. image: {
  18256. source: "./media/characters/sapphy/back.svg",
  18257. extra: 631 / 607,
  18258. bottom: 0.045
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Normal",
  18265. height: math.unit(15, "feet")
  18266. },
  18267. {
  18268. name: "Casual Macro",
  18269. height: math.unit(120, "feet")
  18270. },
  18271. {
  18272. name: "Macro",
  18273. height: math.unit(2150, "feet"),
  18274. default: true
  18275. },
  18276. {
  18277. name: "Megamacro",
  18278. height: math.unit(8, "miles")
  18279. },
  18280. {
  18281. name: "Galaxy Mom",
  18282. height: math.unit(6, "megalightyears")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(6, "feet"),
  18291. weight: math.unit(170, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/kiro/front.svg",
  18295. extra: 1064 / 1012,
  18296. bottom: 0.052
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Micro",
  18303. height: math.unit(6, "inches")
  18304. },
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(6, "feet"),
  18308. default: true
  18309. },
  18310. {
  18311. name: "Macro",
  18312. height: math.unit(72, "feet")
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18318. {
  18319. front: {
  18320. height: math.unit(5 + 9 / 12, "feet"),
  18321. weight: math.unit(175, "lb"),
  18322. name: "Front",
  18323. image: {
  18324. source: "./media/characters/irishfox/front.svg",
  18325. extra: 1912 / 1680,
  18326. bottom: 0.02
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Nano",
  18333. height: math.unit(1, "mm")
  18334. },
  18335. {
  18336. name: "Micro",
  18337. height: math.unit(2, "inches")
  18338. },
  18339. {
  18340. name: "Normal",
  18341. height: math.unit(5 + 9 / 12, "feet"),
  18342. default: true
  18343. },
  18344. {
  18345. name: "Macro",
  18346. height: math.unit(45, "feet")
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18352. {
  18353. front: {
  18354. height: math.unit(6 + 1 / 12, "feet"),
  18355. weight: math.unit(75, "lb"),
  18356. name: "Front",
  18357. image: {
  18358. source: "./media/characters/aronai-sieyes/front.svg",
  18359. extra: 1556 / 1480,
  18360. bottom: 0.015
  18361. }
  18362. },
  18363. side: {
  18364. height: math.unit(6 + 1 / 12, "feet"),
  18365. weight: math.unit(75, "lb"),
  18366. name: "Side",
  18367. image: {
  18368. source: "./media/characters/aronai-sieyes/side.svg",
  18369. extra: 1433 / 1390,
  18370. bottom: 0.0393
  18371. }
  18372. },
  18373. back: {
  18374. height: math.unit(6 + 1 / 12, "feet"),
  18375. weight: math.unit(75, "lb"),
  18376. name: "Back",
  18377. image: {
  18378. source: "./media/characters/aronai-sieyes/back.svg",
  18379. extra: 1544 / 1494,
  18380. bottom: 0.02
  18381. }
  18382. },
  18383. frontClothed: {
  18384. height: math.unit(6 + 1 / 12, "feet"),
  18385. weight: math.unit(75, "lb"),
  18386. name: "Front (Clothed)",
  18387. image: {
  18388. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18389. extra: 1582 / 1527
  18390. }
  18391. },
  18392. feral: {
  18393. height: math.unit(18, "feet"),
  18394. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18395. name: "Feral",
  18396. image: {
  18397. source: "./media/characters/aronai-sieyes/feral.svg",
  18398. extra: 1530 / 1240,
  18399. bottom: 0.035
  18400. }
  18401. },
  18402. },
  18403. [
  18404. {
  18405. name: "Micro",
  18406. height: math.unit(2, "inches")
  18407. },
  18408. {
  18409. name: "Normal",
  18410. height: math.unit(6 + 1 / 12, "feet"),
  18411. default: true
  18412. }
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18417. {
  18418. front: {
  18419. height: math.unit(12, "feet"),
  18420. weight: math.unit(410, "kg"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/xuna/front.svg",
  18424. extra: 2184 / 1980
  18425. }
  18426. },
  18427. side: {
  18428. height: math.unit(12, "feet"),
  18429. weight: math.unit(410, "kg"),
  18430. name: "Side",
  18431. image: {
  18432. source: "./media/characters/xuna/side.svg",
  18433. extra: 2184 / 1980
  18434. }
  18435. },
  18436. back: {
  18437. height: math.unit(12, "feet"),
  18438. weight: math.unit(410, "kg"),
  18439. name: "Back",
  18440. image: {
  18441. source: "./media/characters/xuna/back.svg",
  18442. extra: 2184 / 1980
  18443. }
  18444. },
  18445. },
  18446. [
  18447. {
  18448. name: "Nano glow",
  18449. height: math.unit(10, "nm")
  18450. },
  18451. {
  18452. name: "Micro floof",
  18453. height: math.unit(0.3, "m")
  18454. },
  18455. {
  18456. name: "Huggable softy boi",
  18457. height: math.unit(3.6576, "m"),
  18458. default: true
  18459. },
  18460. {
  18461. name: "Admirable floof",
  18462. height: math.unit(80, "meters")
  18463. },
  18464. {
  18465. name: "Gentle macro",
  18466. height: math.unit(300, "meters")
  18467. },
  18468. {
  18469. name: "Very careful floof",
  18470. height: math.unit(3200, "meters")
  18471. },
  18472. {
  18473. name: "The mega floof",
  18474. height: math.unit(36000, "meters")
  18475. },
  18476. {
  18477. name: "Giga-fur-Wicker",
  18478. height: math.unit(4800000, "meters")
  18479. },
  18480. {
  18481. name: "Licky world",
  18482. height: math.unit(20000000, "meters")
  18483. },
  18484. {
  18485. name: "Floofy cyan sun",
  18486. height: math.unit(1500000000, "meters")
  18487. },
  18488. {
  18489. name: "Milky Wicker",
  18490. height: math.unit(1000000000000000000000, "meters")
  18491. },
  18492. {
  18493. name: "The observing Wicker",
  18494. height: math.unit(999999999999999999999999999, "meters")
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18500. {
  18501. front: {
  18502. height: math.unit(5 + 9 / 12, "feet"),
  18503. weight: math.unit(150, "lb"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/arokha-sieyes/front.svg",
  18507. extra: 1425 / 1284,
  18508. bottom: 0.05
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(5 + 9 / 12, "feet")
  18516. },
  18517. {
  18518. name: "Macro",
  18519. height: math.unit(30, "meters"),
  18520. default: true
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18526. {
  18527. front: {
  18528. height: math.unit(6, "feet"),
  18529. weight: math.unit(180, "lb"),
  18530. name: "Front",
  18531. image: {
  18532. source: "./media/characters/arokh-sieyes/front.svg",
  18533. extra: 1830 / 1769,
  18534. bottom: 0.01
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Normal",
  18541. height: math.unit(6, "feet")
  18542. },
  18543. {
  18544. name: "Macro",
  18545. height: math.unit(30, "meters"),
  18546. default: true
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18552. {
  18553. side: {
  18554. height: math.unit(13 + 1 / 12, "feet"),
  18555. weight: math.unit(8.5, "tonnes"),
  18556. name: "Side",
  18557. image: {
  18558. source: "./media/characters/goldeneye/side.svg",
  18559. extra: 1182 / 778,
  18560. bottom: 0.067
  18561. }
  18562. },
  18563. paw: {
  18564. height: math.unit(3.4, "feet"),
  18565. name: "Paw",
  18566. image: {
  18567. source: "./media/characters/goldeneye/paw.svg"
  18568. }
  18569. },
  18570. },
  18571. [
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(13 + 1 / 12, "feet"),
  18575. default: true
  18576. },
  18577. ]
  18578. ))
  18579. characterMakers.push(() => makeCharacter(
  18580. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18581. {
  18582. front: {
  18583. height: math.unit(6 + 1 / 12, "feet"),
  18584. weight: math.unit(210, "lb"),
  18585. name: "Front",
  18586. image: {
  18587. source: "./media/characters/leonardo-lycheborne/front.svg",
  18588. extra: 390 / 365,
  18589. bottom: 0.032
  18590. }
  18591. },
  18592. side: {
  18593. height: math.unit(6 + 1 / 12, "feet"),
  18594. weight: math.unit(210, "lb"),
  18595. name: "Side",
  18596. image: {
  18597. source: "./media/characters/leonardo-lycheborne/side.svg",
  18598. extra: 390 / 365,
  18599. bottom: 0.005
  18600. }
  18601. },
  18602. back: {
  18603. height: math.unit(6 + 1 / 12, "feet"),
  18604. weight: math.unit(210, "lb"),
  18605. name: "Back",
  18606. image: {
  18607. source: "./media/characters/leonardo-lycheborne/back.svg",
  18608. extra: 392 / 366,
  18609. bottom: 0.01
  18610. }
  18611. },
  18612. hand: {
  18613. height: math.unit(1.08, "feet"),
  18614. name: "Hand",
  18615. image: {
  18616. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18617. }
  18618. },
  18619. foot: {
  18620. height: math.unit(1.32, "feet"),
  18621. name: "Foot",
  18622. image: {
  18623. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18624. }
  18625. },
  18626. were: {
  18627. height: math.unit(20, "feet"),
  18628. weight: math.unit(7800, "lb"),
  18629. name: "Were",
  18630. image: {
  18631. source: "./media/characters/leonardo-lycheborne/were.svg",
  18632. extra: 308 / 294,
  18633. bottom: 0.048
  18634. }
  18635. },
  18636. feral: {
  18637. height: math.unit(7.5, "feet"),
  18638. weight: math.unit(600, "lb"),
  18639. name: "Feral",
  18640. image: {
  18641. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18642. extra: 210 / 186,
  18643. bottom: 0.108
  18644. }
  18645. },
  18646. taur: {
  18647. height: math.unit(11, "feet"),
  18648. weight: math.unit(3300, "lb"),
  18649. name: "Taur",
  18650. image: {
  18651. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18652. extra: 320 / 303,
  18653. bottom: 0.025
  18654. }
  18655. },
  18656. barghest: {
  18657. height: math.unit(11, "feet"),
  18658. weight: math.unit(1300, "lb"),
  18659. name: "Barghest",
  18660. image: {
  18661. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18662. extra: 323 / 302,
  18663. bottom: 0.027
  18664. }
  18665. },
  18666. dick: {
  18667. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18668. name: "Dick",
  18669. image: {
  18670. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18671. }
  18672. },
  18673. dickWere: {
  18674. height: math.unit((20) / 3.8, "feet"),
  18675. name: "Dick (Were)",
  18676. image: {
  18677. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(6 + 1 / 12, "feet"),
  18685. default: true
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18691. {
  18692. front: {
  18693. height: math.unit(10, "feet"),
  18694. weight: math.unit(350, "lb"),
  18695. name: "Front",
  18696. image: {
  18697. source: "./media/characters/jet/front.svg",
  18698. extra: 2050 / 1980,
  18699. bottom: 0.013
  18700. }
  18701. },
  18702. back: {
  18703. height: math.unit(10, "feet"),
  18704. weight: math.unit(350, "lb"),
  18705. name: "Back",
  18706. image: {
  18707. source: "./media/characters/jet/back.svg",
  18708. extra: 2050 / 1980,
  18709. bottom: 0.013
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Micro",
  18716. height: math.unit(6, "inches")
  18717. },
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(10, "feet"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Macro",
  18725. height: math.unit(100, "feet")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(15, "feet"),
  18734. weight: math.unit(2800, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/tanarath/front.svg",
  18738. extra: 2392 / 2220,
  18739. bottom: 0.03
  18740. }
  18741. },
  18742. back: {
  18743. height: math.unit(15, "feet"),
  18744. weight: math.unit(2800, "lb"),
  18745. name: "Back",
  18746. image: {
  18747. source: "./media/characters/tanarath/back.svg",
  18748. extra: 2392 / 2220,
  18749. bottom: 0.03
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(15, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(7 + 1 / 12, "feet"),
  18766. weight: math.unit(175, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/patty-cattybatty/front.svg",
  18770. extra: 908 / 874,
  18771. bottom: 0.025
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Micro",
  18778. height: math.unit(1, "inch")
  18779. },
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(7 + 1 / 12, "feet")
  18783. },
  18784. {
  18785. name: "Mini Macro",
  18786. height: math.unit(155, "feet")
  18787. },
  18788. {
  18789. name: "Macro",
  18790. height: math.unit(1077, "feet")
  18791. },
  18792. {
  18793. name: "Mega Macro",
  18794. height: math.unit(47650, "feet"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Giga Macro",
  18799. height: math.unit(440, "miles")
  18800. },
  18801. {
  18802. name: "Tera Macro",
  18803. height: math.unit(8700, "miles")
  18804. },
  18805. {
  18806. name: "Planetary Macro",
  18807. height: math.unit(32700, "miles")
  18808. },
  18809. {
  18810. name: "Solar Macro",
  18811. height: math.unit(550000, "miles")
  18812. },
  18813. {
  18814. name: "Celestial Macro",
  18815. height: math.unit(2.5, "AU")
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18821. {
  18822. front: {
  18823. height: math.unit(4 + 5 / 12, "feet"),
  18824. weight: math.unit(90, "lb"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/cappu/front.svg",
  18828. extra: 1247 / 1152,
  18829. bottom: 0.012
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(4 + 5 / 12, "feet"),
  18837. default: true
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18843. {
  18844. frontDressed: {
  18845. height: math.unit(70, "cm"),
  18846. weight: math.unit(6, "kg"),
  18847. name: "Front (Dressed)",
  18848. image: {
  18849. source: "./media/characters/sebi/front-dressed.svg",
  18850. extra: 713.5 / 686.5,
  18851. bottom: 0.003
  18852. }
  18853. },
  18854. front: {
  18855. height: math.unit(70, "cm"),
  18856. weight: math.unit(5, "kg"),
  18857. name: "Front",
  18858. image: {
  18859. source: "./media/characters/sebi/front.svg",
  18860. extra: 713.5 / 686.5,
  18861. bottom: 0.003
  18862. }
  18863. }
  18864. },
  18865. [
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(70, "cm"),
  18869. default: true
  18870. },
  18871. {
  18872. name: "Macro",
  18873. height: math.unit(8, "meters")
  18874. },
  18875. ]
  18876. ))
  18877. characterMakers.push(() => makeCharacter(
  18878. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18879. {
  18880. front: {
  18881. height: math.unit(6, "feet"),
  18882. weight: math.unit(150, "lb"),
  18883. name: "Front",
  18884. image: {
  18885. source: "./media/characters/typhek/front.svg",
  18886. extra: 1948 / 1929,
  18887. bottom: 0.025
  18888. }
  18889. },
  18890. side: {
  18891. height: math.unit(6, "feet"),
  18892. weight: math.unit(150, "lb"),
  18893. name: "Side",
  18894. image: {
  18895. source: "./media/characters/typhek/side.svg",
  18896. extra: 2034 / 2010,
  18897. bottom: 0.003
  18898. }
  18899. },
  18900. back: {
  18901. height: math.unit(6, "feet"),
  18902. weight: math.unit(150, "lb"),
  18903. name: "Back",
  18904. image: {
  18905. source: "./media/characters/typhek/back.svg",
  18906. extra: 2005 / 1978,
  18907. bottom: 0.004
  18908. }
  18909. },
  18910. palm: {
  18911. height: math.unit(1.2, "feet"),
  18912. name: "Palm",
  18913. image: {
  18914. source: "./media/characters/typhek/palm.svg"
  18915. }
  18916. },
  18917. fist: {
  18918. height: math.unit(1.1, "feet"),
  18919. name: "Fist",
  18920. image: {
  18921. source: "./media/characters/typhek/fist.svg"
  18922. }
  18923. },
  18924. foot: {
  18925. height: math.unit(1.57, "feet"),
  18926. name: "Foot",
  18927. image: {
  18928. source: "./media/characters/typhek/foot.svg"
  18929. }
  18930. },
  18931. sole: {
  18932. height: math.unit(2.05, "feet"),
  18933. name: "Sole",
  18934. image: {
  18935. source: "./media/characters/typhek/sole.svg"
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Macro",
  18942. height: math.unit(40, "stories"),
  18943. default: true
  18944. },
  18945. {
  18946. name: "Megamacro",
  18947. height: math.unit(1, "mile")
  18948. },
  18949. {
  18950. name: "Gigamacro",
  18951. height: math.unit(4000, "solarradii")
  18952. },
  18953. {
  18954. name: "Universal",
  18955. height: math.unit(1.1, "universes")
  18956. }
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18961. {
  18962. side: {
  18963. height: math.unit(5 + 7 / 12, "feet"),
  18964. weight: math.unit(150, "lb"),
  18965. name: "Side",
  18966. image: {
  18967. source: "./media/characters/kassy/side.svg",
  18968. extra: 1280 / 1225,
  18969. bottom: 0.002
  18970. }
  18971. },
  18972. front: {
  18973. height: math.unit(5 + 7 / 12, "feet"),
  18974. weight: math.unit(150, "lb"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/kassy/front.svg",
  18978. extra: 1280 / 1225,
  18979. bottom: 0.025
  18980. }
  18981. },
  18982. back: {
  18983. height: math.unit(5 + 7 / 12, "feet"),
  18984. weight: math.unit(150, "lb"),
  18985. name: "Back",
  18986. image: {
  18987. source: "./media/characters/kassy/back.svg",
  18988. extra: 1280 / 1225,
  18989. bottom: 0.002
  18990. }
  18991. },
  18992. foot: {
  18993. height: math.unit(1.266, "feet"),
  18994. name: "Foot",
  18995. image: {
  18996. source: "./media/characters/kassy/foot.svg"
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(5 + 7 / 12, "feet")
  19004. },
  19005. {
  19006. name: "Macro",
  19007. height: math.unit(137, "feet"),
  19008. default: true
  19009. },
  19010. {
  19011. name: "Megamacro",
  19012. height: math.unit(1, "mile")
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(6 + 1 / 12, "feet"),
  19021. weight: math.unit(200, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/neil/front.svg",
  19025. extra: 1326 / 1250,
  19026. bottom: 0.023
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(6 + 1 / 12, "feet"),
  19034. default: true
  19035. },
  19036. {
  19037. name: "Macro",
  19038. height: math.unit(200, "feet")
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19044. {
  19045. front: {
  19046. height: math.unit(5 + 9 / 12, "feet"),
  19047. weight: math.unit(190, "lb"),
  19048. name: "Front",
  19049. image: {
  19050. source: "./media/characters/atticus/front.svg",
  19051. extra: 2934 / 2785,
  19052. bottom: 0.025
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(5 + 9 / 12, "feet"),
  19060. default: true
  19061. },
  19062. {
  19063. name: "Macro",
  19064. height: math.unit(180, "feet")
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19070. {
  19071. side: {
  19072. height: math.unit(9, "feet"),
  19073. weight: math.unit(650, "lb"),
  19074. name: "Side",
  19075. image: {
  19076. source: "./media/characters/milo/side.svg",
  19077. extra: 2644 / 2310,
  19078. bottom: 0.032
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(9, "feet"),
  19086. default: true
  19087. },
  19088. {
  19089. name: "Macro",
  19090. height: math.unit(300, "feet")
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19096. {
  19097. side: {
  19098. height: math.unit(8, "meters"),
  19099. weight: math.unit(90000, "kg"),
  19100. name: "Side",
  19101. image: {
  19102. source: "./media/characters/ijzer/side.svg",
  19103. extra: 2756 / 1600,
  19104. bottom: 0.01
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Small",
  19111. height: math.unit(3, "meters")
  19112. },
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(8, "meters"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Normal+",
  19120. height: math.unit(10, "meters")
  19121. },
  19122. {
  19123. name: "Bigger",
  19124. height: math.unit(24, "meters")
  19125. },
  19126. {
  19127. name: "Huge",
  19128. height: math.unit(80, "meters")
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19134. {
  19135. front: {
  19136. height: math.unit(6 + 2 / 12, "feet"),
  19137. weight: math.unit(153, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/luca-cervicum/front.svg",
  19141. extra: 370 / 327,
  19142. bottom: 0.015
  19143. }
  19144. },
  19145. back: {
  19146. height: math.unit(6 + 2 / 12, "feet"),
  19147. weight: math.unit(153, "lb"),
  19148. name: "Back",
  19149. image: {
  19150. source: "./media/characters/luca-cervicum/back.svg",
  19151. extra: 367 / 333,
  19152. bottom: 0.005
  19153. }
  19154. },
  19155. frontGear: {
  19156. height: math.unit(6 + 2 / 12, "feet"),
  19157. weight: math.unit(173, "lb"),
  19158. name: "Front (Gear)",
  19159. image: {
  19160. source: "./media/characters/luca-cervicum/front-gear.svg",
  19161. extra: 377 / 333,
  19162. bottom: 0.006
  19163. }
  19164. },
  19165. },
  19166. [
  19167. {
  19168. name: "Normal",
  19169. height: math.unit(6 + 2 / 12, "feet"),
  19170. default: true
  19171. },
  19172. ]
  19173. ))
  19174. characterMakers.push(() => makeCharacter(
  19175. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19176. {
  19177. front: {
  19178. height: math.unit(6 + 1 / 12, "feet"),
  19179. weight: math.unit(304, "lb"),
  19180. name: "Front",
  19181. image: {
  19182. source: "./media/characters/oliver/front.svg",
  19183. extra: 157 / 143,
  19184. bottom: 0.08
  19185. }
  19186. },
  19187. },
  19188. [
  19189. {
  19190. name: "Normal",
  19191. height: math.unit(6 + 1 / 12, "feet"),
  19192. default: true
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19198. {
  19199. front: {
  19200. height: math.unit(5 + 7 / 12, "feet"),
  19201. weight: math.unit(140, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/shane/front.svg",
  19205. extra: 304 / 289,
  19206. bottom: 0.005
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(5 + 7 / 12, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(5 + 9 / 12, "feet"),
  19223. weight: math.unit(178, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/shin/front.svg",
  19227. extra: 159 / 151,
  19228. bottom: 0.015
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(5 + 9 / 12, "feet"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(5 + 10 / 12, "feet"),
  19245. weight: math.unit(168, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/xerxes/front.svg",
  19249. extra: 282 / 260,
  19250. bottom: 0.045
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(5 + 10 / 12, "feet"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(6 + 7 / 12, "feet"),
  19267. weight: math.unit(208, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/chaska/front.svg",
  19271. extra: 332 / 319,
  19272. bottom: 0.015
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Normal",
  19279. height: math.unit(6 + 7 / 12, "feet"),
  19280. default: true
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(5 + 8 / 12, "feet"),
  19289. weight: math.unit(208, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/enuk/front.svg",
  19293. extra: 437 / 406,
  19294. bottom: 0.02
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(5 + 8 / 12, "feet"),
  19302. default: true
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19308. {
  19309. front: {
  19310. height: math.unit(5 + 10 / 12, "feet"),
  19311. weight: math.unit(252, "lb"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/bruun/front.svg",
  19315. extra: 197 / 187,
  19316. bottom: 0.012
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(5 + 10 / 12, "feet"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(6 + 10 / 12, "feet"),
  19333. weight: math.unit(255, "lb"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/alexeev/front.svg",
  19337. extra: 213 / 200,
  19338. bottom: 0.05
  19339. }
  19340. },
  19341. },
  19342. [
  19343. {
  19344. name: "Normal",
  19345. height: math.unit(6 + 10 / 12, "feet"),
  19346. default: true
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19352. {
  19353. front: {
  19354. height: math.unit(2 + 8 / 12, "feet"),
  19355. weight: math.unit(22, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/evelyn/front.svg",
  19359. extra: 208 / 180
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(2 + 8 / 12, "feet"),
  19367. default: true
  19368. },
  19369. ]
  19370. ))
  19371. characterMakers.push(() => makeCharacter(
  19372. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19373. {
  19374. front: {
  19375. height: math.unit(5 + 9 / 12, "feet"),
  19376. weight: math.unit(139, "lb"),
  19377. name: "Front",
  19378. image: {
  19379. source: "./media/characters/inca/front.svg",
  19380. extra: 294 / 291,
  19381. bottom: 0.03
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Normal",
  19388. height: math.unit(5 + 9 / 12, "feet"),
  19389. default: true
  19390. },
  19391. ]
  19392. ))
  19393. characterMakers.push(() => makeCharacter(
  19394. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19395. {
  19396. front: {
  19397. height: math.unit(5 + 1 / 12, "feet"),
  19398. weight: math.unit(84, "lb"),
  19399. name: "Front",
  19400. image: {
  19401. source: "./media/characters/magdalene/front.svg",
  19402. extra: 293 / 273
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(5 + 1 / 12, "feet"),
  19410. default: true
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19416. {
  19417. front: {
  19418. height: math.unit(6 + 3 / 12, "feet"),
  19419. weight: math.unit(185, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/mera/front.svg",
  19423. extra: 291 / 277,
  19424. bottom: 0.03
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(6 + 3 / 12, "feet"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19438. {
  19439. front: {
  19440. height: math.unit(6 + 7 / 12, "feet"),
  19441. weight: math.unit(160, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/ceres/front.svg",
  19445. extra: 1023 / 950,
  19446. bottom: 0.027
  19447. }
  19448. },
  19449. back: {
  19450. height: math.unit(6 + 7 / 12, "feet"),
  19451. weight: math.unit(160, "lb"),
  19452. name: "Back",
  19453. image: {
  19454. source: "./media/characters/ceres/back.svg",
  19455. extra: 1023 / 950
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(6 + 7 / 12, "feet"),
  19463. default: true
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(5 + 10 / 12, "feet"),
  19472. weight: math.unit(150, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/kris/front.svg",
  19476. extra: 885 / 803,
  19477. bottom: 0.03
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(5 + 10 / 12, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19491. {
  19492. front: {
  19493. height: math.unit(7, "feet"),
  19494. weight: math.unit(120, "kg"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/taluthus/front.svg",
  19498. extra: 903 / 833,
  19499. bottom: 0.015
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(7, "feet"),
  19507. default: true
  19508. },
  19509. {
  19510. name: "Macro",
  19511. height: math.unit(300, "feet")
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19517. {
  19518. front: {
  19519. height: math.unit(5 + 9 / 12, "feet"),
  19520. weight: math.unit(145, "lb"),
  19521. name: "Front",
  19522. image: {
  19523. source: "./media/characters/dawn/front.svg",
  19524. extra: 2094 / 2016,
  19525. bottom: 0.025
  19526. }
  19527. },
  19528. back: {
  19529. height: math.unit(5 + 9 / 12, "feet"),
  19530. weight: math.unit(160, "lb"),
  19531. name: "Back",
  19532. image: {
  19533. source: "./media/characters/dawn/back.svg",
  19534. extra: 2112 / 2080,
  19535. bottom: 0.005
  19536. }
  19537. },
  19538. },
  19539. [
  19540. {
  19541. name: "Normal",
  19542. height: math.unit(6 + 7 / 12, "feet"),
  19543. default: true
  19544. },
  19545. ]
  19546. ))
  19547. characterMakers.push(() => makeCharacter(
  19548. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19549. {
  19550. anthro: {
  19551. height: math.unit(8 + 3 / 12, "feet"),
  19552. weight: math.unit(450, "lb"),
  19553. name: "Anthro",
  19554. image: {
  19555. source: "./media/characters/arador/anthro.svg",
  19556. extra: 1835 / 1718,
  19557. bottom: 0.025
  19558. }
  19559. },
  19560. feral: {
  19561. height: math.unit(4, "feet"),
  19562. weight: math.unit(200, "lb"),
  19563. name: "Feral",
  19564. image: {
  19565. source: "./media/characters/arador/feral.svg",
  19566. extra: 1683 / 1514,
  19567. bottom: 0.07
  19568. }
  19569. },
  19570. },
  19571. [
  19572. {
  19573. name: "Normal",
  19574. height: math.unit(8 + 3 / 12, "feet")
  19575. },
  19576. {
  19577. name: "Macro",
  19578. height: math.unit(82.5, "feet"),
  19579. default: true
  19580. },
  19581. ]
  19582. ))
  19583. characterMakers.push(() => makeCharacter(
  19584. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19585. {
  19586. front: {
  19587. height: math.unit(5 + 10 / 12, "feet"),
  19588. weight: math.unit(125, "lb"),
  19589. name: "Front",
  19590. image: {
  19591. source: "./media/characters/dharsi/front.svg",
  19592. extra: 716 / 630,
  19593. bottom: 0.035
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Nano",
  19600. height: math.unit(100, "nm")
  19601. },
  19602. {
  19603. name: "Micro",
  19604. height: math.unit(2, "inches")
  19605. },
  19606. {
  19607. name: "Normal",
  19608. height: math.unit(5 + 10 / 12, "feet"),
  19609. default: true
  19610. },
  19611. {
  19612. name: "Macro",
  19613. height: math.unit(1000, "feet")
  19614. },
  19615. {
  19616. name: "Megamacro",
  19617. height: math.unit(10, "miles")
  19618. },
  19619. {
  19620. name: "Gigamacro",
  19621. height: math.unit(3000, "miles")
  19622. },
  19623. {
  19624. name: "Teramacro",
  19625. height: math.unit(500000, "miles")
  19626. },
  19627. {
  19628. name: "Teramacro+",
  19629. height: math.unit(30, "galaxies")
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19635. {
  19636. front: {
  19637. height: math.unit(6, "feet"),
  19638. weight: math.unit(150, "lb"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/deathy/front.svg",
  19642. extra: 1552 / 1463,
  19643. bottom: 0.025
  19644. }
  19645. },
  19646. side: {
  19647. height: math.unit(6, "feet"),
  19648. weight: math.unit(150, "lb"),
  19649. name: "Side",
  19650. image: {
  19651. source: "./media/characters/deathy/side.svg",
  19652. extra: 1604 / 1455,
  19653. bottom: 0.025
  19654. }
  19655. },
  19656. back: {
  19657. height: math.unit(6, "feet"),
  19658. weight: math.unit(150, "lb"),
  19659. name: "Back",
  19660. image: {
  19661. source: "./media/characters/deathy/back.svg",
  19662. extra: 1580 / 1463,
  19663. bottom: 0.005
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Micro",
  19670. height: math.unit(5, "millimeters")
  19671. },
  19672. {
  19673. name: "Normal",
  19674. height: math.unit(6 + 5 / 12, "feet"),
  19675. default: true
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19681. {
  19682. front: {
  19683. height: math.unit(16, "feet"),
  19684. weight: math.unit(4000, "lb"),
  19685. name: "Front",
  19686. image: {
  19687. source: "./media/characters/juniper/front.svg",
  19688. bottom: 0.04
  19689. }
  19690. },
  19691. },
  19692. [
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(16, "feet"),
  19696. default: true
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19702. {
  19703. front: {
  19704. height: math.unit(6, "feet"),
  19705. weight: math.unit(150, "lb"),
  19706. name: "Front",
  19707. image: {
  19708. source: "./media/characters/hipster/front.svg",
  19709. extra: 1312 / 1209,
  19710. bottom: 0.025
  19711. }
  19712. },
  19713. back: {
  19714. height: math.unit(6, "feet"),
  19715. weight: math.unit(150, "lb"),
  19716. name: "Back",
  19717. image: {
  19718. source: "./media/characters/hipster/back.svg",
  19719. extra: 1281 / 1196,
  19720. bottom: 0.01
  19721. }
  19722. },
  19723. },
  19724. [
  19725. {
  19726. name: "Micro",
  19727. height: math.unit(1, "mm")
  19728. },
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(4, "inches"),
  19732. default: true
  19733. },
  19734. {
  19735. name: "Macro",
  19736. height: math.unit(500, "feet")
  19737. },
  19738. {
  19739. name: "Megamacro",
  19740. height: math.unit(1000, "miles")
  19741. },
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19746. {
  19747. front: {
  19748. height: math.unit(6, "feet"),
  19749. weight: math.unit(150, "lb"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/tendirmuldr/front.svg",
  19753. extra: 1878 / 1772,
  19754. bottom: 0.015
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Megamacro",
  19761. height: math.unit(1500, "miles"),
  19762. default: true
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19768. {
  19769. front: {
  19770. height: math.unit(14, "feet"),
  19771. weight: math.unit(12000, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/mort/front.svg",
  19775. extra: 365 / 318,
  19776. bottom: 0.01
  19777. }
  19778. },
  19779. side: {
  19780. height: math.unit(14, "feet"),
  19781. weight: math.unit(12000, "lb"),
  19782. name: "Side",
  19783. image: {
  19784. source: "./media/characters/mort/side.svg",
  19785. extra: 365 / 318,
  19786. bottom: 0.052
  19787. },
  19788. default: true
  19789. },
  19790. back: {
  19791. height: math.unit(14, "feet"),
  19792. weight: math.unit(12000, "lb"),
  19793. name: "Back",
  19794. image: {
  19795. source: "./media/characters/mort/back.svg",
  19796. extra: 371 / 332,
  19797. bottom: 0.18
  19798. }
  19799. },
  19800. },
  19801. [
  19802. {
  19803. name: "Normal",
  19804. height: math.unit(14, "feet"),
  19805. default: true
  19806. },
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19811. {
  19812. front: {
  19813. height: math.unit(8, "feet"),
  19814. weight: math.unit(1, "ton"),
  19815. name: "Front",
  19816. image: {
  19817. source: "./media/characters/lycoa/front.svg",
  19818. extra: 1875 / 1789,
  19819. bottom: 0.022
  19820. }
  19821. },
  19822. back: {
  19823. height: math.unit(8, "feet"),
  19824. weight: math.unit(1, "ton"),
  19825. name: "Back",
  19826. image: {
  19827. source: "./media/characters/lycoa/back.svg",
  19828. extra: 1835 / 1781,
  19829. bottom: 0.03
  19830. }
  19831. },
  19832. head: {
  19833. height: math.unit(2.1, "feet"),
  19834. name: "Head",
  19835. image: {
  19836. source: "./media/characters/lycoa/head.svg"
  19837. }
  19838. },
  19839. tailmaw: {
  19840. height: math.unit(1.9, "feet"),
  19841. name: "Tailmaw",
  19842. image: {
  19843. source: "./media/characters/lycoa/tailmaw.svg"
  19844. }
  19845. },
  19846. tentacles: {
  19847. height: math.unit(2.1, "feet"),
  19848. name: "Tentacles",
  19849. image: {
  19850. source: "./media/characters/lycoa/tentacles.svg"
  19851. }
  19852. },
  19853. dick: {
  19854. height: math.unit(1.73, "feet"),
  19855. name: "Dick",
  19856. image: {
  19857. source: "./media/characters/lycoa/dick.svg"
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(8, "feet"),
  19865. default: true
  19866. },
  19867. {
  19868. name: "Macro",
  19869. height: math.unit(30, "feet")
  19870. },
  19871. ]
  19872. ))
  19873. characterMakers.push(() => makeCharacter(
  19874. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19875. {
  19876. front: {
  19877. height: math.unit(4 + 2 / 12, "feet"),
  19878. weight: math.unit(70, "lb"),
  19879. name: "Front",
  19880. image: {
  19881. source: "./media/characters/naldara/front.svg",
  19882. extra: 841 / 720,
  19883. bottom: 0.04
  19884. }
  19885. },
  19886. naga: {
  19887. height: math.unit(23, "feet"),
  19888. weight: math.unit(15000, "kg"),
  19889. name: "Naga",
  19890. image: {
  19891. source: "./media/characters/naldara/naga.svg",
  19892. extra: 3290 / 2959,
  19893. bottom: 124 / 3432
  19894. }
  19895. },
  19896. },
  19897. [
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(4 + 2 / 12, "feet"),
  19901. default: true
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(13 + 7 / 12, "feet"),
  19910. weight: math.unit(1500, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/briar/front.svg",
  19914. extra: 626 / 596,
  19915. bottom: 0.08
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(13 + 7 / 12, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19929. {
  19930. side: {
  19931. height: math.unit(10, "feet"),
  19932. weight: math.unit(500, "lb"),
  19933. name: "Side",
  19934. image: {
  19935. source: "./media/characters/vanguard/side.svg",
  19936. extra: 502 / 425,
  19937. bottom: 0.087
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(10, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(7.5, "feet"),
  19954. weight: math.unit(2, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/artemis/front.svg",
  19958. extra: 1192 / 1075,
  19959. bottom: 0.07
  19960. }
  19961. },
  19962. frontNsfw: {
  19963. height: math.unit(7.5, "feet"),
  19964. weight: math.unit(2, "lb"),
  19965. name: "Front (NSFW)",
  19966. image: {
  19967. source: "./media/characters/artemis/front-nsfw.svg",
  19968. extra: 1192 / 1075,
  19969. bottom: 0.07
  19970. }
  19971. },
  19972. frontNsfwer: {
  19973. height: math.unit(7.5, "feet"),
  19974. weight: math.unit(2, "lb"),
  19975. name: "Front (NSFW-er)",
  19976. image: {
  19977. source: "./media/characters/artemis/front-nsfwer.svg",
  19978. extra: 1192 / 1075,
  19979. bottom: 0.07
  19980. }
  19981. },
  19982. side: {
  19983. height: math.unit(7.5, "feet"),
  19984. weight: math.unit(2, "lb"),
  19985. name: "Side",
  19986. image: {
  19987. source: "./media/characters/artemis/side.svg",
  19988. extra: 1192 / 1075,
  19989. bottom: 0.07
  19990. }
  19991. },
  19992. sideNsfw: {
  19993. height: math.unit(7.5, "feet"),
  19994. weight: math.unit(2, "lb"),
  19995. name: "Side (NSFW)",
  19996. image: {
  19997. source: "./media/characters/artemis/side-nsfw.svg",
  19998. extra: 1192 / 1075,
  19999. bottom: 0.07
  20000. }
  20001. },
  20002. sideNsfwer: {
  20003. height: math.unit(7.5, "feet"),
  20004. weight: math.unit(2, "lb"),
  20005. name: "Side (NSFW-er)",
  20006. image: {
  20007. source: "./media/characters/artemis/side-nsfwer.svg",
  20008. extra: 1192 / 1075,
  20009. bottom: 0.07
  20010. }
  20011. },
  20012. maw: {
  20013. height: math.unit(1.1, "feet"),
  20014. name: "Maw",
  20015. image: {
  20016. source: "./media/characters/artemis/maw.svg"
  20017. }
  20018. },
  20019. stomach: {
  20020. height: math.unit(0.95, "feet"),
  20021. name: "Stomach",
  20022. image: {
  20023. source: "./media/characters/artemis/stomach.svg"
  20024. }
  20025. },
  20026. dickCanine: {
  20027. height: math.unit(1, "feet"),
  20028. name: "Dick (Canine)",
  20029. image: {
  20030. source: "./media/characters/artemis/dick-canine.svg"
  20031. }
  20032. },
  20033. dickEquine: {
  20034. height: math.unit(0.85, "feet"),
  20035. name: "Dick (Equine)",
  20036. image: {
  20037. source: "./media/characters/artemis/dick-equine.svg"
  20038. }
  20039. },
  20040. dickExotic: {
  20041. height: math.unit(0.85, "feet"),
  20042. name: "Dick (Exotic)",
  20043. image: {
  20044. source: "./media/characters/artemis/dick-exotic.svg"
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(7.5, "feet"),
  20052. default: true
  20053. },
  20054. {
  20055. name: "Enlarged",
  20056. height: math.unit(12, "feet")
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20062. {
  20063. front: {
  20064. height: math.unit(5 + 3 / 12, "feet"),
  20065. weight: math.unit(160, "lb"),
  20066. name: "Front",
  20067. image: {
  20068. source: "./media/characters/kira/front.svg",
  20069. extra: 906 / 786,
  20070. bottom: 0.01
  20071. }
  20072. },
  20073. back: {
  20074. height: math.unit(5 + 3 / 12, "feet"),
  20075. weight: math.unit(160, "lb"),
  20076. name: "Back",
  20077. image: {
  20078. source: "./media/characters/kira/back.svg",
  20079. extra: 882 / 757,
  20080. bottom: 0.005
  20081. }
  20082. },
  20083. frontDressed: {
  20084. height: math.unit(5 + 3 / 12, "feet"),
  20085. weight: math.unit(160, "lb"),
  20086. name: "Front (Dressed)",
  20087. image: {
  20088. source: "./media/characters/kira/front-dressed.svg",
  20089. extra: 906 / 786,
  20090. bottom: 0.01
  20091. }
  20092. },
  20093. beans: {
  20094. height: math.unit(0.92, "feet"),
  20095. name: "Beans",
  20096. image: {
  20097. source: "./media/characters/kira/beans.svg"
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(5 + 3 / 12, "feet"),
  20105. default: true
  20106. },
  20107. ]
  20108. ))
  20109. characterMakers.push(() => makeCharacter(
  20110. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20111. {
  20112. front: {
  20113. height: math.unit(5 + 4 / 12, "feet"),
  20114. weight: math.unit(145, "lb"),
  20115. name: "Front",
  20116. image: {
  20117. source: "./media/characters/scramble/front.svg",
  20118. extra: 763 / 727,
  20119. bottom: 0.05
  20120. }
  20121. },
  20122. back: {
  20123. height: math.unit(5 + 4 / 12, "feet"),
  20124. weight: math.unit(145, "lb"),
  20125. name: "Back",
  20126. image: {
  20127. source: "./media/characters/scramble/back.svg",
  20128. extra: 826 / 737,
  20129. bottom: 0.002
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(5 + 4 / 12, "feet"),
  20137. default: true
  20138. },
  20139. ]
  20140. ))
  20141. characterMakers.push(() => makeCharacter(
  20142. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20143. {
  20144. side: {
  20145. height: math.unit(6 + 2 / 12, "feet"),
  20146. weight: math.unit(190, "lb"),
  20147. name: "Side",
  20148. image: {
  20149. source: "./media/characters/biscuit/side.svg",
  20150. extra: 858 / 791,
  20151. bottom: 0.044
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(6 + 2 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(5 + 2 / 12, "feet"),
  20168. weight: math.unit(120, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/poffin/front.svg",
  20172. extra: 786 / 680,
  20173. bottom: 0.005
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(5 + 2 / 12, "feet"),
  20181. default: true
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20187. {
  20188. front: {
  20189. height: math.unit(6 + 3 / 12, "feet"),
  20190. weight: math.unit(519, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/dhari/front.svg",
  20194. extra: 1048 / 946,
  20195. bottom: 0.015
  20196. }
  20197. },
  20198. back: {
  20199. height: math.unit(6 + 3 / 12, "feet"),
  20200. weight: math.unit(519, "lb"),
  20201. name: "Back",
  20202. image: {
  20203. source: "./media/characters/dhari/back.svg",
  20204. extra: 1048 / 931,
  20205. bottom: 0.005
  20206. }
  20207. },
  20208. frontDressed: {
  20209. height: math.unit(6 + 3 / 12, "feet"),
  20210. weight: math.unit(519, "lb"),
  20211. name: "Front (Dressed)",
  20212. image: {
  20213. source: "./media/characters/dhari/front-dressed.svg",
  20214. extra: 1713 / 1546,
  20215. bottom: 0.02
  20216. }
  20217. },
  20218. backDressed: {
  20219. height: math.unit(6 + 3 / 12, "feet"),
  20220. weight: math.unit(519, "lb"),
  20221. name: "Back (Dressed)",
  20222. image: {
  20223. source: "./media/characters/dhari/back-dressed.svg",
  20224. extra: 1699 / 1537,
  20225. bottom: 0.01
  20226. }
  20227. },
  20228. maw: {
  20229. height: math.unit(0.95, "feet"),
  20230. name: "Maw",
  20231. image: {
  20232. source: "./media/characters/dhari/maw.svg"
  20233. }
  20234. },
  20235. wereFront: {
  20236. height: math.unit(12 + 8 / 12, "feet"),
  20237. weight: math.unit(4000, "lb"),
  20238. name: "Front (Were)",
  20239. image: {
  20240. source: "./media/characters/dhari/were-front.svg",
  20241. extra: 1065 / 969,
  20242. bottom: 0.015
  20243. }
  20244. },
  20245. wereBack: {
  20246. height: math.unit(12 + 8 / 12, "feet"),
  20247. weight: math.unit(4000, "lb"),
  20248. name: "Back (Were)",
  20249. image: {
  20250. source: "./media/characters/dhari/were-back.svg",
  20251. extra: 1065 / 969,
  20252. bottom: 0.012
  20253. }
  20254. },
  20255. wereMaw: {
  20256. height: math.unit(0.625, "meters"),
  20257. name: "Maw (Were)",
  20258. image: {
  20259. source: "./media/characters/dhari/were-maw.svg"
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(6 + 3 / 12, "feet"),
  20267. default: true
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20273. {
  20274. anthro: {
  20275. height: math.unit(5 + 7 / 12, "feet"),
  20276. weight: math.unit(175, "lb"),
  20277. name: "Anthro",
  20278. image: {
  20279. source: "./media/characters/rena-dyne/anthro.svg",
  20280. extra: 1849 / 1785,
  20281. bottom: 0.005
  20282. }
  20283. },
  20284. taur: {
  20285. height: math.unit(15 + 6 / 12, "feet"),
  20286. weight: math.unit(8000, "lb"),
  20287. name: "Taur",
  20288. image: {
  20289. source: "./media/characters/rena-dyne/taur.svg",
  20290. extra: 2315 / 2234,
  20291. bottom: 0.033
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(5 + 7 / 12, "feet"),
  20299. default: true
  20300. },
  20301. ]
  20302. ))
  20303. characterMakers.push(() => makeCharacter(
  20304. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20305. {
  20306. front: {
  20307. height: math.unit(8, "feet"),
  20308. weight: math.unit(600, "lb"),
  20309. name: "Front",
  20310. image: {
  20311. source: "./media/characters/weremeep/front.svg",
  20312. extra: 967 / 862,
  20313. bottom: 0.01
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(8, "feet"),
  20321. default: true
  20322. },
  20323. {
  20324. name: "Lorg",
  20325. height: math.unit(12, "feet")
  20326. },
  20327. {
  20328. name: "Oh Lawd She Comin'",
  20329. height: math.unit(20, "feet")
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20335. {
  20336. front: {
  20337. height: math.unit(4, "feet"),
  20338. weight: math.unit(90, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/reza/front.svg",
  20342. extra: 1183 / 1111,
  20343. bottom: 0.017
  20344. }
  20345. },
  20346. back: {
  20347. height: math.unit(4, "feet"),
  20348. weight: math.unit(90, "lb"),
  20349. name: "Back",
  20350. image: {
  20351. source: "./media/characters/reza/back.svg",
  20352. extra: 1183 / 1111,
  20353. bottom: 0.01
  20354. }
  20355. },
  20356. drake: {
  20357. height: math.unit(30, "feet"),
  20358. weight: math.unit(246960, "lb"),
  20359. name: "Drake",
  20360. image: {
  20361. source: "./media/characters/reza/drake.svg",
  20362. extra: 2350 / 2024,
  20363. bottom: 60.7 / 2403
  20364. }
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(4, "feet"),
  20371. default: true
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20377. {
  20378. side: {
  20379. height: math.unit(15, "feet"),
  20380. weight: math.unit(14, "tons"),
  20381. name: "Side",
  20382. image: {
  20383. source: "./media/characters/athea/side.svg",
  20384. extra: 960 / 540,
  20385. bottom: 0.003
  20386. }
  20387. },
  20388. sitting: {
  20389. height: math.unit(6 * 2.85, "feet"),
  20390. weight: math.unit(14, "tons"),
  20391. name: "Sitting",
  20392. image: {
  20393. source: "./media/characters/athea/sitting.svg",
  20394. extra: 621 / 581,
  20395. bottom: 0.075
  20396. }
  20397. },
  20398. maw: {
  20399. height: math.unit(7.59498031496063, "feet"),
  20400. name: "Maw",
  20401. image: {
  20402. source: "./media/characters/athea/maw.svg"
  20403. }
  20404. },
  20405. },
  20406. [
  20407. {
  20408. name: "Lap Cat",
  20409. height: math.unit(2.5, "feet")
  20410. },
  20411. {
  20412. name: "Minimacro",
  20413. height: math.unit(15, "feet"),
  20414. default: true
  20415. },
  20416. {
  20417. name: "Macro",
  20418. height: math.unit(120, "feet")
  20419. },
  20420. {
  20421. name: "Macro+",
  20422. height: math.unit(640, "feet")
  20423. },
  20424. {
  20425. name: "Colossus",
  20426. height: math.unit(2.2, "miles")
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(8 + 8 / 12, "feet"),
  20435. weight: math.unit(130, "kg"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/seroko/front.svg",
  20439. extra: 1385 / 1280,
  20440. bottom: 0.025
  20441. }
  20442. },
  20443. back: {
  20444. height: math.unit(8 + 8 / 12, "feet"),
  20445. weight: math.unit(130, "kg"),
  20446. name: "Back",
  20447. image: {
  20448. source: "./media/characters/seroko/back.svg",
  20449. extra: 1369 / 1238,
  20450. bottom: 0.018
  20451. }
  20452. },
  20453. frontDressed: {
  20454. height: math.unit(8 + 8 / 12, "feet"),
  20455. weight: math.unit(130, "kg"),
  20456. name: "Front (Dressed)",
  20457. image: {
  20458. source: "./media/characters/seroko/front-dressed.svg",
  20459. extra: 1366 / 1275,
  20460. bottom: 0.03
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(8 + 8 / 12, "feet"),
  20468. default: true
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(5.5, "feet"),
  20477. weight: math.unit(160, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/quatzi/front.svg",
  20481. extra: 2346 / 2242,
  20482. bottom: 0.015
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(5.5, "feet"),
  20490. default: true
  20491. },
  20492. {
  20493. name: "Big",
  20494. height: math.unit(7.7, "feet")
  20495. },
  20496. ]
  20497. ))
  20498. characterMakers.push(() => makeCharacter(
  20499. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20500. {
  20501. front: {
  20502. height: math.unit(5 + 11 / 12, "feet"),
  20503. weight: math.unit(180, "lb"),
  20504. name: "Front",
  20505. image: {
  20506. source: "./media/characters/sen/front.svg",
  20507. extra: 1321 / 1254,
  20508. bottom: 0.015
  20509. }
  20510. },
  20511. side: {
  20512. height: math.unit(5 + 11 / 12, "feet"),
  20513. weight: math.unit(180, "lb"),
  20514. name: "Side",
  20515. image: {
  20516. source: "./media/characters/sen/side.svg",
  20517. extra: 1321 / 1254,
  20518. bottom: 0.007
  20519. }
  20520. },
  20521. back: {
  20522. height: math.unit(5 + 11 / 12, "feet"),
  20523. weight: math.unit(180, "lb"),
  20524. name: "Back",
  20525. image: {
  20526. source: "./media/characters/sen/back.svg",
  20527. extra: 1321 / 1254
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(5 + 11 / 12, "feet"),
  20535. default: true
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20541. {
  20542. front: {
  20543. height: math.unit(166.6, "cm"),
  20544. weight: math.unit(66.6, "kg"),
  20545. name: "Front",
  20546. image: {
  20547. source: "./media/characters/fruity/front.svg",
  20548. extra: 1510 / 1386,
  20549. bottom: 0.04
  20550. }
  20551. },
  20552. back: {
  20553. height: math.unit(166.6, "cm"),
  20554. weight: math.unit(66.6, "lb"),
  20555. name: "Back",
  20556. image: {
  20557. source: "./media/characters/fruity/back.svg",
  20558. extra: 1563 / 1435,
  20559. bottom: 0.005
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(166.6, "cm"),
  20567. default: true
  20568. },
  20569. {
  20570. name: "Demonic",
  20571. height: math.unit(166.6, "feet")
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20577. {
  20578. side: {
  20579. height: math.unit(10, "feet"),
  20580. weight: math.unit(500, "lb"),
  20581. name: "Side",
  20582. image: {
  20583. source: "./media/characters/zost/side.svg",
  20584. extra: 966 / 880,
  20585. bottom: 0.075
  20586. }
  20587. },
  20588. mawFront: {
  20589. height: math.unit(1.08, "meters"),
  20590. name: "Maw (Front)",
  20591. image: {
  20592. source: "./media/characters/zost/maw-front.svg"
  20593. }
  20594. },
  20595. mawSide: {
  20596. height: math.unit(2.66, "feet"),
  20597. name: "Maw (Side)",
  20598. image: {
  20599. source: "./media/characters/zost/maw-side.svg"
  20600. }
  20601. },
  20602. },
  20603. [
  20604. {
  20605. name: "Normal",
  20606. height: math.unit(10, "feet"),
  20607. default: true
  20608. },
  20609. ]
  20610. ))
  20611. characterMakers.push(() => makeCharacter(
  20612. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20613. {
  20614. front: {
  20615. height: math.unit(5 + 4 / 12, "feet"),
  20616. weight: math.unit(120, "lb"),
  20617. name: "Front",
  20618. image: {
  20619. source: "./media/characters/luci/front.svg",
  20620. extra: 1985 / 1884,
  20621. bottom: 0.04
  20622. }
  20623. },
  20624. back: {
  20625. height: math.unit(5 + 4 / 12, "feet"),
  20626. weight: math.unit(120, "lb"),
  20627. name: "Back",
  20628. image: {
  20629. source: "./media/characters/luci/back.svg",
  20630. extra: 1892 / 1791,
  20631. bottom: 0.002
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(5 + 4 / 12, "feet"),
  20639. default: true
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20645. {
  20646. front: {
  20647. height: math.unit(1500, "feet"),
  20648. weight: math.unit(3.8e6, "tons"),
  20649. name: "Front",
  20650. image: {
  20651. source: "./media/characters/2th/front.svg",
  20652. extra: 3489 / 3350,
  20653. bottom: 0.1
  20654. }
  20655. },
  20656. foot: {
  20657. height: math.unit(461, "feet"),
  20658. name: "Foot",
  20659. image: {
  20660. source: "./media/characters/2th/foot.svg"
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "\"Micro\"",
  20667. height: math.unit(15 + 7 / 12, "feet")
  20668. },
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(1500, "feet"),
  20672. default: true
  20673. },
  20674. {
  20675. name: "Macro",
  20676. height: math.unit(5000, "feet")
  20677. },
  20678. {
  20679. name: "Megamacro",
  20680. height: math.unit(15, "miles")
  20681. },
  20682. {
  20683. name: "Gigamacro",
  20684. height: math.unit(4000, "miles")
  20685. },
  20686. {
  20687. name: "Galactic",
  20688. height: math.unit(50, "AU")
  20689. },
  20690. ]
  20691. ))
  20692. characterMakers.push(() => makeCharacter(
  20693. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20694. {
  20695. front: {
  20696. height: math.unit(5 + 6 / 12, "feet"),
  20697. weight: math.unit(220, "lb"),
  20698. name: "Front",
  20699. image: {
  20700. source: "./media/characters/amethyst/front.svg",
  20701. extra: 2078 / 2040,
  20702. bottom: 0.045
  20703. }
  20704. },
  20705. back: {
  20706. height: math.unit(5 + 6 / 12, "feet"),
  20707. weight: math.unit(220, "lb"),
  20708. name: "Back",
  20709. image: {
  20710. source: "./media/characters/amethyst/back.svg",
  20711. extra: 2021 / 1989,
  20712. bottom: 0.02
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Normal",
  20719. height: math.unit(5 + 6 / 12, "feet"),
  20720. default: true
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20726. {
  20727. front: {
  20728. height: math.unit(4 + 11 / 12, "feet"),
  20729. weight: math.unit(120, "lb"),
  20730. name: "Front",
  20731. image: {
  20732. source: "./media/characters/yumi-akiyama/front.svg",
  20733. extra: 1327 / 1235,
  20734. bottom: 0.02
  20735. }
  20736. },
  20737. back: {
  20738. height: math.unit(4 + 11 / 12, "feet"),
  20739. weight: math.unit(120, "lb"),
  20740. name: "Back",
  20741. image: {
  20742. source: "./media/characters/yumi-akiyama/back.svg",
  20743. extra: 1287 / 1245,
  20744. bottom: 0.002
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Galactic",
  20751. height: math.unit(50, "galaxies"),
  20752. default: true
  20753. },
  20754. {
  20755. name: "Universal",
  20756. height: math.unit(100, "universes")
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20762. {
  20763. front: {
  20764. height: math.unit(8, "feet"),
  20765. weight: math.unit(500, "lb"),
  20766. name: "Front",
  20767. image: {
  20768. source: "./media/characters/rifter-yrmori/front.svg",
  20769. extra: 1180 / 1125,
  20770. bottom: 0.02
  20771. }
  20772. },
  20773. back: {
  20774. height: math.unit(8, "feet"),
  20775. weight: math.unit(500, "lb"),
  20776. name: "Back",
  20777. image: {
  20778. source: "./media/characters/rifter-yrmori/back.svg",
  20779. extra: 1190 / 1145,
  20780. bottom: 0.001
  20781. }
  20782. },
  20783. wings: {
  20784. height: math.unit(7.75, "feet"),
  20785. weight: math.unit(500, "lb"),
  20786. name: "Wings",
  20787. image: {
  20788. source: "./media/characters/rifter-yrmori/wings.svg",
  20789. extra: 1357 / 1285
  20790. }
  20791. },
  20792. maw: {
  20793. height: math.unit(0.8, "feet"),
  20794. name: "Maw",
  20795. image: {
  20796. source: "./media/characters/rifter-yrmori/maw.svg"
  20797. }
  20798. },
  20799. mawfront: {
  20800. height: math.unit(1.45, "feet"),
  20801. name: "Maw (Front)",
  20802. image: {
  20803. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(8, "feet"),
  20811. default: true
  20812. },
  20813. {
  20814. name: "Macro",
  20815. height: math.unit(42, "meters")
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20821. {
  20822. were: {
  20823. height: math.unit(25 + 6 / 12, "feet"),
  20824. weight: math.unit(10000, "lb"),
  20825. name: "Were",
  20826. image: {
  20827. source: "./media/characters/tahajin/were.svg",
  20828. extra: 801 / 770,
  20829. bottom: 0.042
  20830. }
  20831. },
  20832. aquatic: {
  20833. height: math.unit(6 + 4 / 12, "feet"),
  20834. weight: math.unit(160, "lb"),
  20835. name: "Aquatic",
  20836. image: {
  20837. source: "./media/characters/tahajin/aquatic.svg",
  20838. extra: 572 / 542,
  20839. bottom: 0.04
  20840. }
  20841. },
  20842. chow: {
  20843. height: math.unit(8 + 11 / 12, "feet"),
  20844. weight: math.unit(450, "lb"),
  20845. name: "Chow",
  20846. image: {
  20847. source: "./media/characters/tahajin/chow.svg",
  20848. extra: 660 / 640,
  20849. bottom: 0.015
  20850. }
  20851. },
  20852. demiNaga: {
  20853. height: math.unit(6 + 8 / 12, "feet"),
  20854. weight: math.unit(300, "lb"),
  20855. name: "Demi Naga",
  20856. image: {
  20857. source: "./media/characters/tahajin/demi-naga.svg",
  20858. extra: 643 / 615,
  20859. bottom: 0.1
  20860. }
  20861. },
  20862. data: {
  20863. height: math.unit(5, "inches"),
  20864. weight: math.unit(0.1, "lb"),
  20865. name: "Data",
  20866. image: {
  20867. source: "./media/characters/tahajin/data.svg"
  20868. }
  20869. },
  20870. fluu: {
  20871. height: math.unit(5 + 7 / 12, "feet"),
  20872. weight: math.unit(140, "lb"),
  20873. name: "Fluu",
  20874. image: {
  20875. source: "./media/characters/tahajin/fluu.svg",
  20876. extra: 628 / 592,
  20877. bottom: 0.02
  20878. }
  20879. },
  20880. starWarrior: {
  20881. height: math.unit(4 + 5 / 12, "feet"),
  20882. weight: math.unit(50, "lb"),
  20883. name: "Star Warrior",
  20884. image: {
  20885. source: "./media/characters/tahajin/star-warrior.svg"
  20886. }
  20887. },
  20888. },
  20889. [
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(25 + 6 / 12, "feet"),
  20893. default: true
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20899. {
  20900. front: {
  20901. height: math.unit(8, "feet"),
  20902. weight: math.unit(350, "lb"),
  20903. name: "Front",
  20904. image: {
  20905. source: "./media/characters/gabira/front.svg",
  20906. extra: 608 / 580,
  20907. bottom: 0.03
  20908. }
  20909. },
  20910. back: {
  20911. height: math.unit(8, "feet"),
  20912. weight: math.unit(350, "lb"),
  20913. name: "Back",
  20914. image: {
  20915. source: "./media/characters/gabira/back.svg",
  20916. extra: 608 / 580,
  20917. bottom: 0.03
  20918. }
  20919. },
  20920. },
  20921. [
  20922. {
  20923. name: "Normal",
  20924. height: math.unit(8, "feet"),
  20925. default: true
  20926. },
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20931. {
  20932. front: {
  20933. height: math.unit(5 + 3 / 12, "feet"),
  20934. weight: math.unit(137, "lb"),
  20935. name: "Front",
  20936. image: {
  20937. source: "./media/characters/sasha-katraine/front.svg",
  20938. bottom: 0.045
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Micro",
  20945. height: math.unit(5, "inches")
  20946. },
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(5 + 3 / 12, "feet"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20956. {
  20957. side: {
  20958. height: math.unit(4, "inches"),
  20959. weight: math.unit(200, "grams"),
  20960. name: "Side",
  20961. image: {
  20962. source: "./media/characters/der/side.svg",
  20963. extra: 719 / 400,
  20964. bottom: 30.6 / 749.9187
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Micro",
  20971. height: math.unit(4, "inches"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20978. {
  20979. side: {
  20980. height: math.unit(30, "meters"),
  20981. weight: math.unit(700, "tonnes"),
  20982. name: "Side",
  20983. image: {
  20984. source: "./media/characters/fixerdragon/side.svg",
  20985. extra: (1293.0514 - 116.03) / 1106.86,
  20986. bottom: 116.03 / 1293.0514
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Planck",
  20993. height: math.unit(1.6e-35, "meters")
  20994. },
  20995. {
  20996. name: "Micro",
  20997. height: math.unit(0.4, "meters")
  20998. },
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(30, "meters"),
  21002. default: true
  21003. },
  21004. {
  21005. name: "Megamacro",
  21006. height: math.unit(1.2, "megameters")
  21007. },
  21008. {
  21009. name: "Teramacro",
  21010. height: math.unit(130, "terameters")
  21011. },
  21012. {
  21013. name: "Yottamacro",
  21014. height: math.unit(6200, "yottameters")
  21015. },
  21016. ]
  21017. ));
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21020. {
  21021. front: {
  21022. height: math.unit(8, "feet"),
  21023. weight: math.unit(250, "lb"),
  21024. name: "Front",
  21025. image: {
  21026. source: "./media/characters/kite/front.svg",
  21027. extra: 2796 / 2659,
  21028. bottom: 0.002
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(8, "feet"),
  21036. default: true
  21037. },
  21038. {
  21039. name: "Macro",
  21040. height: math.unit(360, "feet")
  21041. },
  21042. {
  21043. name: "Megamacro",
  21044. height: math.unit(1500, "feet")
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(5 + 10 / 12, "feet"),
  21053. weight: math.unit(150, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/poojawa-vynar/front.svg",
  21057. extra: (1506.1547 - 55) / 1356.6,
  21058. bottom: 55 / 1506.1547
  21059. }
  21060. },
  21061. frontTailless: {
  21062. height: math.unit(5 + 10 / 12, "feet"),
  21063. weight: math.unit(150, "lb"),
  21064. name: "Front (Tailless)",
  21065. image: {
  21066. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21067. extra: (1506.1547 - 55) / 1356.6,
  21068. bottom: 55 / 1506.1547
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(5 + 10 / 12, "feet"),
  21076. default: true
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(293, "meters"),
  21085. weight: math.unit(70400, "tons"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/violette/front.svg",
  21089. extra: 1227 / 1180,
  21090. bottom: 0.005
  21091. }
  21092. },
  21093. back: {
  21094. height: math.unit(293, "meters"),
  21095. weight: math.unit(70400, "tons"),
  21096. name: "Back",
  21097. image: {
  21098. source: "./media/characters/violette/back.svg",
  21099. extra: 1227 / 1180,
  21100. bottom: 0.005
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Macro",
  21107. height: math.unit(293, "meters"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21114. {
  21115. front: {
  21116. height: math.unit(1050, "feet"),
  21117. weight: math.unit(200000, "tons"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/alessandra/front.svg",
  21121. extra: 960 / 912,
  21122. bottom: 0.06
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Macro",
  21129. height: math.unit(1050, "feet")
  21130. },
  21131. {
  21132. name: "Macro+",
  21133. height: math.unit(900, "meters"),
  21134. default: true
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21140. {
  21141. front: {
  21142. height: math.unit(5, "feet"),
  21143. weight: math.unit(187, "lb"),
  21144. name: "Front",
  21145. image: {
  21146. source: "./media/characters/person/front.svg",
  21147. extra: 3087 / 2945,
  21148. bottom: 91 / 3181
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Micro",
  21155. height: math.unit(3, "inches")
  21156. },
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(5, "feet"),
  21160. default: true
  21161. },
  21162. {
  21163. name: "Macro",
  21164. height: math.unit(90, "feet")
  21165. },
  21166. {
  21167. name: "Max Size",
  21168. height: math.unit(280, "feet")
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(4.5, "meters"),
  21177. weight: math.unit(3200, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/ty/front.svg",
  21181. extra: 1038 / 960,
  21182. bottom: 31.156 / 1068
  21183. }
  21184. },
  21185. back: {
  21186. height: math.unit(4.5, "meters"),
  21187. weight: math.unit(3200, "lb"),
  21188. name: "Back",
  21189. image: {
  21190. source: "./media/characters/ty/back.svg",
  21191. extra: 1044 / 966,
  21192. bottom: 7.48 / 1049
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(4.5, "meters"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21206. {
  21207. front: {
  21208. height: math.unit(5 + 4 / 12, "feet"),
  21209. weight: math.unit(115, "lb"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/rocky/front.svg",
  21213. extra: 1012 / 975,
  21214. bottom: 54 / 1066
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(5 + 4 / 12, "feet"),
  21222. default: true
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21228. {
  21229. upright: {
  21230. height: math.unit(6, "meters"),
  21231. weight: math.unit(4000, "kg"),
  21232. name: "Upright",
  21233. image: {
  21234. source: "./media/characters/ruin/upright.svg",
  21235. extra: 668 / 661,
  21236. bottom: 42 / 799.8396
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(6, "meters"),
  21244. default: true
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21250. {
  21251. front: {
  21252. height: math.unit(5, "feet"),
  21253. weight: math.unit(106, "lb"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/robin/front.svg",
  21257. extra: 862 / 799,
  21258. bottom: 42.4 / 914.8856
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(5, "feet"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21272. {
  21273. side: {
  21274. height: math.unit(3, "feet"),
  21275. weight: math.unit(225, "lb"),
  21276. name: "Side",
  21277. image: {
  21278. source: "./media/characters/saian/side.svg",
  21279. extra: 566 / 356,
  21280. bottom: 79.7 / 643
  21281. }
  21282. },
  21283. maw: {
  21284. height: math.unit(2.85, "feet"),
  21285. name: "Maw",
  21286. image: {
  21287. source: "./media/characters/saian/maw.svg"
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(3, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21301. {
  21302. side: {
  21303. height: math.unit(8, "feet"),
  21304. weight: math.unit(300, "lb"),
  21305. name: "Side",
  21306. image: {
  21307. source: "./media/characters/equus-silvermane/side.svg",
  21308. extra: 2176 / 2050,
  21309. bottom: 65.7 / 2245
  21310. }
  21311. },
  21312. front: {
  21313. height: math.unit(8, "feet"),
  21314. weight: math.unit(300, "lb"),
  21315. name: "Front",
  21316. image: {
  21317. source: "./media/characters/equus-silvermane/front.svg",
  21318. extra: 4633 / 4400,
  21319. bottom: 71.3 / 4706.915
  21320. }
  21321. },
  21322. sideStepping: {
  21323. height: math.unit(8, "feet"),
  21324. weight: math.unit(300, "lb"),
  21325. name: "Side (Stepping)",
  21326. image: {
  21327. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21328. extra: 1968 / 1860,
  21329. bottom: 16.4 / 1989
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(8, "feet")
  21337. },
  21338. {
  21339. name: "Minimacro",
  21340. height: math.unit(75, "feet"),
  21341. default: true
  21342. },
  21343. {
  21344. name: "Macro",
  21345. height: math.unit(150, "feet")
  21346. },
  21347. {
  21348. name: "Macro+",
  21349. height: math.unit(1000, "feet")
  21350. },
  21351. {
  21352. name: "Megamacro",
  21353. height: math.unit(1, "mile")
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21359. {
  21360. side: {
  21361. height: math.unit(20, "feet"),
  21362. weight: math.unit(30000, "kg"),
  21363. name: "Side",
  21364. image: {
  21365. source: "./media/characters/windar/side.svg",
  21366. extra: 1491 / 1248,
  21367. bottom: 82.56 / 1568
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(20, "feet"),
  21375. default: true
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21381. {
  21382. side: {
  21383. height: math.unit(15.66, "feet"),
  21384. weight: math.unit(150, "lb"),
  21385. name: "Side",
  21386. image: {
  21387. source: "./media/characters/melody/side.svg",
  21388. extra: 1097 / 944,
  21389. bottom: 11.8 / 1109
  21390. }
  21391. },
  21392. sideOutfit: {
  21393. height: math.unit(15.66, "feet"),
  21394. weight: math.unit(150, "lb"),
  21395. name: "Side (Outfit)",
  21396. image: {
  21397. source: "./media/characters/melody/side-outfit.svg",
  21398. extra: 1097 / 944,
  21399. bottom: 11.8 / 1109
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(15.66, "feet"),
  21407. default: true
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(8, "feet"),
  21416. weight: math.unit(325, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/windera/front.svg",
  21420. extra: 3180 / 2845,
  21421. bottom: 178 / 3365
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(8, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21435. {
  21436. front: {
  21437. height: math.unit(28.75, "feet"),
  21438. weight: math.unit(2000, "kg"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/sonear/front.svg",
  21442. extra: 1041.1 / 964.9,
  21443. bottom: 53.7 / 1096.6
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(28.75, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21457. {
  21458. side: {
  21459. height: math.unit(25.5, "feet"),
  21460. weight: math.unit(23000, "kg"),
  21461. name: "Side",
  21462. image: {
  21463. source: "./media/characters/kanara/side.svg"
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(25.5, "feet"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21477. {
  21478. side: {
  21479. height: math.unit(10, "feet"),
  21480. weight: math.unit(1000, "kg"),
  21481. name: "Side",
  21482. image: {
  21483. source: "./media/characters/ereus/side.svg",
  21484. extra: 1157 / 959,
  21485. bottom: 153 / 1312.5
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(10, "feet"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21499. {
  21500. side: {
  21501. height: math.unit(4.5, "feet"),
  21502. weight: math.unit(500, "lb"),
  21503. name: "Side",
  21504. image: {
  21505. source: "./media/characters/e-ter/side.svg",
  21506. extra: 1550 / 1248,
  21507. bottom: 146 / 1694
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(4.5, "feet"),
  21515. default: true
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21521. {
  21522. side: {
  21523. height: math.unit(9.7, "feet"),
  21524. weight: math.unit(4000, "kg"),
  21525. name: "Side",
  21526. image: {
  21527. source: "./media/characters/yamie/side.svg"
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(9.7, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(50, "feet"),
  21544. weight: math.unit(50000, "kg"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/anders/front.svg",
  21548. extra: 570 / 539,
  21549. bottom: 14.7 / 586.7
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Large",
  21556. height: math.unit(50, "feet")
  21557. },
  21558. {
  21559. name: "Macro",
  21560. height: math.unit(2000, "feet"),
  21561. default: true
  21562. },
  21563. {
  21564. name: "Megamacro",
  21565. height: math.unit(12, "miles")
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(7 + 2 / 12, "feet"),
  21574. weight: math.unit(300, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/reban/front.svg",
  21578. extra: 516 / 487,
  21579. bottom: 42.82 / 558.356
  21580. }
  21581. },
  21582. dick: {
  21583. height: math.unit(7 / 5, "feet"),
  21584. name: "Dick",
  21585. image: {
  21586. source: "./media/characters/reban/dick.svg"
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Natural Height",
  21593. height: math.unit(7 + 2 / 12, "feet")
  21594. },
  21595. {
  21596. name: "Macro",
  21597. height: math.unit(500, "feet"),
  21598. default: true
  21599. },
  21600. {
  21601. name: "Canon Height",
  21602. height: math.unit(50, "AU")
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(6, "feet"),
  21611. weight: math.unit(150, "lb"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/terrance-keayes/front.svg",
  21615. extra: 1.005,
  21616. bottom: 151 / 1615
  21617. }
  21618. },
  21619. side: {
  21620. height: math.unit(6, "feet"),
  21621. weight: math.unit(150, "lb"),
  21622. name: "Side",
  21623. image: {
  21624. source: "./media/characters/terrance-keayes/side.svg",
  21625. extra: 1.005,
  21626. bottom: 129.4 / 1544
  21627. }
  21628. },
  21629. back: {
  21630. height: math.unit(6, "feet"),
  21631. weight: math.unit(150, "lb"),
  21632. name: "Back",
  21633. image: {
  21634. source: "./media/characters/terrance-keayes/back.svg",
  21635. extra: 1.005,
  21636. bottom: 58.4 / 1557.3
  21637. }
  21638. },
  21639. dick: {
  21640. height: math.unit(6 * 0.208, "feet"),
  21641. name: "Dick",
  21642. image: {
  21643. source: "./media/characters/terrance-keayes/dick.svg"
  21644. }
  21645. },
  21646. },
  21647. [
  21648. {
  21649. name: "Canon Height",
  21650. height: math.unit(35, "miles"),
  21651. default: true
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21657. {
  21658. front: {
  21659. height: math.unit(6, "feet"),
  21660. weight: math.unit(150, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/ofelia/front.svg",
  21664. extra: 546 / 541,
  21665. bottom: 39 / 583
  21666. }
  21667. },
  21668. back: {
  21669. height: math.unit(6, "feet"),
  21670. weight: math.unit(150, "lb"),
  21671. name: "Back",
  21672. image: {
  21673. source: "./media/characters/ofelia/back.svg",
  21674. extra: 564 / 559.5,
  21675. bottom: 8.69 / 573.02
  21676. }
  21677. },
  21678. maw: {
  21679. height: math.unit(1, "feet"),
  21680. name: "Maw",
  21681. image: {
  21682. source: "./media/characters/ofelia/maw.svg"
  21683. }
  21684. },
  21685. foot: {
  21686. height: math.unit(1.949, "feet"),
  21687. name: "Foot",
  21688. image: {
  21689. source: "./media/characters/ofelia/foot.svg"
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Canon Height",
  21696. height: math.unit(2000, "miles"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(6, "feet"),
  21706. weight: math.unit(150, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/samuel/front.svg",
  21710. extra: 265 / 258,
  21711. bottom: 2 / 266.1566
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Macro",
  21718. height: math.unit(100, "feet"),
  21719. default: true
  21720. },
  21721. {
  21722. name: "Full Size",
  21723. height: math.unit(1000, "miles")
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(6, "feet"),
  21732. weight: math.unit(300, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/beishir-kiel/front.svg",
  21736. extra: 569 / 547,
  21737. bottom: 41.9 / 609
  21738. }
  21739. },
  21740. maw: {
  21741. height: math.unit(6 * 0.202, "feet"),
  21742. name: "Maw",
  21743. image: {
  21744. source: "./media/characters/beishir-kiel/maw.svg"
  21745. }
  21746. },
  21747. },
  21748. [
  21749. {
  21750. name: "Macro",
  21751. height: math.unit(300, "feet"),
  21752. default: true
  21753. },
  21754. ]
  21755. ))
  21756. characterMakers.push(() => makeCharacter(
  21757. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21758. {
  21759. front: {
  21760. height: math.unit(5 + 8 / 12, "feet"),
  21761. weight: math.unit(120, "lb"),
  21762. name: "Front",
  21763. image: {
  21764. source: "./media/characters/logan-grey/front.svg",
  21765. extra: 2539 / 2393,
  21766. bottom: 97.6 / 2636.37
  21767. }
  21768. },
  21769. frontAlt: {
  21770. height: math.unit(5 + 8 / 12, "feet"),
  21771. weight: math.unit(120, "lb"),
  21772. name: "Front (Alt)",
  21773. image: {
  21774. source: "./media/characters/logan-grey/front-alt.svg",
  21775. extra: 958 / 893,
  21776. bottom: 15 / 970.768
  21777. }
  21778. },
  21779. back: {
  21780. height: math.unit(5 + 8 / 12, "feet"),
  21781. weight: math.unit(120, "lb"),
  21782. name: "Back",
  21783. image: {
  21784. source: "./media/characters/logan-grey/back.svg",
  21785. extra: 958 / 893,
  21786. bottom: 2.1881 / 970.9788
  21787. }
  21788. },
  21789. dick: {
  21790. height: math.unit(1.437, "feet"),
  21791. name: "Dick",
  21792. image: {
  21793. source: "./media/characters/logan-grey/dick.svg"
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(5 + 8 / 12, "feet")
  21801. },
  21802. {
  21803. name: "The 500 Foot Femboy",
  21804. height: math.unit(500, "feet"),
  21805. default: true
  21806. },
  21807. {
  21808. name: "Megmacro",
  21809. height: math.unit(20, "miles")
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21815. {
  21816. front: {
  21817. height: math.unit(8 + 2 / 12, "feet"),
  21818. weight: math.unit(275, "lb"),
  21819. name: "Front",
  21820. image: {
  21821. source: "./media/characters/draganta/front.svg",
  21822. extra: 1177 / 1135,
  21823. bottom: 33.46 / 1212.1
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(8 + 6 / 12, "feet"),
  21831. default: true
  21832. },
  21833. {
  21834. name: "Macro",
  21835. height: math.unit(150, "feet")
  21836. },
  21837. {
  21838. name: "Megamacro",
  21839. height: math.unit(1000, "miles")
  21840. },
  21841. ]
  21842. ))
  21843. characterMakers.push(() => makeCharacter(
  21844. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21845. {
  21846. front: {
  21847. height: math.unit(1.72, "m"),
  21848. weight: math.unit(80, "lb"),
  21849. name: "Front",
  21850. image: {
  21851. source: "./media/characters/voski/front.svg",
  21852. extra: 2076.22 / 2022.4,
  21853. bottom: 102.7 / 2177.3866
  21854. }
  21855. },
  21856. frontNsfw: {
  21857. height: math.unit(1.72, "m"),
  21858. weight: math.unit(80, "lb"),
  21859. name: "Front (NSFW)",
  21860. image: {
  21861. source: "./media/characters/voski/front-nsfw.svg",
  21862. extra: 2076.22 / 2022.4,
  21863. bottom: 102.7 / 2177.3866
  21864. }
  21865. },
  21866. back: {
  21867. height: math.unit(1.72, "m"),
  21868. weight: math.unit(80, "lb"),
  21869. name: "Back",
  21870. image: {
  21871. source: "./media/characters/voski/back.svg",
  21872. extra: 2104 / 2051,
  21873. bottom: 10.45 / 2113.63
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(1.72, "m")
  21881. },
  21882. {
  21883. name: "Macro",
  21884. height: math.unit(55, "m"),
  21885. default: true
  21886. },
  21887. {
  21888. name: "Macro+",
  21889. height: math.unit(300, "m")
  21890. },
  21891. {
  21892. name: "Macro++",
  21893. height: math.unit(700, "m")
  21894. },
  21895. {
  21896. name: "Macro+++",
  21897. height: math.unit(4500, "m")
  21898. },
  21899. {
  21900. name: "Macro++++",
  21901. height: math.unit(45, "km")
  21902. },
  21903. {
  21904. name: "Macro+++++",
  21905. height: math.unit(1220, "km")
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21911. {
  21912. front: {
  21913. height: math.unit(2.3, "m"),
  21914. weight: math.unit(304, "kg"),
  21915. name: "Front",
  21916. image: {
  21917. source: "./media/characters/icowom-lee/front.svg",
  21918. extra: 985 / 955,
  21919. bottom: 25.4 / 1012
  21920. }
  21921. },
  21922. fronttentacles: {
  21923. height: math.unit(2.3, "m"),
  21924. weight: math.unit(304, "kg"),
  21925. name: "Front-tentacles",
  21926. image: {
  21927. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21928. extra: 985 / 955,
  21929. bottom: 25.4 / 1012
  21930. }
  21931. },
  21932. back: {
  21933. height: math.unit(2.3, "m"),
  21934. weight: math.unit(304, "kg"),
  21935. name: "Back",
  21936. image: {
  21937. source: "./media/characters/icowom-lee/back.svg",
  21938. extra: 975 / 954,
  21939. bottom: 9.5 / 985
  21940. }
  21941. },
  21942. backtentacles: {
  21943. height: math.unit(2.3, "m"),
  21944. weight: math.unit(304, "kg"),
  21945. name: "Back-tentacles",
  21946. image: {
  21947. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21948. extra: 975 / 954,
  21949. bottom: 9.5 / 985
  21950. }
  21951. },
  21952. frontDressed: {
  21953. height: math.unit(2.3, "m"),
  21954. weight: math.unit(304, "kg"),
  21955. name: "Front (Dressed)",
  21956. image: {
  21957. source: "./media/characters/icowom-lee/front-dressed.svg",
  21958. extra: 3076 / 2933,
  21959. bottom: 51.4 / 3125.1889
  21960. }
  21961. },
  21962. rump: {
  21963. height: math.unit(0.776, "meters"),
  21964. name: "Rump",
  21965. image: {
  21966. source: "./media/characters/icowom-lee/rump.svg"
  21967. }
  21968. },
  21969. genitals: {
  21970. height: math.unit(0.78, "meters"),
  21971. name: "Genitals",
  21972. image: {
  21973. source: "./media/characters/icowom-lee/genitals.svg"
  21974. }
  21975. },
  21976. },
  21977. [
  21978. {
  21979. name: "Normal",
  21980. height: math.unit(2.3, "meters"),
  21981. default: true
  21982. },
  21983. {
  21984. name: "Macro",
  21985. height: math.unit(94, "meters"),
  21986. default: true
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21992. {
  21993. front: {
  21994. height: math.unit(22, "meters"),
  21995. weight: math.unit(21000, "kg"),
  21996. name: "Front",
  21997. image: {
  21998. source: "./media/characters/shock-diamond/front.svg",
  21999. extra: 2204 / 2053,
  22000. bottom: 65 / 2239.47
  22001. }
  22002. },
  22003. frontNude: {
  22004. height: math.unit(22, "meters"),
  22005. weight: math.unit(21000, "kg"),
  22006. name: "Front (Nude)",
  22007. image: {
  22008. source: "./media/characters/shock-diamond/front-nude.svg",
  22009. extra: 2514 / 2285,
  22010. bottom: 13 / 2527.56
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(3, "meters")
  22018. },
  22019. {
  22020. name: "Macro",
  22021. height: math.unit(22, "meters"),
  22022. default: true
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(5 + 4 / 12, "feet"),
  22031. weight: math.unit(120, "lb"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/rory/front.svg",
  22035. extra: 589 / 556,
  22036. bottom: 45.7 / 635.76
  22037. }
  22038. },
  22039. frontNude: {
  22040. height: math.unit(5 + 4 / 12, "feet"),
  22041. weight: math.unit(120, "lb"),
  22042. name: "Front (Nude)",
  22043. image: {
  22044. source: "./media/characters/rory/front-nude.svg",
  22045. extra: 589 / 556,
  22046. bottom: 45.7 / 635.76
  22047. }
  22048. },
  22049. side: {
  22050. height: math.unit(5 + 4 / 12, "feet"),
  22051. weight: math.unit(120, "lb"),
  22052. name: "Side",
  22053. image: {
  22054. source: "./media/characters/rory/side.svg",
  22055. extra: 597 / 564,
  22056. bottom: 55 / 653
  22057. }
  22058. },
  22059. back: {
  22060. height: math.unit(5 + 4 / 12, "feet"),
  22061. weight: math.unit(120, "lb"),
  22062. name: "Back",
  22063. image: {
  22064. source: "./media/characters/rory/back.svg",
  22065. extra: 620 / 585,
  22066. bottom: 8.86 / 630.43
  22067. }
  22068. },
  22069. dick: {
  22070. height: math.unit(0.86, "feet"),
  22071. name: "Dick",
  22072. image: {
  22073. source: "./media/characters/rory/dick.svg"
  22074. }
  22075. },
  22076. },
  22077. [
  22078. {
  22079. name: "Normal",
  22080. height: math.unit(5 + 4 / 12, "feet"),
  22081. default: true
  22082. },
  22083. {
  22084. name: "Macro",
  22085. height: math.unit(100, "feet")
  22086. },
  22087. {
  22088. name: "Macro+",
  22089. height: math.unit(140, "feet")
  22090. },
  22091. {
  22092. name: "Macro++",
  22093. height: math.unit(300, "feet")
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(5 + 9 / 12, "feet"),
  22102. weight: math.unit(190, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/sprisk/front.svg",
  22106. extra: 1225 / 1180,
  22107. bottom: 42.7 / 1266.4
  22108. }
  22109. },
  22110. frontNsfw: {
  22111. height: math.unit(5 + 9 / 12, "feet"),
  22112. weight: math.unit(190, "lb"),
  22113. name: "Front (NSFW)",
  22114. image: {
  22115. source: "./media/characters/sprisk/front-nsfw.svg",
  22116. extra: 1225 / 1180,
  22117. bottom: 42.7 / 1266.4
  22118. }
  22119. },
  22120. back: {
  22121. height: math.unit(5 + 9 / 12, "feet"),
  22122. weight: math.unit(190, "lb"),
  22123. name: "Back",
  22124. image: {
  22125. source: "./media/characters/sprisk/back.svg",
  22126. extra: 1247 / 1200,
  22127. bottom: 5.6 / 1253.04
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Tiny",
  22134. height: math.unit(2, "inches")
  22135. },
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(5 + 9 / 12, "feet"),
  22139. default: true
  22140. },
  22141. {
  22142. name: "Mini Macro",
  22143. height: math.unit(18, "feet")
  22144. },
  22145. {
  22146. name: "Macro",
  22147. height: math.unit(100, "feet")
  22148. },
  22149. {
  22150. name: "MACRO",
  22151. height: math.unit(50, "miles")
  22152. },
  22153. {
  22154. name: "M A C R O",
  22155. height: math.unit(300, "miles")
  22156. },
  22157. ]
  22158. ))
  22159. characterMakers.push(() => makeCharacter(
  22160. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22161. {
  22162. side: {
  22163. height: math.unit(15.6, "meters"),
  22164. weight: math.unit(700000, "kg"),
  22165. name: "Side",
  22166. image: {
  22167. source: "./media/characters/bunsen/side.svg",
  22168. extra: 1644 / 358
  22169. }
  22170. },
  22171. foot: {
  22172. height: math.unit(1.611 * 1644 / 358, "meter"),
  22173. name: "Foot",
  22174. image: {
  22175. source: "./media/characters/bunsen/foot.svg"
  22176. }
  22177. },
  22178. },
  22179. [
  22180. {
  22181. name: "Small",
  22182. height: math.unit(10, "feet")
  22183. },
  22184. {
  22185. name: "Normal",
  22186. height: math.unit(15.6, "meters"),
  22187. default: true
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22193. {
  22194. front: {
  22195. height: math.unit(4 + 11 / 12, "feet"),
  22196. weight: math.unit(140, "lb"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/sesh/front.svg",
  22200. extra: 3420 / 3231,
  22201. bottom: 72 / 3949.5
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(4 + 11 / 12, "feet")
  22209. },
  22210. {
  22211. name: "Grown",
  22212. height: math.unit(15, "feet"),
  22213. default: true
  22214. },
  22215. {
  22216. name: "Macro",
  22217. height: math.unit(1500, "feet")
  22218. },
  22219. {
  22220. name: "Megamacro",
  22221. height: math.unit(30, "miles")
  22222. },
  22223. {
  22224. name: "Continental",
  22225. height: math.unit(3000, "miles")
  22226. },
  22227. {
  22228. name: "Gravity Mass",
  22229. height: math.unit(300000, "miles")
  22230. },
  22231. {
  22232. name: "Planet Buster",
  22233. height: math.unit(30000000, "miles")
  22234. },
  22235. {
  22236. name: "Big",
  22237. height: math.unit(3000000000, "miles")
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22243. {
  22244. front: {
  22245. height: math.unit(9, "feet"),
  22246. weight: math.unit(350, "lb"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/pepper/front.svg",
  22250. extra: 1448 / 1312,
  22251. bottom: 9.4 / 1457.88
  22252. }
  22253. },
  22254. back: {
  22255. height: math.unit(9, "feet"),
  22256. weight: math.unit(350, "lb"),
  22257. name: "Back",
  22258. image: {
  22259. source: "./media/characters/pepper/back.svg",
  22260. extra: 1423 / 1300,
  22261. bottom: 4.6 / 1429
  22262. }
  22263. },
  22264. maw: {
  22265. height: math.unit(0.932, "feet"),
  22266. name: "Maw",
  22267. image: {
  22268. source: "./media/characters/pepper/maw.svg"
  22269. }
  22270. },
  22271. },
  22272. [
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(9, "feet"),
  22276. default: true
  22277. },
  22278. ]
  22279. ))
  22280. characterMakers.push(() => makeCharacter(
  22281. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22282. {
  22283. front: {
  22284. height: math.unit(6, "feet"),
  22285. weight: math.unit(150, "lb"),
  22286. name: "Front",
  22287. image: {
  22288. source: "./media/characters/maelstrom/front.svg",
  22289. extra: 2100 / 1883,
  22290. bottom: 94 / 2196.7
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Less Kaiju",
  22297. height: math.unit(200, "feet")
  22298. },
  22299. {
  22300. name: "Kaiju",
  22301. height: math.unit(400, "feet"),
  22302. default: true
  22303. },
  22304. {
  22305. name: "Kaiju-er",
  22306. height: math.unit(600, "feet")
  22307. },
  22308. ]
  22309. ))
  22310. characterMakers.push(() => makeCharacter(
  22311. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22312. {
  22313. front: {
  22314. height: math.unit(6 + 5 / 12, "feet"),
  22315. weight: math.unit(180, "lb"),
  22316. name: "Front",
  22317. image: {
  22318. source: "./media/characters/lexir/front.svg",
  22319. extra: 180 / 172,
  22320. bottom: 12 / 192
  22321. }
  22322. },
  22323. back: {
  22324. height: math.unit(6 + 5 / 12, "feet"),
  22325. weight: math.unit(180, "lb"),
  22326. name: "Back",
  22327. image: {
  22328. source: "./media/characters/lexir/back.svg",
  22329. extra: 183.84 / 175.5,
  22330. bottom: 3.1 / 187
  22331. }
  22332. },
  22333. },
  22334. [
  22335. {
  22336. name: "Very Smal",
  22337. height: math.unit(1, "nm")
  22338. },
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(6 + 5 / 12, "feet"),
  22342. default: true
  22343. },
  22344. {
  22345. name: "Macro",
  22346. height: math.unit(1, "mile")
  22347. },
  22348. {
  22349. name: "Megamacro",
  22350. height: math.unit(50, "miles")
  22351. },
  22352. ]
  22353. ))
  22354. characterMakers.push(() => makeCharacter(
  22355. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22356. {
  22357. front: {
  22358. height: math.unit(1.5, "meters"),
  22359. weight: math.unit(100, "lb"),
  22360. name: "Front",
  22361. image: {
  22362. source: "./media/characters/maksio/front.svg",
  22363. extra: 1549 / 1531,
  22364. bottom: 123.7 / 1674.5429
  22365. }
  22366. },
  22367. back: {
  22368. height: math.unit(1.5, "meters"),
  22369. weight: math.unit(100, "lb"),
  22370. name: "Back",
  22371. image: {
  22372. source: "./media/characters/maksio/back.svg",
  22373. extra: 1541 / 1509,
  22374. bottom: 97 / 1639
  22375. }
  22376. },
  22377. hand: {
  22378. height: math.unit(0.621, "feet"),
  22379. name: "Hand",
  22380. image: {
  22381. source: "./media/characters/maksio/hand.svg"
  22382. }
  22383. },
  22384. foot: {
  22385. height: math.unit(1.611, "feet"),
  22386. name: "Foot",
  22387. image: {
  22388. source: "./media/characters/maksio/foot.svg"
  22389. }
  22390. },
  22391. },
  22392. [
  22393. {
  22394. name: "Shrunken",
  22395. height: math.unit(10, "cm")
  22396. },
  22397. {
  22398. name: "Normal",
  22399. height: math.unit(150, "cm"),
  22400. default: true
  22401. },
  22402. ]
  22403. ))
  22404. characterMakers.push(() => makeCharacter(
  22405. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22406. {
  22407. front: {
  22408. height: math.unit(100, "feet"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/erza-bear/front.svg",
  22412. extra: 2449 / 2390,
  22413. bottom: 46 / 2494
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(100, "feet"),
  22418. name: "Back",
  22419. image: {
  22420. source: "./media/characters/erza-bear/back.svg",
  22421. extra: 2489 / 2430,
  22422. bottom: 85.4 / 2480
  22423. }
  22424. },
  22425. tail: {
  22426. height: math.unit(42, "feet"),
  22427. name: "Tail",
  22428. image: {
  22429. source: "./media/characters/erza-bear/tail.svg"
  22430. }
  22431. },
  22432. tongue: {
  22433. height: math.unit(8, "feet"),
  22434. name: "Tongue",
  22435. image: {
  22436. source: "./media/characters/erza-bear/tongue.svg"
  22437. }
  22438. },
  22439. dick: {
  22440. height: math.unit(10.5, "feet"),
  22441. name: "Dick",
  22442. image: {
  22443. source: "./media/characters/erza-bear/dick.svg"
  22444. }
  22445. },
  22446. dickVertical: {
  22447. height: math.unit(16.9, "feet"),
  22448. name: "Dick (Vertical)",
  22449. image: {
  22450. source: "./media/characters/erza-bear/dick-vertical.svg"
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Macro",
  22457. height: math.unit(100, "feet"),
  22458. default: true
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22464. {
  22465. front: {
  22466. height: math.unit(172, "cm"),
  22467. weight: math.unit(73, "kg"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/violet-flor/front.svg",
  22471. extra: 1530 / 1442,
  22472. bottom: 61.9 / 1588.8
  22473. }
  22474. },
  22475. back: {
  22476. height: math.unit(180, "cm"),
  22477. weight: math.unit(73, "kg"),
  22478. name: "Back",
  22479. image: {
  22480. source: "./media/characters/violet-flor/back.svg",
  22481. extra: 1692 / 1630,
  22482. bottom: 20 / 1712
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Normal",
  22489. height: math.unit(172, "cm"),
  22490. default: true
  22491. },
  22492. ]
  22493. ))
  22494. characterMakers.push(() => makeCharacter(
  22495. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22496. {
  22497. front: {
  22498. height: math.unit(6, "feet"),
  22499. weight: math.unit(220, "lb"),
  22500. name: "Front",
  22501. image: {
  22502. source: "./media/characters/lynn-rhea/front.svg",
  22503. extra: 310 / 273
  22504. }
  22505. },
  22506. back: {
  22507. height: math.unit(6, "feet"),
  22508. weight: math.unit(220, "lb"),
  22509. name: "Back",
  22510. image: {
  22511. source: "./media/characters/lynn-rhea/back.svg",
  22512. extra: 310 / 273
  22513. }
  22514. },
  22515. dicks: {
  22516. height: math.unit(0.9, "feet"),
  22517. name: "Dicks",
  22518. image: {
  22519. source: "./media/characters/lynn-rhea/dicks.svg"
  22520. }
  22521. },
  22522. slit: {
  22523. height: math.unit(0.4, "feet"),
  22524. name: "Slit",
  22525. image: {
  22526. source: "./media/characters/lynn-rhea/slit.svg"
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Micro",
  22533. height: math.unit(1, "inch")
  22534. },
  22535. {
  22536. name: "Macro",
  22537. height: math.unit(60, "feet"),
  22538. default: true
  22539. },
  22540. {
  22541. name: "Megamacro",
  22542. height: math.unit(2, "miles")
  22543. },
  22544. {
  22545. name: "Gigamacro",
  22546. height: math.unit(3, "earths")
  22547. },
  22548. {
  22549. name: "Galactic",
  22550. height: math.unit(0.8, "galaxies")
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22556. {
  22557. front: {
  22558. height: math.unit(1600, "feet"),
  22559. weight: math.unit(85758785169, "kg"),
  22560. name: "Front",
  22561. image: {
  22562. source: "./media/characters/valathos/front.svg",
  22563. extra: 1451 / 1339
  22564. }
  22565. },
  22566. },
  22567. [
  22568. {
  22569. name: "Macro",
  22570. height: math.unit(1600, "feet"),
  22571. default: true
  22572. },
  22573. ]
  22574. ))
  22575. characterMakers.push(() => makeCharacter(
  22576. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22577. {
  22578. front: {
  22579. height: math.unit(7 + 5 / 12, "feet"),
  22580. weight: math.unit(300, "lb"),
  22581. name: "Front",
  22582. image: {
  22583. source: "./media/characters/azula/front.svg",
  22584. extra: 3208 / 2880,
  22585. bottom: 80.2 / 3277
  22586. }
  22587. },
  22588. back: {
  22589. height: math.unit(7 + 5 / 12, "feet"),
  22590. weight: math.unit(300, "lb"),
  22591. name: "Back",
  22592. image: {
  22593. source: "./media/characters/azula/back.svg",
  22594. extra: 3169 / 2822,
  22595. bottom: 150.6 / 3321
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Normal",
  22602. height: math.unit(7 + 5 / 12, "feet"),
  22603. default: true
  22604. },
  22605. {
  22606. name: "Big",
  22607. height: math.unit(20, "feet")
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22613. {
  22614. front: {
  22615. height: math.unit(5 + 1 / 12, "feet"),
  22616. weight: math.unit(110, "lb"),
  22617. name: "Front",
  22618. image: {
  22619. source: "./media/characters/rupert/front.svg",
  22620. extra: 1549 / 1495,
  22621. bottom: 54.2 / 1604.4
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Normal",
  22628. height: math.unit(5 + 1 / 12, "feet"),
  22629. default: true
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22635. {
  22636. front: {
  22637. height: math.unit(8 + 4 / 12, "feet"),
  22638. weight: math.unit(350, "lb"),
  22639. name: "Front",
  22640. image: {
  22641. source: "./media/characters/sheera-castellar/front.svg",
  22642. extra: 1957 / 1894,
  22643. bottom: 26.97 / 1975.017
  22644. }
  22645. },
  22646. side: {
  22647. height: math.unit(8 + 4 / 12, "feet"),
  22648. weight: math.unit(350, "lb"),
  22649. name: "Side",
  22650. image: {
  22651. source: "./media/characters/sheera-castellar/side.svg",
  22652. extra: 1957 / 1894
  22653. }
  22654. },
  22655. back: {
  22656. height: math.unit(8 + 4 / 12, "feet"),
  22657. weight: math.unit(350, "lb"),
  22658. name: "Back",
  22659. image: {
  22660. source: "./media/characters/sheera-castellar/back.svg",
  22661. extra: 1957 / 1894
  22662. }
  22663. },
  22664. angled: {
  22665. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22666. weight: math.unit(350, "lb"),
  22667. name: "Angled",
  22668. image: {
  22669. source: "./media/characters/sheera-castellar/angled.svg",
  22670. extra: 1807 / 1707,
  22671. bottom: 68 / 1875
  22672. }
  22673. },
  22674. genitals: {
  22675. height: math.unit(2.2, "feet"),
  22676. name: "Genitals",
  22677. image: {
  22678. source: "./media/characters/sheera-castellar/genitals.svg"
  22679. }
  22680. },
  22681. taur: {
  22682. height: math.unit(10 + 6/12, "feet"),
  22683. name: "Taur",
  22684. image: {
  22685. source: "./media/characters/sheera-castellar/taur.svg",
  22686. extra: 2017/1909,
  22687. bottom: 185/2202
  22688. }
  22689. },
  22690. },
  22691. [
  22692. {
  22693. name: "Normal",
  22694. height: math.unit(8 + 4 / 12, "feet")
  22695. },
  22696. {
  22697. name: "Macro",
  22698. height: math.unit(150, "feet"),
  22699. default: true
  22700. },
  22701. {
  22702. name: "Macro+",
  22703. height: math.unit(800, "feet")
  22704. },
  22705. ]
  22706. ))
  22707. characterMakers.push(() => makeCharacter(
  22708. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22709. {
  22710. front: {
  22711. height: math.unit(6, "feet"),
  22712. weight: math.unit(150, "lb"),
  22713. name: "Front",
  22714. image: {
  22715. source: "./media/characters/jaipur/front.svg",
  22716. extra: 3860 / 3731,
  22717. bottom: 287 / 4140
  22718. }
  22719. },
  22720. back: {
  22721. height: math.unit(6, "feet"),
  22722. weight: math.unit(150, "lb"),
  22723. name: "Back",
  22724. image: {
  22725. source: "./media/characters/jaipur/back.svg",
  22726. extra: 4060 / 3930,
  22727. bottom: 151 / 4200
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Normal",
  22734. height: math.unit(1.85, "meters"),
  22735. default: true
  22736. },
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(150, "meters")
  22740. },
  22741. {
  22742. name: "Macro+",
  22743. height: math.unit(0.5, "miles")
  22744. },
  22745. {
  22746. name: "Macro++",
  22747. height: math.unit(2.5, "miles")
  22748. },
  22749. {
  22750. name: "Macro+++",
  22751. height: math.unit(12, "miles")
  22752. },
  22753. {
  22754. name: "Macro++++",
  22755. height: math.unit(120, "miles")
  22756. },
  22757. {
  22758. name: "Macro+++++",
  22759. height: math.unit(1200, "miles")
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22765. {
  22766. front: {
  22767. height: math.unit(6, "feet"),
  22768. weight: math.unit(150, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/sheila-wolf/front.svg",
  22772. extra: 1931 / 1808,
  22773. bottom: 29.5 / 1960
  22774. }
  22775. },
  22776. dick: {
  22777. height: math.unit(1.464, "feet"),
  22778. name: "Dick",
  22779. image: {
  22780. source: "./media/characters/sheila-wolf/dick.svg"
  22781. }
  22782. },
  22783. muzzle: {
  22784. height: math.unit(0.513, "feet"),
  22785. name: "Muzzle",
  22786. image: {
  22787. source: "./media/characters/sheila-wolf/muzzle.svg"
  22788. }
  22789. },
  22790. },
  22791. [
  22792. {
  22793. name: "Macro",
  22794. height: math.unit(70, "feet"),
  22795. default: true
  22796. },
  22797. ]
  22798. ))
  22799. characterMakers.push(() => makeCharacter(
  22800. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22801. {
  22802. front: {
  22803. height: math.unit(32, "meters"),
  22804. weight: math.unit(300000, "kg"),
  22805. name: "Front",
  22806. image: {
  22807. source: "./media/characters/almor/front.svg",
  22808. extra: 1408 / 1322,
  22809. bottom: 94.6 / 1506.5
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Macro",
  22816. height: math.unit(32, "meters"),
  22817. default: true
  22818. },
  22819. ]
  22820. ))
  22821. characterMakers.push(() => makeCharacter(
  22822. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22823. {
  22824. front: {
  22825. height: math.unit(7, "feet"),
  22826. weight: math.unit(200, "lb"),
  22827. name: "Front",
  22828. image: {
  22829. source: "./media/characters/silver/front.svg",
  22830. extra: 472.1 / 450.5,
  22831. bottom: 26.5 / 499.424
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Normal",
  22838. height: math.unit(7, "feet"),
  22839. default: true
  22840. },
  22841. {
  22842. name: "Macro",
  22843. height: math.unit(800, "feet")
  22844. },
  22845. {
  22846. name: "Megamacro",
  22847. height: math.unit(250, "miles")
  22848. },
  22849. ]
  22850. ))
  22851. characterMakers.push(() => makeCharacter(
  22852. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22853. {
  22854. front: {
  22855. height: math.unit(6, "feet"),
  22856. weight: math.unit(150, "lb"),
  22857. name: "Front",
  22858. image: {
  22859. source: "./media/characters/pliskin/front.svg",
  22860. extra: 1469 / 1359,
  22861. bottom: 70 / 1540
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Micro",
  22868. height: math.unit(3, "inches")
  22869. },
  22870. {
  22871. name: "Normal",
  22872. height: math.unit(5 + 11 / 12, "feet"),
  22873. default: true
  22874. },
  22875. {
  22876. name: "Macro",
  22877. height: math.unit(120, "feet")
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22883. {
  22884. front: {
  22885. height: math.unit(6, "feet"),
  22886. weight: math.unit(150, "lb"),
  22887. name: "Front",
  22888. image: {
  22889. source: "./media/characters/sammy/front.svg",
  22890. extra: 1193 / 1089,
  22891. bottom: 30.5 / 1226
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Macro",
  22898. height: math.unit(1700, "feet"),
  22899. default: true
  22900. },
  22901. {
  22902. name: "Examacro",
  22903. height: math.unit(2.5e9, "lightyears")
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(21, "meters"),
  22912. weight: math.unit(12, "tonnes"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/kuru/front.svg",
  22916. extra: 4301 / 3785,
  22917. bottom: 371.3 / 4691
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Macro",
  22924. height: math.unit(21, "meters"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(23, "meters"),
  22934. weight: math.unit(12.2, "tonnes"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/rakka/front.svg",
  22938. extra: 4670 / 4169,
  22939. bottom: 301 / 4968.7
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Macro",
  22946. height: math.unit(23, "meters"),
  22947. default: true
  22948. },
  22949. ]
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22953. {
  22954. front: {
  22955. height: math.unit(6, "feet"),
  22956. weight: math.unit(150, "lb"),
  22957. name: "Front",
  22958. image: {
  22959. source: "./media/characters/rhys-feline/front.svg",
  22960. extra: 2488 / 2308,
  22961. bottom: 35.67 / 2519.19
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Really Small",
  22968. height: math.unit(1, "nm")
  22969. },
  22970. {
  22971. name: "Micro",
  22972. height: math.unit(4, "inches")
  22973. },
  22974. {
  22975. name: "Normal",
  22976. height: math.unit(4 + 10 / 12, "feet"),
  22977. default: true
  22978. },
  22979. {
  22980. name: "Macro",
  22981. height: math.unit(100, "feet")
  22982. },
  22983. {
  22984. name: "Megamacto",
  22985. height: math.unit(50, "miles")
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22991. {
  22992. side: {
  22993. height: math.unit(30, "feet"),
  22994. weight: math.unit(35000, "kg"),
  22995. name: "Side",
  22996. image: {
  22997. source: "./media/characters/alydar/side.svg",
  22998. extra: 234 / 222,
  22999. bottom: 6.5 / 241
  23000. }
  23001. },
  23002. front: {
  23003. height: math.unit(30, "feet"),
  23004. weight: math.unit(35000, "kg"),
  23005. name: "Front",
  23006. image: {
  23007. source: "./media/characters/alydar/front.svg",
  23008. extra: 223.37 / 210.2,
  23009. bottom: 22.3 / 246.76
  23010. }
  23011. },
  23012. top: {
  23013. height: math.unit(64.54, "feet"),
  23014. weight: math.unit(35000, "kg"),
  23015. name: "Top",
  23016. image: {
  23017. source: "./media/characters/alydar/top.svg"
  23018. }
  23019. },
  23020. anthro: {
  23021. height: math.unit(30, "feet"),
  23022. weight: math.unit(9000, "kg"),
  23023. name: "Anthro",
  23024. image: {
  23025. source: "./media/characters/alydar/anthro.svg",
  23026. extra: 432 / 421,
  23027. bottom: 7.18 / 440
  23028. }
  23029. },
  23030. maw: {
  23031. height: math.unit(11.693, "feet"),
  23032. name: "Maw",
  23033. image: {
  23034. source: "./media/characters/alydar/maw.svg"
  23035. }
  23036. },
  23037. head: {
  23038. height: math.unit(11.693, "feet"),
  23039. name: "Head",
  23040. image: {
  23041. source: "./media/characters/alydar/head.svg"
  23042. }
  23043. },
  23044. headAlt: {
  23045. height: math.unit(12.861, "feet"),
  23046. name: "Head (Alt)",
  23047. image: {
  23048. source: "./media/characters/alydar/head-alt.svg"
  23049. }
  23050. },
  23051. wing: {
  23052. height: math.unit(20.712, "feet"),
  23053. name: "Wing",
  23054. image: {
  23055. source: "./media/characters/alydar/wing.svg"
  23056. }
  23057. },
  23058. wingFeather: {
  23059. height: math.unit(9.662, "feet"),
  23060. name: "Wing Feather",
  23061. image: {
  23062. source: "./media/characters/alydar/wing-feather.svg"
  23063. }
  23064. },
  23065. countourFeather: {
  23066. height: math.unit(4.154, "feet"),
  23067. name: "Contour Feather",
  23068. image: {
  23069. source: "./media/characters/alydar/contour-feather.svg"
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Diplomatic",
  23076. height: math.unit(13, "feet"),
  23077. default: true
  23078. },
  23079. {
  23080. name: "Small",
  23081. height: math.unit(30, "feet")
  23082. },
  23083. {
  23084. name: "Normal",
  23085. height: math.unit(95, "feet"),
  23086. default: true
  23087. },
  23088. {
  23089. name: "Large",
  23090. height: math.unit(285, "feet")
  23091. },
  23092. {
  23093. name: "Incomprehensible",
  23094. height: math.unit(450, "megameters")
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23100. {
  23101. side: {
  23102. height: math.unit(11, "feet"),
  23103. weight: math.unit(1750, "kg"),
  23104. name: "Side",
  23105. image: {
  23106. source: "./media/characters/selicia/side.svg",
  23107. extra: 440 / 396,
  23108. bottom: 24.8 / 465.979
  23109. }
  23110. },
  23111. maw: {
  23112. height: math.unit(4.665, "feet"),
  23113. name: "Maw",
  23114. image: {
  23115. source: "./media/characters/selicia/maw.svg"
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Normal",
  23122. height: math.unit(11, "feet"),
  23123. default: true
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23129. {
  23130. side: {
  23131. height: math.unit(2 + 6 / 12, "feet"),
  23132. weight: math.unit(30, "lb"),
  23133. name: "Side",
  23134. image: {
  23135. source: "./media/characters/layla/side.svg",
  23136. extra: 244 / 188,
  23137. bottom: 18.2 / 262.1
  23138. }
  23139. },
  23140. back: {
  23141. height: math.unit(2 + 6 / 12, "feet"),
  23142. weight: math.unit(30, "lb"),
  23143. name: "Back",
  23144. image: {
  23145. source: "./media/characters/layla/back.svg",
  23146. extra: 308 / 241.5,
  23147. bottom: 8.9 / 316.8
  23148. }
  23149. },
  23150. cumming: {
  23151. height: math.unit(2 + 6 / 12, "feet"),
  23152. weight: math.unit(30, "lb"),
  23153. name: "Cumming",
  23154. image: {
  23155. source: "./media/characters/layla/cumming.svg",
  23156. extra: 342 / 279,
  23157. bottom: 595 / 938
  23158. }
  23159. },
  23160. dickFlaccid: {
  23161. height: math.unit(2.595, "feet"),
  23162. name: "Flaccid Genitals",
  23163. image: {
  23164. source: "./media/characters/layla/dick-flaccid.svg"
  23165. }
  23166. },
  23167. dickErect: {
  23168. height: math.unit(2.359, "feet"),
  23169. name: "Erect Genitals",
  23170. image: {
  23171. source: "./media/characters/layla/dick-erect.svg"
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Micro",
  23178. height: math.unit(1, "inch")
  23179. },
  23180. {
  23181. name: "Small",
  23182. height: math.unit(1, "foot")
  23183. },
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(2 + 6 / 12, "feet"),
  23187. default: true
  23188. },
  23189. {
  23190. name: "Macro",
  23191. height: math.unit(200, "feet")
  23192. },
  23193. {
  23194. name: "Megamacro",
  23195. height: math.unit(1000, "miles")
  23196. },
  23197. {
  23198. name: "Planetary",
  23199. height: math.unit(8000, "miles")
  23200. },
  23201. {
  23202. name: "True Layla",
  23203. height: math.unit(200000 * 7, "multiverses")
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23209. {
  23210. back: {
  23211. height: math.unit(10.5, "feet"),
  23212. weight: math.unit(800, "lb"),
  23213. name: "Back",
  23214. image: {
  23215. source: "./media/characters/knox/back.svg",
  23216. extra: 1486 / 1089,
  23217. bottom: 107 / 1601.4
  23218. }
  23219. },
  23220. side: {
  23221. height: math.unit(10.5, "feet"),
  23222. weight: math.unit(800, "lb"),
  23223. name: "Side",
  23224. image: {
  23225. source: "./media/characters/knox/side.svg",
  23226. extra: 244 / 218,
  23227. bottom: 14 / 260
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Compact",
  23234. height: math.unit(10.5, "feet"),
  23235. default: true
  23236. },
  23237. {
  23238. name: "Dynamax",
  23239. height: math.unit(210, "feet")
  23240. },
  23241. {
  23242. name: "Full Macro",
  23243. height: math.unit(850, "feet")
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23249. {
  23250. front: {
  23251. height: math.unit(6, "feet"),
  23252. weight: math.unit(152, "lb"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/shin-pikachu/front.svg",
  23256. extra: 1574 / 1480,
  23257. bottom: 53.3 / 1626
  23258. }
  23259. },
  23260. hand: {
  23261. height: math.unit(1.055, "feet"),
  23262. name: "Hand",
  23263. image: {
  23264. source: "./media/characters/shin-pikachu/hand.svg"
  23265. }
  23266. },
  23267. foot: {
  23268. height: math.unit(1.1, "feet"),
  23269. name: "Foot",
  23270. image: {
  23271. source: "./media/characters/shin-pikachu/foot.svg"
  23272. }
  23273. },
  23274. collar: {
  23275. height: math.unit(0.386, "feet"),
  23276. name: "Collar",
  23277. image: {
  23278. source: "./media/characters/shin-pikachu/collar.svg"
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Smallest",
  23285. height: math.unit(0.5, "inches")
  23286. },
  23287. {
  23288. name: "Micro",
  23289. height: math.unit(6, "inches")
  23290. },
  23291. {
  23292. name: "Normal",
  23293. height: math.unit(6, "feet"),
  23294. default: true
  23295. },
  23296. {
  23297. name: "Macro",
  23298. height: math.unit(150, "feet")
  23299. },
  23300. ]
  23301. ))
  23302. characterMakers.push(() => makeCharacter(
  23303. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23304. {
  23305. front: {
  23306. height: math.unit(28, "feet"),
  23307. weight: math.unit(10500, "lb"),
  23308. name: "Front",
  23309. image: {
  23310. source: "./media/characters/kayda/front.svg",
  23311. extra: 1536 / 1428,
  23312. bottom: 68.7 / 1603
  23313. }
  23314. },
  23315. back: {
  23316. height: math.unit(28, "feet"),
  23317. weight: math.unit(10500, "lb"),
  23318. name: "Back",
  23319. image: {
  23320. source: "./media/characters/kayda/back.svg",
  23321. extra: 1557 / 1464,
  23322. bottom: 39.5 / 1597.49
  23323. }
  23324. },
  23325. dick: {
  23326. height: math.unit(3.858, "feet"),
  23327. name: "Dick",
  23328. image: {
  23329. source: "./media/characters/kayda/dick.svg"
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Macro",
  23336. height: math.unit(28, "feet"),
  23337. default: true
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(10 + 11 / 12, "feet"),
  23346. weight: math.unit(1400, "lb"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/brian/front.svg",
  23350. extra: 737 / 692,
  23351. bottom: 55.4 / 785
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Normal",
  23358. height: math.unit(10 + 11 / 12, "feet"),
  23359. default: true
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(5 + 8 / 12, "feet"),
  23368. weight: math.unit(140, "lb"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/khemri/front.svg",
  23372. extra: 4780 / 4059,
  23373. bottom: 80.1 / 4859.25
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Micro",
  23380. height: math.unit(6, "inches")
  23381. },
  23382. {
  23383. name: "Normal",
  23384. height: math.unit(5 + 8 / 12, "feet"),
  23385. default: true
  23386. },
  23387. ]
  23388. ))
  23389. characterMakers.push(() => makeCharacter(
  23390. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23391. {
  23392. front: {
  23393. height: math.unit(13, "feet"),
  23394. weight: math.unit(1700, "lb"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/felix-braveheart/front.svg",
  23398. extra: 1222 / 1157,
  23399. bottom: 53.2 / 1280
  23400. }
  23401. },
  23402. back: {
  23403. height: math.unit(13, "feet"),
  23404. weight: math.unit(1700, "lb"),
  23405. name: "Back",
  23406. image: {
  23407. source: "./media/characters/felix-braveheart/back.svg",
  23408. extra: 1277 / 1203,
  23409. bottom: 50.2 / 1327
  23410. }
  23411. },
  23412. feral: {
  23413. height: math.unit(6, "feet"),
  23414. weight: math.unit(400, "lb"),
  23415. name: "Feral",
  23416. image: {
  23417. source: "./media/characters/felix-braveheart/feral.svg",
  23418. extra: 682 / 625,
  23419. bottom: 6.9 / 688
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Normal",
  23426. height: math.unit(13, "feet"),
  23427. default: true
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23433. {
  23434. side: {
  23435. height: math.unit(5 + 11 / 12, "feet"),
  23436. weight: math.unit(1400, "lb"),
  23437. name: "Side",
  23438. image: {
  23439. source: "./media/characters/shadow-blade/side.svg",
  23440. extra: 1726 / 1267,
  23441. bottom: 58.4 / 1785
  23442. }
  23443. },
  23444. },
  23445. [
  23446. {
  23447. name: "Normal",
  23448. height: math.unit(5 + 11 / 12, "feet"),
  23449. default: true
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23455. {
  23456. front: {
  23457. height: math.unit(1 + 6 / 12, "feet"),
  23458. weight: math.unit(25, "lb"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/karla-halldor/front.svg",
  23462. extra: 1459 / 1383,
  23463. bottom: 12 / 1472
  23464. }
  23465. },
  23466. },
  23467. [
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(1 + 6 / 12, "feet"),
  23471. default: true
  23472. },
  23473. ]
  23474. ))
  23475. characterMakers.push(() => makeCharacter(
  23476. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23477. {
  23478. front: {
  23479. height: math.unit(6 + 2 / 12, "feet"),
  23480. weight: math.unit(160, "lb"),
  23481. name: "Front",
  23482. image: {
  23483. source: "./media/characters/ariam/front.svg",
  23484. extra: 714 / 617,
  23485. bottom: 23.4 / 737,
  23486. }
  23487. },
  23488. squatting: {
  23489. height: math.unit(4.1, "feet"),
  23490. weight: math.unit(160, "lb"),
  23491. name: "Squatting",
  23492. image: {
  23493. source: "./media/characters/ariam/squatting.svg",
  23494. extra: 2617 / 2112,
  23495. bottom: 61.2 / 2681,
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Normal",
  23502. height: math.unit(6 + 2 / 12, "feet"),
  23503. default: true
  23504. },
  23505. {
  23506. name: "Normal+",
  23507. height: math.unit(4, "meters")
  23508. },
  23509. {
  23510. name: "Macro",
  23511. height: math.unit(50, "meters")
  23512. },
  23513. {
  23514. name: "Macro+",
  23515. height: math.unit(100, "meters")
  23516. },
  23517. {
  23518. name: "Megamacro",
  23519. height: math.unit(20, "km")
  23520. },
  23521. ]
  23522. ))
  23523. characterMakers.push(() => makeCharacter(
  23524. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23525. {
  23526. front: {
  23527. height: math.unit(1.67, "meters"),
  23528. weight: math.unit(140, "lb"),
  23529. name: "Front",
  23530. image: {
  23531. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23532. extra: 438 / 410,
  23533. bottom: 0.75 / 439
  23534. }
  23535. },
  23536. },
  23537. [
  23538. {
  23539. name: "Shrunken",
  23540. height: math.unit(7.6, "cm")
  23541. },
  23542. {
  23543. name: "Human Scale",
  23544. height: math.unit(1.67, "meters")
  23545. },
  23546. {
  23547. name: "Wolxi Scale",
  23548. height: math.unit(36.7, "meters"),
  23549. default: true
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(1.73, "meters"),
  23558. weight: math.unit(240, "lb"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/izue-two-mothers/front.svg",
  23562. extra: 469 / 437,
  23563. bottom: 1.24 / 470.6
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Shrunken",
  23570. height: math.unit(7.86, "cm")
  23571. },
  23572. {
  23573. name: "Human Scale",
  23574. height: math.unit(1.73, "meters")
  23575. },
  23576. {
  23577. name: "Wolxi Scale",
  23578. height: math.unit(38, "meters"),
  23579. default: true
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(1.55, "meters"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/teeku-love-shack/front.svg",
  23592. extra: 387 / 362,
  23593. bottom: 1.51 / 388
  23594. }
  23595. },
  23596. },
  23597. [
  23598. {
  23599. name: "Shrunken",
  23600. height: math.unit(7, "cm")
  23601. },
  23602. {
  23603. name: "Human Scale",
  23604. height: math.unit(1.55, "meters")
  23605. },
  23606. {
  23607. name: "Wolxi Scale",
  23608. height: math.unit(34.1, "meters"),
  23609. default: true
  23610. },
  23611. ]
  23612. ))
  23613. characterMakers.push(() => makeCharacter(
  23614. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23615. {
  23616. front: {
  23617. height: math.unit(1.83, "meters"),
  23618. weight: math.unit(135, "lb"),
  23619. name: "Front",
  23620. image: {
  23621. source: "./media/characters/dejma-the-red/front.svg",
  23622. extra: 480 / 458,
  23623. bottom: 1.8 / 482
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Shrunken",
  23630. height: math.unit(8.3, "cm")
  23631. },
  23632. {
  23633. name: "Human Scale",
  23634. height: math.unit(1.83, "meters")
  23635. },
  23636. {
  23637. name: "Wolxi Scale",
  23638. height: math.unit(40, "meters"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(1.78, "meters"),
  23648. weight: math.unit(65, "kg"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/aki/front.svg",
  23652. extra: 452 / 415
  23653. }
  23654. },
  23655. frontNsfw: {
  23656. height: math.unit(1.78, "meters"),
  23657. weight: math.unit(65, "kg"),
  23658. name: "Front (NSFW)",
  23659. image: {
  23660. source: "./media/characters/aki/front-nsfw.svg",
  23661. extra: 452 / 415
  23662. }
  23663. },
  23664. back: {
  23665. height: math.unit(1.78, "meters"),
  23666. weight: math.unit(65, "kg"),
  23667. name: "Back",
  23668. image: {
  23669. source: "./media/characters/aki/back.svg",
  23670. extra: 452 / 415
  23671. }
  23672. },
  23673. rump: {
  23674. height: math.unit(2.05, "feet"),
  23675. name: "Rump",
  23676. image: {
  23677. source: "./media/characters/aki/rump.svg"
  23678. }
  23679. },
  23680. dick: {
  23681. height: math.unit(0.95, "feet"),
  23682. name: "Dick",
  23683. image: {
  23684. source: "./media/characters/aki/dick.svg"
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Micro",
  23691. height: math.unit(15, "cm")
  23692. },
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(178, "cm"),
  23696. default: true
  23697. },
  23698. {
  23699. name: "Macro",
  23700. height: math.unit(214, "m")
  23701. },
  23702. {
  23703. name: "Macro+",
  23704. height: math.unit(534, "m")
  23705. },
  23706. ]
  23707. ))
  23708. characterMakers.push(() => makeCharacter(
  23709. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23710. {
  23711. front: {
  23712. height: math.unit(5 + 5 / 12, "feet"),
  23713. weight: math.unit(120, "lb"),
  23714. name: "Front",
  23715. image: {
  23716. source: "./media/characters/ari/front.svg",
  23717. extra: 714.5 / 682,
  23718. bottom: 8 / 722.5
  23719. }
  23720. },
  23721. },
  23722. [
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(5 + 5 / 12, "feet")
  23726. },
  23727. {
  23728. name: "Macro",
  23729. height: math.unit(100, "feet"),
  23730. default: true
  23731. },
  23732. {
  23733. name: "Megamacro",
  23734. height: math.unit(100, "miles")
  23735. },
  23736. {
  23737. name: "Gigamacro",
  23738. height: math.unit(80000, "miles")
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23744. {
  23745. side: {
  23746. height: math.unit(9, "feet"),
  23747. weight: math.unit(400, "kg"),
  23748. name: "Side",
  23749. image: {
  23750. source: "./media/characters/bolt/side.svg",
  23751. extra: 1126 / 896,
  23752. bottom: 60 / 1187.3,
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Micro",
  23759. height: math.unit(5, "inches")
  23760. },
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(9, "feet"),
  23764. default: true
  23765. },
  23766. {
  23767. name: "Macro",
  23768. height: math.unit(700, "feet")
  23769. },
  23770. {
  23771. name: "Max Size",
  23772. height: math.unit(1.52e22, "yottameters")
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23778. {
  23779. front: {
  23780. height: math.unit(4.53, "meters"),
  23781. weight: math.unit(3, "tons"),
  23782. name: "Front",
  23783. image: {
  23784. source: "./media/characters/draekon-sylviar/front.svg",
  23785. extra: 1228 / 1068,
  23786. bottom: 41 / 1270
  23787. }
  23788. },
  23789. tail: {
  23790. height: math.unit(1.772, "meter"),
  23791. name: "Tail",
  23792. image: {
  23793. source: "./media/characters/draekon-sylviar/tail.svg"
  23794. }
  23795. },
  23796. head: {
  23797. height: math.unit(1.331, "meter"),
  23798. name: "Head",
  23799. image: {
  23800. source: "./media/characters/draekon-sylviar/head.svg"
  23801. }
  23802. },
  23803. hand: {
  23804. height: math.unit(0.564, "meter"),
  23805. name: "Hand",
  23806. image: {
  23807. source: "./media/characters/draekon-sylviar/hand.svg"
  23808. }
  23809. },
  23810. foot: {
  23811. height: math.unit(0.621, "meter"),
  23812. name: "Foot",
  23813. image: {
  23814. source: "./media/characters/draekon-sylviar/foot.svg",
  23815. bottom: 32 / 324
  23816. }
  23817. },
  23818. dick: {
  23819. height: math.unit(61, "cm"),
  23820. name: "Dick",
  23821. image: {
  23822. source: "./media/characters/draekon-sylviar/dick.svg"
  23823. }
  23824. },
  23825. dickseparated: {
  23826. height: math.unit(61, "cm"),
  23827. name: "Dick-separated",
  23828. image: {
  23829. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Small",
  23836. height: math.unit(4.53 / 2, "meters"),
  23837. default: true
  23838. },
  23839. {
  23840. name: "Normal",
  23841. height: math.unit(4.53, "meters"),
  23842. default: true
  23843. },
  23844. {
  23845. name: "Large",
  23846. height: math.unit(4.53 * 2, "meters"),
  23847. },
  23848. ]
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23852. {
  23853. front: {
  23854. height: math.unit(6 + 2 / 12, "feet"),
  23855. weight: math.unit(180, "lb"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/brawler/front.svg",
  23859. extra: 3301 / 3027,
  23860. bottom: 138 / 3439
  23861. }
  23862. },
  23863. },
  23864. [
  23865. {
  23866. name: "Normal",
  23867. height: math.unit(6 + 2 / 12, "feet"),
  23868. default: true
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23874. {
  23875. front: {
  23876. height: math.unit(11, "feet"),
  23877. weight: math.unit(1000, "lb"),
  23878. name: "Front",
  23879. image: {
  23880. source: "./media/characters/alex/front.svg",
  23881. bottom: 44.5 / 620
  23882. }
  23883. },
  23884. },
  23885. [
  23886. {
  23887. name: "Micro",
  23888. height: math.unit(5, "inches")
  23889. },
  23890. {
  23891. name: "Normal",
  23892. height: math.unit(11, "feet"),
  23893. default: true
  23894. },
  23895. {
  23896. name: "Macro",
  23897. height: math.unit(9.5e9, "feet")
  23898. },
  23899. {
  23900. name: "Max Size",
  23901. height: math.unit(1.4e283, "yottameters")
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23907. {
  23908. female: {
  23909. height: math.unit(29.9, "m"),
  23910. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23911. name: "Female",
  23912. image: {
  23913. source: "./media/characters/zenari/female.svg",
  23914. extra: 3281.6 / 3217,
  23915. bottom: 72.2 / 3353
  23916. }
  23917. },
  23918. male: {
  23919. height: math.unit(27.7, "m"),
  23920. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23921. name: "Male",
  23922. image: {
  23923. source: "./media/characters/zenari/male.svg",
  23924. extra: 3008 / 2991,
  23925. bottom: 54.6 / 3069
  23926. }
  23927. },
  23928. },
  23929. [
  23930. {
  23931. name: "Macro",
  23932. height: math.unit(29.7, "meters"),
  23933. default: true
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23939. {
  23940. female: {
  23941. height: math.unit(23.8, "m"),
  23942. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23943. name: "Female",
  23944. image: {
  23945. source: "./media/characters/mactarian/female.svg",
  23946. extra: 2662 / 2569,
  23947. bottom: 73 / 2736
  23948. }
  23949. },
  23950. male: {
  23951. height: math.unit(23.8, "m"),
  23952. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23953. name: "Male",
  23954. image: {
  23955. source: "./media/characters/mactarian/male.svg",
  23956. extra: 2673 / 2600,
  23957. bottom: 76 / 2750
  23958. }
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Macro",
  23964. height: math.unit(23.8, "meters"),
  23965. default: true
  23966. },
  23967. ]
  23968. ))
  23969. characterMakers.push(() => makeCharacter(
  23970. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23971. {
  23972. female: {
  23973. height: math.unit(19.3, "m"),
  23974. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23975. name: "Female",
  23976. image: {
  23977. source: "./media/characters/umok/female.svg",
  23978. extra: 2186 / 2078,
  23979. bottom: 87 / 2277
  23980. }
  23981. },
  23982. male: {
  23983. height: math.unit(19.5, "m"),
  23984. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23985. name: "Male",
  23986. image: {
  23987. source: "./media/characters/umok/male.svg",
  23988. extra: 2233 / 2140,
  23989. bottom: 24.4 / 2258
  23990. }
  23991. },
  23992. },
  23993. [
  23994. {
  23995. name: "Macro",
  23996. height: math.unit(19.3, "meters"),
  23997. default: true
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24003. {
  24004. female: {
  24005. height: math.unit(26.15, "m"),
  24006. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24007. name: "Female",
  24008. image: {
  24009. source: "./media/characters/joraxian/female.svg",
  24010. extra: 2912 / 2824,
  24011. bottom: 36 / 2956
  24012. }
  24013. },
  24014. male: {
  24015. height: math.unit(25.4, "m"),
  24016. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24017. name: "Male",
  24018. image: {
  24019. source: "./media/characters/joraxian/male.svg",
  24020. extra: 2877 / 2721,
  24021. bottom: 82 / 2967
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Macro",
  24028. height: math.unit(26.15, "meters"),
  24029. default: true
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24035. {
  24036. female: {
  24037. height: math.unit(21.6, "m"),
  24038. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24039. name: "Female",
  24040. image: {
  24041. source: "./media/characters/sthara/female.svg",
  24042. extra: 2516 / 2347,
  24043. bottom: 21.5 / 2537
  24044. }
  24045. },
  24046. male: {
  24047. height: math.unit(24, "m"),
  24048. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24049. name: "Male",
  24050. image: {
  24051. source: "./media/characters/sthara/male.svg",
  24052. extra: 2732 / 2607,
  24053. bottom: 23 / 2732
  24054. }
  24055. },
  24056. },
  24057. [
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(21.6, "meters"),
  24061. default: true
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24067. {
  24068. front: {
  24069. height: math.unit(6 + 4 / 12, "feet"),
  24070. weight: math.unit(175, "lb"),
  24071. name: "Front",
  24072. image: {
  24073. source: "./media/characters/luka-bryzant/front.svg",
  24074. extra: 311 / 289,
  24075. bottom: 4 / 315
  24076. }
  24077. },
  24078. back: {
  24079. height: math.unit(6 + 4 / 12, "feet"),
  24080. weight: math.unit(175, "lb"),
  24081. name: "Back",
  24082. image: {
  24083. source: "./media/characters/luka-bryzant/back.svg",
  24084. extra: 311 / 289,
  24085. bottom: 3.8 / 313.7
  24086. }
  24087. },
  24088. },
  24089. [
  24090. {
  24091. name: "Micro",
  24092. height: math.unit(10, "inches")
  24093. },
  24094. {
  24095. name: "Normal",
  24096. height: math.unit(6 + 4 / 12, "feet"),
  24097. default: true
  24098. },
  24099. {
  24100. name: "Large",
  24101. height: math.unit(12, "feet")
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24107. {
  24108. front: {
  24109. height: math.unit(5 + 7 / 12, "feet"),
  24110. weight: math.unit(185, "lb"),
  24111. name: "Front",
  24112. image: {
  24113. source: "./media/characters/aman-aquila/front.svg",
  24114. extra: 1013 / 976,
  24115. bottom: 45.6 / 1057
  24116. }
  24117. },
  24118. side: {
  24119. height: math.unit(5 + 7 / 12, "feet"),
  24120. weight: math.unit(185, "lb"),
  24121. name: "Side",
  24122. image: {
  24123. source: "./media/characters/aman-aquila/side.svg",
  24124. extra: 1054 / 1011,
  24125. bottom: 15 / 1070
  24126. }
  24127. },
  24128. back: {
  24129. height: math.unit(5 + 7 / 12, "feet"),
  24130. weight: math.unit(185, "lb"),
  24131. name: "Back",
  24132. image: {
  24133. source: "./media/characters/aman-aquila/back.svg",
  24134. extra: 1026 / 970,
  24135. bottom: 12 / 1039
  24136. }
  24137. },
  24138. head: {
  24139. height: math.unit(1.211, "feet"),
  24140. name: "Head",
  24141. image: {
  24142. source: "./media/characters/aman-aquila/head.svg",
  24143. }
  24144. },
  24145. },
  24146. [
  24147. {
  24148. name: "Minimicro",
  24149. height: math.unit(0.057, "inches")
  24150. },
  24151. {
  24152. name: "Micro",
  24153. height: math.unit(7, "inches")
  24154. },
  24155. {
  24156. name: "Mini",
  24157. height: math.unit(3 + 7 / 12, "feet")
  24158. },
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(5 + 7 / 12, "feet"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(157 + 7 / 12, "feet")
  24167. },
  24168. {
  24169. name: "Megamacro",
  24170. height: math.unit(1557 + 7 / 12, "feet")
  24171. },
  24172. {
  24173. name: "Gigamacro",
  24174. height: math.unit(15557 + 7 / 12, "feet")
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24180. {
  24181. front: {
  24182. height: math.unit(3 + 2 / 12, "inches"),
  24183. weight: math.unit(0.3, "ounces"),
  24184. name: "Front",
  24185. image: {
  24186. source: "./media/characters/hiphae/front.svg",
  24187. extra: 1931 / 1683,
  24188. bottom: 24 / 1955
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Normal",
  24195. height: math.unit(3 + 1 / 2, "inches"),
  24196. default: true
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24202. {
  24203. front: {
  24204. height: math.unit(5 + 10 / 12, "feet"),
  24205. weight: math.unit(165, "lb"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/nicky/front.svg",
  24209. extra: 3144 / 2886,
  24210. bottom: 45.6 / 3192
  24211. }
  24212. },
  24213. back: {
  24214. height: math.unit(5 + 10 / 12, "feet"),
  24215. weight: math.unit(165, "lb"),
  24216. name: "Back",
  24217. image: {
  24218. source: "./media/characters/nicky/back.svg",
  24219. extra: 3055 / 2804,
  24220. bottom: 28.4 / 3087
  24221. }
  24222. },
  24223. frontclothed: {
  24224. height: math.unit(5 + 10 / 12, "feet"),
  24225. weight: math.unit(165, "lb"),
  24226. name: "Front-clothed",
  24227. image: {
  24228. source: "./media/characters/nicky/front-clothed.svg",
  24229. extra: 3184.9 / 2926.9,
  24230. bottom: 86.5 / 3239.9
  24231. }
  24232. },
  24233. foot: {
  24234. height: math.unit(1.16, "feet"),
  24235. name: "Foot",
  24236. image: {
  24237. source: "./media/characters/nicky/foot.svg"
  24238. }
  24239. },
  24240. feet: {
  24241. height: math.unit(1.34, "feet"),
  24242. name: "Feet",
  24243. image: {
  24244. source: "./media/characters/nicky/feet.svg"
  24245. }
  24246. },
  24247. maw: {
  24248. height: math.unit(0.9, "feet"),
  24249. name: "Maw",
  24250. image: {
  24251. source: "./media/characters/nicky/maw.svg"
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Normal",
  24258. height: math.unit(5 + 10 / 12, "feet"),
  24259. default: true
  24260. },
  24261. {
  24262. name: "Macro",
  24263. height: math.unit(60, "feet")
  24264. },
  24265. {
  24266. name: "Megamacro",
  24267. height: math.unit(1, "mile")
  24268. },
  24269. ]
  24270. ))
  24271. characterMakers.push(() => makeCharacter(
  24272. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24273. {
  24274. side: {
  24275. height: math.unit(10, "feet"),
  24276. weight: math.unit(600, "lb"),
  24277. name: "Side",
  24278. image: {
  24279. source: "./media/characters/blair/side.svg",
  24280. bottom: 16.6 / 475,
  24281. extra: 458 / 431
  24282. }
  24283. },
  24284. },
  24285. [
  24286. {
  24287. name: "Micro",
  24288. height: math.unit(8, "inches")
  24289. },
  24290. {
  24291. name: "Normal",
  24292. height: math.unit(10, "feet"),
  24293. default: true
  24294. },
  24295. {
  24296. name: "Macro",
  24297. height: math.unit(180, "feet")
  24298. },
  24299. ]
  24300. ))
  24301. characterMakers.push(() => makeCharacter(
  24302. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24303. {
  24304. front: {
  24305. height: math.unit(5 + 4 / 12, "feet"),
  24306. weight: math.unit(125, "lb"),
  24307. name: "Front",
  24308. image: {
  24309. source: "./media/characters/fisher/front.svg",
  24310. extra: 444 / 390,
  24311. bottom: 2 / 444.8
  24312. }
  24313. },
  24314. },
  24315. [
  24316. {
  24317. name: "Micro",
  24318. height: math.unit(4, "inches")
  24319. },
  24320. {
  24321. name: "Normal",
  24322. height: math.unit(5 + 4 / 12, "feet"),
  24323. default: true
  24324. },
  24325. {
  24326. name: "Macro",
  24327. height: math.unit(100, "feet")
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24333. {
  24334. front: {
  24335. height: math.unit(6.71, "feet"),
  24336. weight: math.unit(200, "lb"),
  24337. capacity: math.unit(1000000, "people"),
  24338. name: "Front",
  24339. image: {
  24340. source: "./media/characters/gliss/front.svg",
  24341. extra: 2347 / 2231,
  24342. bottom: 113 / 2462
  24343. }
  24344. },
  24345. hammerspaceSize: {
  24346. height: math.unit(6.71 * 717, "feet"),
  24347. weight: math.unit(200, "lb"),
  24348. capacity: math.unit(1000000, "people"),
  24349. name: "Hammerspace Size",
  24350. image: {
  24351. source: "./media/characters/gliss/front.svg",
  24352. extra: 2347 / 2231,
  24353. bottom: 113 / 2462
  24354. }
  24355. },
  24356. },
  24357. [
  24358. {
  24359. name: "Normal",
  24360. height: math.unit(6.71, "feet"),
  24361. default: true
  24362. },
  24363. ]
  24364. ))
  24365. characterMakers.push(() => makeCharacter(
  24366. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24367. {
  24368. side: {
  24369. height: math.unit(1.44, "m"),
  24370. weight: math.unit(80, "kg"),
  24371. name: "Side",
  24372. image: {
  24373. source: "./media/characters/dune-anderson/side.svg",
  24374. bottom: 49 / 1426
  24375. }
  24376. },
  24377. },
  24378. [
  24379. {
  24380. name: "Wolf-sized",
  24381. height: math.unit(1.44, "meters")
  24382. },
  24383. {
  24384. name: "Normal",
  24385. height: math.unit(5.05, "meters"),
  24386. default: true
  24387. },
  24388. {
  24389. name: "Big",
  24390. height: math.unit(14.4, "meters")
  24391. },
  24392. {
  24393. name: "Huge",
  24394. height: math.unit(144, "meters")
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(7, "feet"),
  24403. weight: math.unit(425, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/hind/front.svg",
  24407. extra: 2091 / 1860,
  24408. bottom: 129 / 2220
  24409. }
  24410. },
  24411. back: {
  24412. height: math.unit(7, "feet"),
  24413. weight: math.unit(425, "lb"),
  24414. name: "Back",
  24415. image: {
  24416. source: "./media/characters/hind/back.svg",
  24417. extra: 2091 / 1860,
  24418. bottom: 24.6 / 2309
  24419. }
  24420. },
  24421. tail: {
  24422. height: math.unit(2.8, "feet"),
  24423. name: "Tail",
  24424. image: {
  24425. source: "./media/characters/hind/tail.svg"
  24426. }
  24427. },
  24428. head: {
  24429. height: math.unit(2.55, "feet"),
  24430. name: "Head",
  24431. image: {
  24432. source: "./media/characters/hind/head.svg"
  24433. }
  24434. },
  24435. },
  24436. [
  24437. {
  24438. name: "XS",
  24439. height: math.unit(0.7, "feet")
  24440. },
  24441. {
  24442. name: "Normal",
  24443. height: math.unit(7, "feet"),
  24444. default: true
  24445. },
  24446. {
  24447. name: "XL",
  24448. height: math.unit(70, "feet")
  24449. },
  24450. ]
  24451. ))
  24452. characterMakers.push(() => makeCharacter(
  24453. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24454. {
  24455. front: {
  24456. height: math.unit(6, "feet"),
  24457. weight: math.unit(150, "lb"),
  24458. name: "Front",
  24459. image: {
  24460. source: "./media/characters/dylan-skaven/front.svg",
  24461. extra: 2318 / 2063,
  24462. bottom: 93.4 / 2410
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Nano",
  24469. height: math.unit(1, "mm")
  24470. },
  24471. {
  24472. name: "Micro",
  24473. height: math.unit(1, "cm")
  24474. },
  24475. {
  24476. name: "Normal",
  24477. height: math.unit(2.1, "meters"),
  24478. default: true
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(7 + 5 / 12, "feet"),
  24487. weight: math.unit(357, "lb"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/solex-draconov/front.svg",
  24491. extra: 1993 / 1865,
  24492. bottom: 117 / 2111
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Natural Height",
  24499. height: math.unit(7 + 5 / 12, "feet"),
  24500. default: true
  24501. },
  24502. {
  24503. name: "Macro",
  24504. height: math.unit(350, "feet")
  24505. },
  24506. {
  24507. name: "Macro+",
  24508. height: math.unit(1000, "feet")
  24509. },
  24510. {
  24511. name: "Megamacro",
  24512. height: math.unit(20, "km")
  24513. },
  24514. {
  24515. name: "Megamacro+",
  24516. height: math.unit(1000, "km")
  24517. },
  24518. {
  24519. name: "Gigamacro",
  24520. height: math.unit(2.5, "Gm")
  24521. },
  24522. {
  24523. name: "Teramacro",
  24524. height: math.unit(15, "Tm")
  24525. },
  24526. {
  24527. name: "Galactic",
  24528. height: math.unit(30, "Zm")
  24529. },
  24530. {
  24531. name: "Universal",
  24532. height: math.unit(21000, "Ym")
  24533. },
  24534. {
  24535. name: "Omniversal",
  24536. height: math.unit(9.861e50, "Ym")
  24537. },
  24538. {
  24539. name: "Existential",
  24540. height: math.unit(1e300, "meters")
  24541. },
  24542. ]
  24543. ))
  24544. characterMakers.push(() => makeCharacter(
  24545. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24546. {
  24547. side: {
  24548. height: math.unit(25, "feet"),
  24549. weight: math.unit(90000, "lb"),
  24550. name: "Side",
  24551. image: {
  24552. source: "./media/characters/mandarax/side.svg",
  24553. extra: 614 / 332,
  24554. bottom: 55 / 630
  24555. }
  24556. },
  24557. head: {
  24558. height: math.unit(11.4, "feet"),
  24559. name: "Head",
  24560. image: {
  24561. source: "./media/characters/mandarax/head.svg"
  24562. }
  24563. },
  24564. belly: {
  24565. height: math.unit(33, "feet"),
  24566. name: "Belly",
  24567. capacity: math.unit(500, "people"),
  24568. image: {
  24569. source: "./media/characters/mandarax/belly.svg"
  24570. }
  24571. },
  24572. dick: {
  24573. height: math.unit(8.46, "feet"),
  24574. name: "Dick",
  24575. image: {
  24576. source: "./media/characters/mandarax/dick.svg"
  24577. }
  24578. },
  24579. top: {
  24580. height: math.unit(28, "meters"),
  24581. name: "Top",
  24582. image: {
  24583. source: "./media/characters/mandarax/top.svg"
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Normal",
  24590. height: math.unit(25, "feet"),
  24591. default: true
  24592. },
  24593. ]
  24594. ))
  24595. characterMakers.push(() => makeCharacter(
  24596. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24597. {
  24598. front: {
  24599. height: math.unit(5, "feet"),
  24600. weight: math.unit(90, "lb"),
  24601. name: "Front",
  24602. image: {
  24603. source: "./media/characters/pixil/front.svg",
  24604. extra: 2000 / 1618,
  24605. bottom: 12.3 / 2011
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(5, "feet"),
  24613. default: true
  24614. },
  24615. {
  24616. name: "Megamacro",
  24617. height: math.unit(10, "miles"),
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(7 + 2 / 12, "feet"),
  24626. weight: math.unit(200, "lb"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/angel/front.svg",
  24630. extra: 1830 / 1737,
  24631. bottom: 22.6 / 1854,
  24632. }
  24633. },
  24634. },
  24635. [
  24636. {
  24637. name: "Normal",
  24638. height: math.unit(7 + 2 / 12, "feet"),
  24639. default: true
  24640. },
  24641. {
  24642. name: "Macro",
  24643. height: math.unit(1000, "feet")
  24644. },
  24645. {
  24646. name: "Megamacro",
  24647. height: math.unit(2, "miles")
  24648. },
  24649. {
  24650. name: "Gigamacro",
  24651. height: math.unit(20, "earths")
  24652. },
  24653. ]
  24654. ))
  24655. characterMakers.push(() => makeCharacter(
  24656. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24657. {
  24658. front: {
  24659. height: math.unit(5, "feet"),
  24660. weight: math.unit(180, "lb"),
  24661. name: "Front",
  24662. image: {
  24663. source: "./media/characters/mekana/front.svg",
  24664. extra: 1671 / 1605,
  24665. bottom: 3.5 / 1691
  24666. }
  24667. },
  24668. side: {
  24669. height: math.unit(5, "feet"),
  24670. weight: math.unit(180, "lb"),
  24671. name: "Side",
  24672. image: {
  24673. source: "./media/characters/mekana/side.svg",
  24674. extra: 1671 / 1605,
  24675. bottom: 3.5 / 1691
  24676. }
  24677. },
  24678. back: {
  24679. height: math.unit(5, "feet"),
  24680. weight: math.unit(180, "lb"),
  24681. name: "Back",
  24682. image: {
  24683. source: "./media/characters/mekana/back.svg",
  24684. extra: 1671 / 1605,
  24685. bottom: 3.5 / 1691
  24686. }
  24687. },
  24688. },
  24689. [
  24690. {
  24691. name: "Normal",
  24692. height: math.unit(5, "feet"),
  24693. default: true
  24694. },
  24695. ]
  24696. ))
  24697. characterMakers.push(() => makeCharacter(
  24698. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24699. {
  24700. front: {
  24701. height: math.unit(4 + 6 / 12, "feet"),
  24702. weight: math.unit(80, "lb"),
  24703. name: "Front",
  24704. image: {
  24705. source: "./media/characters/pixie/front.svg",
  24706. extra: 1924 / 1825,
  24707. bottom: 22.4 / 1946
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(4 + 6 / 12, "feet"),
  24715. default: true
  24716. },
  24717. {
  24718. name: "Macro",
  24719. height: math.unit(40, "feet")
  24720. },
  24721. ]
  24722. ))
  24723. characterMakers.push(() => makeCharacter(
  24724. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24725. {
  24726. front: {
  24727. height: math.unit(2.1, "meters"),
  24728. weight: math.unit(200, "lb"),
  24729. name: "Front",
  24730. image: {
  24731. source: "./media/characters/the-lascivious/front.svg",
  24732. extra: 1 / 0.893,
  24733. bottom: 3.5 / 573.7
  24734. }
  24735. },
  24736. },
  24737. [
  24738. {
  24739. name: "Human Scale",
  24740. height: math.unit(2.1, "meters")
  24741. },
  24742. {
  24743. name: "Wolxi Scale",
  24744. height: math.unit(46.2, "m"),
  24745. default: true
  24746. },
  24747. {
  24748. name: "Boinker of Buildings",
  24749. height: math.unit(10, "km")
  24750. },
  24751. {
  24752. name: "Shagger of Skyscrapers",
  24753. height: math.unit(40, "km")
  24754. },
  24755. {
  24756. name: "Banger of Boroughs",
  24757. height: math.unit(4000, "km")
  24758. },
  24759. {
  24760. name: "Screwer of States",
  24761. height: math.unit(100000, "km")
  24762. },
  24763. {
  24764. name: "Pounder of Planets",
  24765. height: math.unit(2000000, "km")
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(6, "feet"),
  24774. weight: math.unit(150, "lb"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/aj/front.svg",
  24778. extra: 2039 / 1562,
  24779. bottom: 40 / 2079
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Normal",
  24786. height: math.unit(11 + 6 / 12, "feet"),
  24787. default: true
  24788. },
  24789. {
  24790. name: "Megamacro",
  24791. height: math.unit(60, "megameters")
  24792. },
  24793. ]
  24794. ))
  24795. characterMakers.push(() => makeCharacter(
  24796. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24797. {
  24798. side: {
  24799. height: math.unit(31 + 8 / 12, "feet"),
  24800. weight: math.unit(75000, "kg"),
  24801. name: "Side",
  24802. image: {
  24803. source: "./media/characters/koros/side.svg",
  24804. extra: 1442 / 1297,
  24805. bottom: 122.7 / 1562
  24806. }
  24807. },
  24808. dicksKingsCrown: {
  24809. height: math.unit(6, "feet"),
  24810. name: "Dicks (King's Crown)",
  24811. image: {
  24812. source: "./media/characters/koros/dicks-kings-crown.svg"
  24813. }
  24814. },
  24815. dicksTailSet: {
  24816. height: math.unit(3, "feet"),
  24817. name: "Dicks (Tail Set)",
  24818. image: {
  24819. source: "./media/characters/koros/dicks-tail-set.svg"
  24820. }
  24821. },
  24822. dickCumming: {
  24823. height: math.unit(7.98, "feet"),
  24824. name: "Dick (Cumming)",
  24825. image: {
  24826. source: "./media/characters/koros/dick-cumming.svg"
  24827. }
  24828. },
  24829. dicksBack: {
  24830. height: math.unit(5.9, "feet"),
  24831. name: "Dicks (Back)",
  24832. image: {
  24833. source: "./media/characters/koros/dicks-back.svg"
  24834. }
  24835. },
  24836. dicksFront: {
  24837. height: math.unit(3.72, "feet"),
  24838. name: "Dicks (Front)",
  24839. image: {
  24840. source: "./media/characters/koros/dicks-front.svg"
  24841. }
  24842. },
  24843. dicksPeeking: {
  24844. height: math.unit(3.0, "feet"),
  24845. name: "Dicks (Peeking)",
  24846. image: {
  24847. source: "./media/characters/koros/dicks-peeking.svg"
  24848. }
  24849. },
  24850. eye: {
  24851. height: math.unit(1.7, "feet"),
  24852. name: "Eye",
  24853. image: {
  24854. source: "./media/characters/koros/eye.svg"
  24855. }
  24856. },
  24857. headFront: {
  24858. height: math.unit(11.69, "feet"),
  24859. name: "Head (Front)",
  24860. image: {
  24861. source: "./media/characters/koros/head-front.svg"
  24862. }
  24863. },
  24864. headSide: {
  24865. height: math.unit(14, "feet"),
  24866. name: "Head (Side)",
  24867. image: {
  24868. source: "./media/characters/koros/head-side.svg"
  24869. }
  24870. },
  24871. leg: {
  24872. height: math.unit(17, "feet"),
  24873. name: "Leg",
  24874. image: {
  24875. source: "./media/characters/koros/leg.svg"
  24876. }
  24877. },
  24878. mawSide: {
  24879. height: math.unit(12.8, "feet"),
  24880. name: "Maw (Side)",
  24881. image: {
  24882. source: "./media/characters/koros/maw-side.svg"
  24883. }
  24884. },
  24885. mawSpitting: {
  24886. height: math.unit(17, "feet"),
  24887. name: "Maw (Spitting)",
  24888. image: {
  24889. source: "./media/characters/koros/maw-spitting.svg"
  24890. }
  24891. },
  24892. slit: {
  24893. height: math.unit(2.8, "feet"),
  24894. name: "Slit",
  24895. image: {
  24896. source: "./media/characters/koros/slit.svg"
  24897. }
  24898. },
  24899. stomach: {
  24900. height: math.unit(6.8, "feet"),
  24901. capacity: math.unit(20, "people"),
  24902. name: "Stomach",
  24903. image: {
  24904. source: "./media/characters/koros/stomach.svg"
  24905. }
  24906. },
  24907. wingspanBottom: {
  24908. height: math.unit(114, "feet"),
  24909. name: "Wingspan (Bottom)",
  24910. image: {
  24911. source: "./media/characters/koros/wingspan-bottom.svg"
  24912. }
  24913. },
  24914. wingspanTop: {
  24915. height: math.unit(104, "feet"),
  24916. name: "Wingspan (Top)",
  24917. image: {
  24918. source: "./media/characters/koros/wingspan-top.svg"
  24919. }
  24920. },
  24921. },
  24922. [
  24923. {
  24924. name: "Normal",
  24925. height: math.unit(31 + 8 / 12, "feet"),
  24926. default: true
  24927. },
  24928. ]
  24929. ))
  24930. characterMakers.push(() => makeCharacter(
  24931. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24932. {
  24933. front: {
  24934. height: math.unit(18 + 5 / 12, "feet"),
  24935. weight: math.unit(3750, "kg"),
  24936. name: "Front",
  24937. image: {
  24938. source: "./media/characters/vexx/front.svg",
  24939. extra: 426 / 396,
  24940. bottom: 31.5 / 458
  24941. }
  24942. },
  24943. maw: {
  24944. height: math.unit(6, "feet"),
  24945. name: "Maw",
  24946. image: {
  24947. source: "./media/characters/vexx/maw.svg"
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(18 + 5 / 12, "feet"),
  24955. default: true
  24956. },
  24957. ]
  24958. ))
  24959. characterMakers.push(() => makeCharacter(
  24960. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24961. {
  24962. front: {
  24963. height: math.unit(17 + 6 / 12, "feet"),
  24964. weight: math.unit(150, "lb"),
  24965. name: "Front",
  24966. image: {
  24967. source: "./media/characters/baadra/front.svg",
  24968. extra: 3137 / 2890,
  24969. bottom: 168.4 / 3305
  24970. }
  24971. },
  24972. back: {
  24973. height: math.unit(17 + 6 / 12, "feet"),
  24974. weight: math.unit(150, "lb"),
  24975. name: "Back",
  24976. image: {
  24977. source: "./media/characters/baadra/back.svg",
  24978. extra: 3142 / 2890,
  24979. bottom: 220 / 3371
  24980. }
  24981. },
  24982. head: {
  24983. height: math.unit(5.45, "feet"),
  24984. name: "Head",
  24985. image: {
  24986. source: "./media/characters/baadra/head.svg"
  24987. }
  24988. },
  24989. headAngry: {
  24990. height: math.unit(4.95, "feet"),
  24991. name: "Head (Angry)",
  24992. image: {
  24993. source: "./media/characters/baadra/head-angry.svg"
  24994. }
  24995. },
  24996. headOpen: {
  24997. height: math.unit(6, "feet"),
  24998. name: "Head (Open)",
  24999. image: {
  25000. source: "./media/characters/baadra/head-open.svg"
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Normal",
  25007. height: math.unit(17 + 6 / 12, "feet"),
  25008. default: true
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25014. {
  25015. front: {
  25016. height: math.unit(7 + 3 / 12, "feet"),
  25017. weight: math.unit(180, "lb"),
  25018. name: "Front",
  25019. image: {
  25020. source: "./media/characters/juri/front.svg",
  25021. extra: 1401 / 1237,
  25022. bottom: 18.5 / 1418
  25023. }
  25024. },
  25025. side: {
  25026. height: math.unit(7 + 3 / 12, "feet"),
  25027. weight: math.unit(180, "lb"),
  25028. name: "Side",
  25029. image: {
  25030. source: "./media/characters/juri/side.svg",
  25031. extra: 1424 / 1242,
  25032. bottom: 18.5 / 1447
  25033. }
  25034. },
  25035. sitting: {
  25036. height: math.unit(6, "feet"),
  25037. weight: math.unit(180, "lb"),
  25038. name: "Sitting",
  25039. image: {
  25040. source: "./media/characters/juri/sitting.svg",
  25041. extra: 1270 / 1143,
  25042. bottom: 100 / 1343
  25043. }
  25044. },
  25045. back: {
  25046. height: math.unit(7 + 3 / 12, "feet"),
  25047. weight: math.unit(180, "lb"),
  25048. name: "Back",
  25049. image: {
  25050. source: "./media/characters/juri/back.svg",
  25051. extra: 1377 / 1240,
  25052. bottom: 23.7 / 1405
  25053. }
  25054. },
  25055. maw: {
  25056. height: math.unit(2.8, "feet"),
  25057. name: "Maw",
  25058. image: {
  25059. source: "./media/characters/juri/maw.svg"
  25060. }
  25061. },
  25062. stomach: {
  25063. height: math.unit(0.89, "feet"),
  25064. capacity: math.unit(4, "liters"),
  25065. name: "Stomach",
  25066. image: {
  25067. source: "./media/characters/juri/stomach.svg"
  25068. }
  25069. },
  25070. },
  25071. [
  25072. {
  25073. name: "Normal",
  25074. height: math.unit(7 + 3 / 12, "feet"),
  25075. default: true
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25081. {
  25082. fox: {
  25083. height: math.unit(5 + 6 / 12, "feet"),
  25084. weight: math.unit(140, "lb"),
  25085. name: "Fox",
  25086. image: {
  25087. source: "./media/characters/maxene-sita/fox.svg",
  25088. extra: 146 / 138,
  25089. bottom: 2.1 / 148.19
  25090. }
  25091. },
  25092. foxLaying: {
  25093. height: math.unit(1.70, "feet"),
  25094. weight: math.unit(140, "lb"),
  25095. name: "Fox (Laying)",
  25096. image: {
  25097. source: "./media/characters/maxene-sita/fox-laying.svg",
  25098. extra: 910 / 572,
  25099. bottom: 71 / 981
  25100. }
  25101. },
  25102. kitsune: {
  25103. height: math.unit(10, "feet"),
  25104. weight: math.unit(800, "lb"),
  25105. name: "Kitsune",
  25106. image: {
  25107. source: "./media/characters/maxene-sita/kitsune.svg",
  25108. extra: 185 / 176,
  25109. bottom: 4.7 / 189.9
  25110. }
  25111. },
  25112. hellhound: {
  25113. height: math.unit(10, "feet"),
  25114. weight: math.unit(700, "lb"),
  25115. name: "Hellhound",
  25116. image: {
  25117. source: "./media/characters/maxene-sita/hellhound.svg",
  25118. extra: 1600 / 1545,
  25119. bottom: 81 / 1681
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(5 + 6 / 12, "feet"),
  25127. default: true
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25133. {
  25134. front: {
  25135. height: math.unit(3 + 4 / 12, "feet"),
  25136. weight: math.unit(70, "lb"),
  25137. name: "Front",
  25138. image: {
  25139. source: "./media/characters/maia/front.svg",
  25140. extra: 227 / 219.5,
  25141. bottom: 40 / 267
  25142. }
  25143. },
  25144. back: {
  25145. height: math.unit(3 + 4 / 12, "feet"),
  25146. weight: math.unit(70, "lb"),
  25147. name: "Back",
  25148. image: {
  25149. source: "./media/characters/maia/back.svg",
  25150. extra: 237 / 225
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Normal",
  25157. height: math.unit(3 + 4 / 12, "feet"),
  25158. default: true
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(5 + 10 / 12, "feet"),
  25167. weight: math.unit(197, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/jabaro/front.svg",
  25171. extra: 225 / 216,
  25172. bottom: 5.06 / 230
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(5 + 10 / 12, "feet"),
  25177. weight: math.unit(197, "lb"),
  25178. name: "Back",
  25179. image: {
  25180. source: "./media/characters/jabaro/back.svg",
  25181. extra: 225 / 219,
  25182. bottom: 1.9 / 227
  25183. }
  25184. },
  25185. },
  25186. [
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(5 + 10 / 12, "feet"),
  25190. default: true
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(5 + 8 / 12, "feet"),
  25199. weight: math.unit(139, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/risa/front.svg",
  25203. extra: 270 / 260,
  25204. bottom: 11.2 / 282
  25205. }
  25206. },
  25207. back: {
  25208. height: math.unit(5 + 8 / 12, "feet"),
  25209. weight: math.unit(139, "lb"),
  25210. name: "Back",
  25211. image: {
  25212. source: "./media/characters/risa/back.svg",
  25213. extra: 264 / 255,
  25214. bottom: 4 / 268
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(5 + 8 / 12, "feet"),
  25222. default: true
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25228. {
  25229. front: {
  25230. height: math.unit(2 + 11 / 12, "feet"),
  25231. weight: math.unit(30, "lb"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/weatley/front.svg",
  25235. bottom: 10.7 / 414,
  25236. extra: 403.5 / 362
  25237. }
  25238. },
  25239. back: {
  25240. height: math.unit(2 + 11 / 12, "feet"),
  25241. weight: math.unit(30, "lb"),
  25242. name: "Back",
  25243. image: {
  25244. source: "./media/characters/weatley/back.svg",
  25245. bottom: 10.7 / 414,
  25246. extra: 403.5 / 362
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(2 + 11 / 12, "feet"),
  25254. default: true
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25260. {
  25261. front: {
  25262. height: math.unit(5 + 2 / 12, "feet"),
  25263. weight: math.unit(50, "kg"),
  25264. name: "Front",
  25265. image: {
  25266. source: "./media/characters/mercury-crescent/front.svg",
  25267. extra: 1088 / 1033,
  25268. bottom: 18.9 / 1109
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Normal",
  25275. height: math.unit(5 + 2 / 12, "feet"),
  25276. default: true
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25282. {
  25283. front: {
  25284. height: math.unit(2, "feet"),
  25285. weight: math.unit(15, "kg"),
  25286. name: "Front",
  25287. image: {
  25288. source: "./media/characters/diamond-jones/front.svg",
  25289. bottom: 16 / 568
  25290. }
  25291. },
  25292. },
  25293. [
  25294. {
  25295. name: "Normal",
  25296. height: math.unit(2, "feet"),
  25297. default: true
  25298. },
  25299. ]
  25300. ))
  25301. characterMakers.push(() => makeCharacter(
  25302. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25303. {
  25304. front: {
  25305. height: math.unit(3, "feet"),
  25306. weight: math.unit(30, "kg"),
  25307. name: "Front",
  25308. image: {
  25309. source: "./media/characters/sweet-bit/front.svg",
  25310. extra: 675 / 567,
  25311. bottom: 27.7 / 703
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Normal",
  25318. height: math.unit(3, "feet"),
  25319. default: true
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25325. {
  25326. side: {
  25327. height: math.unit(9.178, "feet"),
  25328. weight: math.unit(500, "lb"),
  25329. name: "Side",
  25330. image: {
  25331. source: "./media/characters/umbrazen/side.svg",
  25332. extra: 1730 / 1473,
  25333. bottom: 34.6 / 1765
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Normal",
  25340. height: math.unit(9.178, "feet"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25347. {
  25348. front: {
  25349. height: math.unit(10, "feet"),
  25350. weight: math.unit(750, "lb"),
  25351. name: "Front",
  25352. image: {
  25353. source: "./media/characters/arlist/front.svg",
  25354. extra: 961 / 778,
  25355. bottom: 6.2 / 986
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(10, "feet"),
  25363. default: true
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25369. {
  25370. front: {
  25371. height: math.unit(5 + 1 / 12, "feet"),
  25372. weight: math.unit(110, "lb"),
  25373. name: "Front",
  25374. image: {
  25375. source: "./media/characters/aradel/front.svg",
  25376. extra: 324 / 303,
  25377. bottom: 3.6 / 329.4
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Normal",
  25384. height: math.unit(5 + 1 / 12, "feet"),
  25385. default: true
  25386. },
  25387. ]
  25388. ))
  25389. characterMakers.push(() => makeCharacter(
  25390. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25391. {
  25392. front: {
  25393. height: math.unit(3 + 8 / 12, "feet"),
  25394. weight: math.unit(50, "lb"),
  25395. name: "Front",
  25396. image: {
  25397. source: "./media/characters/serryn/front.svg",
  25398. extra: 1792 / 1656,
  25399. bottom: 43.5 / 1840
  25400. }
  25401. },
  25402. },
  25403. [
  25404. {
  25405. name: "Normal",
  25406. height: math.unit(3 + 8 / 12, "feet"),
  25407. default: true
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Xavier Thyme" },
  25413. {
  25414. front: {
  25415. height: math.unit(7 + 10 / 12, "feet"),
  25416. weight: math.unit(255, "lb"),
  25417. name: "Front",
  25418. image: {
  25419. source: "./media/characters/xavier-thyme/front.svg",
  25420. extra: 3733 / 3642,
  25421. bottom: 131 / 3869
  25422. }
  25423. },
  25424. frontRaven: {
  25425. height: math.unit(7 + 10 / 12, "feet"),
  25426. weight: math.unit(255, "lb"),
  25427. name: "Front (Raven)",
  25428. image: {
  25429. source: "./media/characters/xavier-thyme/front-raven.svg",
  25430. extra: 4385 / 3642,
  25431. bottom: 131 / 4517
  25432. }
  25433. },
  25434. },
  25435. [
  25436. {
  25437. name: "Normal",
  25438. height: math.unit(7 + 10 / 12, "feet"),
  25439. default: true
  25440. },
  25441. ]
  25442. ))
  25443. characterMakers.push(() => makeCharacter(
  25444. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25445. {
  25446. front: {
  25447. height: math.unit(1.6, "m"),
  25448. weight: math.unit(50, "kg"),
  25449. name: "Front",
  25450. image: {
  25451. source: "./media/characters/kiki/front.svg",
  25452. extra: 4682 / 3610,
  25453. bottom: 115 / 4777
  25454. }
  25455. },
  25456. },
  25457. [
  25458. {
  25459. name: "Normal",
  25460. height: math.unit(1.6, "meters"),
  25461. default: true
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(50, "m"),
  25470. weight: math.unit(500, "tonnes"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/ryoko/front.svg",
  25474. extra: 4632 / 3926,
  25475. bottom: 193 / 4823
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Normal",
  25482. height: math.unit(50, "meters"),
  25483. default: true
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25489. {
  25490. front: {
  25491. height: math.unit(30, "m"),
  25492. weight: math.unit(22, "tonnes"),
  25493. name: "Front",
  25494. image: {
  25495. source: "./media/characters/elio/front.svg",
  25496. extra: 4582 / 3720,
  25497. bottom: 236 / 4828
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Normal",
  25504. height: math.unit(30, "meters"),
  25505. default: true
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(6 + 3 / 12, "feet"),
  25514. weight: math.unit(120, "lb"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/azura/front.svg",
  25518. extra: 1149 / 1135,
  25519. bottom: 45 / 1194
  25520. }
  25521. },
  25522. frontClothed: {
  25523. height: math.unit(6 + 3 / 12, "feet"),
  25524. weight: math.unit(120, "lb"),
  25525. name: "Front (Clothed)",
  25526. image: {
  25527. source: "./media/characters/azura/front-clothed.svg",
  25528. extra: 1149 / 1135,
  25529. bottom: 45 / 1194
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Normal",
  25536. height: math.unit(6 + 3 / 12, "feet"),
  25537. default: true
  25538. },
  25539. {
  25540. name: "Macro",
  25541. height: math.unit(20 + 6 / 12, "feet")
  25542. },
  25543. {
  25544. name: "Megamacro",
  25545. height: math.unit(12, "miles")
  25546. },
  25547. {
  25548. name: "Gigamacro",
  25549. height: math.unit(10000, "miles")
  25550. },
  25551. {
  25552. name: "Teramacro",
  25553. height: math.unit(900000, "miles")
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25559. {
  25560. front: {
  25561. height: math.unit(12, "feet"),
  25562. weight: math.unit(1, "ton"),
  25563. capacity: math.unit(660000, "gallons"),
  25564. name: "Front",
  25565. image: {
  25566. source: "./media/characters/zeus/front.svg",
  25567. extra: 5005 / 4717,
  25568. bottom: 363 / 5388
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Normal",
  25575. height: math.unit(12, "feet")
  25576. },
  25577. {
  25578. name: "Preferred Size",
  25579. height: math.unit(0.5, "miles"),
  25580. default: true
  25581. },
  25582. {
  25583. name: "Giga Horse",
  25584. height: math.unit(300, "miles")
  25585. },
  25586. {
  25587. name: "Riding Planets",
  25588. height: math.unit(30, "megameters")
  25589. },
  25590. {
  25591. name: "Cosmic Giant",
  25592. height: math.unit(3, "zettameters")
  25593. },
  25594. {
  25595. name: "Breeding God",
  25596. height: math.unit(9.92e22, "yottameters")
  25597. },
  25598. ]
  25599. ))
  25600. characterMakers.push(() => makeCharacter(
  25601. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25602. {
  25603. side: {
  25604. height: math.unit(9, "feet"),
  25605. weight: math.unit(1500, "kg"),
  25606. name: "Side",
  25607. image: {
  25608. source: "./media/characters/fang/side.svg",
  25609. extra: 924 / 866,
  25610. bottom: 47.5 / 972.3
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Normal",
  25617. height: math.unit(9, "feet"),
  25618. default: true
  25619. },
  25620. {
  25621. name: "Macro",
  25622. height: math.unit(75 + 6 / 12, "feet")
  25623. },
  25624. {
  25625. name: "Teramacro",
  25626. height: math.unit(50000, "miles")
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(10, "feet"),
  25635. weight: math.unit(2, "tons"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/rekhit/front.svg",
  25639. extra: 2796 / 2590,
  25640. bottom: 225 / 3022
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Normal",
  25647. height: math.unit(10, "feet"),
  25648. default: true
  25649. },
  25650. {
  25651. name: "Macro",
  25652. height: math.unit(500, "feet")
  25653. },
  25654. ]
  25655. ))
  25656. characterMakers.push(() => makeCharacter(
  25657. { name: "Dahlia Verrick" },
  25658. {
  25659. front: {
  25660. height: math.unit(7 + 6.451 / 12, "feet"),
  25661. weight: math.unit(310, "lb"),
  25662. name: "Front",
  25663. image: {
  25664. source: "./media/characters/dahlia-verrick/front.svg",
  25665. extra: 1488 / 1365,
  25666. bottom: 6.2 / 1495
  25667. }
  25668. },
  25669. back: {
  25670. height: math.unit(7 + 6.451 / 12, "feet"),
  25671. weight: math.unit(310, "lb"),
  25672. name: "Back",
  25673. image: {
  25674. source: "./media/characters/dahlia-verrick/back.svg",
  25675. extra: 1472 / 1351,
  25676. bottom: 5.28 / 1477
  25677. }
  25678. },
  25679. frontBusiness: {
  25680. height: math.unit(7 + 6.451 / 12, "feet"),
  25681. weight: math.unit(200, "lb"),
  25682. name: "Front (Business)",
  25683. image: {
  25684. source: "./media/characters/dahlia-verrick/front-business.svg",
  25685. extra: 1478 / 1381,
  25686. bottom: 5.5 / 1484
  25687. }
  25688. },
  25689. frontCasual: {
  25690. height: math.unit(7 + 6.451 / 12, "feet"),
  25691. weight: math.unit(200, "lb"),
  25692. name: "Front (Casual)",
  25693. image: {
  25694. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25695. extra: 1478 / 1381,
  25696. bottom: 5.5 / 1484
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Travel-Sized",
  25703. height: math.unit(7.45, "inches")
  25704. },
  25705. {
  25706. name: "Normal",
  25707. height: math.unit(7 + 6.451 / 12, "feet"),
  25708. default: true
  25709. },
  25710. {
  25711. name: "Hitting the Town",
  25712. height: math.unit(37 + 8 / 12, "feet")
  25713. },
  25714. {
  25715. name: "Stomp in the Suburbs",
  25716. height: math.unit(964 + 9.728 / 12, "feet")
  25717. },
  25718. {
  25719. name: "Sit on the City",
  25720. height: math.unit(61747 + 10.592 / 12, "feet")
  25721. },
  25722. {
  25723. name: "Glomp the Globe",
  25724. height: math.unit(252919327 + 4.832 / 12, "feet")
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25730. {
  25731. front: {
  25732. height: math.unit(6 + 4 / 12, "feet"),
  25733. weight: math.unit(320, "lb"),
  25734. name: "Front",
  25735. image: {
  25736. source: "./media/characters/balina-mahigan/front.svg",
  25737. extra: 447 / 428,
  25738. bottom: 18 / 466
  25739. }
  25740. },
  25741. back: {
  25742. height: math.unit(6 + 4 / 12, "feet"),
  25743. weight: math.unit(320, "lb"),
  25744. name: "Back",
  25745. image: {
  25746. source: "./media/characters/balina-mahigan/back.svg",
  25747. extra: 445 / 428,
  25748. bottom: 4.07 / 448
  25749. }
  25750. },
  25751. arm: {
  25752. height: math.unit(1.88, "feet"),
  25753. name: "Arm",
  25754. image: {
  25755. source: "./media/characters/balina-mahigan/arm.svg"
  25756. }
  25757. },
  25758. backPort: {
  25759. height: math.unit(0.685, "feet"),
  25760. name: "Back Port",
  25761. image: {
  25762. source: "./media/characters/balina-mahigan/back-port.svg"
  25763. }
  25764. },
  25765. hoofpaw: {
  25766. height: math.unit(1.41, "feet"),
  25767. name: "Hoofpaw",
  25768. image: {
  25769. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25770. }
  25771. },
  25772. leftHandBack: {
  25773. height: math.unit(0.938, "feet"),
  25774. name: "Left Hand (Back)",
  25775. image: {
  25776. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25777. }
  25778. },
  25779. leftHandFront: {
  25780. height: math.unit(0.938, "feet"),
  25781. name: "Left Hand (Front)",
  25782. image: {
  25783. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25784. }
  25785. },
  25786. rightHandBack: {
  25787. height: math.unit(0.95, "feet"),
  25788. name: "Right Hand (Back)",
  25789. image: {
  25790. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25791. }
  25792. },
  25793. rightHandFront: {
  25794. height: math.unit(0.95, "feet"),
  25795. name: "Right Hand (Front)",
  25796. image: {
  25797. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25798. }
  25799. },
  25800. },
  25801. [
  25802. {
  25803. name: "Normal",
  25804. height: math.unit(6 + 4 / 12, "feet"),
  25805. default: true
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(6, "feet"),
  25814. weight: math.unit(320, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/balina-mejeri/front.svg",
  25818. extra: 517 / 488,
  25819. bottom: 44.2 / 561
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(6 + 4 / 12, "feet")
  25827. },
  25828. {
  25829. name: "Business",
  25830. height: math.unit(155, "feet"),
  25831. default: true
  25832. },
  25833. ]
  25834. ))
  25835. characterMakers.push(() => makeCharacter(
  25836. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25837. {
  25838. kneeling: {
  25839. height: math.unit(6 + 4 / 12, "feet"),
  25840. weight: math.unit(300 * 20, "lb"),
  25841. name: "Kneeling",
  25842. image: {
  25843. source: "./media/characters/balbarian/kneeling.svg",
  25844. extra: 922 / 862,
  25845. bottom: 42.4 / 965
  25846. }
  25847. },
  25848. },
  25849. [
  25850. {
  25851. name: "Normal",
  25852. height: math.unit(6 + 4 / 12, "feet")
  25853. },
  25854. {
  25855. name: "Treasured",
  25856. height: math.unit(18 + 9 / 12, "feet"),
  25857. default: true
  25858. },
  25859. {
  25860. name: "Macro",
  25861. height: math.unit(900, "feet")
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25867. {
  25868. front: {
  25869. height: math.unit(6 + 4 / 12, "feet"),
  25870. weight: math.unit(325, "lb"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/balina-amarini/front.svg",
  25874. extra: 415 / 403,
  25875. bottom: 19 / 433.4
  25876. }
  25877. },
  25878. back: {
  25879. height: math.unit(6 + 4 / 12, "feet"),
  25880. weight: math.unit(325, "lb"),
  25881. name: "Back",
  25882. image: {
  25883. source: "./media/characters/balina-amarini/back.svg",
  25884. extra: 415 / 403,
  25885. bottom: 13.5 / 432
  25886. }
  25887. },
  25888. overdrive: {
  25889. height: math.unit(6 + 4 / 12, "feet"),
  25890. weight: math.unit(400, "lb"),
  25891. name: "Overdrive",
  25892. image: {
  25893. source: "./media/characters/balina-amarini/overdrive.svg",
  25894. extra: 269 / 259,
  25895. bottom: 12 / 282
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Boom",
  25902. height: math.unit(9 + 10 / 12, "feet"),
  25903. default: true
  25904. },
  25905. {
  25906. name: "Macro",
  25907. height: math.unit(280, "feet")
  25908. },
  25909. ]
  25910. ))
  25911. characterMakers.push(() => makeCharacter(
  25912. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25913. {
  25914. goddess: {
  25915. height: math.unit(600, "feet"),
  25916. weight: math.unit(2000000, "tons"),
  25917. name: "Goddess",
  25918. image: {
  25919. source: "./media/characters/lady-kubwa/goddess.svg",
  25920. extra: 1240.5 / 1223,
  25921. bottom: 22 / 1263
  25922. }
  25923. },
  25924. goddesser: {
  25925. height: math.unit(900, "feet"),
  25926. weight: math.unit(20000000, "lb"),
  25927. name: "Goddess-er",
  25928. image: {
  25929. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25930. extra: 899 / 888,
  25931. bottom: 12.6 / 912
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Macro",
  25938. height: math.unit(600, "feet"),
  25939. default: true
  25940. },
  25941. {
  25942. name: "Megamacro",
  25943. height: math.unit(250, "miles")
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(7 + 7 / 12, "feet"),
  25952. weight: math.unit(250, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/tala-grovehorn/front.svg",
  25956. extra: 2636 / 2525,
  25957. bottom: 147 / 2781
  25958. }
  25959. },
  25960. back: {
  25961. height: math.unit(7 + 7 / 12, "feet"),
  25962. weight: math.unit(250, "lb"),
  25963. name: "Back",
  25964. image: {
  25965. source: "./media/characters/tala-grovehorn/back.svg",
  25966. extra: 2635 / 2539,
  25967. bottom: 100 / 2732.8
  25968. }
  25969. },
  25970. mouth: {
  25971. height: math.unit(1.15, "feet"),
  25972. name: "Mouth",
  25973. image: {
  25974. source: "./media/characters/tala-grovehorn/mouth.svg"
  25975. }
  25976. },
  25977. dick: {
  25978. height: math.unit(2.36, "feet"),
  25979. name: "Dick",
  25980. image: {
  25981. source: "./media/characters/tala-grovehorn/dick.svg"
  25982. }
  25983. },
  25984. slit: {
  25985. height: math.unit(0.61, "feet"),
  25986. name: "Slit",
  25987. image: {
  25988. source: "./media/characters/tala-grovehorn/slit.svg"
  25989. }
  25990. },
  25991. },
  25992. [
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(7 + 7 / 12, "feet"),
  26000. weight: math.unit(225, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/epona/front.svg",
  26004. extra: 2445 / 2290,
  26005. bottom: 251 / 2696
  26006. }
  26007. },
  26008. back: {
  26009. height: math.unit(7 + 7 / 12, "feet"),
  26010. weight: math.unit(225, "lb"),
  26011. name: "Back",
  26012. image: {
  26013. source: "./media/characters/epona/back.svg",
  26014. extra: 2546 / 2408,
  26015. bottom: 44 / 2589
  26016. }
  26017. },
  26018. genitals: {
  26019. height: math.unit(1.5, "feet"),
  26020. name: "Genitals",
  26021. image: {
  26022. source: "./media/characters/epona/genitals.svg"
  26023. }
  26024. },
  26025. },
  26026. [
  26027. {
  26028. name: "Normal",
  26029. height: math.unit(7 + 7 / 12, "feet"),
  26030. default: true
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26036. {
  26037. front: {
  26038. height: math.unit(7, "feet"),
  26039. weight: math.unit(518, "lb"),
  26040. name: "Front",
  26041. image: {
  26042. source: "./media/characters/avia-bloodbourn/front.svg",
  26043. extra: 1466 / 1350,
  26044. bottom: 65 / 1527
  26045. }
  26046. },
  26047. },
  26048. [
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(9.35, "feet"),
  26056. weight: math.unit(600, "lb"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/amera/front.svg",
  26060. extra: 891 / 818,
  26061. bottom: 30 / 922.7
  26062. }
  26063. },
  26064. back: {
  26065. height: math.unit(9.35, "feet"),
  26066. weight: math.unit(600, "lb"),
  26067. name: "Back",
  26068. image: {
  26069. source: "./media/characters/amera/back.svg",
  26070. extra: 876 / 824,
  26071. bottom: 6.8 / 884
  26072. }
  26073. },
  26074. dick: {
  26075. height: math.unit(2.14, "feet"),
  26076. name: "Dick",
  26077. image: {
  26078. source: "./media/characters/amera/dick.svg"
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Normal",
  26085. height: math.unit(9.35, "feet"),
  26086. default: true
  26087. },
  26088. ]
  26089. ))
  26090. characterMakers.push(() => makeCharacter(
  26091. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26092. {
  26093. kneeling: {
  26094. height: math.unit(3 + 4 / 12, "feet"),
  26095. weight: math.unit(90, "lb"),
  26096. name: "Kneeling",
  26097. image: {
  26098. source: "./media/characters/rosewen/kneeling.svg",
  26099. extra: 1835 / 1571,
  26100. bottom: 27.7 / 1862
  26101. }
  26102. },
  26103. },
  26104. [
  26105. {
  26106. name: "Normal",
  26107. height: math.unit(3 + 4 / 12, "feet"),
  26108. default: true
  26109. },
  26110. ]
  26111. ))
  26112. characterMakers.push(() => makeCharacter(
  26113. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26114. {
  26115. front: {
  26116. height: math.unit(5 + 10 / 12, "feet"),
  26117. weight: math.unit(200, "lb"),
  26118. name: "Front",
  26119. image: {
  26120. source: "./media/characters/sabah/front.svg",
  26121. extra: 849 / 763,
  26122. bottom: 33.9 / 881
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Normal",
  26129. height: math.unit(5 + 10 / 12, "feet"),
  26130. default: true
  26131. },
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26136. {
  26137. front: {
  26138. height: math.unit(3 + 5 / 12, "feet"),
  26139. weight: math.unit(40, "kg"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/purple-flame/front.svg",
  26143. extra: 1577 / 1412,
  26144. bottom: 97 / 1694
  26145. }
  26146. },
  26147. frontDressed: {
  26148. height: math.unit(3 + 5 / 12, "feet"),
  26149. weight: math.unit(40, "kg"),
  26150. name: "Front (Dressed)",
  26151. image: {
  26152. source: "./media/characters/purple-flame/front-dressed.svg",
  26153. extra: 1577 / 1412,
  26154. bottom: 97 / 1694
  26155. }
  26156. },
  26157. headphones: {
  26158. height: math.unit(0.85, "feet"),
  26159. name: "Headphones",
  26160. image: {
  26161. source: "./media/characters/purple-flame/headphones.svg"
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Really Small",
  26168. height: math.unit(5, "cm")
  26169. },
  26170. {
  26171. name: "Micro",
  26172. height: math.unit(1 + 5 / 12, "feet")
  26173. },
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(3 + 5 / 12, "feet"),
  26177. default: true
  26178. },
  26179. {
  26180. name: "Minimacro",
  26181. height: math.unit(125, "feet")
  26182. },
  26183. {
  26184. name: "Macro",
  26185. height: math.unit(0.5, "miles")
  26186. },
  26187. {
  26188. name: "Megamacro",
  26189. height: math.unit(50, "miles")
  26190. },
  26191. {
  26192. name: "Gigantic",
  26193. height: math.unit(750, "miles")
  26194. },
  26195. {
  26196. name: "Planetary",
  26197. height: math.unit(15000, "miles")
  26198. },
  26199. ]
  26200. ))
  26201. characterMakers.push(() => makeCharacter(
  26202. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26203. {
  26204. front: {
  26205. height: math.unit(14, "feet"),
  26206. weight: math.unit(959, "lb"),
  26207. name: "Front",
  26208. image: {
  26209. source: "./media/characters/arsenal/front.svg",
  26210. extra: 2357 / 2157,
  26211. bottom: 93 / 2458
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(14, "feet"),
  26219. default: true
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(6, "feet"),
  26228. weight: math.unit(150, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/adira/front.svg",
  26232. extra: 1078 / 1029,
  26233. bottom: 87 / 1166
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Micro",
  26240. height: math.unit(4, "inches"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Macro",
  26245. height: math.unit(50, "feet")
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(16, "feet"),
  26254. weight: math.unit(1000, "lb"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/grim/front.svg",
  26258. extra: 622 / 614,
  26259. bottom: 18.1 / 642
  26260. }
  26261. },
  26262. back: {
  26263. height: math.unit(16, "feet"),
  26264. weight: math.unit(1000, "lb"),
  26265. name: "Back",
  26266. image: {
  26267. source: "./media/characters/grim/back.svg",
  26268. extra: 610.6 / 602,
  26269. bottom: 40.8 / 652
  26270. }
  26271. },
  26272. hunched: {
  26273. height: math.unit(9.75, "feet"),
  26274. weight: math.unit(1000, "lb"),
  26275. name: "Hunched",
  26276. image: {
  26277. source: "./media/characters/grim/hunched.svg",
  26278. extra: 304 / 297,
  26279. bottom: 35.4 / 394
  26280. }
  26281. },
  26282. },
  26283. [
  26284. {
  26285. name: "Normal",
  26286. height: math.unit(16, "feet"),
  26287. default: true
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(2.3, "meters"),
  26296. weight: math.unit(300, "lb"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/sinja/front-sfw.svg",
  26300. extra: 1393 / 1294,
  26301. bottom: 70 / 1463
  26302. }
  26303. },
  26304. frontNsfw: {
  26305. height: math.unit(2.3, "meters"),
  26306. weight: math.unit(300, "lb"),
  26307. name: "Front (NSFW)",
  26308. image: {
  26309. source: "./media/characters/sinja/front-nsfw.svg",
  26310. extra: 1393 / 1294,
  26311. bottom: 70 / 1463
  26312. }
  26313. },
  26314. back: {
  26315. height: math.unit(2.3, "meters"),
  26316. weight: math.unit(300, "lb"),
  26317. name: "Back",
  26318. image: {
  26319. source: "./media/characters/sinja/back.svg",
  26320. extra: 1393 / 1294,
  26321. bottom: 70 / 1463
  26322. }
  26323. },
  26324. head: {
  26325. height: math.unit(1.771, "feet"),
  26326. name: "Head",
  26327. image: {
  26328. source: "./media/characters/sinja/head.svg"
  26329. }
  26330. },
  26331. slit: {
  26332. height: math.unit(0.8, "feet"),
  26333. name: "Slit",
  26334. image: {
  26335. source: "./media/characters/sinja/slit.svg"
  26336. }
  26337. },
  26338. },
  26339. [
  26340. {
  26341. name: "Normal",
  26342. height: math.unit(2.3, "meters")
  26343. },
  26344. {
  26345. name: "Macro",
  26346. height: math.unit(91, "meters"),
  26347. default: true
  26348. },
  26349. {
  26350. name: "Megamacro",
  26351. height: math.unit(91440, "meters")
  26352. },
  26353. {
  26354. name: "Gigamacro",
  26355. height: math.unit(60960000, "meters")
  26356. },
  26357. {
  26358. name: "Teramacro",
  26359. height: math.unit(9144000000, "meters")
  26360. },
  26361. ]
  26362. ))
  26363. characterMakers.push(() => makeCharacter(
  26364. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26365. {
  26366. front: {
  26367. height: math.unit(1.7, "meters"),
  26368. weight: math.unit(130, "lb"),
  26369. name: "Front",
  26370. image: {
  26371. source: "./media/characters/kyu/front.svg",
  26372. extra: 415 / 395,
  26373. bottom: 5 / 420
  26374. }
  26375. },
  26376. head: {
  26377. height: math.unit(1.75, "feet"),
  26378. name: "Head",
  26379. image: {
  26380. source: "./media/characters/kyu/head.svg"
  26381. }
  26382. },
  26383. foot: {
  26384. height: math.unit(0.81, "feet"),
  26385. name: "Foot",
  26386. image: {
  26387. source: "./media/characters/kyu/foot.svg"
  26388. }
  26389. },
  26390. },
  26391. [
  26392. {
  26393. name: "Normal",
  26394. height: math.unit(1.7, "meters")
  26395. },
  26396. {
  26397. name: "Macro",
  26398. height: math.unit(131, "feet"),
  26399. default: true
  26400. },
  26401. {
  26402. name: "Megamacro",
  26403. height: math.unit(91440, "meters")
  26404. },
  26405. {
  26406. name: "Gigamacro",
  26407. height: math.unit(60960000, "meters")
  26408. },
  26409. {
  26410. name: "Teramacro",
  26411. height: math.unit(9144000000, "meters")
  26412. },
  26413. ]
  26414. ))
  26415. characterMakers.push(() => makeCharacter(
  26416. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26417. {
  26418. front: {
  26419. height: math.unit(7 + 1 / 12, "feet"),
  26420. weight: math.unit(250, "lb"),
  26421. name: "Front",
  26422. image: {
  26423. source: "./media/characters/joey/front.svg",
  26424. extra: 1791 / 1537,
  26425. bottom: 28 / 1816
  26426. }
  26427. },
  26428. },
  26429. [
  26430. {
  26431. name: "Micro",
  26432. height: math.unit(3, "inches")
  26433. },
  26434. {
  26435. name: "Normal",
  26436. height: math.unit(7 + 1 / 12, "feet"),
  26437. default: true
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(165, "cm"),
  26446. weight: math.unit(140, "lb"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/sam-evans/front.svg",
  26450. extra: 3417 / 3230,
  26451. bottom: 41.3 / 3417
  26452. }
  26453. },
  26454. frontSixTails: {
  26455. height: math.unit(165, "cm"),
  26456. weight: math.unit(140, "lb"),
  26457. name: "Front-six-tails",
  26458. image: {
  26459. source: "./media/characters/sam-evans/front-six-tails.svg",
  26460. extra: 3417 / 3230,
  26461. bottom: 41.3 / 3417
  26462. }
  26463. },
  26464. back: {
  26465. height: math.unit(165, "cm"),
  26466. weight: math.unit(140, "lb"),
  26467. name: "Back",
  26468. image: {
  26469. source: "./media/characters/sam-evans/back.svg",
  26470. extra: 3227 / 3032,
  26471. bottom: 6.8 / 3234
  26472. }
  26473. },
  26474. face: {
  26475. height: math.unit(0.68, "feet"),
  26476. name: "Face",
  26477. image: {
  26478. source: "./media/characters/sam-evans/face.svg"
  26479. }
  26480. },
  26481. },
  26482. [
  26483. {
  26484. name: "Normal",
  26485. height: math.unit(165, "cm"),
  26486. default: true
  26487. },
  26488. {
  26489. name: "Macro",
  26490. height: math.unit(100, "meters")
  26491. },
  26492. {
  26493. name: "Macro+",
  26494. height: math.unit(800, "meters")
  26495. },
  26496. {
  26497. name: "Macro++",
  26498. height: math.unit(3, "km")
  26499. },
  26500. {
  26501. name: "Macro+++",
  26502. height: math.unit(30, "km")
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26508. {
  26509. front: {
  26510. height: math.unit(10, "feet"),
  26511. weight: math.unit(750, "lb"),
  26512. name: "Front",
  26513. image: {
  26514. source: "./media/characters/juliet-a/front.svg",
  26515. extra: 1766 / 1720,
  26516. bottom: 43 / 1809
  26517. }
  26518. },
  26519. back: {
  26520. height: math.unit(10, "feet"),
  26521. weight: math.unit(750, "lb"),
  26522. name: "Back",
  26523. image: {
  26524. source: "./media/characters/juliet-a/back.svg",
  26525. extra: 1781 / 1734,
  26526. bottom: 35 / 1810,
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(10, "feet"),
  26534. default: true
  26535. },
  26536. {
  26537. name: "Dragon Form",
  26538. height: math.unit(250, "feet")
  26539. },
  26540. {
  26541. name: "Macro",
  26542. height: math.unit(1000, "feet")
  26543. },
  26544. {
  26545. name: "Megamacro",
  26546. height: math.unit(10000, "feet")
  26547. }
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26552. {
  26553. regular: {
  26554. height: math.unit(7 + 3 / 12, "feet"),
  26555. weight: math.unit(260, "lb"),
  26556. name: "Regular",
  26557. image: {
  26558. source: "./media/characters/wild/regular.svg",
  26559. extra: 97.45 / 92,
  26560. bottom: 6.8 / 104.3
  26561. }
  26562. },
  26563. biggums: {
  26564. height: math.unit(8 + 6 / 12, "feet"),
  26565. weight: math.unit(425, "lb"),
  26566. name: "Biggums",
  26567. image: {
  26568. source: "./media/characters/wild/biggums.svg",
  26569. extra: 97.45 / 92,
  26570. bottom: 7.5 / 132.34
  26571. }
  26572. },
  26573. mawRegular: {
  26574. height: math.unit(1.24, "feet"),
  26575. name: "Maw (Regular)",
  26576. image: {
  26577. source: "./media/characters/wild/maw.svg"
  26578. }
  26579. },
  26580. mawBiggums: {
  26581. height: math.unit(1.47, "feet"),
  26582. name: "Maw (Biggums)",
  26583. image: {
  26584. source: "./media/characters/wild/maw.svg"
  26585. }
  26586. },
  26587. },
  26588. [
  26589. {
  26590. name: "Normal",
  26591. height: math.unit(7 + 3 / 12, "feet"),
  26592. default: true
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26598. {
  26599. front: {
  26600. height: math.unit(2.5, "meters"),
  26601. weight: math.unit(200, "kg"),
  26602. name: "Front",
  26603. image: {
  26604. source: "./media/characters/vidar/front.svg",
  26605. extra: 2994 / 2795,
  26606. bottom: 56 / 3061
  26607. }
  26608. },
  26609. back: {
  26610. height: math.unit(2.5, "meters"),
  26611. weight: math.unit(200, "kg"),
  26612. name: "Back",
  26613. image: {
  26614. source: "./media/characters/vidar/back.svg",
  26615. extra: 3131 / 2928,
  26616. bottom: 13.5 / 3141.5
  26617. }
  26618. },
  26619. feral: {
  26620. height: math.unit(2.5, "meters"),
  26621. weight: math.unit(2000, "kg"),
  26622. name: "Feral",
  26623. image: {
  26624. source: "./media/characters/vidar/feral.svg",
  26625. extra: 2790 / 1765,
  26626. bottom: 6 / 2796
  26627. }
  26628. },
  26629. },
  26630. [
  26631. {
  26632. name: "Normal",
  26633. height: math.unit(2.5, "meters"),
  26634. default: true
  26635. },
  26636. {
  26637. name: "Macro",
  26638. height: math.unit(100, "meters")
  26639. },
  26640. ]
  26641. ))
  26642. characterMakers.push(() => makeCharacter(
  26643. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26644. {
  26645. front: {
  26646. height: math.unit(5 + 9 / 12, "feet"),
  26647. weight: math.unit(120, "lb"),
  26648. name: "Front",
  26649. image: {
  26650. source: "./media/characters/ash/front.svg",
  26651. extra: 2189 / 1961,
  26652. bottom: 5.2 / 2194
  26653. }
  26654. },
  26655. },
  26656. [
  26657. {
  26658. name: "Normal",
  26659. height: math.unit(5 + 9 / 12, "feet"),
  26660. default: true
  26661. },
  26662. ]
  26663. ))
  26664. characterMakers.push(() => makeCharacter(
  26665. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26666. {
  26667. front: {
  26668. height: math.unit(9, "feet"),
  26669. weight: math.unit(10000, "lb"),
  26670. name: "Front",
  26671. image: {
  26672. source: "./media/characters/gygabite/front.svg",
  26673. bottom: 31.7 / 537.8,
  26674. extra: 505 / 370
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(9, "feet"),
  26682. default: true
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26688. {
  26689. front: {
  26690. height: math.unit(12, "feet"),
  26691. weight: math.unit(35000, "lb"),
  26692. name: "Front",
  26693. image: {
  26694. source: "./media/characters/p0tat0/front.svg",
  26695. extra: 1065 / 921,
  26696. bottom: 55.7 / 1121.25
  26697. }
  26698. },
  26699. },
  26700. [
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(12, "feet"),
  26704. default: true
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26710. {
  26711. side: {
  26712. height: math.unit(6.5, "feet"),
  26713. weight: math.unit(800, "lb"),
  26714. name: "Side",
  26715. image: {
  26716. source: "./media/characters/dusk/side.svg",
  26717. extra: 615 / 373,
  26718. bottom: 53 / 664
  26719. }
  26720. },
  26721. sitting: {
  26722. height: math.unit(7, "feet"),
  26723. weight: math.unit(800, "lb"),
  26724. name: "Sitting",
  26725. image: {
  26726. source: "./media/characters/dusk/sitting.svg",
  26727. extra: 753 / 425,
  26728. bottom: 33 / 774
  26729. }
  26730. },
  26731. head: {
  26732. height: math.unit(6.1, "feet"),
  26733. name: "Head",
  26734. image: {
  26735. source: "./media/characters/dusk/head.svg"
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Normal",
  26742. height: math.unit(7, "feet"),
  26743. default: true
  26744. },
  26745. ]
  26746. ))
  26747. characterMakers.push(() => makeCharacter(
  26748. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26749. {
  26750. front: {
  26751. height: math.unit(15, "feet"),
  26752. weight: math.unit(7000, "lb"),
  26753. name: "Front",
  26754. image: {
  26755. source: "./media/characters/jay-direwolf/front.svg",
  26756. extra: 1810 / 1732,
  26757. bottom: 66 / 1892
  26758. }
  26759. },
  26760. },
  26761. [
  26762. {
  26763. name: "Normal",
  26764. height: math.unit(15, "feet"),
  26765. default: true
  26766. },
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26771. {
  26772. front: {
  26773. height: math.unit(4 + 9 / 12, "feet"),
  26774. weight: math.unit(130, "lb"),
  26775. name: "Front",
  26776. image: {
  26777. source: "./media/characters/anchovie/front.svg",
  26778. extra: 382 / 350,
  26779. bottom: 25 / 409
  26780. }
  26781. },
  26782. back: {
  26783. height: math.unit(4 + 9 / 12, "feet"),
  26784. weight: math.unit(130, "lb"),
  26785. name: "Back",
  26786. image: {
  26787. source: "./media/characters/anchovie/back.svg",
  26788. extra: 385 / 352,
  26789. bottom: 16.6 / 402
  26790. }
  26791. },
  26792. frontDressed: {
  26793. height: math.unit(4 + 9 / 12, "feet"),
  26794. weight: math.unit(130, "lb"),
  26795. name: "Front (Dressed)",
  26796. image: {
  26797. source: "./media/characters/anchovie/front-dressed.svg",
  26798. extra: 382 / 350,
  26799. bottom: 25 / 409
  26800. }
  26801. },
  26802. backDressed: {
  26803. height: math.unit(4 + 9 / 12, "feet"),
  26804. weight: math.unit(130, "lb"),
  26805. name: "Back (Dressed)",
  26806. image: {
  26807. source: "./media/characters/anchovie/back-dressed.svg",
  26808. extra: 385 / 352,
  26809. bottom: 16.6 / 402
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Micro",
  26816. height: math.unit(6.4, "inches")
  26817. },
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(4 + 9 / 12, "feet"),
  26821. default: true
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(2, "meters"),
  26830. weight: math.unit(180, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/acidrenamon/front.svg",
  26834. extra: 987 / 890,
  26835. bottom: 22.8 / 1009
  26836. }
  26837. },
  26838. back: {
  26839. height: math.unit(2, "meters"),
  26840. weight: math.unit(180, "lb"),
  26841. name: "Back",
  26842. image: {
  26843. source: "./media/characters/acidrenamon/back.svg",
  26844. extra: 983 / 891,
  26845. bottom: 8.4 / 992
  26846. }
  26847. },
  26848. head: {
  26849. height: math.unit(1.92, "feet"),
  26850. name: "Head",
  26851. image: {
  26852. source: "./media/characters/acidrenamon/head.svg"
  26853. }
  26854. },
  26855. rump: {
  26856. height: math.unit(1.72, "feet"),
  26857. name: "Rump",
  26858. image: {
  26859. source: "./media/characters/acidrenamon/rump.svg"
  26860. }
  26861. },
  26862. tail: {
  26863. height: math.unit(4.2, "feet"),
  26864. name: "Tail",
  26865. image: {
  26866. source: "./media/characters/acidrenamon/tail.svg"
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(2, "meters"),
  26874. default: true
  26875. },
  26876. {
  26877. name: "Minimacro",
  26878. height: math.unit(7, "meters")
  26879. },
  26880. {
  26881. name: "Macro",
  26882. height: math.unit(200, "meters")
  26883. },
  26884. {
  26885. name: "Gigamacro",
  26886. height: math.unit(0.2, "earths")
  26887. },
  26888. ]
  26889. ))
  26890. characterMakers.push(() => makeCharacter(
  26891. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26892. {
  26893. front: {
  26894. height: math.unit(6, "feet"),
  26895. weight: math.unit(150, "lb"),
  26896. name: "Front",
  26897. image: {
  26898. source: "./media/characters/kenzie-lee/front.svg",
  26899. extra: 1525 / 1465,
  26900. bottom: 45 / 1570
  26901. }
  26902. },
  26903. side: {
  26904. height: math.unit(6, "feet"),
  26905. weight: math.unit(150, "lb"),
  26906. name: "Side",
  26907. image: {
  26908. source: "./media/characters/kenzie-lee/side.svg",
  26909. extra: 5505 / 5383,
  26910. bottom: 60 / 5573
  26911. }
  26912. },
  26913. paw: {
  26914. height: math.unit(0.57, "feet"),
  26915. name: "Paw",
  26916. image: {
  26917. source: "./media/characters/kenzie-lee/paw.svg"
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(152, "feet"),
  26925. default: true
  26926. },
  26927. {
  26928. name: "Megamacro",
  26929. height: math.unit(7, "miles")
  26930. },
  26931. {
  26932. name: "Gigamacro",
  26933. height: math.unit(8000, "miles")
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26939. {
  26940. side: {
  26941. height: math.unit(6, "feet"),
  26942. weight: math.unit(150, "lb"),
  26943. name: "Side",
  26944. image: {
  26945. source: "./media/characters/withers/side.svg",
  26946. extra: 1830 / 1728,
  26947. bottom: 96 / 1927
  26948. }
  26949. },
  26950. front: {
  26951. height: math.unit(6, "feet"),
  26952. weight: math.unit(150, "lb"),
  26953. name: "Front",
  26954. image: {
  26955. source: "./media/characters/withers/front.svg",
  26956. extra: 1514 / 1438,
  26957. bottom: 118 / 1632
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Macro",
  26964. height: math.unit(168, "feet"),
  26965. default: true
  26966. },
  26967. {
  26968. name: "Megamacro",
  26969. height: math.unit(15, "miles")
  26970. }
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(6 + 7 / 12, "feet"),
  26978. weight: math.unit(250, "lb"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/nemoskii/front.svg",
  26982. extra: 2270 / 1734,
  26983. bottom: 86 / 2354
  26984. }
  26985. },
  26986. back: {
  26987. height: math.unit(6 + 7 / 12, "feet"),
  26988. weight: math.unit(250, "lb"),
  26989. name: "Back",
  26990. image: {
  26991. source: "./media/characters/nemoskii/back.svg",
  26992. extra: 1845 / 1788,
  26993. bottom: 10.5 / 1852
  26994. }
  26995. },
  26996. head: {
  26997. height: math.unit(1.31, "feet"),
  26998. name: "Head",
  26999. image: {
  27000. source: "./media/characters/nemoskii/head.svg"
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Micro",
  27007. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27008. },
  27009. {
  27010. name: "Normal",
  27011. height: math.unit(6 + 7 / 12, "feet"),
  27012. default: true
  27013. },
  27014. {
  27015. name: "Macro",
  27016. height: math.unit((6 + 7 / 12) * 150, "feet")
  27017. },
  27018. {
  27019. name: "Macro+",
  27020. height: math.unit((6 + 7 / 12) * 500, "feet")
  27021. },
  27022. {
  27023. name: "Megamacro",
  27024. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27025. },
  27026. ]
  27027. ))
  27028. characterMakers.push(() => makeCharacter(
  27029. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27030. {
  27031. front: {
  27032. height: math.unit(1, "mile"),
  27033. weight: math.unit(265261.9, "lb"),
  27034. name: "Front",
  27035. image: {
  27036. source: "./media/characters/shui/front.svg",
  27037. extra: 1633 / 1564,
  27038. bottom: 91.5 / 1726
  27039. }
  27040. },
  27041. },
  27042. [
  27043. {
  27044. name: "Macro",
  27045. height: math.unit(1, "mile"),
  27046. default: true
  27047. },
  27048. ]
  27049. ))
  27050. characterMakers.push(() => makeCharacter(
  27051. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27052. {
  27053. front: {
  27054. height: math.unit(12 + 6 / 12, "feet"),
  27055. weight: math.unit(1342, "lb"),
  27056. name: "Front",
  27057. image: {
  27058. source: "./media/characters/arokh-takakura/front.svg",
  27059. extra: 1089 / 1043,
  27060. bottom: 77.4 / 1176.7
  27061. }
  27062. },
  27063. back: {
  27064. height: math.unit(12 + 6 / 12, "feet"),
  27065. weight: math.unit(1342, "lb"),
  27066. name: "Back",
  27067. image: {
  27068. source: "./media/characters/arokh-takakura/back.svg",
  27069. extra: 1046 / 1019,
  27070. bottom: 102 / 1150
  27071. }
  27072. },
  27073. },
  27074. [
  27075. {
  27076. name: "Big",
  27077. height: math.unit(12 + 6 / 12, "feet"),
  27078. default: true
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27084. {
  27085. front: {
  27086. height: math.unit(5 + 6 / 12, "feet"),
  27087. weight: math.unit(150, "lb"),
  27088. name: "Front",
  27089. image: {
  27090. source: "./media/characters/theo/front.svg",
  27091. extra: 1184 / 1131,
  27092. bottom: 7.4 / 1191
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Micro",
  27099. height: math.unit(5, "inches")
  27100. },
  27101. {
  27102. name: "Normal",
  27103. height: math.unit(5 + 6 / 12, "feet"),
  27104. default: true
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27110. {
  27111. front: {
  27112. height: math.unit(5 + 9 / 12, "feet"),
  27113. weight: math.unit(130, "lb"),
  27114. name: "Front",
  27115. image: {
  27116. source: "./media/characters/cecelia-swift/front.svg",
  27117. extra: 502 / 484,
  27118. bottom: 23 / 523
  27119. }
  27120. },
  27121. back: {
  27122. height: math.unit(5 + 9 / 12, "feet"),
  27123. weight: math.unit(130, "lb"),
  27124. name: "Back",
  27125. image: {
  27126. source: "./media/characters/cecelia-swift/back.svg",
  27127. extra: 499 / 485,
  27128. bottom: 12 / 511
  27129. }
  27130. },
  27131. head: {
  27132. height: math.unit(0.90, "feet"),
  27133. name: "Head",
  27134. image: {
  27135. source: "./media/characters/cecelia-swift/head.svg"
  27136. }
  27137. },
  27138. rump: {
  27139. height: math.unit(1.75, "feet"),
  27140. name: "Rump",
  27141. image: {
  27142. source: "./media/characters/cecelia-swift/rump.svg"
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(5 + 9 / 12, "feet"),
  27150. default: true
  27151. },
  27152. {
  27153. name: "Big",
  27154. height: math.unit(50, "feet")
  27155. },
  27156. {
  27157. name: "Macro",
  27158. height: math.unit(100, "feet")
  27159. },
  27160. {
  27161. name: "Macro+",
  27162. height: math.unit(500, "feet")
  27163. },
  27164. {
  27165. name: "Macro++",
  27166. height: math.unit(1000, "feet")
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27172. {
  27173. front: {
  27174. height: math.unit(6, "feet"),
  27175. weight: math.unit(150, "lb"),
  27176. name: "Front",
  27177. image: {
  27178. source: "./media/characters/kaunan/front.svg",
  27179. extra: 2890 / 2523,
  27180. bottom: 49 / 2939
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Macro",
  27187. height: math.unit(150, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(175, "cm"),
  27197. weight: math.unit(60, "kg"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/fei/front.svg",
  27201. extra: 2581 / 2400,
  27202. bottom: 82.2 / 2663
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Mortal",
  27209. height: math.unit(175, "cm")
  27210. },
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(3500, "m"),
  27214. default: true
  27215. },
  27216. {
  27217. name: "Stroll",
  27218. height: math.unit(17.5, "km")
  27219. },
  27220. {
  27221. name: "Showoff",
  27222. height: math.unit(175, "km")
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(7, "feet"),
  27231. weight: math.unit(1000, "kg"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/edrax/front.svg",
  27235. extra: 2838 / 2550,
  27236. bottom: 130 / 2968
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Small",
  27243. height: math.unit(7, "feet")
  27244. },
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(1500, "meters")
  27248. },
  27249. {
  27250. name: "Mega",
  27251. height: math.unit(12000000, "km"),
  27252. default: true
  27253. },
  27254. {
  27255. name: "Megamacro",
  27256. height: math.unit(10600000, "lightyears")
  27257. },
  27258. {
  27259. name: "Hypermacro",
  27260. height: math.unit(256, "yottameters")
  27261. },
  27262. ]
  27263. ))
  27264. characterMakers.push(() => makeCharacter(
  27265. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27266. {
  27267. front: {
  27268. height: math.unit(10, "feet"),
  27269. weight: math.unit(750, "lb"),
  27270. name: "Front",
  27271. image: {
  27272. source: "./media/characters/clove/front.svg",
  27273. extra: 2031 / 1860,
  27274. bottom: 47.8 / 2080
  27275. }
  27276. },
  27277. back: {
  27278. height: math.unit(10, "feet"),
  27279. weight: math.unit(750, "lb"),
  27280. name: "Back",
  27281. image: {
  27282. source: "./media/characters/clove/back.svg",
  27283. extra: 2025 / 1859,
  27284. bottom: 46 / 2071
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(10, "feet"),
  27292. default: true
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(4, "feet"),
  27301. weight: math.unit(50, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/alex-rabbit/front.svg",
  27305. extra: 507 / 458,
  27306. bottom: 18.5 / 527
  27307. }
  27308. },
  27309. back: {
  27310. height: math.unit(4, "feet"),
  27311. weight: math.unit(50, "lb"),
  27312. name: "Back",
  27313. image: {
  27314. source: "./media/characters/alex-rabbit/back.svg",
  27315. extra: 502 / 460,
  27316. bottom: 18.9 / 521
  27317. }
  27318. },
  27319. },
  27320. [
  27321. {
  27322. name: "Normal",
  27323. height: math.unit(4, "feet"),
  27324. default: true
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(1 + 3 / 12, "feet"),
  27333. weight: math.unit(80, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/zander-rose/front.svg",
  27337. extra: 916 / 797,
  27338. bottom: 17 / 933
  27339. }
  27340. },
  27341. back: {
  27342. height: math.unit(1 + 3 / 12, "feet"),
  27343. weight: math.unit(80, "lb"),
  27344. name: "Back",
  27345. image: {
  27346. source: "./media/characters/zander-rose/back.svg",
  27347. extra: 903 / 779,
  27348. bottom: 31 / 934
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Normal",
  27355. height: math.unit(1 + 3 / 12, "feet"),
  27356. default: true
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27362. {
  27363. anthro: {
  27364. height: math.unit(6, "feet"),
  27365. weight: math.unit(150, "lb"),
  27366. name: "Anthro",
  27367. image: {
  27368. source: "./media/characters/razz/anthro.svg",
  27369. extra: 1437 / 1343,
  27370. bottom: 48 / 1485
  27371. }
  27372. },
  27373. feral: {
  27374. height: math.unit(6, "feet"),
  27375. weight: math.unit(150, "lb"),
  27376. name: "Feral",
  27377. image: {
  27378. source: "./media/characters/razz/feral.svg",
  27379. extra: 2569 / 1385,
  27380. bottom: 95 / 2664
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(6, "feet"),
  27388. default: true
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27394. {
  27395. front: {
  27396. height: math.unit(9 + 4 / 12, "feet"),
  27397. weight: math.unit(500, "lb"),
  27398. name: "Front",
  27399. image: {
  27400. source: "./media/characters/morrigan/front.svg",
  27401. extra: 2707 / 2579,
  27402. bottom: 156 / 2863
  27403. }
  27404. },
  27405. },
  27406. [
  27407. {
  27408. name: "Normal",
  27409. height: math.unit(9 + 4 / 12, "feet"),
  27410. default: true
  27411. },
  27412. ]
  27413. ))
  27414. characterMakers.push(() => makeCharacter(
  27415. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27416. {
  27417. front: {
  27418. height: math.unit(5, "stories"),
  27419. weight: math.unit(4000, "lb"),
  27420. name: "Front",
  27421. image: {
  27422. source: "./media/characters/jenene/front.svg",
  27423. extra: 1780 / 1710,
  27424. bottom: 57 / 1837
  27425. }
  27426. },
  27427. },
  27428. [
  27429. {
  27430. name: "Normal",
  27431. height: math.unit(5, "stories"),
  27432. default: true
  27433. },
  27434. ]
  27435. ))
  27436. characterMakers.push(() => makeCharacter(
  27437. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27438. {
  27439. front: {
  27440. height: math.unit(6, "feet"),
  27441. weight: math.unit(150, "lb"),
  27442. name: "Front",
  27443. image: {
  27444. source: "./media/characters/vix-archaser/front.svg",
  27445. extra: 2767 / 2562,
  27446. bottom: 36 / 2803
  27447. }
  27448. },
  27449. },
  27450. [
  27451. {
  27452. name: "Micro",
  27453. height: math.unit(1, "foot")
  27454. },
  27455. {
  27456. name: "Normal",
  27457. height: math.unit(6 + 5 / 12, "feet")
  27458. },
  27459. {
  27460. name: "Minimacro",
  27461. height: math.unit(500, "feet")
  27462. },
  27463. {
  27464. name: "Macro",
  27465. height: math.unit(4, "miles")
  27466. },
  27467. {
  27468. name: "Megamacro",
  27469. height: math.unit(250, "miles"),
  27470. default: true
  27471. },
  27472. {
  27473. name: "Gigamacro",
  27474. height: math.unit(1, "universe")
  27475. },
  27476. {
  27477. name: "Endgame",
  27478. height: math.unit(100, "multiverses")
  27479. }
  27480. ]
  27481. ))
  27482. characterMakers.push(() => makeCharacter(
  27483. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27484. {
  27485. taurSfw: {
  27486. height: math.unit(10, "meters"),
  27487. weight: math.unit(17500, "kg"),
  27488. name: "Taur",
  27489. image: {
  27490. source: "./media/characters/faey/taur-sfw.svg",
  27491. extra: 1200 / 968,
  27492. bottom: 41 / 1241
  27493. }
  27494. },
  27495. chestmaw: {
  27496. height: math.unit(2.01, "meters"),
  27497. name: "Chestmaw",
  27498. image: {
  27499. source: "./media/characters/faey/chestmaw.svg"
  27500. }
  27501. },
  27502. foot: {
  27503. height: math.unit(2.43, "meters"),
  27504. name: "Foot",
  27505. image: {
  27506. source: "./media/characters/faey/foot.svg"
  27507. }
  27508. },
  27509. jaws: {
  27510. height: math.unit(1.66, "meters"),
  27511. name: "Jaws",
  27512. image: {
  27513. source: "./media/characters/faey/jaws.svg"
  27514. }
  27515. },
  27516. tongues: {
  27517. height: math.unit(2.01, "meters"),
  27518. name: "Tongues",
  27519. image: {
  27520. source: "./media/characters/faey/tongues.svg"
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Small",
  27527. height: math.unit(10, "meters"),
  27528. default: true
  27529. },
  27530. {
  27531. name: "Big",
  27532. height: math.unit(500000, "km")
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27538. {
  27539. front: {
  27540. height: math.unit(7, "feet"),
  27541. weight: math.unit(275, "lb"),
  27542. name: "Front",
  27543. image: {
  27544. source: "./media/characters/roku/front.svg",
  27545. extra: 903 / 878,
  27546. bottom: 37 / 940
  27547. }
  27548. },
  27549. },
  27550. [
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(7, "feet"),
  27554. default: true
  27555. },
  27556. {
  27557. name: "Macro",
  27558. height: math.unit(500, "feet")
  27559. },
  27560. {
  27561. name: "Megamacro",
  27562. height: math.unit(200, "miles")
  27563. },
  27564. ]
  27565. ))
  27566. characterMakers.push(() => makeCharacter(
  27567. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27568. {
  27569. front: {
  27570. height: math.unit(6 + 2 / 12, "feet"),
  27571. weight: math.unit(150, "lb"),
  27572. name: "Front",
  27573. image: {
  27574. source: "./media/characters/lira/front.svg",
  27575. extra: 1727 / 1605,
  27576. bottom: 26 / 1753
  27577. }
  27578. },
  27579. back: {
  27580. height: math.unit(6 + 2 / 12, "feet"),
  27581. weight: math.unit(150, "lb"),
  27582. name: "Back",
  27583. image: {
  27584. source: "./media/characters/lira/back.svg",
  27585. extra: 1713 / 159,
  27586. bottom: 20 / 1733
  27587. }
  27588. },
  27589. hand: {
  27590. height: math.unit(0.75, "feet"),
  27591. name: "Hand",
  27592. image: {
  27593. source: "./media/characters/lira/hand.svg"
  27594. }
  27595. },
  27596. maw: {
  27597. height: math.unit(0.65, "feet"),
  27598. name: "Maw",
  27599. image: {
  27600. source: "./media/characters/lira/maw.svg"
  27601. }
  27602. },
  27603. pawDigi: {
  27604. height: math.unit(1.6, "feet"),
  27605. name: "Paw Digi",
  27606. image: {
  27607. source: "./media/characters/lira/paw-digi.svg"
  27608. }
  27609. },
  27610. pawPlanti: {
  27611. height: math.unit(1.4, "feet"),
  27612. name: "Paw Planti",
  27613. image: {
  27614. source: "./media/characters/lira/paw-planti.svg"
  27615. }
  27616. },
  27617. },
  27618. [
  27619. {
  27620. name: "Normal",
  27621. height: math.unit(6 + 2 / 12, "feet"),
  27622. default: true
  27623. },
  27624. {
  27625. name: "Macro",
  27626. height: math.unit(100, "feet")
  27627. },
  27628. {
  27629. name: "Macro²",
  27630. height: math.unit(1600, "feet")
  27631. },
  27632. {
  27633. name: "Planetary",
  27634. height: math.unit(20, "earths")
  27635. },
  27636. ]
  27637. ))
  27638. characterMakers.push(() => makeCharacter(
  27639. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27640. {
  27641. front: {
  27642. height: math.unit(6, "feet"),
  27643. weight: math.unit(150, "lb"),
  27644. name: "Front",
  27645. image: {
  27646. source: "./media/characters/hadjet/front.svg",
  27647. extra: 1480 / 1346,
  27648. bottom: 26 / 1506
  27649. }
  27650. },
  27651. frontNsfw: {
  27652. height: math.unit(6, "feet"),
  27653. weight: math.unit(150, "lb"),
  27654. name: "Front (NSFW)",
  27655. image: {
  27656. source: "./media/characters/hadjet/front-nsfw.svg",
  27657. extra: 1440 / 1358,
  27658. bottom: 52 / 1492
  27659. }
  27660. },
  27661. },
  27662. [
  27663. {
  27664. name: "Macro",
  27665. height: math.unit(10, "stories"),
  27666. default: true
  27667. },
  27668. {
  27669. name: "Megamacro",
  27670. height: math.unit(1.5, "miles")
  27671. },
  27672. {
  27673. name: "Megamacro+",
  27674. height: math.unit(5, "miles")
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27680. {
  27681. side: {
  27682. height: math.unit(106, "feet"),
  27683. weight: math.unit(500, "tonnes"),
  27684. name: "Side",
  27685. image: {
  27686. source: "./media/characters/kodran/side.svg",
  27687. extra: 553 / 480,
  27688. bottom: 33 / 586
  27689. }
  27690. },
  27691. front: {
  27692. height: math.unit(132, "feet"),
  27693. weight: math.unit(500, "tonnes"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/kodran/front.svg",
  27697. extra: 667 / 643,
  27698. bottom: 42 / 709
  27699. }
  27700. },
  27701. flying: {
  27702. height: math.unit(350, "feet"),
  27703. weight: math.unit(500, "tonnes"),
  27704. name: "Flying",
  27705. image: {
  27706. source: "./media/characters/kodran/flying.svg"
  27707. }
  27708. },
  27709. foot: {
  27710. height: math.unit(33, "feet"),
  27711. name: "Foot",
  27712. image: {
  27713. source: "./media/characters/kodran/foot.svg"
  27714. }
  27715. },
  27716. footFront: {
  27717. height: math.unit(19, "feet"),
  27718. name: "Foot (Front)",
  27719. image: {
  27720. source: "./media/characters/kodran/foot-front.svg",
  27721. extra: 261 / 261,
  27722. bottom: 91 / 352
  27723. }
  27724. },
  27725. headFront: {
  27726. height: math.unit(53, "feet"),
  27727. name: "Head (Front)",
  27728. image: {
  27729. source: "./media/characters/kodran/head-front.svg"
  27730. }
  27731. },
  27732. headSide: {
  27733. height: math.unit(65, "feet"),
  27734. name: "Head (Side)",
  27735. image: {
  27736. source: "./media/characters/kodran/head-side.svg"
  27737. }
  27738. },
  27739. throat: {
  27740. height: math.unit(79, "feet"),
  27741. name: "Throat",
  27742. image: {
  27743. source: "./media/characters/kodran/throat.svg"
  27744. }
  27745. },
  27746. },
  27747. [
  27748. {
  27749. name: "Large",
  27750. height: math.unit(106, "feet"),
  27751. default: true
  27752. },
  27753. ]
  27754. ))
  27755. characterMakers.push(() => makeCharacter(
  27756. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27757. {
  27758. side: {
  27759. height: math.unit(11, "feet"),
  27760. weight: math.unit(150, "lb"),
  27761. name: "Side",
  27762. image: {
  27763. source: "./media/characters/pyxaron/side.svg",
  27764. extra: 305 / 195,
  27765. bottom: 17 / 322
  27766. }
  27767. },
  27768. },
  27769. [
  27770. {
  27771. name: "Normal",
  27772. height: math.unit(11, "feet"),
  27773. default: true
  27774. },
  27775. ]
  27776. ))
  27777. characterMakers.push(() => makeCharacter(
  27778. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27779. {
  27780. front: {
  27781. height: math.unit(6, "feet"),
  27782. weight: math.unit(150, "lb"),
  27783. name: "Front",
  27784. image: {
  27785. source: "./media/characters/meep/front.svg",
  27786. extra: 88 / 80,
  27787. bottom: 6 / 94
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Fun Sized",
  27794. height: math.unit(2, "inches"),
  27795. default: true
  27796. },
  27797. {
  27798. name: "Friend Sized",
  27799. height: math.unit(8, "inches")
  27800. },
  27801. ]
  27802. ))
  27803. characterMakers.push(() => makeCharacter(
  27804. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27805. {
  27806. front: {
  27807. height: math.unit(15, "feet"),
  27808. weight: math.unit(2500, "lb"),
  27809. name: "Front",
  27810. image: {
  27811. source: "./media/characters/holly-rabbit/front.svg",
  27812. extra: 1433 / 1233,
  27813. bottom: 125 / 1558
  27814. }
  27815. },
  27816. dick: {
  27817. height: math.unit(4.6, "feet"),
  27818. name: "Dick",
  27819. image: {
  27820. source: "./media/characters/holly-rabbit/dick.svg"
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(15, "feet"),
  27828. default: true
  27829. },
  27830. {
  27831. name: "Macro",
  27832. height: math.unit(250, "feet")
  27833. },
  27834. {
  27835. name: "Macro+",
  27836. height: math.unit(2500, "feet")
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27842. {
  27843. front: {
  27844. height: math.unit(3.02, "meters"),
  27845. weight: math.unit(500, "kg"),
  27846. name: "Front",
  27847. image: {
  27848. source: "./media/characters/drena/front.svg",
  27849. extra: 282 / 243,
  27850. bottom: 8 / 290
  27851. }
  27852. },
  27853. side: {
  27854. height: math.unit(3.02, "meters"),
  27855. weight: math.unit(500, "kg"),
  27856. name: "Side",
  27857. image: {
  27858. source: "./media/characters/drena/side.svg",
  27859. extra: 280 / 245,
  27860. bottom: 10 / 290
  27861. }
  27862. },
  27863. back: {
  27864. height: math.unit(3.02, "meters"),
  27865. weight: math.unit(500, "kg"),
  27866. name: "Back",
  27867. image: {
  27868. source: "./media/characters/drena/back.svg",
  27869. extra: 278 / 243,
  27870. bottom: 2 / 280
  27871. }
  27872. },
  27873. foot: {
  27874. height: math.unit(0.75, "meters"),
  27875. name: "Foot",
  27876. image: {
  27877. source: "./media/characters/drena/foot.svg"
  27878. }
  27879. },
  27880. maw: {
  27881. height: math.unit(0.82, "meters"),
  27882. name: "Maw",
  27883. image: {
  27884. source: "./media/characters/drena/maw.svg"
  27885. }
  27886. },
  27887. rump: {
  27888. height: math.unit(0.93, "meters"),
  27889. name: "Rump",
  27890. image: {
  27891. source: "./media/characters/drena/rump.svg"
  27892. }
  27893. },
  27894. },
  27895. [
  27896. {
  27897. name: "Normal",
  27898. height: math.unit(3.02, "meters"),
  27899. default: true
  27900. },
  27901. ]
  27902. ))
  27903. characterMakers.push(() => makeCharacter(
  27904. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27905. {
  27906. front: {
  27907. height: math.unit(6 + 4 / 12, "feet"),
  27908. weight: math.unit(250, "lb"),
  27909. name: "Front",
  27910. image: {
  27911. source: "./media/characters/remmyzilla/front.svg",
  27912. extra: 4033 / 3588,
  27913. bottom: 123 / 4156
  27914. }
  27915. },
  27916. back: {
  27917. height: math.unit(6 + 4 / 12, "feet"),
  27918. weight: math.unit(250, "lb"),
  27919. name: "Back",
  27920. image: {
  27921. source: "./media/characters/remmyzilla/back.svg",
  27922. extra: 2687 / 2555,
  27923. bottom: 48 / 2735
  27924. }
  27925. },
  27926. frontFancy: {
  27927. height: math.unit(6 + 4 / 12, "feet"),
  27928. weight: math.unit(250, "lb"),
  27929. name: "Front (Fancy)",
  27930. image: {
  27931. source: "./media/characters/remmyzilla/front-fancy.svg",
  27932. extra: 4119 / 3419,
  27933. bottom: 237 / 4356
  27934. }
  27935. },
  27936. paw: {
  27937. height: math.unit(1.73, "feet"),
  27938. name: "Paw",
  27939. image: {
  27940. source: "./media/characters/remmyzilla/paw.svg"
  27941. }
  27942. },
  27943. maw: {
  27944. height: math.unit(1.73, "feet"),
  27945. name: "Maw",
  27946. image: {
  27947. source: "./media/characters/remmyzilla/maw.svg"
  27948. }
  27949. },
  27950. },
  27951. [
  27952. {
  27953. name: "Normal",
  27954. height: math.unit(6 + 4 / 12, "feet")
  27955. },
  27956. {
  27957. name: "Minimacro",
  27958. height: math.unit(12 + 8 / 12, "feet")
  27959. },
  27960. {
  27961. name: "Normal",
  27962. height: math.unit(640, "feet"),
  27963. default: true
  27964. },
  27965. {
  27966. name: "Megamacro",
  27967. height: math.unit(6400, "feet")
  27968. },
  27969. {
  27970. name: "Gigamacro",
  27971. height: math.unit(64000, "miles")
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27977. {
  27978. front: {
  27979. height: math.unit(2.5, "meters"),
  27980. weight: math.unit(300, "lb"),
  27981. name: "Front",
  27982. image: {
  27983. source: "./media/characters/lawrence/front.svg",
  27984. extra: 357 / 335,
  27985. bottom: 30 / 387
  27986. }
  27987. },
  27988. back: {
  27989. height: math.unit(2.5, "meters"),
  27990. weight: math.unit(300, "lb"),
  27991. name: "Back",
  27992. image: {
  27993. source: "./media/characters/lawrence/back.svg",
  27994. extra: 357 / 338,
  27995. bottom: 16 / 373
  27996. }
  27997. },
  27998. head: {
  27999. height: math.unit(0.9, "meter"),
  28000. name: "Head",
  28001. image: {
  28002. source: "./media/characters/lawrence/head.svg"
  28003. }
  28004. },
  28005. maw: {
  28006. height: math.unit(0.7, "meter"),
  28007. name: "Maw",
  28008. image: {
  28009. source: "./media/characters/lawrence/maw.svg"
  28010. }
  28011. },
  28012. footBottom: {
  28013. height: math.unit(0.5, "meter"),
  28014. name: "Foot (Bottom)",
  28015. image: {
  28016. source: "./media/characters/lawrence/foot-bottom.svg"
  28017. }
  28018. },
  28019. footTop: {
  28020. height: math.unit(0.5, "meter"),
  28021. name: "Foot (Top)",
  28022. image: {
  28023. source: "./media/characters/lawrence/foot-top.svg"
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Normal",
  28030. height: math.unit(2.5, "meters"),
  28031. default: true
  28032. },
  28033. {
  28034. name: "Macro",
  28035. height: math.unit(95, "meters")
  28036. },
  28037. {
  28038. name: "Megamacro",
  28039. height: math.unit(150, "km")
  28040. },
  28041. ]
  28042. ))
  28043. characterMakers.push(() => makeCharacter(
  28044. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28045. {
  28046. front: {
  28047. height: math.unit(4.2, "meters"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/sydney/front.svg",
  28051. extra: 1323 / 1277,
  28052. bottom: 111 / 1434
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Normal",
  28059. height: math.unit(4.2, "meters"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28066. {
  28067. back: {
  28068. height: math.unit(201, "feet"),
  28069. name: "Back",
  28070. image: {
  28071. source: "./media/characters/jessica/back.svg",
  28072. extra: 273 / 259,
  28073. bottom: 7 / 280
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(201, "feet"),
  28081. default: true
  28082. },
  28083. {
  28084. name: "Megamacro",
  28085. height: math.unit(8, "miles")
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28091. {
  28092. side: {
  28093. height: math.unit(320, "cm"),
  28094. name: "Side",
  28095. image: {
  28096. source: "./media/characters/victoria/side.svg",
  28097. extra: 778 / 346,
  28098. bottom: 56 / 834
  28099. }
  28100. },
  28101. maw: {
  28102. height: math.unit(5.9, "feet"),
  28103. name: "Maw",
  28104. image: {
  28105. source: "./media/characters/victoria/maw.svg"
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Normal",
  28112. height: math.unit(320, "cm"),
  28113. default: true
  28114. },
  28115. ]
  28116. ))
  28117. characterMakers.push(() => makeCharacter(
  28118. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28119. {
  28120. front: {
  28121. height: math.unit(5 + 6 / 12, "feet"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/cat/front.svg",
  28125. extra: 1374 / 1257,
  28126. bottom: 59 / 1433
  28127. }
  28128. },
  28129. back: {
  28130. height: math.unit(5 + 6 / 12, "feet"),
  28131. name: "Back",
  28132. image: {
  28133. source: "./media/characters/cat/back.svg",
  28134. extra: 1337 / 1226,
  28135. bottom: 34 / 1371
  28136. }
  28137. },
  28138. taur: {
  28139. height: math.unit(7, "feet"),
  28140. name: "Taur",
  28141. image: {
  28142. source: "./media/characters/cat/taur.svg",
  28143. extra: 1345 / 1231,
  28144. bottom: 66 / 1411
  28145. }
  28146. },
  28147. lucario: {
  28148. height: math.unit(4, "feet"),
  28149. name: "Lucario",
  28150. image: {
  28151. source: "./media/characters/cat/lucario.svg",
  28152. extra: 1470 / 1318,
  28153. bottom: 65 / 1535
  28154. }
  28155. },
  28156. megaLucario: {
  28157. height: math.unit(4, "feet"),
  28158. name: "Mega Lucario",
  28159. image: {
  28160. source: "./media/characters/cat/mega-lucario.svg",
  28161. extra: 1515 / 1319,
  28162. bottom: 63 / 1578
  28163. }
  28164. },
  28165. nickit: {
  28166. height: math.unit(2, "feet"),
  28167. name: "Nickit",
  28168. image: {
  28169. source: "./media/characters/cat/nickit.svg",
  28170. extra: 1980 / 1585,
  28171. bottom: 102 / 2082
  28172. }
  28173. },
  28174. lopunnyFront: {
  28175. height: math.unit(5, "feet"),
  28176. name: "Lopunny (Front)",
  28177. image: {
  28178. source: "./media/characters/cat/lopunny-front.svg",
  28179. extra: 1782 / 1469,
  28180. bottom: 38 / 1820
  28181. }
  28182. },
  28183. lopunnyBack: {
  28184. height: math.unit(5, "feet"),
  28185. name: "Lopunny (Back)",
  28186. image: {
  28187. source: "./media/characters/cat/lopunny-back.svg",
  28188. extra: 1660 / 1490,
  28189. bottom: 25 / 1685
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Really small",
  28196. height: math.unit(1, "nm")
  28197. },
  28198. {
  28199. name: "Micro",
  28200. height: math.unit(5, "inches")
  28201. },
  28202. {
  28203. name: "Normal",
  28204. height: math.unit(5 + 6 / 12, "feet"),
  28205. default: true
  28206. },
  28207. {
  28208. name: "Macro",
  28209. height: math.unit(50, "feet")
  28210. },
  28211. {
  28212. name: "Macro+",
  28213. height: math.unit(150, "feet")
  28214. },
  28215. {
  28216. name: "Megamacro",
  28217. height: math.unit(100, "miles")
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(63.4, "meters"),
  28226. weight: math.unit(3.28349e+6, "kilograms"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/kirina-violet/front.svg",
  28230. extra: 2812 / 2725,
  28231. bottom: 0 / 2812
  28232. }
  28233. },
  28234. back: {
  28235. height: math.unit(63.4, "meters"),
  28236. weight: math.unit(3.28349e+6, "kilograms"),
  28237. name: "Back",
  28238. image: {
  28239. source: "./media/characters/kirina-violet/back.svg",
  28240. extra: 2812 / 2725,
  28241. bottom: 0 / 2812
  28242. }
  28243. },
  28244. mouth: {
  28245. height: math.unit(4.35, "meters"),
  28246. name: "Mouth",
  28247. image: {
  28248. source: "./media/characters/kirina-violet/mouth.svg"
  28249. }
  28250. },
  28251. paw: {
  28252. height: math.unit(5.6, "meters"),
  28253. name: "Paw",
  28254. image: {
  28255. source: "./media/characters/kirina-violet/paw.svg"
  28256. }
  28257. },
  28258. tail: {
  28259. height: math.unit(18, "meters"),
  28260. name: "Tail",
  28261. image: {
  28262. source: "./media/characters/kirina-violet/tail.svg"
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Macro",
  28269. height: math.unit(63.4, "meters"),
  28270. default: true
  28271. },
  28272. ]
  28273. ))
  28274. characterMakers.push(() => makeCharacter(
  28275. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28276. {
  28277. front: {
  28278. height: math.unit(60, "feet"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/cat-gigachu/front.svg",
  28282. extra: 1024 / 780,
  28283. bottom: 23 / 1047
  28284. }
  28285. },
  28286. back: {
  28287. height: math.unit(60, "feet"),
  28288. name: "Back",
  28289. image: {
  28290. source: "./media/characters/cat-gigachu/back.svg",
  28291. extra: 1024 / 780,
  28292. bottom: 23 / 1047
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Dynamax",
  28299. height: math.unit(60, "feet"),
  28300. default: true
  28301. },
  28302. ]
  28303. ))
  28304. characterMakers.push(() => makeCharacter(
  28305. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28306. {
  28307. front: {
  28308. height: math.unit(6, "feet"),
  28309. weight: math.unit(150, "lb"),
  28310. name: "Front",
  28311. image: {
  28312. source: "./media/characters/sfaiyan/front.svg",
  28313. extra: 999 / 978,
  28314. bottom: 5 / 1004
  28315. }
  28316. },
  28317. },
  28318. [
  28319. {
  28320. name: "Normal",
  28321. height: math.unit(1.82, "meters")
  28322. },
  28323. {
  28324. name: "Giant",
  28325. height: math.unit(2.27, "km"),
  28326. default: true
  28327. },
  28328. ]
  28329. ))
  28330. characterMakers.push(() => makeCharacter(
  28331. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28332. {
  28333. front: {
  28334. height: math.unit(179, "cm"),
  28335. weight: math.unit(100, "kg"),
  28336. name: "Front",
  28337. image: {
  28338. source: "./media/characters/raunehkeli/front.svg",
  28339. extra: 1934 / 1926,
  28340. bottom: 0 / 1934
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Normal",
  28347. height: math.unit(179, "cm")
  28348. },
  28349. {
  28350. name: "Maximum",
  28351. height: math.unit(575, "meters"),
  28352. default: true
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(6, "feet"),
  28361. weight: math.unit(150, "lb"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28365. extra: 2625 / 2518,
  28366. bottom: 60 / 2685
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Normal",
  28373. height: math.unit(6 + 2 / 12, "feet")
  28374. },
  28375. {
  28376. name: "Macro",
  28377. height: math.unit(1180, "feet"),
  28378. default: true
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28384. {
  28385. front: {
  28386. height: math.unit(5 + 6 / 12, "feet"),
  28387. weight: math.unit(108, "lb"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/lilith-zott/front.svg",
  28391. extra: 2510 / 2238,
  28392. bottom: 100 / 2610
  28393. }
  28394. },
  28395. frontDressed: {
  28396. height: math.unit(5 + 6 / 12, "feet"),
  28397. weight: math.unit(108, "lb"),
  28398. name: "Front (Dressed)",
  28399. image: {
  28400. source: "./media/characters/lilith-zott/front-dressed.svg",
  28401. extra: 2510 / 2238,
  28402. bottom: 100 / 2610
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Normal",
  28409. height: math.unit(5 + 6 / 12, "feet")
  28410. },
  28411. {
  28412. name: "Macro",
  28413. height: math.unit(1030, "feet"),
  28414. default: true
  28415. },
  28416. ]
  28417. ))
  28418. characterMakers.push(() => makeCharacter(
  28419. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28420. {
  28421. front: {
  28422. height: math.unit(6, "feet"),
  28423. weight: math.unit(150, "lb"),
  28424. name: "Front",
  28425. image: {
  28426. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28427. extra: 2567 / 2435,
  28428. bottom: 39 / 2606
  28429. }
  28430. },
  28431. frontSuper: {
  28432. height: math.unit(6, "feet"),
  28433. name: "Front (Super)",
  28434. image: {
  28435. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28436. extra: 2567 / 2435,
  28437. bottom: 39 / 2606
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(5 + 10 / 12, "feet")
  28445. },
  28446. {
  28447. name: "Macro",
  28448. height: math.unit(1100, "feet"),
  28449. default: true
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(100, "miles"),
  28458. name: "Front",
  28459. image: {
  28460. source: "./media/characters/sona/front.svg",
  28461. extra: 2433 / 2201,
  28462. bottom: 53 / 2486
  28463. }
  28464. },
  28465. foot: {
  28466. height: math.unit(16.1, "miles"),
  28467. name: "Foot",
  28468. image: {
  28469. source: "./media/characters/sona/foot.svg"
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Macro",
  28476. height: math.unit(100, "miles"),
  28477. default: true
  28478. },
  28479. ]
  28480. ))
  28481. characterMakers.push(() => makeCharacter(
  28482. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28483. {
  28484. front: {
  28485. height: math.unit(6, "feet"),
  28486. weight: math.unit(150, "lb"),
  28487. name: "Front",
  28488. image: {
  28489. source: "./media/characters/bailey/front.svg",
  28490. extra: 1778 / 1724,
  28491. bottom: 30 / 1808
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Micro",
  28498. height: math.unit(4, "inches")
  28499. },
  28500. {
  28501. name: "Normal",
  28502. height: math.unit(5 + 5 / 12, "feet"),
  28503. default: true
  28504. },
  28505. {
  28506. name: "Macro",
  28507. height: math.unit(250, "feet")
  28508. },
  28509. {
  28510. name: "Megamacro",
  28511. height: math.unit(100, "miles")
  28512. },
  28513. ]
  28514. ))
  28515. characterMakers.push(() => makeCharacter(
  28516. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28517. {
  28518. front: {
  28519. height: math.unit(5 + 2 / 12, "feet"),
  28520. weight: math.unit(120, "lb"),
  28521. name: "Front",
  28522. image: {
  28523. source: "./media/characters/snaps/front.svg",
  28524. extra: 2370 / 2177,
  28525. bottom: 48 / 2418
  28526. }
  28527. },
  28528. back: {
  28529. height: math.unit(5 + 2 / 12, "feet"),
  28530. weight: math.unit(120, "lb"),
  28531. name: "Back",
  28532. image: {
  28533. source: "./media/characters/snaps/back.svg",
  28534. extra: 2408 / 2258,
  28535. bottom: 15 / 2423
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Micro",
  28542. height: math.unit(9, "inches")
  28543. },
  28544. {
  28545. name: "Normal",
  28546. height: math.unit(5 + 2 / 12, "feet"),
  28547. default: true
  28548. },
  28549. {
  28550. name: "Mini Macro",
  28551. height: math.unit(10, "feet")
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28557. {
  28558. front: {
  28559. height: math.unit(1.8, "meters"),
  28560. weight: math.unit(85, "kg"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/azteck/front.svg",
  28564. extra: 2815 / 2625,
  28565. bottom: 89 / 2904
  28566. }
  28567. },
  28568. back: {
  28569. height: math.unit(1.8, "meters"),
  28570. weight: math.unit(85, "kg"),
  28571. name: "Back",
  28572. image: {
  28573. source: "./media/characters/azteck/back.svg",
  28574. extra: 2856 / 2648,
  28575. bottom: 85 / 2941
  28576. }
  28577. },
  28578. frontDressed: {
  28579. height: math.unit(1.8, "meters"),
  28580. weight: math.unit(85, "kg"),
  28581. name: "Front (Dressed)",
  28582. image: {
  28583. source: "./media/characters/azteck/front-dressed.svg",
  28584. extra: 2147 / 2003,
  28585. bottom: 68 / 2215
  28586. }
  28587. },
  28588. head: {
  28589. height: math.unit(0.47, "meters"),
  28590. weight: math.unit(85, "kg"),
  28591. name: "Head",
  28592. image: {
  28593. source: "./media/characters/azteck/head.svg"
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Bite sized",
  28600. height: math.unit(16, "cm")
  28601. },
  28602. {
  28603. name: "Normal",
  28604. height: math.unit(1.8, "meters"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(6, "feet"),
  28614. weight: math.unit(150, "lb"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/pidge/front.svg",
  28618. extra: 620 / 588,
  28619. bottom: 9 / 629
  28620. }
  28621. },
  28622. back: {
  28623. height: math.unit(6, "feet"),
  28624. weight: math.unit(150, "lb"),
  28625. name: "Back",
  28626. image: {
  28627. source: "./media/characters/pidge/back.svg",
  28628. extra: 620 / 588,
  28629. bottom: 9 / 629
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Macro",
  28636. height: math.unit(1, "mile"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(6, "feet"),
  28646. weight: math.unit(150, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/en/front.svg",
  28650. extra: 1697 / 1563,
  28651. bottom: 103 / 1800
  28652. }
  28653. },
  28654. back: {
  28655. height: math.unit(6, "feet"),
  28656. weight: math.unit(150, "lb"),
  28657. name: "Back",
  28658. image: {
  28659. source: "./media/characters/en/back.svg",
  28660. extra: 1700 / 1570,
  28661. bottom: 51 / 1751
  28662. }
  28663. },
  28664. frontDressed: {
  28665. height: math.unit(6, "feet"),
  28666. weight: math.unit(150, "lb"),
  28667. name: "Front (Dressed)",
  28668. image: {
  28669. source: "./media/characters/en/front-dressed.svg",
  28670. extra: 1697 / 1563,
  28671. bottom: 103 / 1800
  28672. }
  28673. },
  28674. backDressed: {
  28675. height: math.unit(6, "feet"),
  28676. weight: math.unit(150, "lb"),
  28677. name: "Back (Dressed)",
  28678. image: {
  28679. source: "./media/characters/en/back-dressed.svg",
  28680. extra: 1700 / 1570,
  28681. bottom: 51 / 1751
  28682. }
  28683. },
  28684. },
  28685. [
  28686. {
  28687. name: "Macro",
  28688. height: math.unit(210, "feet"),
  28689. default: true
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28695. {
  28696. front: {
  28697. height: math.unit(6, "feet"),
  28698. weight: math.unit(150, "lb"),
  28699. name: "Front",
  28700. image: {
  28701. source: "./media/characters/haze-orris/front.svg",
  28702. extra: 3975 / 3525,
  28703. bottom: 137 / 4112
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Micro",
  28710. height: math.unit(150, "mm"),
  28711. default: true
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(6, "feet"),
  28720. weight: math.unit(150, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/casselene-yaro/front.svg",
  28724. extra: 4721 / 4541,
  28725. bottom: 82 / 4803
  28726. }
  28727. },
  28728. back: {
  28729. height: math.unit(6, "feet"),
  28730. weight: math.unit(150, "lb"),
  28731. name: "Back",
  28732. image: {
  28733. source: "./media/characters/casselene-yaro/back.svg",
  28734. extra: 4569 / 4377,
  28735. bottom: 69 / 4638
  28736. }
  28737. },
  28738. frontDressed: {
  28739. height: math.unit(6, "feet"),
  28740. weight: math.unit(150, "lb"),
  28741. name: "Front-dressed",
  28742. image: {
  28743. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28744. extra: 4721 / 4541,
  28745. bottom: 82 / 4803
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Macro",
  28752. height: math.unit(190, "feet"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(6, "feet"),
  28762. weight: math.unit(150, "lb"),
  28763. name: "Front",
  28764. image: {
  28765. source: "./media/characters/myra-rue-delore/front.svg",
  28766. extra: 1340 / 1308,
  28767. bottom: 67 / 1407
  28768. }
  28769. },
  28770. back: {
  28771. height: math.unit(6, "feet"),
  28772. weight: math.unit(150, "lb"),
  28773. name: "Back",
  28774. image: {
  28775. source: "./media/characters/myra-rue-delore/back.svg",
  28776. extra: 1341 / 1310,
  28777. bottom: 40 / 1381
  28778. }
  28779. },
  28780. frontDressed: {
  28781. height: math.unit(6, "feet"),
  28782. weight: math.unit(150, "lb"),
  28783. name: "Front (Dressed)",
  28784. image: {
  28785. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28786. extra: 1340 / 1308,
  28787. bottom: 67 / 1407
  28788. }
  28789. },
  28790. },
  28791. [
  28792. {
  28793. name: "Macro",
  28794. height: math.unit(150, "feet"),
  28795. default: true
  28796. },
  28797. ]
  28798. ))
  28799. characterMakers.push(() => makeCharacter(
  28800. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28801. {
  28802. front: {
  28803. height: math.unit(10, "feet"),
  28804. weight: math.unit(15015, "lb"),
  28805. name: "Front",
  28806. image: {
  28807. source: "./media/characters/fem!plat/front.svg",
  28808. extra: 2799 / 2604,
  28809. bottom: 149 / 2948
  28810. }
  28811. },
  28812. },
  28813. [
  28814. {
  28815. name: "Normal",
  28816. height: math.unit(10, "feet"),
  28817. default: true
  28818. },
  28819. {
  28820. name: "Macro",
  28821. height: math.unit(100, "feet")
  28822. },
  28823. {
  28824. name: "Megamacro",
  28825. height: math.unit(1000, "feet")
  28826. },
  28827. ]
  28828. ))
  28829. characterMakers.push(() => makeCharacter(
  28830. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28831. {
  28832. front: {
  28833. height: math.unit(15 + 5 / 12, "feet"),
  28834. weight: math.unit(4600, "lb"),
  28835. name: "Front",
  28836. image: {
  28837. source: "./media/characters/neapolitan-ananassa/front.svg",
  28838. extra: 2903 / 2736,
  28839. bottom: 0 / 2903
  28840. }
  28841. },
  28842. side: {
  28843. height: math.unit(15 + 5 / 12, "feet"),
  28844. weight: math.unit(4600, "lb"),
  28845. name: "Side",
  28846. image: {
  28847. source: "./media/characters/neapolitan-ananassa/side.svg",
  28848. extra: 2925 / 2719,
  28849. bottom: 0 / 2925
  28850. }
  28851. },
  28852. back: {
  28853. height: math.unit(15 + 5 / 12, "feet"),
  28854. weight: math.unit(4600, "lb"),
  28855. name: "Back",
  28856. image: {
  28857. source: "./media/characters/neapolitan-ananassa/back.svg",
  28858. extra: 2903 / 2736,
  28859. bottom: 0 / 2903
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Normal",
  28866. height: math.unit(15 + 5 / 12, "feet"),
  28867. default: true
  28868. },
  28869. {
  28870. name: "Post-Millenium",
  28871. height: math.unit(35 + 5 / 12, "feet")
  28872. },
  28873. {
  28874. name: "Post-Era",
  28875. height: math.unit(450 + 5 / 12, "feet")
  28876. },
  28877. ]
  28878. ))
  28879. characterMakers.push(() => makeCharacter(
  28880. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28881. {
  28882. front: {
  28883. height: math.unit(300, "meters"),
  28884. weight: math.unit(125000, "tonnes"),
  28885. name: "Front",
  28886. image: {
  28887. source: "./media/characters/pazuzu/front.svg",
  28888. extra: 877 / 794,
  28889. bottom: 47 / 924
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Macro",
  28896. height: math.unit(300, "meters"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28903. {
  28904. side: {
  28905. height: math.unit(10 + 7 / 12, "feet"),
  28906. weight: math.unit(2.5, "tons"),
  28907. name: "Side",
  28908. image: {
  28909. source: "./media/characters/aasha/side.svg",
  28910. extra: 1345 / 1245,
  28911. bottom: 111 / 1456
  28912. }
  28913. },
  28914. back: {
  28915. height: math.unit(10 + 7 / 12, "feet"),
  28916. weight: math.unit(2.5, "tons"),
  28917. name: "Back",
  28918. image: {
  28919. source: "./media/characters/aasha/back.svg",
  28920. extra: 1133 / 1057,
  28921. bottom: 257 / 1390
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(10 + 7 / 12, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(6 + 3 / 12, "feet"),
  28938. name: "Front",
  28939. image: {
  28940. source: "./media/characters/nevan/front.svg",
  28941. extra: 704 / 704,
  28942. bottom: 28 / 732
  28943. }
  28944. },
  28945. back: {
  28946. height: math.unit(6 + 3 / 12, "feet"),
  28947. name: "Back",
  28948. image: {
  28949. source: "./media/characters/nevan/back.svg",
  28950. extra: 714 / 714,
  28951. bottom: 21 / 735
  28952. }
  28953. },
  28954. frontFlaccid: {
  28955. height: math.unit(6 + 3 / 12, "feet"),
  28956. name: "Front (Flaccid)",
  28957. image: {
  28958. source: "./media/characters/nevan/front-flaccid.svg",
  28959. extra: 704 / 704,
  28960. bottom: 28 / 732
  28961. }
  28962. },
  28963. frontErect: {
  28964. height: math.unit(6 + 3 / 12, "feet"),
  28965. name: "Front (Erect)",
  28966. image: {
  28967. source: "./media/characters/nevan/front-erect.svg",
  28968. extra: 704 / 704,
  28969. bottom: 28 / 732
  28970. }
  28971. },
  28972. backFlaccid: {
  28973. height: math.unit(6 + 3 / 12, "feet"),
  28974. name: "Back (Flaccid)",
  28975. image: {
  28976. source: "./media/characters/nevan/back-flaccid.svg",
  28977. extra: 714 / 714,
  28978. bottom: 21 / 735
  28979. }
  28980. },
  28981. },
  28982. [
  28983. {
  28984. name: "Normal",
  28985. height: math.unit(6 + 3 / 12, "feet"),
  28986. default: true
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(4, "feet"),
  28995. name: "Front",
  28996. image: {
  28997. source: "./media/characters/arhan/front.svg",
  28998. extra: 3368 / 3133,
  28999. bottom: 0 / 3368
  29000. }
  29001. },
  29002. side: {
  29003. height: math.unit(4, "feet"),
  29004. name: "Side",
  29005. image: {
  29006. source: "./media/characters/arhan/side.svg",
  29007. extra: 3347 / 3105,
  29008. bottom: 0 / 3347
  29009. }
  29010. },
  29011. tongue: {
  29012. height: math.unit(1.42, "feet"),
  29013. name: "Tongue",
  29014. image: {
  29015. source: "./media/characters/arhan/tongue.svg"
  29016. }
  29017. },
  29018. head: {
  29019. height: math.unit(0.85, "feet"),
  29020. name: "Head",
  29021. image: {
  29022. source: "./media/characters/arhan/head.svg"
  29023. }
  29024. },
  29025. },
  29026. [
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(4, "feet"),
  29030. default: true
  29031. },
  29032. ]
  29033. ))
  29034. characterMakers.push(() => makeCharacter(
  29035. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29036. {
  29037. front: {
  29038. height: math.unit(5 + 7.5 / 12, "feet"),
  29039. weight: math.unit(120, "lb"),
  29040. name: "Front",
  29041. image: {
  29042. source: "./media/characters/digi-duncan/front.svg",
  29043. extra: 330 / 326,
  29044. bottom: 16 / 346
  29045. }
  29046. },
  29047. side: {
  29048. height: math.unit(5 + 7.5 / 12, "feet"),
  29049. weight: math.unit(120, "lb"),
  29050. name: "Side",
  29051. image: {
  29052. source: "./media/characters/digi-duncan/side.svg",
  29053. extra: 341 / 337,
  29054. bottom: 1 / 342
  29055. }
  29056. },
  29057. back: {
  29058. height: math.unit(5 + 7.5 / 12, "feet"),
  29059. weight: math.unit(120, "lb"),
  29060. name: "Back",
  29061. image: {
  29062. source: "./media/characters/digi-duncan/back.svg",
  29063. extra: 330 / 326,
  29064. bottom: 12 / 342
  29065. }
  29066. },
  29067. },
  29068. [
  29069. {
  29070. name: "Speck",
  29071. height: math.unit(0.25, "mm")
  29072. },
  29073. {
  29074. name: "Micro",
  29075. height: math.unit(5, "mm")
  29076. },
  29077. {
  29078. name: "Tiny",
  29079. height: math.unit(0.5, "inches"),
  29080. default: true
  29081. },
  29082. {
  29083. name: "Human",
  29084. height: math.unit(5 + 7.5 / 12, "feet")
  29085. },
  29086. {
  29087. name: "Minigiant",
  29088. height: math.unit(8 + 5.25, "feet")
  29089. },
  29090. {
  29091. name: "Giant",
  29092. height: math.unit(2000, "feet")
  29093. },
  29094. {
  29095. name: "Mega",
  29096. height: math.unit(371.1, "miles")
  29097. },
  29098. ]
  29099. ))
  29100. characterMakers.push(() => makeCharacter(
  29101. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29102. {
  29103. front: {
  29104. height: math.unit(2, "meters"),
  29105. weight: math.unit(350, "kg"),
  29106. name: "Front",
  29107. image: {
  29108. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29109. extra: 898 / 838,
  29110. bottom: 9 / 907
  29111. }
  29112. },
  29113. },
  29114. [
  29115. {
  29116. name: "Micro",
  29117. height: math.unit(8, "meters")
  29118. },
  29119. {
  29120. name: "Normal",
  29121. height: math.unit(50, "meters"),
  29122. default: true
  29123. },
  29124. {
  29125. name: "Macro",
  29126. height: math.unit(500, "meters")
  29127. },
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29132. {
  29133. front: {
  29134. height: math.unit(6 + 6 / 12, "feet"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/khardesh/front.svg",
  29138. extra: 888 / 797,
  29139. bottom: 25 / 913
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Normal",
  29146. height: math.unit(6 + 6 / 12, "feet"),
  29147. default: true
  29148. },
  29149. {
  29150. name: "Normal+",
  29151. height: math.unit(4, "meters")
  29152. },
  29153. {
  29154. name: "Macro",
  29155. height: math.unit(50, "meters")
  29156. },
  29157. {
  29158. name: "Macro+",
  29159. height: math.unit(100, "meters")
  29160. },
  29161. {
  29162. name: "Megamacro",
  29163. height: math.unit(20, "km")
  29164. },
  29165. ]
  29166. ))
  29167. characterMakers.push(() => makeCharacter(
  29168. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29169. {
  29170. front: {
  29171. height: math.unit(6, "feet"),
  29172. weight: math.unit(150, "lb"),
  29173. name: "Front",
  29174. image: {
  29175. source: "./media/characters/kosho/front.svg",
  29176. extra: 1847 / 1847,
  29177. bottom: 86 / 1933
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Second-stage micro",
  29184. height: math.unit(0.5, "inches")
  29185. },
  29186. {
  29187. name: "First-stage micro",
  29188. height: math.unit(6, "inches")
  29189. },
  29190. {
  29191. name: "Normal",
  29192. height: math.unit(6, "feet"),
  29193. default: true
  29194. },
  29195. {
  29196. name: "First-stage macro",
  29197. height: math.unit(72, "feet")
  29198. },
  29199. {
  29200. name: "Second-stage macro",
  29201. height: math.unit(864, "feet")
  29202. },
  29203. ]
  29204. ))
  29205. characterMakers.push(() => makeCharacter(
  29206. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29207. {
  29208. normal: {
  29209. height: math.unit(4 + 6 / 12, "feet"),
  29210. name: "Normal",
  29211. image: {
  29212. source: "./media/characters/hydra/normal.svg",
  29213. extra: 2833 / 2634,
  29214. bottom: 68 / 2901
  29215. }
  29216. },
  29217. smol: {
  29218. height: math.unit(0.705, "inches"),
  29219. name: "Smol",
  29220. image: {
  29221. source: "./media/characters/hydra/smol.svg",
  29222. extra: 2715 / 2540,
  29223. bottom: 0 / 2715
  29224. }
  29225. },
  29226. },
  29227. [
  29228. {
  29229. name: "Normal",
  29230. height: math.unit(4 + 6 / 12, "feet"),
  29231. default: true
  29232. }
  29233. ]
  29234. ))
  29235. characterMakers.push(() => makeCharacter(
  29236. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29237. {
  29238. front: {
  29239. height: math.unit(0.6, "cm"),
  29240. name: "Front",
  29241. image: {
  29242. source: "./media/characters/daz/front.svg",
  29243. extra: 1682 / 1164,
  29244. bottom: 42 / 1724
  29245. }
  29246. },
  29247. },
  29248. [
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(0.6, "cm"),
  29252. default: true
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(6, "feet"),
  29261. weight: math.unit(235, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/theo-pangolin/front.svg",
  29265. extra: 1996 / 1969,
  29266. bottom: 115 / 2111
  29267. }
  29268. },
  29269. back: {
  29270. height: math.unit(6, "feet"),
  29271. weight: math.unit(235, "lb"),
  29272. name: "Back",
  29273. image: {
  29274. source: "./media/characters/theo-pangolin/back.svg",
  29275. extra: 1979 / 1979,
  29276. bottom: 40 / 2019
  29277. }
  29278. },
  29279. feral: {
  29280. height: math.unit(2, "feet"),
  29281. weight: math.unit(30, "lb"),
  29282. name: "Feral",
  29283. image: {
  29284. source: "./media/characters/theo-pangolin/feral.svg",
  29285. extra: 803 / 791,
  29286. bottom: 181 / 984
  29287. }
  29288. },
  29289. footFive: {
  29290. height: math.unit(1.43, "feet"),
  29291. name: "Foot (Five Toes)",
  29292. image: {
  29293. source: "./media/characters/theo-pangolin/foot-five.svg"
  29294. }
  29295. },
  29296. footFour: {
  29297. height: math.unit(1.43, "feet"),
  29298. name: "Foot (Four Toes)",
  29299. image: {
  29300. source: "./media/characters/theo-pangolin/foot-four.svg"
  29301. }
  29302. },
  29303. handFour: {
  29304. height: math.unit(0.81, "feet"),
  29305. name: "Hand (Four Fingers)",
  29306. image: {
  29307. source: "./media/characters/theo-pangolin/hand-four.svg"
  29308. }
  29309. },
  29310. handThree: {
  29311. height: math.unit(0.81, "feet"),
  29312. name: "Hand (Three Fingers)",
  29313. image: {
  29314. source: "./media/characters/theo-pangolin/hand-three.svg"
  29315. }
  29316. },
  29317. headFront: {
  29318. height: math.unit(1.37, "feet"),
  29319. name: "Head (Front)",
  29320. image: {
  29321. source: "./media/characters/theo-pangolin/head-front.svg"
  29322. }
  29323. },
  29324. headSide: {
  29325. height: math.unit(1.43, "feet"),
  29326. name: "Head (Side)",
  29327. image: {
  29328. source: "./media/characters/theo-pangolin/head-side.svg"
  29329. }
  29330. },
  29331. tongue: {
  29332. height: math.unit(2.29, "feet"),
  29333. name: "Tongue",
  29334. image: {
  29335. source: "./media/characters/theo-pangolin/tongue.svg"
  29336. }
  29337. },
  29338. },
  29339. [
  29340. {
  29341. name: "Normal",
  29342. height: math.unit(6, "feet")
  29343. },
  29344. {
  29345. name: "Macro",
  29346. height: math.unit(400, "feet"),
  29347. default: true
  29348. },
  29349. ]
  29350. ))
  29351. characterMakers.push(() => makeCharacter(
  29352. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29353. {
  29354. front: {
  29355. height: math.unit(6, "inches"),
  29356. weight: math.unit(0.036, "kg"),
  29357. name: "Front",
  29358. image: {
  29359. source: "./media/characters/renée/front.svg",
  29360. extra: 900 / 886,
  29361. bottom: 8 / 908
  29362. }
  29363. },
  29364. },
  29365. [
  29366. {
  29367. name: "Nano",
  29368. height: math.unit(1, "nm")
  29369. },
  29370. {
  29371. name: "Micro",
  29372. height: math.unit(1, "mm")
  29373. },
  29374. {
  29375. name: "Normal",
  29376. height: math.unit(6, "inches")
  29377. },
  29378. {
  29379. name: "Macro",
  29380. height: math.unit(2000, "feet"),
  29381. default: true
  29382. },
  29383. {
  29384. name: "Megamacro",
  29385. height: math.unit(2, "km")
  29386. },
  29387. {
  29388. name: "Gigamacro",
  29389. height: math.unit(2000, "km")
  29390. },
  29391. {
  29392. name: "Teramacro",
  29393. height: math.unit(250000, "km")
  29394. },
  29395. ]
  29396. ))
  29397. characterMakers.push(() => makeCharacter(
  29398. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29399. {
  29400. front: {
  29401. height: math.unit(4, "meters"),
  29402. weight: math.unit(150, "kg"),
  29403. name: "Front",
  29404. image: {
  29405. source: "./media/characters/caledvwlch/front.svg",
  29406. extra: 1760 / 1551,
  29407. bottom: 28 / 1788
  29408. }
  29409. },
  29410. side: {
  29411. height: math.unit(4, "meters"),
  29412. weight: math.unit(150, "kg"),
  29413. name: "Side",
  29414. image: {
  29415. source: "./media/characters/caledvwlch/side.svg",
  29416. extra: 1605 / 1536,
  29417. bottom: 31 / 1636
  29418. }
  29419. },
  29420. back: {
  29421. height: math.unit(4, "meters"),
  29422. weight: math.unit(150, "kg"),
  29423. name: "Back",
  29424. image: {
  29425. source: "./media/characters/caledvwlch/back.svg",
  29426. extra: 1635 / 1565,
  29427. bottom: 27 / 1662
  29428. }
  29429. },
  29430. },
  29431. [
  29432. {
  29433. name: "\"Incognito\"",
  29434. height: math.unit(4, "meters")
  29435. },
  29436. {
  29437. name: "Small rampage",
  29438. height: math.unit(600, "meters")
  29439. },
  29440. {
  29441. name: "Mega",
  29442. height: math.unit(30, "km")
  29443. },
  29444. {
  29445. name: "Home-size",
  29446. height: math.unit(50, "km"),
  29447. default: true
  29448. },
  29449. {
  29450. name: "Giga",
  29451. height: math.unit(300, "km")
  29452. },
  29453. {
  29454. name: "Lounging",
  29455. height: math.unit(11000, "km")
  29456. },
  29457. {
  29458. name: "Planet snacking",
  29459. height: math.unit(2000000, "km")
  29460. },
  29461. ]
  29462. ))
  29463. characterMakers.push(() => makeCharacter(
  29464. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29465. {
  29466. front: {
  29467. height: math.unit(6, "feet"),
  29468. weight: math.unit(215, "lb"),
  29469. name: "Front",
  29470. image: {
  29471. source: "./media/characters/sapphire-svell/front.svg",
  29472. extra: 495 / 455,
  29473. bottom: 20 / 515
  29474. }
  29475. },
  29476. back: {
  29477. height: math.unit(6, "feet"),
  29478. weight: math.unit(216, "lb"),
  29479. name: "Back",
  29480. image: {
  29481. source: "./media/characters/sapphire-svell/back.svg",
  29482. extra: 497 / 477,
  29483. bottom: 7 / 504
  29484. }
  29485. },
  29486. maw: {
  29487. height: math.unit(1.57, "feet"),
  29488. name: "Maw",
  29489. image: {
  29490. source: "./media/characters/sapphire-svell/maw.svg"
  29491. }
  29492. },
  29493. foot: {
  29494. height: math.unit(1.07, "feet"),
  29495. name: "Foot",
  29496. image: {
  29497. source: "./media/characters/sapphire-svell/foot.svg"
  29498. }
  29499. },
  29500. toering: {
  29501. height: math.unit(1.7, "inch"),
  29502. name: "Toering",
  29503. image: {
  29504. source: "./media/characters/sapphire-svell/toering.svg"
  29505. }
  29506. },
  29507. },
  29508. [
  29509. {
  29510. name: "Normal",
  29511. height: math.unit(300, "feet"),
  29512. default: true
  29513. },
  29514. {
  29515. name: "Augmented",
  29516. height: math.unit(1250, "feet")
  29517. },
  29518. {
  29519. name: "Unleashed",
  29520. height: math.unit(3000, "feet")
  29521. },
  29522. ]
  29523. ))
  29524. characterMakers.push(() => makeCharacter(
  29525. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29526. {
  29527. side: {
  29528. height: math.unit(2 + 3 / 12, "feet"),
  29529. weight: math.unit(110, "lb"),
  29530. name: "Side",
  29531. image: {
  29532. source: "./media/characters/glitch-flux/side.svg",
  29533. extra: 997 / 805,
  29534. bottom: 20 / 1017
  29535. }
  29536. },
  29537. },
  29538. [
  29539. {
  29540. name: "Normal",
  29541. height: math.unit(2 + 3 / 12, "feet"),
  29542. default: true
  29543. },
  29544. ]
  29545. ))
  29546. characterMakers.push(() => makeCharacter(
  29547. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29548. {
  29549. front: {
  29550. height: math.unit(4, "meters"),
  29551. name: "Front",
  29552. image: {
  29553. source: "./media/characters/mid/front.svg",
  29554. extra: 507 / 476,
  29555. bottom: 17 / 524
  29556. }
  29557. },
  29558. back: {
  29559. height: math.unit(4, "meters"),
  29560. name: "Back",
  29561. image: {
  29562. source: "./media/characters/mid/back.svg",
  29563. extra: 519 / 487,
  29564. bottom: 7 / 526
  29565. }
  29566. },
  29567. stuck: {
  29568. height: math.unit(2.2, "meters"),
  29569. name: "Stuck",
  29570. image: {
  29571. source: "./media/characters/mid/stuck.svg",
  29572. extra: 1951 / 1869,
  29573. bottom: 88 / 2039
  29574. }
  29575. }
  29576. },
  29577. [
  29578. {
  29579. name: "Normal",
  29580. height: math.unit(4, "meters"),
  29581. default: true
  29582. },
  29583. {
  29584. name: "Big",
  29585. height: math.unit(10, "meters")
  29586. },
  29587. {
  29588. name: "Macro",
  29589. height: math.unit(800, "meters")
  29590. },
  29591. {
  29592. name: "Megamacro",
  29593. height: math.unit(100, "km")
  29594. },
  29595. {
  29596. name: "Overgrown",
  29597. height: math.unit(1, "parsec")
  29598. },
  29599. ]
  29600. ))
  29601. characterMakers.push(() => makeCharacter(
  29602. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29603. {
  29604. front: {
  29605. height: math.unit(2.5, "meters"),
  29606. weight: math.unit(225, "kg"),
  29607. name: "Front",
  29608. image: {
  29609. source: "./media/characters/iris/front.svg",
  29610. extra: 3348 / 3251,
  29611. bottom: 205 / 3553
  29612. }
  29613. },
  29614. maw: {
  29615. height: math.unit(0.56, "meter"),
  29616. name: "Maw",
  29617. image: {
  29618. source: "./media/characters/iris/maw.svg"
  29619. }
  29620. },
  29621. },
  29622. [
  29623. {
  29624. name: "Mewter cat",
  29625. height: math.unit(1.2, "meters")
  29626. },
  29627. {
  29628. name: "Minimacro",
  29629. height: math.unit(2.5, "meters"),
  29630. default: true
  29631. },
  29632. {
  29633. name: "Macro",
  29634. height: math.unit(180, "meters")
  29635. },
  29636. {
  29637. name: "Megamacro",
  29638. height: math.unit(2746, "meters")
  29639. },
  29640. ]
  29641. ))
  29642. characterMakers.push(() => makeCharacter(
  29643. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29644. {
  29645. front: {
  29646. height: math.unit(6, "feet"),
  29647. weight: math.unit(135, "lb"),
  29648. name: "Front",
  29649. image: {
  29650. source: "./media/characters/axel/front.svg",
  29651. extra: 908 / 908,
  29652. bottom: 58 / 966
  29653. }
  29654. },
  29655. side: {
  29656. height: math.unit(6, "feet"),
  29657. weight: math.unit(135, "lb"),
  29658. name: "Side",
  29659. image: {
  29660. source: "./media/characters/axel/side.svg",
  29661. extra: 958 / 958,
  29662. bottom: 11 / 969
  29663. }
  29664. },
  29665. back: {
  29666. height: math.unit(6, "feet"),
  29667. weight: math.unit(135, "lb"),
  29668. name: "Back",
  29669. image: {
  29670. source: "./media/characters/axel/back.svg",
  29671. extra: 887 / 887,
  29672. bottom: 34 / 921
  29673. }
  29674. },
  29675. head: {
  29676. height: math.unit(1.07, "feet"),
  29677. name: "Head",
  29678. image: {
  29679. source: "./media/characters/axel/head.svg"
  29680. }
  29681. },
  29682. beak: {
  29683. height: math.unit(1.4, "feet"),
  29684. name: "Beak",
  29685. image: {
  29686. source: "./media/characters/axel/beak.svg"
  29687. }
  29688. },
  29689. beakSide: {
  29690. height: math.unit(1.4, "feet"),
  29691. name: "Beak Side",
  29692. image: {
  29693. source: "./media/characters/axel/beak-side.svg"
  29694. }
  29695. },
  29696. sheath: {
  29697. height: math.unit(0.5, "feet"),
  29698. name: "Sheath",
  29699. image: {
  29700. source: "./media/characters/axel/sheath.svg"
  29701. }
  29702. },
  29703. dick: {
  29704. height: math.unit(0.98, "feet"),
  29705. name: "Dick",
  29706. image: {
  29707. source: "./media/characters/axel/dick.svg"
  29708. }
  29709. },
  29710. },
  29711. [
  29712. {
  29713. name: "Macro",
  29714. height: math.unit(68, "meters"),
  29715. default: true
  29716. },
  29717. ]
  29718. ))
  29719. characterMakers.push(() => makeCharacter(
  29720. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29721. {
  29722. front: {
  29723. height: math.unit(3.5, "meters"),
  29724. weight: math.unit(1200, "kg"),
  29725. name: "Front",
  29726. image: {
  29727. source: "./media/characters/joanna/front.svg",
  29728. extra: 1596 / 1488,
  29729. bottom: 29 / 1625
  29730. }
  29731. },
  29732. back: {
  29733. height: math.unit(3.5, "meters"),
  29734. weight: math.unit(1200, "kg"),
  29735. name: "Back",
  29736. image: {
  29737. source: "./media/characters/joanna/back.svg",
  29738. extra: 1594 / 1495,
  29739. bottom: 26 / 1620
  29740. }
  29741. },
  29742. frontShorts: {
  29743. height: math.unit(3.5, "meters"),
  29744. weight: math.unit(1200, "kg"),
  29745. name: "Front (Shorts)",
  29746. image: {
  29747. source: "./media/characters/joanna/front-shorts.svg",
  29748. extra: 1596 / 1488,
  29749. bottom: 29 / 1625
  29750. }
  29751. },
  29752. frontBiker: {
  29753. height: math.unit(3.5, "meters"),
  29754. weight: math.unit(1200, "kg"),
  29755. name: "Front (Biker)",
  29756. image: {
  29757. source: "./media/characters/joanna/front-biker.svg",
  29758. extra: 1596 / 1488,
  29759. bottom: 29 / 1625
  29760. }
  29761. },
  29762. backBiker: {
  29763. height: math.unit(3.5, "meters"),
  29764. weight: math.unit(1200, "kg"),
  29765. name: "Back (Biker)",
  29766. image: {
  29767. source: "./media/characters/joanna/back-biker.svg",
  29768. extra: 1594 / 1495,
  29769. bottom: 88 / 1682
  29770. }
  29771. },
  29772. bikeLeft: {
  29773. height: math.unit(2.4, "meters"),
  29774. weight: math.unit(1600, "kg"),
  29775. name: "Bike (Left)",
  29776. image: {
  29777. source: "./media/characters/joanna/bike-left.svg",
  29778. extra: 720 / 720,
  29779. bottom: 8 / 728
  29780. }
  29781. },
  29782. bikeRight: {
  29783. height: math.unit(2.4, "meters"),
  29784. weight: math.unit(1600, "kg"),
  29785. name: "Bike (Right)",
  29786. image: {
  29787. source: "./media/characters/joanna/bike-right.svg",
  29788. extra: 720 / 720,
  29789. bottom: 8 / 728
  29790. }
  29791. },
  29792. },
  29793. [
  29794. {
  29795. name: "Incognito",
  29796. height: math.unit(3.5, "meters")
  29797. },
  29798. {
  29799. name: "Casual Big",
  29800. height: math.unit(200, "meters")
  29801. },
  29802. {
  29803. name: "Macro",
  29804. height: math.unit(600, "meters")
  29805. },
  29806. {
  29807. name: "Original",
  29808. height: math.unit(20, "km"),
  29809. default: true
  29810. },
  29811. {
  29812. name: "Giga",
  29813. height: math.unit(400, "km")
  29814. },
  29815. {
  29816. name: "Lounging",
  29817. height: math.unit(1500, "km")
  29818. },
  29819. {
  29820. name: "Planetary",
  29821. height: math.unit(200000, "km")
  29822. },
  29823. ]
  29824. ))
  29825. characterMakers.push(() => makeCharacter(
  29826. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29827. {
  29828. front: {
  29829. height: math.unit(6, "feet"),
  29830. weight: math.unit(150, "lb"),
  29831. name: "Front",
  29832. image: {
  29833. source: "./media/characters/hugo-sigil/front.svg",
  29834. extra: 522 / 500,
  29835. bottom: 2 / 524
  29836. }
  29837. },
  29838. back: {
  29839. height: math.unit(6, "feet"),
  29840. weight: math.unit(150, "lb"),
  29841. name: "Back",
  29842. image: {
  29843. source: "./media/characters/hugo-sigil/back.svg",
  29844. extra: 519 / 495,
  29845. bottom: 5 / 524
  29846. }
  29847. },
  29848. maw: {
  29849. height: math.unit(1.4, "feet"),
  29850. weight: math.unit(150, "lb"),
  29851. name: "Maw",
  29852. image: {
  29853. source: "./media/characters/hugo-sigil/maw.svg"
  29854. }
  29855. },
  29856. feet: {
  29857. height: math.unit(1.56, "feet"),
  29858. weight: math.unit(150, "lb"),
  29859. name: "Feet",
  29860. image: {
  29861. source: "./media/characters/hugo-sigil/feet.svg",
  29862. extra: 177 / 177,
  29863. bottom: 12 / 189
  29864. }
  29865. },
  29866. },
  29867. [
  29868. {
  29869. name: "Normal",
  29870. height: math.unit(6, "feet")
  29871. },
  29872. {
  29873. name: "Macro",
  29874. height: math.unit(200, "feet"),
  29875. default: true
  29876. },
  29877. ]
  29878. ))
  29879. characterMakers.push(() => makeCharacter(
  29880. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29881. {
  29882. front: {
  29883. height: math.unit(6, "feet"),
  29884. weight: math.unit(150, "lb"),
  29885. name: "Front",
  29886. image: {
  29887. source: "./media/characters/peri/front.svg",
  29888. extra: 2354 / 2233,
  29889. bottom: 49 / 2403
  29890. }
  29891. },
  29892. },
  29893. [
  29894. {
  29895. name: "Really Small",
  29896. height: math.unit(1, "nm")
  29897. },
  29898. {
  29899. name: "Micro",
  29900. height: math.unit(4, "inches")
  29901. },
  29902. {
  29903. name: "Normal",
  29904. height: math.unit(7, "inches"),
  29905. default: true
  29906. },
  29907. {
  29908. name: "Macro",
  29909. height: math.unit(400, "feet")
  29910. },
  29911. {
  29912. name: "Megamacro",
  29913. height: math.unit(100, "miles")
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29919. {
  29920. frontSlim: {
  29921. height: math.unit(7, "feet"),
  29922. name: "Front (Slim)",
  29923. image: {
  29924. source: "./media/characters/issilora/front-slim.svg",
  29925. extra: 529 / 449,
  29926. bottom: 53 / 582
  29927. }
  29928. },
  29929. sideSlim: {
  29930. height: math.unit(7, "feet"),
  29931. name: "Side (Slim)",
  29932. image: {
  29933. source: "./media/characters/issilora/side-slim.svg",
  29934. extra: 570 / 480,
  29935. bottom: 30 / 600
  29936. }
  29937. },
  29938. backSlim: {
  29939. height: math.unit(7, "feet"),
  29940. name: "Back (Slim)",
  29941. image: {
  29942. source: "./media/characters/issilora/back-slim.svg",
  29943. extra: 537 / 455,
  29944. bottom: 46 / 583
  29945. }
  29946. },
  29947. frontBuff: {
  29948. height: math.unit(7, "feet"),
  29949. name: "Front (Buff)",
  29950. image: {
  29951. source: "./media/characters/issilora/front-buff.svg",
  29952. extra: 2310 / 2035,
  29953. bottom: 335 / 2645
  29954. }
  29955. },
  29956. head: {
  29957. height: math.unit(1.94, "feet"),
  29958. name: "Head",
  29959. image: {
  29960. source: "./media/characters/issilora/head.svg"
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Minimum",
  29967. height: math.unit(7, "feet")
  29968. },
  29969. {
  29970. name: "Comfortable",
  29971. height: math.unit(17, "feet")
  29972. },
  29973. {
  29974. name: "Fun Size",
  29975. height: math.unit(47, "feet")
  29976. },
  29977. {
  29978. name: "Natural Macro",
  29979. height: math.unit(137, "feet"),
  29980. default: true
  29981. },
  29982. {
  29983. name: "Maximum Kaiju",
  29984. height: math.unit(397, "feet")
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29990. {
  29991. front: {
  29992. height: math.unit(50 + 9/12, "feet"),
  29993. weight: math.unit(32.8, "tons"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/irb'iiritaahn/front.svg",
  29997. extra: 1878/1826,
  29998. bottom: 326/2204
  29999. }
  30000. },
  30001. back: {
  30002. height: math.unit(50 + 9/12, "feet"),
  30003. weight: math.unit(32.8, "tons"),
  30004. name: "Back",
  30005. image: {
  30006. source: "./media/characters/irb'iiritaahn/back.svg",
  30007. extra: 2052/2018,
  30008. bottom: 152/2204
  30009. }
  30010. },
  30011. head: {
  30012. height: math.unit(12.86, "feet"),
  30013. name: "Head",
  30014. image: {
  30015. source: "./media/characters/irb'iiritaahn/head.svg"
  30016. }
  30017. },
  30018. maw: {
  30019. height: math.unit(9.66, "feet"),
  30020. name: "Maw",
  30021. image: {
  30022. source: "./media/characters/irb'iiritaahn/maw.svg"
  30023. }
  30024. },
  30025. frontDick: {
  30026. height: math.unit(8.78461, "feet"),
  30027. name: "Front Dick",
  30028. image: {
  30029. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30030. }
  30031. },
  30032. rearDick: {
  30033. height: math.unit(8.78461, "feet"),
  30034. name: "Rear Dick",
  30035. image: {
  30036. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30037. }
  30038. },
  30039. rearDickUnfolded: {
  30040. height: math.unit(8.78, "feet"),
  30041. name: "Rear Dick (Unfolded)",
  30042. image: {
  30043. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30044. }
  30045. },
  30046. wings: {
  30047. height: math.unit(43, "feet"),
  30048. name: "Wings",
  30049. image: {
  30050. source: "./media/characters/irb'iiritaahn/wings.svg"
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Macro",
  30057. height: math.unit(50 + 9/12, "feet"),
  30058. default: true
  30059. },
  30060. ]
  30061. ))
  30062. characterMakers.push(() => makeCharacter(
  30063. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30064. {
  30065. front: {
  30066. height: math.unit(205, "cm"),
  30067. weight: math.unit(102, "kg"),
  30068. name: "Front",
  30069. image: {
  30070. source: "./media/characters/irbisgreif/front.svg",
  30071. extra: 785/706,
  30072. bottom: 13/798
  30073. }
  30074. },
  30075. back: {
  30076. height: math.unit(205, "cm"),
  30077. weight: math.unit(102, "kg"),
  30078. name: "Back",
  30079. image: {
  30080. source: "./media/characters/irbisgreif/back.svg",
  30081. extra: 713/701,
  30082. bottom: 26/739
  30083. }
  30084. },
  30085. frontDressed: {
  30086. height: math.unit(216, "cm"),
  30087. weight: math.unit(102, "kg"),
  30088. name: "Front-dressed",
  30089. image: {
  30090. source: "./media/characters/irbisgreif/front-dressed.svg",
  30091. extra: 902/776,
  30092. bottom: 14/916
  30093. }
  30094. },
  30095. sideDressed: {
  30096. height: math.unit(195, "cm"),
  30097. weight: math.unit(102, "kg"),
  30098. name: "Side-dressed",
  30099. image: {
  30100. source: "./media/characters/irbisgreif/side-dressed.svg",
  30101. extra: 788/688,
  30102. bottom: 21/809
  30103. }
  30104. },
  30105. backDressed: {
  30106. height: math.unit(216, "cm"),
  30107. weight: math.unit(102, "kg"),
  30108. name: "Back-dressed",
  30109. image: {
  30110. source: "./media/characters/irbisgreif/back-dressed.svg",
  30111. extra: 901/783,
  30112. bottom: 10/911
  30113. }
  30114. },
  30115. dick: {
  30116. height: math.unit(0.49, "feet"),
  30117. name: "Dick",
  30118. image: {
  30119. source: "./media/characters/irbisgreif/dick.svg"
  30120. }
  30121. },
  30122. wingTop: {
  30123. height: math.unit(1.93 , "feet"),
  30124. name: "Wing-top",
  30125. image: {
  30126. source: "./media/characters/irbisgreif/wing-top.svg"
  30127. }
  30128. },
  30129. wingBottom: {
  30130. height: math.unit(1.93 , "feet"),
  30131. name: "Wing-bottom",
  30132. image: {
  30133. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30134. }
  30135. },
  30136. },
  30137. [
  30138. {
  30139. name: "Normal",
  30140. height: math.unit(216, "cm"),
  30141. default: true
  30142. },
  30143. ]
  30144. ))
  30145. characterMakers.push(() => makeCharacter(
  30146. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30147. {
  30148. front: {
  30149. height: math.unit(6, "feet"),
  30150. weight: math.unit(150, "lb"),
  30151. name: "Front",
  30152. image: {
  30153. source: "./media/characters/pride/front.svg",
  30154. extra: 1299/1230,
  30155. bottom: 18/1317
  30156. }
  30157. },
  30158. },
  30159. [
  30160. {
  30161. name: "Normal",
  30162. height: math.unit(7, "feet")
  30163. },
  30164. {
  30165. name: "Mini-macro",
  30166. height: math.unit(11, "feet")
  30167. },
  30168. {
  30169. name: "Macro",
  30170. height: math.unit(15, "meters"),
  30171. default: true
  30172. },
  30173. {
  30174. name: "Macro+",
  30175. height: math.unit(40, "meters")
  30176. },
  30177. ]
  30178. ))
  30179. characterMakers.push(() => makeCharacter(
  30180. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30181. {
  30182. front: {
  30183. height: math.unit(4 + 2 / 12, "feet"),
  30184. weight: math.unit(95, "lb"),
  30185. name: "Front",
  30186. image: {
  30187. source: "./media/characters/vaelophis-nyx/front.svg",
  30188. extra: 2532/2330,
  30189. bottom: 0/2532
  30190. }
  30191. },
  30192. back: {
  30193. height: math.unit(4 + 2 / 12, "feet"),
  30194. weight: math.unit(95, "lb"),
  30195. name: "Back",
  30196. image: {
  30197. source: "./media/characters/vaelophis-nyx/back.svg",
  30198. extra: 2484/2361,
  30199. bottom: 0/2484
  30200. }
  30201. },
  30202. feralSide: {
  30203. height: math.unit(2 + 1/12, "feet"),
  30204. weight: math.unit(20, "lb"),
  30205. name: "Feral (Side)",
  30206. image: {
  30207. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30208. extra: 1721/1581,
  30209. bottom: 70/1791
  30210. }
  30211. },
  30212. feralLazing: {
  30213. height: math.unit(1.08, "feet"),
  30214. weight: math.unit(20, "lb"),
  30215. name: "Feral (Lazing)",
  30216. image: {
  30217. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30218. extra: 822/822,
  30219. bottom: 248/1070
  30220. }
  30221. },
  30222. ear: {
  30223. height: math.unit(0.416, "feet"),
  30224. name: "Ear",
  30225. image: {
  30226. source: "./media/characters/vaelophis-nyx/ear.svg"
  30227. }
  30228. },
  30229. eye: {
  30230. height: math.unit(0.0748, "feet"),
  30231. name: "Eye",
  30232. image: {
  30233. source: "./media/characters/vaelophis-nyx/eye.svg"
  30234. }
  30235. },
  30236. mouth: {
  30237. height: math.unit(0.378, "feet"),
  30238. name: "Mouth",
  30239. image: {
  30240. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30241. }
  30242. },
  30243. spade: {
  30244. height: math.unit(0.55, "feet"),
  30245. name: "Spade",
  30246. image: {
  30247. source: "./media/characters/vaelophis-nyx/spade.svg"
  30248. }
  30249. },
  30250. },
  30251. [
  30252. {
  30253. name: "Normal",
  30254. height: math.unit(4 + 2/12, "feet"),
  30255. default: true
  30256. },
  30257. ]
  30258. ))
  30259. characterMakers.push(() => makeCharacter(
  30260. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30261. {
  30262. front: {
  30263. height: math.unit(7, "feet"),
  30264. weight: math.unit(231, "lb"),
  30265. name: "Front",
  30266. image: {
  30267. source: "./media/characters/flux/front.svg",
  30268. extra: 919/871,
  30269. bottom: 0/919
  30270. }
  30271. },
  30272. back: {
  30273. height: math.unit(7, "feet"),
  30274. weight: math.unit(231, "lb"),
  30275. name: "Back",
  30276. image: {
  30277. source: "./media/characters/flux/back.svg",
  30278. extra: 1040/992,
  30279. bottom: 0/1040
  30280. }
  30281. },
  30282. frontDressed: {
  30283. height: math.unit(7, "feet"),
  30284. weight: math.unit(231, "lb"),
  30285. name: "Front (Dressed)",
  30286. image: {
  30287. source: "./media/characters/flux/front-dressed.svg",
  30288. extra: 919/871,
  30289. bottom: 0/919
  30290. }
  30291. },
  30292. feralSide: {
  30293. height: math.unit(5, "feet"),
  30294. weight: math.unit(150, "lb"),
  30295. name: "Feral (Side)",
  30296. image: {
  30297. source: "./media/characters/flux/feral-side.svg",
  30298. extra: 598/528,
  30299. bottom: 28/626
  30300. }
  30301. },
  30302. head: {
  30303. height: math.unit(1.585, "feet"),
  30304. name: "Head",
  30305. image: {
  30306. source: "./media/characters/flux/head.svg"
  30307. }
  30308. },
  30309. headSide: {
  30310. height: math.unit(1.74, "feet"),
  30311. name: "Head (Side)",
  30312. image: {
  30313. source: "./media/characters/flux/head-side.svg"
  30314. }
  30315. },
  30316. headSideFire: {
  30317. height: math.unit(1.76, "feet"),
  30318. name: "Head (Side, Fire)",
  30319. image: {
  30320. source: "./media/characters/flux/head-side-fire.svg"
  30321. }
  30322. },
  30323. },
  30324. [
  30325. {
  30326. name: "Normal",
  30327. height: math.unit(7, "feet"),
  30328. default: true
  30329. },
  30330. ]
  30331. ))
  30332. characterMakers.push(() => makeCharacter(
  30333. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30334. {
  30335. front: {
  30336. height: math.unit(9, "feet"),
  30337. weight: math.unit(1012, "lb"),
  30338. name: "Front",
  30339. image: {
  30340. source: "./media/characters/ulfra-lupae/front.svg",
  30341. extra: 1083/1011,
  30342. bottom: 67/1150
  30343. }
  30344. },
  30345. },
  30346. [
  30347. {
  30348. name: "Micro",
  30349. height: math.unit(6, "inches")
  30350. },
  30351. {
  30352. name: "Socializing",
  30353. height: math.unit(6 + 5/12, "feet")
  30354. },
  30355. {
  30356. name: "Normal",
  30357. height: math.unit(9, "feet"),
  30358. default: true
  30359. },
  30360. {
  30361. name: "Macro",
  30362. height: math.unit(150, "feet")
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30368. {
  30369. front: {
  30370. height: math.unit(5 + 2/12, "feet"),
  30371. weight: math.unit(120, "lb"),
  30372. name: "Front",
  30373. image: {
  30374. source: "./media/characters/timber/front.svg",
  30375. extra: 2814/2705,
  30376. bottom: 181/2995
  30377. }
  30378. },
  30379. },
  30380. [
  30381. {
  30382. name: "Normal",
  30383. height: math.unit(5 + 2/12, "feet"),
  30384. default: true
  30385. },
  30386. ]
  30387. ))
  30388. characterMakers.push(() => makeCharacter(
  30389. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30390. {
  30391. front: {
  30392. height: math.unit(5 + 7/12, "feet"),
  30393. weight: math.unit(220, "lb"),
  30394. name: "Front",
  30395. image: {
  30396. source: "./media/characters/nicki/front.svg",
  30397. extra: 453/419,
  30398. bottom: 7/460
  30399. }
  30400. },
  30401. frontAlt: {
  30402. height: math.unit(5 + 7/12, "feet"),
  30403. weight: math.unit(220, "lb"),
  30404. name: "Front-alt",
  30405. image: {
  30406. source: "./media/characters/nicki/front-alt.svg",
  30407. extra: 435/411,
  30408. bottom: 12/447
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(5 + 7/12, "feet"),
  30413. weight: math.unit(220, "lb"),
  30414. name: "Back",
  30415. image: {
  30416. source: "./media/characters/nicki/back.svg",
  30417. extra: 440/413,
  30418. bottom: 19/459
  30419. }
  30420. },
  30421. taur: {
  30422. height: math.unit(7 + 6/12, "feet"),
  30423. weight: math.unit(700, "lb"),
  30424. name: "Taur",
  30425. image: {
  30426. source: "./media/characters/nicki/taur.svg",
  30427. extra: 975/773,
  30428. bottom: 0/975
  30429. }
  30430. },
  30431. frontNsfw: {
  30432. height: math.unit(5 + 7/12, "feet"),
  30433. weight: math.unit(220, "lb"),
  30434. name: "Front (NSFW)",
  30435. image: {
  30436. source: "./media/characters/nicki/front-nsfw.svg",
  30437. extra: 453/419,
  30438. bottom: 7/460
  30439. }
  30440. },
  30441. frontNsfwAlt: {
  30442. height: math.unit(5 + 7/12, "feet"),
  30443. weight: math.unit(220, "lb"),
  30444. name: "Front (Alt, NSFW)",
  30445. image: {
  30446. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30447. extra: 435/411,
  30448. bottom: 12/447
  30449. }
  30450. },
  30451. backNsfw: {
  30452. height: math.unit(5 + 7/12, "feet"),
  30453. weight: math.unit(220, "lb"),
  30454. name: "Back (NSFW)",
  30455. image: {
  30456. source: "./media/characters/nicki/back-nsfw.svg",
  30457. extra: 440/413,
  30458. bottom: 19/459
  30459. }
  30460. },
  30461. head: {
  30462. height: math.unit(2.1, "feet"),
  30463. name: "Head",
  30464. image: {
  30465. source: "./media/characters/nicki/head.svg"
  30466. }
  30467. },
  30468. paw: {
  30469. height: math.unit(1.88, "feet"),
  30470. name: "Paw",
  30471. image: {
  30472. source: "./media/characters/nicki/paw.svg"
  30473. }
  30474. },
  30475. },
  30476. [
  30477. {
  30478. name: "Normal",
  30479. height: math.unit(5 + 7/12, "feet"),
  30480. default: true
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(7 + 10/12, "feet"),
  30489. weight: math.unit(3.5, "tons"),
  30490. name: "Front",
  30491. image: {
  30492. source: "./media/characters/lee/front.svg",
  30493. extra: 1773/1615,
  30494. bottom: 86/1859
  30495. }
  30496. },
  30497. hand: {
  30498. height: math.unit(1.78, "feet"),
  30499. name: "Hand",
  30500. image: {
  30501. source: "./media/characters/lee/hand.svg"
  30502. }
  30503. },
  30504. maw: {
  30505. height: math.unit(1.18, "feet"),
  30506. name: "Maw",
  30507. image: {
  30508. source: "./media/characters/lee/maw.svg"
  30509. }
  30510. },
  30511. },
  30512. [
  30513. {
  30514. name: "Normal",
  30515. height: math.unit(7 + 10/12, "feet"),
  30516. default: true
  30517. },
  30518. ]
  30519. ))
  30520. characterMakers.push(() => makeCharacter(
  30521. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30522. {
  30523. front: {
  30524. height: math.unit(9, "feet"),
  30525. name: "Front",
  30526. image: {
  30527. source: "./media/characters/guti/front.svg",
  30528. extra: 4551/4355,
  30529. bottom: 123/4674
  30530. }
  30531. },
  30532. tongue: {
  30533. height: math.unit(1, "feet"),
  30534. name: "Tongue",
  30535. image: {
  30536. source: "./media/characters/guti/tongue.svg"
  30537. }
  30538. },
  30539. paw: {
  30540. height: math.unit(1.18, "feet"),
  30541. name: "Paw",
  30542. image: {
  30543. source: "./media/characters/guti/paw.svg"
  30544. }
  30545. },
  30546. },
  30547. [
  30548. {
  30549. name: "Normal",
  30550. height: math.unit(9, "feet"),
  30551. default: true
  30552. },
  30553. ]
  30554. ))
  30555. characterMakers.push(() => makeCharacter(
  30556. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30557. {
  30558. side: {
  30559. height: math.unit(5, "meters"),
  30560. name: "Side",
  30561. image: {
  30562. source: "./media/characters/vesper/side.svg",
  30563. extra: 1605/1518,
  30564. bottom: 0/1605
  30565. }
  30566. },
  30567. },
  30568. [
  30569. {
  30570. name: "Small",
  30571. height: math.unit(5, "meters")
  30572. },
  30573. {
  30574. name: "Sage",
  30575. height: math.unit(100, "meters"),
  30576. default: true
  30577. },
  30578. {
  30579. name: "Fun Size",
  30580. height: math.unit(600, "meters")
  30581. },
  30582. {
  30583. name: "Goddess",
  30584. height: math.unit(20000, "km")
  30585. },
  30586. {
  30587. name: "Maximum",
  30588. height: math.unit(5, "galaxies")
  30589. },
  30590. ]
  30591. ))
  30592. characterMakers.push(() => makeCharacter(
  30593. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30594. {
  30595. front: {
  30596. height: math.unit(6 + 3/12, "feet"),
  30597. weight: math.unit(190, "lb"),
  30598. name: "Front",
  30599. image: {
  30600. source: "./media/characters/gawain/front.svg",
  30601. extra: 2222/2139,
  30602. bottom: 90/2312
  30603. }
  30604. },
  30605. back: {
  30606. height: math.unit(6 + 3/12, "feet"),
  30607. weight: math.unit(190, "lb"),
  30608. name: "Back",
  30609. image: {
  30610. source: "./media/characters/gawain/back.svg",
  30611. extra: 2199/2111,
  30612. bottom: 73/2272
  30613. }
  30614. },
  30615. },
  30616. [
  30617. {
  30618. name: "Normal",
  30619. height: math.unit(6 + 3/12, "feet"),
  30620. default: true
  30621. },
  30622. ]
  30623. ))
  30624. characterMakers.push(() => makeCharacter(
  30625. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30626. {
  30627. side: {
  30628. height: math.unit(3.5, "meters"),
  30629. weight: math.unit(16000, "lb"),
  30630. name: "Side",
  30631. image: {
  30632. source: "./media/characters/dascalti/side.svg",
  30633. extra: 392/273,
  30634. bottom: 47/439
  30635. }
  30636. },
  30637. breath: {
  30638. height: math.unit(7.4, "feet"),
  30639. name: "Breath",
  30640. image: {
  30641. source: "./media/characters/dascalti/breath.svg"
  30642. }
  30643. },
  30644. fed: {
  30645. height: math.unit(3.6, "meters"),
  30646. weight: math.unit(16000, "lb"),
  30647. name: "Fed",
  30648. image: {
  30649. source: "./media/characters/dascalti/fed.svg",
  30650. extra: 1419/820,
  30651. bottom: 95/1514
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Normal",
  30658. height: math.unit(3.5, "meters"),
  30659. default: true
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30665. {
  30666. front: {
  30667. height: math.unit(3 + 5/12, "feet"),
  30668. name: "Front",
  30669. image: {
  30670. source: "./media/characters/mauve/front.svg",
  30671. extra: 1126/1033,
  30672. bottom: 65/1191
  30673. }
  30674. },
  30675. side: {
  30676. height: math.unit(3 + 5/12, "feet"),
  30677. name: "Side",
  30678. image: {
  30679. source: "./media/characters/mauve/side.svg",
  30680. extra: 1089/1001,
  30681. bottom: 29/1118
  30682. }
  30683. },
  30684. back: {
  30685. height: math.unit(3 + 5/12, "feet"),
  30686. name: "Back",
  30687. image: {
  30688. source: "./media/characters/mauve/back.svg",
  30689. extra: 1173/1053,
  30690. bottom: 109/1282
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Normal",
  30697. height: math.unit(3 + 5/12, "feet"),
  30698. default: true
  30699. },
  30700. ]
  30701. ))
  30702. characterMakers.push(() => makeCharacter(
  30703. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30704. {
  30705. front: {
  30706. height: math.unit(6 + 3/12, "feet"),
  30707. weight: math.unit(430, "lb"),
  30708. name: "Front",
  30709. image: {
  30710. source: "./media/characters/carlos/front.svg",
  30711. extra: 1964/1913,
  30712. bottom: 70/2034
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Normal",
  30719. height: math.unit(6 + 3/12, "feet"),
  30720. default: true
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30726. {
  30727. back: {
  30728. height: math.unit(5 + 10/12, "feet"),
  30729. weight: math.unit(200, "lb"),
  30730. name: "Back",
  30731. image: {
  30732. source: "./media/characters/jax/back.svg",
  30733. extra: 764/739,
  30734. bottom: 25/789
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Normal",
  30741. height: math.unit(5 + 10/12, "feet"),
  30742. default: true
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30748. {
  30749. front: {
  30750. height: math.unit(8, "feet"),
  30751. weight: math.unit(250, "lb"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/eikthynir/front.svg",
  30755. extra: 1332/1166,
  30756. bottom: 82/1414
  30757. }
  30758. },
  30759. back: {
  30760. height: math.unit(8, "feet"),
  30761. weight: math.unit(250, "lb"),
  30762. name: "Back",
  30763. image: {
  30764. source: "./media/characters/eikthynir/back.svg",
  30765. extra: 1342/1190,
  30766. bottom: 19/1361
  30767. }
  30768. },
  30769. dick: {
  30770. height: math.unit(2.35, "feet"),
  30771. name: "Dick",
  30772. image: {
  30773. source: "./media/characters/eikthynir/dick.svg"
  30774. }
  30775. },
  30776. },
  30777. [
  30778. {
  30779. name: "Normal",
  30780. height: math.unit(8, "feet"),
  30781. default: true
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30787. {
  30788. front: {
  30789. height: math.unit(99, "meters"),
  30790. weight: math.unit(13000, "tons"),
  30791. name: "Front",
  30792. image: {
  30793. source: "./media/characters/zlmos/front.svg",
  30794. extra: 2202/1992,
  30795. bottom: 315/2517
  30796. }
  30797. },
  30798. },
  30799. [
  30800. {
  30801. name: "Macro",
  30802. height: math.unit(99, "meters"),
  30803. default: true
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(6 + 5/12, "feet"),
  30812. name: "Front",
  30813. image: {
  30814. source: "./media/characters/purri/front.svg",
  30815. extra: 1698/1610,
  30816. bottom: 32/1730
  30817. }
  30818. },
  30819. frontAlt: {
  30820. height: math.unit(6 + 5/12, "feet"),
  30821. name: "Front (Alt)",
  30822. image: {
  30823. source: "./media/characters/purri/front-alt.svg",
  30824. extra: 450/420,
  30825. bottom: 26/476
  30826. }
  30827. },
  30828. boots: {
  30829. height: math.unit(5.5, "feet"),
  30830. name: "Boots",
  30831. image: {
  30832. source: "./media/characters/purri/boots.svg",
  30833. extra: 905/853,
  30834. bottom: 18/923
  30835. }
  30836. },
  30837. lying: {
  30838. height: math.unit(2, "feet"),
  30839. name: "Lying",
  30840. image: {
  30841. source: "./media/characters/purri/lying.svg",
  30842. extra: 940/843,
  30843. bottom: 146/1086
  30844. }
  30845. },
  30846. devious: {
  30847. height: math.unit(1.77, "feet"),
  30848. name: "Devious",
  30849. image: {
  30850. source: "./media/characters/purri/devious.svg",
  30851. extra: 1440/1155,
  30852. bottom: 147/1587
  30853. }
  30854. },
  30855. bean: {
  30856. height: math.unit(1.94, "feet"),
  30857. name: "Bean",
  30858. image: {
  30859. source: "./media/characters/purri/bean.svg"
  30860. }
  30861. },
  30862. },
  30863. [
  30864. {
  30865. name: "Micro",
  30866. height: math.unit(1, "mm")
  30867. },
  30868. {
  30869. name: "Normal",
  30870. height: math.unit(6 + 5/12, "feet"),
  30871. default: true
  30872. },
  30873. {
  30874. name: "Macro :3c",
  30875. height: math.unit(2, "miles")
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30881. {
  30882. front: {
  30883. height: math.unit(6 + 2/12, "feet"),
  30884. weight: math.unit(250, "lb"),
  30885. name: "Front",
  30886. image: {
  30887. source: "./media/characters/moonlight/front.svg",
  30888. extra: 1044/908,
  30889. bottom: 56/1100
  30890. }
  30891. },
  30892. feral: {
  30893. height: math.unit(3 + 1/12, "feet"),
  30894. weight: math.unit(50, "kg"),
  30895. name: "Feral",
  30896. image: {
  30897. source: "./media/characters/moonlight/feral.svg",
  30898. extra: 3705/2791,
  30899. bottom: 145/3850
  30900. }
  30901. },
  30902. paw: {
  30903. height: math.unit(1, "feet"),
  30904. name: "Paw",
  30905. image: {
  30906. source: "./media/characters/moonlight/paw.svg"
  30907. }
  30908. },
  30909. paws: {
  30910. height: math.unit(0.98, "feet"),
  30911. name: "Paws",
  30912. image: {
  30913. source: "./media/characters/moonlight/paws.svg",
  30914. extra: 939/939,
  30915. bottom: 50/989
  30916. }
  30917. },
  30918. mouth: {
  30919. height: math.unit(0.48, "feet"),
  30920. name: "Mouth",
  30921. image: {
  30922. source: "./media/characters/moonlight/mouth.svg"
  30923. }
  30924. },
  30925. dick: {
  30926. height: math.unit(1.46, "feet"),
  30927. name: "Dick",
  30928. image: {
  30929. source: "./media/characters/moonlight/dick.svg"
  30930. }
  30931. },
  30932. },
  30933. [
  30934. {
  30935. name: "Normal",
  30936. height: math.unit(6 + 2/12, "feet"),
  30937. default: true
  30938. },
  30939. {
  30940. name: "Macro",
  30941. height: math.unit(300, "feet")
  30942. },
  30943. {
  30944. name: "Macro+",
  30945. height: math.unit(1, "mile")
  30946. },
  30947. {
  30948. name: "Mt. Moon",
  30949. height: math.unit(5, "miles")
  30950. },
  30951. {
  30952. name: "Megamacro",
  30953. height: math.unit(15, "miles")
  30954. },
  30955. ]
  30956. ))
  30957. characterMakers.push(() => makeCharacter(
  30958. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30959. {
  30960. back: {
  30961. height: math.unit(6, "feet"),
  30962. weight: math.unit(150, "lb"),
  30963. name: "Back",
  30964. image: {
  30965. source: "./media/characters/sylen/back.svg",
  30966. extra: 1335/1273,
  30967. bottom: 107/1442
  30968. }
  30969. },
  30970. },
  30971. [
  30972. {
  30973. name: "Normal",
  30974. height: math.unit(5 + 5/12, "feet")
  30975. },
  30976. {
  30977. name: "Megamacro",
  30978. height: math.unit(3, "miles"),
  30979. default: true
  30980. },
  30981. ]
  30982. ))
  30983. characterMakers.push(() => makeCharacter(
  30984. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30985. {
  30986. front: {
  30987. height: math.unit(6, "feet"),
  30988. weight: math.unit(190, "lb"),
  30989. name: "Front",
  30990. image: {
  30991. source: "./media/characters/huttser/front.svg",
  30992. extra: 1152/1058,
  30993. bottom: 23/1175
  30994. }
  30995. },
  30996. side: {
  30997. height: math.unit(6, "feet"),
  30998. weight: math.unit(190, "lb"),
  30999. name: "Side",
  31000. image: {
  31001. source: "./media/characters/huttser/side.svg",
  31002. extra: 1174/1065,
  31003. bottom: 18/1192
  31004. }
  31005. },
  31006. back: {
  31007. height: math.unit(6, "feet"),
  31008. weight: math.unit(190, "lb"),
  31009. name: "Back",
  31010. image: {
  31011. source: "./media/characters/huttser/back.svg",
  31012. extra: 1158/1056,
  31013. bottom: 12/1170
  31014. }
  31015. },
  31016. },
  31017. [
  31018. ]
  31019. ))
  31020. characterMakers.push(() => makeCharacter(
  31021. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31022. {
  31023. side: {
  31024. height: math.unit(12 + 9/12, "feet"),
  31025. weight: math.unit(15000, "lb"),
  31026. name: "Side",
  31027. image: {
  31028. source: "./media/characters/faan/side.svg",
  31029. extra: 2747/2697,
  31030. bottom: 0/2747
  31031. }
  31032. },
  31033. front: {
  31034. height: math.unit(12 + 9/12, "feet"),
  31035. weight: math.unit(15000, "lb"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/faan/front.svg",
  31039. extra: 607/571,
  31040. bottom: 24/631
  31041. }
  31042. },
  31043. head: {
  31044. height: math.unit(2.85, "feet"),
  31045. name: "Head",
  31046. image: {
  31047. source: "./media/characters/faan/head.svg"
  31048. }
  31049. },
  31050. headAlt: {
  31051. height: math.unit(3.13, "feet"),
  31052. name: "Head-alt",
  31053. image: {
  31054. source: "./media/characters/faan/head-alt.svg"
  31055. }
  31056. },
  31057. },
  31058. [
  31059. {
  31060. name: "Normal",
  31061. height: math.unit(12 + 9/12, "feet"),
  31062. default: true
  31063. },
  31064. ]
  31065. ))
  31066. characterMakers.push(() => makeCharacter(
  31067. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31068. {
  31069. front: {
  31070. height: math.unit(6, "feet"),
  31071. weight: math.unit(300, "lb"),
  31072. name: "Front",
  31073. image: {
  31074. source: "./media/characters/tanio/front.svg",
  31075. extra: 711/673,
  31076. bottom: 25/736
  31077. }
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Normal",
  31083. height: math.unit(6, "feet"),
  31084. default: true
  31085. },
  31086. ]
  31087. ))
  31088. characterMakers.push(() => makeCharacter(
  31089. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31090. {
  31091. front: {
  31092. height: math.unit(3, "inches"),
  31093. name: "Front",
  31094. image: {
  31095. source: "./media/characters/noboru/front.svg",
  31096. extra: 1039/932,
  31097. bottom: 18/1057
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Micro",
  31104. height: math.unit(3, "inches"),
  31105. default: true
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(1.85, "meters"),
  31114. weight: math.unit(80, "kg"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/daniel-barrett/front.svg",
  31118. extra: 355/337,
  31119. bottom: 9/364
  31120. }
  31121. },
  31122. },
  31123. [
  31124. {
  31125. name: "Pico",
  31126. height: math.unit(0.0433, "mm")
  31127. },
  31128. {
  31129. name: "Nano",
  31130. height: math.unit(1.5, "mm")
  31131. },
  31132. {
  31133. name: "Micro",
  31134. height: math.unit(5.3, "cm"),
  31135. default: true
  31136. },
  31137. {
  31138. name: "Normal",
  31139. height: math.unit(1.85, "meters")
  31140. },
  31141. {
  31142. name: "Macro",
  31143. height: math.unit(64.7, "meters")
  31144. },
  31145. {
  31146. name: "Megamacro",
  31147. height: math.unit(2.26, "km")
  31148. },
  31149. {
  31150. name: "Gigamacro",
  31151. height: math.unit(79, "km")
  31152. },
  31153. {
  31154. name: "Teramacro",
  31155. height: math.unit(2765, "km")
  31156. },
  31157. {
  31158. name: "Petamacro",
  31159. height: math.unit(96678, "km")
  31160. },
  31161. ]
  31162. ))
  31163. characterMakers.push(() => makeCharacter(
  31164. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31165. {
  31166. front: {
  31167. height: math.unit(30, "meters"),
  31168. weight: math.unit(400, "tons"),
  31169. name: "Front",
  31170. image: {
  31171. source: "./media/characters/zeel/front.svg",
  31172. extra: 2599/2599,
  31173. bottom: 226/2825
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Macro",
  31180. height: math.unit(30, "meters"),
  31181. default: true
  31182. },
  31183. ]
  31184. ))
  31185. characterMakers.push(() => makeCharacter(
  31186. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31187. {
  31188. front: {
  31189. height: math.unit(6 + 7/12, "feet"),
  31190. weight: math.unit(210, "lb"),
  31191. name: "Front",
  31192. image: {
  31193. source: "./media/characters/tarn/front.svg",
  31194. extra: 3517/3220,
  31195. bottom: 91/3608
  31196. }
  31197. },
  31198. back: {
  31199. height: math.unit(6 + 7/12, "feet"),
  31200. weight: math.unit(210, "lb"),
  31201. name: "Back",
  31202. image: {
  31203. source: "./media/characters/tarn/back.svg",
  31204. extra: 3566/3241,
  31205. bottom: 34/3600
  31206. }
  31207. },
  31208. dick: {
  31209. height: math.unit(1.65, "feet"),
  31210. name: "Dick",
  31211. image: {
  31212. source: "./media/characters/tarn/dick.svg"
  31213. }
  31214. },
  31215. paw: {
  31216. height: math.unit(1.80, "feet"),
  31217. name: "Paw",
  31218. image: {
  31219. source: "./media/characters/tarn/paw.svg"
  31220. }
  31221. },
  31222. tongue: {
  31223. height: math.unit(0.97, "feet"),
  31224. name: "Tongue",
  31225. image: {
  31226. source: "./media/characters/tarn/tongue.svg"
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Micro",
  31233. height: math.unit(4, "inches")
  31234. },
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(6 + 7/12, "feet"),
  31238. default: true
  31239. },
  31240. {
  31241. name: "Macro",
  31242. height: math.unit(300, "feet")
  31243. },
  31244. ]
  31245. ))
  31246. characterMakers.push(() => makeCharacter(
  31247. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31248. {
  31249. front: {
  31250. height: math.unit(5 + 7/12, "feet"),
  31251. weight: math.unit(80, "kg"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31255. extra: 3023/2865,
  31256. bottom: 33/3056
  31257. }
  31258. },
  31259. back: {
  31260. height: math.unit(5 + 7/12, "feet"),
  31261. weight: math.unit(80, "kg"),
  31262. name: "Back",
  31263. image: {
  31264. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31265. extra: 3020/2886,
  31266. bottom: 30/3050
  31267. }
  31268. },
  31269. dick: {
  31270. height: math.unit(0.98, "feet"),
  31271. name: "Dick",
  31272. image: {
  31273. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31274. }
  31275. },
  31276. anatomy: {
  31277. height: math.unit(2.86, "feet"),
  31278. name: "Anatomy",
  31279. image: {
  31280. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31281. }
  31282. },
  31283. },
  31284. [
  31285. {
  31286. name: "Really Small",
  31287. height: math.unit(2, "inches")
  31288. },
  31289. {
  31290. name: "Micro",
  31291. height: math.unit(5.583, "inches")
  31292. },
  31293. {
  31294. name: "Normal",
  31295. height: math.unit(5 + 7/12, "feet"),
  31296. default: true
  31297. },
  31298. {
  31299. name: "Macro",
  31300. height: math.unit(67, "feet")
  31301. },
  31302. {
  31303. name: "Megamacro",
  31304. height: math.unit(134, "feet")
  31305. },
  31306. ]
  31307. ))
  31308. characterMakers.push(() => makeCharacter(
  31309. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31310. {
  31311. front: {
  31312. height: math.unit(9, "feet"),
  31313. weight: math.unit(120, "lb"),
  31314. name: "Front",
  31315. image: {
  31316. source: "./media/characters/sally/front.svg",
  31317. extra: 1506/1349,
  31318. bottom: 66/1572
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Normal",
  31325. height: math.unit(9, "feet"),
  31326. default: true
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31332. {
  31333. front: {
  31334. height: math.unit(8, "feet"),
  31335. weight: math.unit(900, "lb"),
  31336. name: "Front",
  31337. image: {
  31338. source: "./media/characters/owen/front.svg",
  31339. extra: 1761/1657,
  31340. bottom: 74/1835
  31341. }
  31342. },
  31343. side: {
  31344. height: math.unit(8, "feet"),
  31345. weight: math.unit(900, "lb"),
  31346. name: "Side",
  31347. image: {
  31348. source: "./media/characters/owen/side.svg",
  31349. extra: 1797/1734,
  31350. bottom: 30/1827
  31351. }
  31352. },
  31353. back: {
  31354. height: math.unit(8, "feet"),
  31355. weight: math.unit(900, "lb"),
  31356. name: "Back",
  31357. image: {
  31358. source: "./media/characters/owen/back.svg",
  31359. extra: 1796/1706,
  31360. bottom: 59/1855
  31361. }
  31362. },
  31363. maw: {
  31364. height: math.unit(1.76, "feet"),
  31365. name: "Maw",
  31366. image: {
  31367. source: "./media/characters/owen/maw.svg"
  31368. }
  31369. },
  31370. },
  31371. [
  31372. {
  31373. name: "Normal",
  31374. height: math.unit(8, "feet"),
  31375. default: true
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31381. {
  31382. front: {
  31383. height: math.unit(4, "feet"),
  31384. weight: math.unit(400, "lb"),
  31385. name: "Front",
  31386. image: {
  31387. source: "./media/characters/ryth/front.svg",
  31388. extra: 876/691,
  31389. bottom: 25/901
  31390. }
  31391. },
  31392. goia: {
  31393. height: math.unit(12, "feet"),
  31394. weight: math.unit(10800, "lb"),
  31395. name: "Goia",
  31396. image: {
  31397. source: "./media/characters/ryth/goia.svg",
  31398. extra: 3450/3198,
  31399. bottom: 61/3511
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Normal",
  31406. height: math.unit(4, "feet"),
  31407. default: true
  31408. },
  31409. ]
  31410. ))
  31411. characterMakers.push(() => makeCharacter(
  31412. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31413. {
  31414. front: {
  31415. height: math.unit(7, "feet"),
  31416. weight: math.unit(180, "lb"),
  31417. name: "Front",
  31418. image: {
  31419. source: "./media/characters/necrolance/front.svg",
  31420. extra: 1062/947,
  31421. bottom: 41/1103
  31422. }
  31423. },
  31424. back: {
  31425. height: math.unit(7, "feet"),
  31426. weight: math.unit(180, "lb"),
  31427. name: "Back",
  31428. image: {
  31429. source: "./media/characters/necrolance/back.svg",
  31430. extra: 1045/984,
  31431. bottom: 14/1059
  31432. }
  31433. },
  31434. wing: {
  31435. height: math.unit(2.67, "feet"),
  31436. name: "Wing",
  31437. image: {
  31438. source: "./media/characters/necrolance/wing.svg"
  31439. }
  31440. },
  31441. },
  31442. [
  31443. {
  31444. name: "Normal",
  31445. height: math.unit(7, "feet"),
  31446. default: true
  31447. },
  31448. ]
  31449. ))
  31450. characterMakers.push(() => makeCharacter(
  31451. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31452. {
  31453. front: {
  31454. height: math.unit(76, "meters"),
  31455. weight: math.unit(30000, "tons"),
  31456. name: "Front",
  31457. image: {
  31458. source: "./media/characters/tyler/front.svg",
  31459. extra: 1640/1640,
  31460. bottom: 114/1754
  31461. }
  31462. },
  31463. },
  31464. [
  31465. {
  31466. name: "Macro",
  31467. height: math.unit(76, "meters"),
  31468. default: true
  31469. },
  31470. ]
  31471. ))
  31472. characterMakers.push(() => makeCharacter(
  31473. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31474. {
  31475. front: {
  31476. height: math.unit(4 + 11/12, "feet"),
  31477. weight: math.unit(132, "lb"),
  31478. name: "Front",
  31479. image: {
  31480. source: "./media/characters/icey/front.svg",
  31481. extra: 2750/2550,
  31482. bottom: 33/2783
  31483. }
  31484. },
  31485. back: {
  31486. height: math.unit(4 + 11/12, "feet"),
  31487. weight: math.unit(132, "lb"),
  31488. name: "Back",
  31489. image: {
  31490. source: "./media/characters/icey/back.svg",
  31491. extra: 2624/2481,
  31492. bottom: 35/2659
  31493. }
  31494. },
  31495. },
  31496. [
  31497. {
  31498. name: "Normal",
  31499. height: math.unit(4 + 11/12, "feet"),
  31500. default: true
  31501. },
  31502. ]
  31503. ))
  31504. characterMakers.push(() => makeCharacter(
  31505. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31506. {
  31507. front: {
  31508. height: math.unit(100, "feet"),
  31509. weight: math.unit(0, "lb"),
  31510. name: "Front",
  31511. image: {
  31512. source: "./media/characters/smile/front.svg",
  31513. extra: 2983/2912,
  31514. bottom: 162/3145
  31515. }
  31516. },
  31517. back: {
  31518. height: math.unit(100, "feet"),
  31519. weight: math.unit(0, "lb"),
  31520. name: "Back",
  31521. image: {
  31522. source: "./media/characters/smile/back.svg",
  31523. extra: 3143/3031,
  31524. bottom: 91/3234
  31525. }
  31526. },
  31527. head: {
  31528. height: math.unit(26.3, "feet"),
  31529. weight: math.unit(0, "lb"),
  31530. name: "Head",
  31531. image: {
  31532. source: "./media/characters/smile/head.svg"
  31533. }
  31534. },
  31535. collar: {
  31536. height: math.unit(5.3, "feet"),
  31537. weight: math.unit(0, "lb"),
  31538. name: "Collar",
  31539. image: {
  31540. source: "./media/characters/smile/collar.svg"
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Macro",
  31547. height: math.unit(100, "feet"),
  31548. default: true
  31549. },
  31550. ]
  31551. ))
  31552. characterMakers.push(() => makeCharacter(
  31553. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31554. {
  31555. dragon: {
  31556. height: math.unit(26, "feet"),
  31557. weight: math.unit(36, "tons"),
  31558. name: "Dragon",
  31559. image: {
  31560. source: "./media/characters/arimphae/dragon.svg",
  31561. extra: 1574/983,
  31562. bottom: 357/1931
  31563. }
  31564. },
  31565. drake: {
  31566. height: math.unit(9, "feet"),
  31567. weight: math.unit(1.5, "tons"),
  31568. name: "Drake",
  31569. image: {
  31570. source: "./media/characters/arimphae/drake.svg",
  31571. extra: 1120/925,
  31572. bottom: 435/1555
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Small",
  31579. height: math.unit(26*5/9, "feet")
  31580. },
  31581. {
  31582. name: "Normal",
  31583. height: math.unit(26, "feet"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(8 + 9/12, "feet"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/xander/front.svg",
  31596. extra: 848/673,
  31597. bottom: 62/910
  31598. }
  31599. },
  31600. },
  31601. [
  31602. {
  31603. name: "Normal",
  31604. height: math.unit(8 + 9/12, "feet"),
  31605. default: true
  31606. },
  31607. {
  31608. name: "Gaze Grabber",
  31609. height: math.unit(13 + 8/12, "feet")
  31610. },
  31611. {
  31612. name: "Jaw Dropper",
  31613. height: math.unit(27, "feet")
  31614. },
  31615. {
  31616. name: "Show Stopper",
  31617. height: math.unit(136, "feet")
  31618. },
  31619. {
  31620. name: "Superstar",
  31621. height: math.unit(1.9e6, "miles")
  31622. },
  31623. ]
  31624. ))
  31625. characterMakers.push(() => makeCharacter(
  31626. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31627. {
  31628. side: {
  31629. height: math.unit(2100, "feet"),
  31630. name: "Side",
  31631. image: {
  31632. source: "./media/characters/osiris/side.svg",
  31633. extra: 1105/939,
  31634. bottom: 167/1272
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Macro",
  31641. height: math.unit(2100, "feet"),
  31642. default: true
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31648. {
  31649. front: {
  31650. height: math.unit(6 + 8/12, "feet"),
  31651. weight: math.unit(225, "lb"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/rhys-londe/front.svg",
  31655. extra: 2258/2141,
  31656. bottom: 188/2446
  31657. }
  31658. },
  31659. back: {
  31660. height: math.unit(6 + 8/12, "feet"),
  31661. weight: math.unit(225, "lb"),
  31662. name: "Back",
  31663. image: {
  31664. source: "./media/characters/rhys-londe/back.svg",
  31665. extra: 2237/2137,
  31666. bottom: 63/2300
  31667. }
  31668. },
  31669. frontNsfw: {
  31670. height: math.unit(6 + 8/12, "feet"),
  31671. weight: math.unit(225, "lb"),
  31672. name: "Front (NSFW)",
  31673. image: {
  31674. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31675. extra: 2258/2141,
  31676. bottom: 188/2446
  31677. }
  31678. },
  31679. backNsfw: {
  31680. height: math.unit(6 + 8/12, "feet"),
  31681. weight: math.unit(225, "lb"),
  31682. name: "Back (NSFW)",
  31683. image: {
  31684. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31685. extra: 2237/2137,
  31686. bottom: 63/2300
  31687. }
  31688. },
  31689. dick: {
  31690. height: math.unit(30, "inches"),
  31691. name: "Dick",
  31692. image: {
  31693. source: "./media/characters/rhys-londe/dick.svg"
  31694. }
  31695. },
  31696. maw: {
  31697. height: math.unit(1.6, "feet"),
  31698. name: "Maw",
  31699. image: {
  31700. source: "./media/characters/rhys-londe/maw.svg"
  31701. }
  31702. },
  31703. },
  31704. [
  31705. {
  31706. name: "Normal",
  31707. height: math.unit(6 + 8/12, "feet"),
  31708. default: true
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(3 + 10/12, "feet"),
  31717. weight: math.unit(90, "lb"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/taivas-ensim/front.svg",
  31721. extra: 1327/1216,
  31722. bottom: 96/1423
  31723. }
  31724. },
  31725. back: {
  31726. height: math.unit(3 + 10/12, "feet"),
  31727. weight: math.unit(90, "lb"),
  31728. name: "Back",
  31729. image: {
  31730. source: "./media/characters/taivas-ensim/back.svg",
  31731. extra: 1355/1247,
  31732. bottom: 11/1366
  31733. }
  31734. },
  31735. frontNsfw: {
  31736. height: math.unit(3 + 10/12, "feet"),
  31737. weight: math.unit(90, "lb"),
  31738. name: "Front (NSFW)",
  31739. image: {
  31740. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31741. extra: 1327/1216,
  31742. bottom: 96/1423
  31743. }
  31744. },
  31745. backNsfw: {
  31746. height: math.unit(3 + 10/12, "feet"),
  31747. weight: math.unit(90, "lb"),
  31748. name: "Back (NSFW)",
  31749. image: {
  31750. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31751. extra: 1355/1247,
  31752. bottom: 11/1366
  31753. }
  31754. },
  31755. },
  31756. [
  31757. {
  31758. name: "Normal",
  31759. height: math.unit(3 + 10/12, "feet"),
  31760. default: true
  31761. },
  31762. ]
  31763. ))
  31764. characterMakers.push(() => makeCharacter(
  31765. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31766. {
  31767. front: {
  31768. height: math.unit(9 + 6/12, "feet"),
  31769. weight: math.unit(940, "lb"),
  31770. name: "Front",
  31771. image: {
  31772. source: "./media/characters/byliss/front.svg",
  31773. extra: 1327/1290,
  31774. bottom: 82/1409
  31775. }
  31776. },
  31777. back: {
  31778. height: math.unit(9 + 6/12, "feet"),
  31779. weight: math.unit(940, "lb"),
  31780. name: "Back",
  31781. image: {
  31782. source: "./media/characters/byliss/back.svg",
  31783. extra: 1376/1349,
  31784. bottom: 9/1385
  31785. }
  31786. },
  31787. frontNsfw: {
  31788. height: math.unit(9 + 6/12, "feet"),
  31789. weight: math.unit(940, "lb"),
  31790. name: "Front (NSFW)",
  31791. image: {
  31792. source: "./media/characters/byliss/front-nsfw.svg",
  31793. extra: 1327/1290,
  31794. bottom: 82/1409
  31795. }
  31796. },
  31797. backNsfw: {
  31798. height: math.unit(9 + 6/12, "feet"),
  31799. weight: math.unit(940, "lb"),
  31800. name: "Back (NSFW)",
  31801. image: {
  31802. source: "./media/characters/byliss/back-nsfw.svg",
  31803. extra: 1376/1349,
  31804. bottom: 9/1385
  31805. }
  31806. },
  31807. },
  31808. [
  31809. {
  31810. name: "Normal",
  31811. height: math.unit(9 + 6/12, "feet"),
  31812. default: true
  31813. },
  31814. ]
  31815. ))
  31816. characterMakers.push(() => makeCharacter(
  31817. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31818. {
  31819. front: {
  31820. height: math.unit(5 + 2/12, "feet"),
  31821. weight: math.unit(200, "lb"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/noraly/front.svg",
  31825. extra: 4985/4773,
  31826. bottom: 150/5135
  31827. }
  31828. },
  31829. full: {
  31830. height: math.unit(5 + 2/12, "feet"),
  31831. weight: math.unit(164, "lb"),
  31832. name: "Full",
  31833. image: {
  31834. source: "./media/characters/noraly/full.svg",
  31835. extra: 1114/1059,
  31836. bottom: 35/1149
  31837. }
  31838. },
  31839. fuller: {
  31840. height: math.unit(5 + 2/12, "feet"),
  31841. weight: math.unit(230, "lb"),
  31842. name: "Fuller",
  31843. image: {
  31844. source: "./media/characters/noraly/fuller.svg",
  31845. extra: 1114/1059,
  31846. bottom: 35/1149
  31847. }
  31848. },
  31849. fullest: {
  31850. height: math.unit(5 + 2/12, "feet"),
  31851. weight: math.unit(300, "lb"),
  31852. name: "Fullest",
  31853. image: {
  31854. source: "./media/characters/noraly/fullest.svg",
  31855. extra: 1114/1059,
  31856. bottom: 35/1149
  31857. }
  31858. },
  31859. },
  31860. [
  31861. {
  31862. name: "Normal",
  31863. height: math.unit(5 + 2/12, "feet"),
  31864. default: true
  31865. },
  31866. ]
  31867. ))
  31868. characterMakers.push(() => makeCharacter(
  31869. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31870. {
  31871. front: {
  31872. height: math.unit(5 + 2/12, "feet"),
  31873. weight: math.unit(210, "lb"),
  31874. name: "Front",
  31875. image: {
  31876. source: "./media/characters/pera/front.svg",
  31877. extra: 1560/1531,
  31878. bottom: 165/1725
  31879. }
  31880. },
  31881. back: {
  31882. height: math.unit(5 + 2/12, "feet"),
  31883. weight: math.unit(210, "lb"),
  31884. name: "Back",
  31885. image: {
  31886. source: "./media/characters/pera/back.svg",
  31887. extra: 1523/1493,
  31888. bottom: 152/1675
  31889. }
  31890. },
  31891. dick: {
  31892. height: math.unit(2.4, "feet"),
  31893. name: "Dick",
  31894. image: {
  31895. source: "./media/characters/pera/dick.svg"
  31896. }
  31897. },
  31898. },
  31899. [
  31900. {
  31901. name: "Normal",
  31902. height: math.unit(5 + 2/12, "feet"),
  31903. default: true
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31909. {
  31910. front: {
  31911. height: math.unit(12, "feet"),
  31912. weight: math.unit(3200, "lb"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/julian/front.svg",
  31916. extra: 2962/2701,
  31917. bottom: 184/3146
  31918. }
  31919. },
  31920. maw: {
  31921. height: math.unit(5.35, "feet"),
  31922. name: "Maw",
  31923. image: {
  31924. source: "./media/characters/julian/maw.svg"
  31925. }
  31926. },
  31927. paw: {
  31928. height: math.unit(3.07, "feet"),
  31929. name: "Paw",
  31930. image: {
  31931. source: "./media/characters/julian/paw.svg"
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Default",
  31938. height: math.unit(12, "feet"),
  31939. default: true
  31940. },
  31941. {
  31942. name: "Big",
  31943. height: math.unit(50, "feet")
  31944. },
  31945. {
  31946. name: "Really Big",
  31947. height: math.unit(1, "mile")
  31948. },
  31949. {
  31950. name: "Extremely Big",
  31951. height: math.unit(100, "miles")
  31952. },
  31953. {
  31954. name: "Planet Hugger",
  31955. height: math.unit(200, "megameters")
  31956. },
  31957. {
  31958. name: "Unreasonably Big",
  31959. height: math.unit(1e300, "meters")
  31960. },
  31961. ]
  31962. ))
  31963. characterMakers.push(() => makeCharacter(
  31964. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31965. {
  31966. solgooleo: {
  31967. height: math.unit(4, "meters"),
  31968. weight: math.unit(6000*1.5, "kg"),
  31969. volume: math.unit(6000, "liters"),
  31970. name: "Solgooleo",
  31971. image: {
  31972. source: "./media/characters/pi/solgooleo.svg",
  31973. extra: 388/331,
  31974. bottom: 29/417
  31975. }
  31976. },
  31977. },
  31978. [
  31979. {
  31980. name: "Normal",
  31981. height: math.unit(4, "meters"),
  31982. default: true
  31983. },
  31984. ]
  31985. ))
  31986. characterMakers.push(() => makeCharacter(
  31987. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31988. {
  31989. front: {
  31990. height: math.unit(8 + 2/12, "feet"),
  31991. weight: math.unit(4, "tons"),
  31992. name: "Front",
  31993. image: {
  31994. source: "./media/characters/shaun/front.svg",
  31995. extra: 1550/1505,
  31996. bottom: 353/1903
  31997. }
  31998. },
  31999. },
  32000. [
  32001. {
  32002. name: "Lorg",
  32003. height: math.unit(8 + 2/12, "feet"),
  32004. default: true
  32005. },
  32006. ]
  32007. ))
  32008. characterMakers.push(() => makeCharacter(
  32009. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32010. {
  32011. front: {
  32012. height: math.unit(7, "feet"),
  32013. name: "Front",
  32014. image: {
  32015. source: "./media/characters/sini/front.svg",
  32016. extra: 726/678,
  32017. bottom: 35/761
  32018. }
  32019. },
  32020. back: {
  32021. height: math.unit(7, "feet"),
  32022. name: "Back",
  32023. image: {
  32024. source: "./media/characters/sini/back.svg",
  32025. extra: 743/701,
  32026. bottom: 12/755
  32027. }
  32028. },
  32029. mawAnthro: {
  32030. height: math.unit(2.14, "feet"),
  32031. name: "Maw (Anthro)",
  32032. image: {
  32033. source: "./media/characters/sini/maw-anthro.svg"
  32034. }
  32035. },
  32036. dick: {
  32037. height: math.unit(1.45, "feet"),
  32038. name: "Dick (Anthro)",
  32039. image: {
  32040. source: "./media/characters/sini/dick-anthro.svg"
  32041. }
  32042. },
  32043. feral: {
  32044. height: math.unit(13, "feet"),
  32045. name: "Feral",
  32046. image: {
  32047. source: "./media/characters/sini/feral.svg",
  32048. extra: 814/605,
  32049. bottom: 11/825
  32050. }
  32051. },
  32052. mawFeral: {
  32053. height: math.unit(4.6, "feet"),
  32054. name: "Maw-feral",
  32055. image: {
  32056. source: "./media/characters/sini/maw-feral.svg"
  32057. }
  32058. },
  32059. footFeral: {
  32060. height: math.unit(4.2, "feet"),
  32061. name: "Foot-feral",
  32062. image: {
  32063. source: "./media/characters/sini/foot-feral.svg"
  32064. }
  32065. },
  32066. },
  32067. [
  32068. {
  32069. name: "Normal",
  32070. height: math.unit(7, "feet"),
  32071. default: true
  32072. },
  32073. ]
  32074. ))
  32075. characterMakers.push(() => makeCharacter(
  32076. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32077. {
  32078. side: {
  32079. height: math.unit(13, "meters"),
  32080. weight: math.unit(9072, "kg"),
  32081. name: "Side",
  32082. image: {
  32083. source: "./media/characters/raylldo/side.svg",
  32084. extra: 403/344,
  32085. bottom: 42/445
  32086. }
  32087. },
  32088. leaping: {
  32089. height: math.unit(12.3, "meters"),
  32090. weight: math.unit(9072, "kg"),
  32091. name: "Leaping",
  32092. image: {
  32093. source: "./media/characters/raylldo/leaping.svg",
  32094. extra: 470/249,
  32095. bottom: 13/483
  32096. }
  32097. },
  32098. flying: {
  32099. height: math.unit(18, "meters"),
  32100. weight: math.unit(9072, "kg"),
  32101. name: "Flying",
  32102. image: {
  32103. source: "./media/characters/raylldo/flying.svg"
  32104. }
  32105. },
  32106. head: {
  32107. height: math.unit(5.85, "meters"),
  32108. name: "Head",
  32109. image: {
  32110. source: "./media/characters/raylldo/head.svg"
  32111. }
  32112. },
  32113. maw: {
  32114. height: math.unit(5.32, "meters"),
  32115. name: "Maw",
  32116. image: {
  32117. source: "./media/characters/raylldo/maw.svg"
  32118. }
  32119. },
  32120. eye: {
  32121. height: math.unit(0.54, "meters"),
  32122. name: "Eye",
  32123. image: {
  32124. source: "./media/characters/raylldo/eye.svg"
  32125. }
  32126. },
  32127. },
  32128. [
  32129. {
  32130. name: "Normal",
  32131. height: math.unit(13, "meters"),
  32132. default: true
  32133. },
  32134. ]
  32135. ))
  32136. characterMakers.push(() => makeCharacter(
  32137. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32138. {
  32139. anthroFront: {
  32140. height: math.unit(9, "feet"),
  32141. weight: math.unit(600, "lb"),
  32142. name: "Anthro (Front)",
  32143. image: {
  32144. source: "./media/characters/glint/anthro-front.svg",
  32145. extra: 1097/1018,
  32146. bottom: 28/1125
  32147. }
  32148. },
  32149. anthroBack: {
  32150. height: math.unit(9, "feet"),
  32151. weight: math.unit(600, "lb"),
  32152. name: "Anthro (Back)",
  32153. image: {
  32154. source: "./media/characters/glint/anthro-back.svg",
  32155. extra: 1154/997,
  32156. bottom: 36/1190
  32157. }
  32158. },
  32159. feral: {
  32160. height: math.unit(11, "feet"),
  32161. weight: math.unit(50000, "lb"),
  32162. name: "Feral",
  32163. image: {
  32164. source: "./media/characters/glint/feral.svg",
  32165. extra: 3035/1585,
  32166. bottom: 1169/4204
  32167. }
  32168. },
  32169. dickAnthro: {
  32170. height: math.unit(0.7, "meters"),
  32171. name: "Dick (Anthro)",
  32172. image: {
  32173. source: "./media/characters/glint/dick-anthro.svg"
  32174. }
  32175. },
  32176. dickFeral: {
  32177. height: math.unit(2.65, "meters"),
  32178. name: "Dick (Feral)",
  32179. image: {
  32180. source: "./media/characters/glint/dick-feral.svg"
  32181. }
  32182. },
  32183. slitHidden: {
  32184. height: math.unit(5.85, "meters"),
  32185. name: "Slit (Hidden)",
  32186. image: {
  32187. source: "./media/characters/glint/slit-hidden.svg"
  32188. }
  32189. },
  32190. slitErect: {
  32191. height: math.unit(5.85, "meters"),
  32192. name: "Slit (Erect)",
  32193. image: {
  32194. source: "./media/characters/glint/slit-erect.svg"
  32195. }
  32196. },
  32197. mawAnthro: {
  32198. height: math.unit(0.63, "meters"),
  32199. name: "Maw (Anthro)",
  32200. image: {
  32201. source: "./media/characters/glint/maw.svg"
  32202. }
  32203. },
  32204. mawFeral: {
  32205. height: math.unit(2.89, "meters"),
  32206. name: "Maw (Feral)",
  32207. image: {
  32208. source: "./media/characters/glint/maw.svg"
  32209. }
  32210. },
  32211. },
  32212. [
  32213. {
  32214. name: "Normal",
  32215. height: math.unit(9, "feet"),
  32216. default: true
  32217. },
  32218. ]
  32219. ))
  32220. characterMakers.push(() => makeCharacter(
  32221. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32222. {
  32223. side: {
  32224. height: math.unit(15, "feet"),
  32225. weight: math.unit(5000, "kg"),
  32226. name: "Side",
  32227. image: {
  32228. source: "./media/characters/kairne/side.svg",
  32229. extra: 979/811,
  32230. bottom: 13/992
  32231. }
  32232. },
  32233. front: {
  32234. height: math.unit(15, "feet"),
  32235. weight: math.unit(5000, "kg"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/kairne/front.svg",
  32239. extra: 908/814,
  32240. bottom: 26/934
  32241. }
  32242. },
  32243. sideNsfw: {
  32244. height: math.unit(15, "feet"),
  32245. weight: math.unit(5000, "kg"),
  32246. name: "Side (NSFW)",
  32247. image: {
  32248. source: "./media/characters/kairne/side-nsfw.svg",
  32249. extra: 979/811,
  32250. bottom: 13/992
  32251. }
  32252. },
  32253. frontNsfw: {
  32254. height: math.unit(15, "feet"),
  32255. weight: math.unit(5000, "kg"),
  32256. name: "Front (NSFW)",
  32257. image: {
  32258. source: "./media/characters/kairne/front-nsfw.svg",
  32259. extra: 908/814,
  32260. bottom: 26/934
  32261. }
  32262. },
  32263. dickCaged: {
  32264. height: math.unit(0.65, "meters"),
  32265. name: "Dick-caged",
  32266. image: {
  32267. source: "./media/characters/kairne/dick-caged.svg"
  32268. }
  32269. },
  32270. dick: {
  32271. height: math.unit(0.79, "meters"),
  32272. name: "Dick",
  32273. image: {
  32274. source: "./media/characters/kairne/dick.svg"
  32275. }
  32276. },
  32277. genitals: {
  32278. height: math.unit(1.29, "meters"),
  32279. name: "Genitals",
  32280. image: {
  32281. source: "./media/characters/kairne/genitals.svg"
  32282. }
  32283. },
  32284. maw: {
  32285. height: math.unit(1.73, "meters"),
  32286. name: "Maw",
  32287. image: {
  32288. source: "./media/characters/kairne/maw.svg"
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Normal",
  32295. height: math.unit(15, "feet"),
  32296. default: true
  32297. },
  32298. ]
  32299. ))
  32300. characterMakers.push(() => makeCharacter(
  32301. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32302. {
  32303. front: {
  32304. height: math.unit(5 + 8/12, "feet"),
  32305. weight: math.unit(139, "lb"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/biscuit-jackal/front.svg",
  32309. extra: 2106/1961,
  32310. bottom: 58/2164
  32311. }
  32312. },
  32313. back: {
  32314. height: math.unit(5 + 8/12, "feet"),
  32315. weight: math.unit(139, "lb"),
  32316. name: "Back",
  32317. image: {
  32318. source: "./media/characters/biscuit-jackal/back.svg",
  32319. extra: 2132/1976,
  32320. bottom: 57/2189
  32321. }
  32322. },
  32323. werejackal: {
  32324. height: math.unit(6 + 3/12, "feet"),
  32325. weight: math.unit(188, "lb"),
  32326. name: "Werejackal",
  32327. image: {
  32328. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32329. extra: 2373/2178,
  32330. bottom: 53/2426
  32331. }
  32332. },
  32333. },
  32334. [
  32335. {
  32336. name: "Normal",
  32337. height: math.unit(5 + 8/12, "feet"),
  32338. default: true
  32339. },
  32340. ]
  32341. ))
  32342. characterMakers.push(() => makeCharacter(
  32343. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32344. {
  32345. front: {
  32346. height: math.unit(140, "cm"),
  32347. weight: math.unit(45, "kg"),
  32348. name: "Front",
  32349. image: {
  32350. source: "./media/characters/tayra-white/front.svg",
  32351. extra: 2229/2192,
  32352. bottom: 75/2304
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Normal",
  32359. height: math.unit(140, "cm"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32366. {
  32367. front: {
  32368. height: math.unit(4 + 5/12, "feet"),
  32369. name: "Front",
  32370. image: {
  32371. source: "./media/characters/scoop/front.svg",
  32372. extra: 1257/1136,
  32373. bottom: 69/1326
  32374. }
  32375. },
  32376. back: {
  32377. height: math.unit(4 + 5/12, "feet"),
  32378. name: "Back",
  32379. image: {
  32380. source: "./media/characters/scoop/back.svg",
  32381. extra: 1321/1152,
  32382. bottom: 32/1353
  32383. }
  32384. },
  32385. maw: {
  32386. height: math.unit(0.68, "feet"),
  32387. name: "Maw",
  32388. image: {
  32389. source: "./media/characters/scoop/maw.svg"
  32390. }
  32391. },
  32392. },
  32393. [
  32394. {
  32395. name: "Really Small",
  32396. height: math.unit(1, "mm")
  32397. },
  32398. {
  32399. name: "Micro",
  32400. height: math.unit(1, "inch")
  32401. },
  32402. {
  32403. name: "Normal",
  32404. height: math.unit(4 + 5/12, "feet"),
  32405. default: true
  32406. },
  32407. {
  32408. name: "Macro",
  32409. height: math.unit(200, "feet")
  32410. },
  32411. {
  32412. name: "Megamacro",
  32413. height: math.unit(3240, "feet")
  32414. },
  32415. {
  32416. name: "Teramacro",
  32417. height: math.unit(2500, "miles")
  32418. },
  32419. ]
  32420. ))
  32421. characterMakers.push(() => makeCharacter(
  32422. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32423. {
  32424. front: {
  32425. height: math.unit(15 + 7/12, "feet"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/saphinara/front.svg",
  32429. extra: 604/546,
  32430. bottom: 19/623
  32431. }
  32432. },
  32433. side: {
  32434. height: math.unit(15 + 7/12, "feet"),
  32435. name: "Side",
  32436. image: {
  32437. source: "./media/characters/saphinara/side.svg",
  32438. extra: 605/547,
  32439. bottom: 6/611
  32440. }
  32441. },
  32442. back: {
  32443. height: math.unit(15 + 7/12, "feet"),
  32444. name: "Back",
  32445. image: {
  32446. source: "./media/characters/saphinara/back.svg",
  32447. extra: 591/531,
  32448. bottom: 13/604
  32449. }
  32450. },
  32451. frontTail: {
  32452. height: math.unit(15 + 7/12, "feet"),
  32453. name: "Front (Full Tail)",
  32454. image: {
  32455. source: "./media/characters/saphinara/front-tail.svg",
  32456. extra: 748/547,
  32457. bottom: 66/814
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(15 + 7/12, "feet"),
  32465. default: true
  32466. },
  32467. {
  32468. name: "Angry",
  32469. height: math.unit(30 + 6/12, "feet")
  32470. },
  32471. {
  32472. name: "Enraged",
  32473. height: math.unit(102 + 1/12, "feet")
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32479. {
  32480. front: {
  32481. height: math.unit(6 + 8/12, "feet"),
  32482. weight: math.unit(300, "lb"),
  32483. name: "Front",
  32484. image: {
  32485. source: "./media/characters/jrain/front.svg",
  32486. extra: 3039/2865,
  32487. bottom: 399/3438
  32488. }
  32489. },
  32490. back: {
  32491. height: math.unit(6 + 8/12, "feet"),
  32492. weight: math.unit(300, "lb"),
  32493. name: "Back",
  32494. image: {
  32495. source: "./media/characters/jrain/back.svg",
  32496. extra: 3089/2938,
  32497. bottom: 172/3261
  32498. }
  32499. },
  32500. head: {
  32501. height: math.unit(2.14, "feet"),
  32502. name: "Head",
  32503. image: {
  32504. source: "./media/characters/jrain/head.svg"
  32505. }
  32506. },
  32507. maw: {
  32508. height: math.unit(1.77, "feet"),
  32509. name: "Maw",
  32510. image: {
  32511. source: "./media/characters/jrain/maw.svg"
  32512. }
  32513. },
  32514. leftHand: {
  32515. height: math.unit(1.1, "feet"),
  32516. name: "Left Hand",
  32517. image: {
  32518. source: "./media/characters/jrain/left-hand.svg"
  32519. }
  32520. },
  32521. rightHand: {
  32522. height: math.unit(1.1, "feet"),
  32523. name: "Right Hand",
  32524. image: {
  32525. source: "./media/characters/jrain/right-hand.svg"
  32526. }
  32527. },
  32528. eye: {
  32529. height: math.unit(0.35, "feet"),
  32530. name: "Eye",
  32531. image: {
  32532. source: "./media/characters/jrain/eye.svg"
  32533. }
  32534. },
  32535. },
  32536. [
  32537. {
  32538. name: "Normal",
  32539. height: math.unit(6 + 8/12, "feet"),
  32540. default: true
  32541. },
  32542. {
  32543. name: "Casually Large",
  32544. height: math.unit(25, "feet")
  32545. },
  32546. {
  32547. name: "Giant",
  32548. height: math.unit(100, "feet")
  32549. },
  32550. {
  32551. name: "Kaiju",
  32552. height: math.unit(300, "feet")
  32553. },
  32554. ]
  32555. ))
  32556. characterMakers.push(() => makeCharacter(
  32557. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32558. {
  32559. dragon: {
  32560. height: math.unit(5, "meters"),
  32561. name: "Dragon",
  32562. image: {
  32563. source: "./media/characters/sabrina/dragon.svg",
  32564. extra: 3670 / 2365,
  32565. bottom: 333 / 4003
  32566. }
  32567. },
  32568. gryphon: {
  32569. height: math.unit(3, "meters"),
  32570. name: "Gryphon",
  32571. image: {
  32572. source: "./media/characters/sabrina/gryphon.svg",
  32573. extra: 1576 / 945,
  32574. bottom: 71 / 1647
  32575. }
  32576. },
  32577. snake: {
  32578. height: math.unit(12, "meters"),
  32579. name: "Snake",
  32580. image: {
  32581. source: "./media/characters/sabrina/snake.svg",
  32582. extra: 1758 / 1320,
  32583. bottom: 186 / 1944
  32584. }
  32585. },
  32586. collar: {
  32587. height: math.unit(1.86, "meters"),
  32588. name: "Collar",
  32589. image: {
  32590. source: "./media/characters/sabrina/collar.svg"
  32591. }
  32592. },
  32593. eye: {
  32594. height: math.unit(0.53, "meters"),
  32595. name: "Eye",
  32596. image: {
  32597. source: "./media/characters/sabrina/eye.svg"
  32598. }
  32599. },
  32600. foot: {
  32601. height: math.unit(1.86, "meters"),
  32602. name: "Foot",
  32603. image: {
  32604. source: "./media/characters/sabrina/foot.svg"
  32605. }
  32606. },
  32607. hand: {
  32608. height: math.unit(1.32, "meters"),
  32609. name: "Hand",
  32610. image: {
  32611. source: "./media/characters/sabrina/hand.svg"
  32612. }
  32613. },
  32614. head: {
  32615. height: math.unit(2.44, "meters"),
  32616. name: "Head",
  32617. image: {
  32618. source: "./media/characters/sabrina/head.svg"
  32619. }
  32620. },
  32621. headAngry: {
  32622. height: math.unit(2.44, "meters"),
  32623. name: "Head (Angry))",
  32624. image: {
  32625. source: "./media/characters/sabrina/head-angry.svg"
  32626. }
  32627. },
  32628. maw: {
  32629. height: math.unit(1.65, "meters"),
  32630. name: "Maw",
  32631. image: {
  32632. source: "./media/characters/sabrina/maw.svg"
  32633. }
  32634. },
  32635. spikes: {
  32636. height: math.unit(1.69, "meters"),
  32637. name: "Spikes",
  32638. image: {
  32639. source: "./media/characters/sabrina/spikes.svg"
  32640. }
  32641. },
  32642. stomach: {
  32643. height: math.unit(1.15, "meters"),
  32644. name: "Stomach",
  32645. image: {
  32646. source: "./media/characters/sabrina/stomach.svg"
  32647. }
  32648. },
  32649. tongue: {
  32650. height: math.unit(1.27, "meters"),
  32651. name: "Tongue",
  32652. image: {
  32653. source: "./media/characters/sabrina/tongue.svg"
  32654. }
  32655. },
  32656. wingDorsal: {
  32657. height: math.unit(4.85, "meters"),
  32658. name: "Wing (Dorsal)",
  32659. image: {
  32660. source: "./media/characters/sabrina/wing-dorsal.svg"
  32661. }
  32662. },
  32663. wingVentral: {
  32664. height: math.unit(4.85, "meters"),
  32665. name: "Wing (Ventral)",
  32666. image: {
  32667. source: "./media/characters/sabrina/wing-ventral.svg"
  32668. }
  32669. },
  32670. },
  32671. [
  32672. {
  32673. name: "Normal",
  32674. height: math.unit(5, "meters"),
  32675. default: true
  32676. },
  32677. ]
  32678. ))
  32679. characterMakers.push(() => makeCharacter(
  32680. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32681. {
  32682. frontMaid: {
  32683. height: math.unit(5 + 5/12, "feet"),
  32684. weight: math.unit(130, "lb"),
  32685. name: "Front (Maid)",
  32686. image: {
  32687. source: "./media/characters/midnight-tales/front-maid.svg",
  32688. extra: 489/454,
  32689. bottom: 61/550
  32690. }
  32691. },
  32692. frontFormal: {
  32693. height: math.unit(5 + 5/12, "feet"),
  32694. weight: math.unit(130, "lb"),
  32695. name: "Front (Formal)",
  32696. image: {
  32697. source: "./media/characters/midnight-tales/front-formal.svg",
  32698. extra: 489/454,
  32699. bottom: 61/550
  32700. }
  32701. },
  32702. back: {
  32703. height: math.unit(5 + 5/12, "feet"),
  32704. weight: math.unit(130, "lb"),
  32705. name: "Back",
  32706. image: {
  32707. source: "./media/characters/midnight-tales/back.svg",
  32708. extra: 498/456,
  32709. bottom: 33/531
  32710. }
  32711. },
  32712. frontBeast: {
  32713. height: math.unit(40, "feet"),
  32714. weight: math.unit(64000, "lb"),
  32715. name: "Front (Beast)",
  32716. image: {
  32717. source: "./media/characters/midnight-tales/front-beast.svg",
  32718. extra: 927/860,
  32719. bottom: 53/980
  32720. }
  32721. },
  32722. backBeast: {
  32723. height: math.unit(40, "feet"),
  32724. weight: math.unit(64000, "lb"),
  32725. name: "Back (Beast)",
  32726. image: {
  32727. source: "./media/characters/midnight-tales/back-beast.svg",
  32728. extra: 929/855,
  32729. bottom: 16/945
  32730. }
  32731. },
  32732. footBeast: {
  32733. height: math.unit(6.7, "feet"),
  32734. name: "Foot (Beast)",
  32735. image: {
  32736. source: "./media/characters/midnight-tales/foot-beast.svg"
  32737. }
  32738. },
  32739. headBeast: {
  32740. height: math.unit(8, "feet"),
  32741. name: "Head (Beast)",
  32742. image: {
  32743. source: "./media/characters/midnight-tales/head-beast.svg"
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(5 + 5 / 12, "feet"),
  32751. default: true
  32752. },
  32753. {
  32754. name: "Macro",
  32755. height: math.unit(25, "feet")
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32761. {
  32762. front: {
  32763. height: math.unit(5 + 10/12, "feet"),
  32764. name: "Front",
  32765. image: {
  32766. source: "./media/characters/argon/front.svg",
  32767. extra: 2009/1935,
  32768. bottom: 118/2127
  32769. }
  32770. },
  32771. back: {
  32772. height: math.unit(5 + 10/12, "feet"),
  32773. name: "Back",
  32774. image: {
  32775. source: "./media/characters/argon/back.svg",
  32776. extra: 2047/1992,
  32777. bottom: 20/2067
  32778. }
  32779. },
  32780. frontDressed: {
  32781. height: math.unit(5 + 10/12, "feet"),
  32782. name: "Front (Dressed)",
  32783. image: {
  32784. source: "./media/characters/argon/front-dressed.svg",
  32785. extra: 2009/1935,
  32786. bottom: 118/2127
  32787. }
  32788. },
  32789. },
  32790. [
  32791. {
  32792. name: "Normal",
  32793. height: math.unit(5 + 10/12, "feet"),
  32794. default: true
  32795. },
  32796. ]
  32797. ))
  32798. characterMakers.push(() => makeCharacter(
  32799. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32800. {
  32801. front: {
  32802. height: math.unit(8 + 6/12, "feet"),
  32803. weight: math.unit(1150, "lb"),
  32804. name: "Front",
  32805. image: {
  32806. source: "./media/characters/kichi/front.svg",
  32807. extra: 1267/1164,
  32808. bottom: 61/1328
  32809. }
  32810. },
  32811. back: {
  32812. height: math.unit(8 + 6/12, "feet"),
  32813. weight: math.unit(1150, "lb"),
  32814. name: "Back",
  32815. image: {
  32816. source: "./media/characters/kichi/back.svg",
  32817. extra: 1273/1166,
  32818. bottom: 33/1306
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(8 + 6/12, "feet"),
  32826. default: true
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32832. {
  32833. front: {
  32834. height: math.unit(6, "feet"),
  32835. weight: math.unit(210, "lb"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/manetel-greyscale/front.svg",
  32839. extra: 350/312,
  32840. bottom: 8/358
  32841. }
  32842. },
  32843. },
  32844. [
  32845. {
  32846. name: "Micro",
  32847. height: math.unit(2, "inches")
  32848. },
  32849. {
  32850. name: "Normal",
  32851. height: math.unit(6, "feet"),
  32852. default: true
  32853. },
  32854. {
  32855. name: "Minimacro",
  32856. height: math.unit(17, "feet")
  32857. },
  32858. {
  32859. name: "Macro",
  32860. height: math.unit(117, "feet")
  32861. },
  32862. ]
  32863. ))
  32864. characterMakers.push(() => makeCharacter(
  32865. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32866. {
  32867. side: {
  32868. height: math.unit(5 + 1/12, "feet"),
  32869. weight: math.unit(418, "lb"),
  32870. name: "Side",
  32871. image: {
  32872. source: "./media/characters/softpurr/side.svg",
  32873. extra: 1993/1945,
  32874. bottom: 134/2127
  32875. }
  32876. },
  32877. front: {
  32878. height: math.unit(5 + 1/12, "feet"),
  32879. weight: math.unit(418, "lb"),
  32880. name: "Front",
  32881. image: {
  32882. source: "./media/characters/softpurr/front.svg",
  32883. extra: 1950/1856,
  32884. bottom: 174/2124
  32885. }
  32886. },
  32887. paw: {
  32888. height: math.unit(1, "feet"),
  32889. name: "Paw",
  32890. image: {
  32891. source: "./media/characters/softpurr/paw.svg"
  32892. }
  32893. },
  32894. },
  32895. [
  32896. {
  32897. name: "Normal",
  32898. height: math.unit(5 + 1/12, "feet"),
  32899. default: true
  32900. },
  32901. ]
  32902. ))
  32903. characterMakers.push(() => makeCharacter(
  32904. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32905. {
  32906. front: {
  32907. height: math.unit(260, "meters"),
  32908. name: "Front",
  32909. image: {
  32910. source: "./media/characters/anahita/front.svg",
  32911. extra: 665/635,
  32912. bottom: 89/754
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Macro",
  32919. height: math.unit(260, "meters"),
  32920. default: true
  32921. },
  32922. ]
  32923. ))
  32924. characterMakers.push(() => makeCharacter(
  32925. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32926. {
  32927. front: {
  32928. height: math.unit(4 + 10/12, "feet"),
  32929. weight: math.unit(160, "lb"),
  32930. name: "Front",
  32931. image: {
  32932. source: "./media/characters/chip-mouse/front.svg",
  32933. extra: 3528/3408,
  32934. bottom: 0/3528
  32935. }
  32936. },
  32937. frontNsfw: {
  32938. height: math.unit(4 + 10/12, "feet"),
  32939. weight: math.unit(160, "lb"),
  32940. name: "Front (NSFW)",
  32941. image: {
  32942. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32943. extra: 3528/3408,
  32944. bottom: 0/3528
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Normal",
  32951. height: math.unit(4 + 10/12, "feet"),
  32952. default: true
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32958. {
  32959. side: {
  32960. height: math.unit(10, "feet"),
  32961. weight: math.unit(14000, "lb"),
  32962. name: "Side",
  32963. image: {
  32964. source: "./media/characters/kremm/side.svg",
  32965. extra: 1390/1053,
  32966. bottom: 90/1480
  32967. }
  32968. },
  32969. gut: {
  32970. height: math.unit(5.8, "feet"),
  32971. name: "Gut",
  32972. image: {
  32973. source: "./media/characters/kremm/gut.svg"
  32974. }
  32975. },
  32976. ass: {
  32977. height: math.unit(6.1, "feet"),
  32978. name: "Ass",
  32979. image: {
  32980. source: "./media/characters/kremm/ass.svg"
  32981. }
  32982. },
  32983. jaws: {
  32984. height: math.unit(2.2, "feet"),
  32985. name: "Jaws",
  32986. image: {
  32987. source: "./media/characters/kremm/jaws.svg"
  32988. }
  32989. },
  32990. dick: {
  32991. height: math.unit(4.26, "feet"),
  32992. name: "Dick",
  32993. image: {
  32994. source: "./media/characters/kremm/dick.svg"
  32995. }
  32996. },
  32997. },
  32998. [
  32999. {
  33000. name: "Normal",
  33001. height: math.unit(10, "feet"),
  33002. default: true
  33003. },
  33004. ]
  33005. ))
  33006. characterMakers.push(() => makeCharacter(
  33007. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33008. {
  33009. front: {
  33010. height: math.unit(30, "stories"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/kai/front.svg",
  33014. extra: 1892/1718,
  33015. bottom: 162/2054
  33016. }
  33017. },
  33018. },
  33019. [
  33020. {
  33021. name: "Macro",
  33022. height: math.unit(30, "stories"),
  33023. default: true
  33024. },
  33025. ]
  33026. ))
  33027. characterMakers.push(() => makeCharacter(
  33028. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33029. {
  33030. front: {
  33031. height: math.unit(6 + 4/12, "feet"),
  33032. weight: math.unit(145, "lb"),
  33033. name: "Front",
  33034. image: {
  33035. source: "./media/characters/sykes/front.svg",
  33036. extra: 1321 / 1187,
  33037. bottom: 66 / 1387
  33038. }
  33039. },
  33040. back: {
  33041. height: math.unit(6 + 4/12, "feet"),
  33042. weight: math.unit(145, "lb"),
  33043. name: "Back",
  33044. image: {
  33045. source: "./media/characters/sykes/back.svg",
  33046. extra: 1326/1181,
  33047. bottom: 31/1357
  33048. }
  33049. },
  33050. handBack: {
  33051. height: math.unit(0.9, "feet"),
  33052. name: "Hand (Back)",
  33053. image: {
  33054. source: "./media/characters/sykes/hand-back.svg"
  33055. }
  33056. },
  33057. handFront: {
  33058. height: math.unit(0.839, "feet"),
  33059. name: "Hand (Front)",
  33060. image: {
  33061. source: "./media/characters/sykes/hand-front.svg"
  33062. }
  33063. },
  33064. leftFoot: {
  33065. height: math.unit(1.2, "feet"),
  33066. name: "Foot (Left)",
  33067. image: {
  33068. source: "./media/characters/sykes/foot-left.svg"
  33069. }
  33070. },
  33071. rightFoot: {
  33072. height: math.unit(1.2, "feet"),
  33073. name: "Foot (Right)",
  33074. image: {
  33075. source: "./media/characters/sykes/foot-right.svg"
  33076. }
  33077. },
  33078. maw: {
  33079. height: math.unit(1.93, "feet"),
  33080. name: "Maw",
  33081. image: {
  33082. source: "./media/characters/sykes/maw.svg"
  33083. }
  33084. },
  33085. teeth: {
  33086. height: math.unit(0.51, "feet"),
  33087. name: "Teeth",
  33088. image: {
  33089. source: "./media/characters/sykes/teeth.svg"
  33090. }
  33091. },
  33092. tongue: {
  33093. height: math.unit(2.13, "feet"),
  33094. name: "Tongue",
  33095. image: {
  33096. source: "./media/characters/sykes/tongue.svg"
  33097. }
  33098. },
  33099. uvula: {
  33100. height: math.unit(0.16, "feet"),
  33101. name: "Uvula",
  33102. image: {
  33103. source: "./media/characters/sykes/uvula.svg"
  33104. }
  33105. },
  33106. collar: {
  33107. height: math.unit(0.287, "feet"),
  33108. name: "Collar",
  33109. image: {
  33110. source: "./media/characters/sykes/collar.svg"
  33111. }
  33112. },
  33113. },
  33114. [
  33115. {
  33116. name: "Shrunken",
  33117. height: math.unit(5, "inches")
  33118. },
  33119. {
  33120. name: "Normal",
  33121. height: math.unit(6 + 4 / 12, "feet"),
  33122. default: true
  33123. },
  33124. {
  33125. name: "Big",
  33126. height: math.unit(15, "feet")
  33127. },
  33128. ]
  33129. ))
  33130. characterMakers.push(() => makeCharacter(
  33131. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33132. {
  33133. front: {
  33134. height: math.unit(5 + 8/12, "feet"),
  33135. weight: math.unit(190, "lb"),
  33136. name: "Front",
  33137. image: {
  33138. source: "./media/characters/oven-otter/front.svg",
  33139. extra: 1809/1740,
  33140. bottom: 181/1990
  33141. }
  33142. },
  33143. back: {
  33144. height: math.unit(5 + 8/12, "feet"),
  33145. weight: math.unit(190, "lb"),
  33146. name: "Back",
  33147. image: {
  33148. source: "./media/characters/oven-otter/back.svg",
  33149. extra: 1709/1635,
  33150. bottom: 118/1827
  33151. }
  33152. },
  33153. hand: {
  33154. height: math.unit(1.07, "feet"),
  33155. name: "Hand",
  33156. image: {
  33157. source: "./media/characters/oven-otter/hand.svg"
  33158. }
  33159. },
  33160. beans: {
  33161. height: math.unit(1.74, "feet"),
  33162. name: "Beans",
  33163. image: {
  33164. source: "./media/characters/oven-otter/beans.svg"
  33165. }
  33166. },
  33167. },
  33168. [
  33169. {
  33170. name: "Micro",
  33171. height: math.unit(0.5, "inches")
  33172. },
  33173. {
  33174. name: "Normal",
  33175. height: math.unit(5 + 8/12, "feet"),
  33176. default: true
  33177. },
  33178. {
  33179. name: "Macro",
  33180. height: math.unit(250, "feet")
  33181. },
  33182. {
  33183. name: "Really High",
  33184. height: math.unit(420, "feet")
  33185. },
  33186. ]
  33187. ))
  33188. characterMakers.push(() => makeCharacter(
  33189. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33190. {
  33191. front: {
  33192. height: math.unit(5, "meters"),
  33193. weight: math.unit(292000000000000, "kg"),
  33194. name: "Front",
  33195. image: {
  33196. source: "./media/characters/devourer/front.svg",
  33197. extra: 1800/1733,
  33198. bottom: 211/2011
  33199. }
  33200. },
  33201. maw: {
  33202. height: math.unit(1.1, "meter"),
  33203. name: "Maw",
  33204. image: {
  33205. source: "./media/characters/devourer/maw.svg"
  33206. }
  33207. },
  33208. },
  33209. [
  33210. {
  33211. name: "Small",
  33212. height: math.unit(3, "meters")
  33213. },
  33214. {
  33215. name: "Large",
  33216. height: math.unit(5, "meters"),
  33217. default: true
  33218. },
  33219. ]
  33220. ))
  33221. characterMakers.push(() => makeCharacter(
  33222. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33223. {
  33224. front: {
  33225. height: math.unit(6, "feet"),
  33226. weight: math.unit(400, "lb"),
  33227. name: "Front",
  33228. image: {
  33229. source: "./media/characters/ellarby/front.svg",
  33230. extra: 1909/1763,
  33231. bottom: 80/1989
  33232. }
  33233. },
  33234. back: {
  33235. height: math.unit(6, "feet"),
  33236. weight: math.unit(400, "lb"),
  33237. name: "Back",
  33238. image: {
  33239. source: "./media/characters/ellarby/back.svg",
  33240. extra: 1914/1784,
  33241. bottom: 172/2086
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Mischief",
  33248. height: math.unit(18, "inches")
  33249. },
  33250. {
  33251. name: "Trouble",
  33252. height: math.unit(12, "feet")
  33253. },
  33254. {
  33255. name: "Havoc",
  33256. height: math.unit(200, "feet"),
  33257. default: true
  33258. },
  33259. {
  33260. name: "Pandemonium",
  33261. height: math.unit(1, "mile")
  33262. },
  33263. {
  33264. name: "Catastrophe",
  33265. height: math.unit(100, "miles")
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33271. {
  33272. front: {
  33273. height: math.unit(4.7, "meters"),
  33274. weight: math.unit(6500, "kg"),
  33275. name: "Front",
  33276. image: {
  33277. source: "./media/characters/vex/front.svg",
  33278. extra: 1288/1140,
  33279. bottom: 100/1388
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Normal",
  33286. height: math.unit(4.7, "meters"),
  33287. default: true
  33288. },
  33289. ]
  33290. ))
  33291. characterMakers.push(() => makeCharacter(
  33292. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33293. {
  33294. normal: {
  33295. height: math.unit(6, "feet"),
  33296. weight: math.unit(350, "lb"),
  33297. name: "Normal",
  33298. image: {
  33299. source: "./media/characters/teshy/normal.svg",
  33300. extra: 1795/1735,
  33301. bottom: 16/1811
  33302. }
  33303. },
  33304. monsterFront: {
  33305. height: math.unit(12, "feet"),
  33306. weight: math.unit(4700, "lb"),
  33307. name: "Monster (Front)",
  33308. image: {
  33309. source: "./media/characters/teshy/monster-front.svg",
  33310. extra: 2042/2034,
  33311. bottom: 128/2170
  33312. }
  33313. },
  33314. monsterSide: {
  33315. height: math.unit(12, "feet"),
  33316. weight: math.unit(4700, "lb"),
  33317. name: "Monster (Side)",
  33318. image: {
  33319. source: "./media/characters/teshy/monster-side.svg",
  33320. extra: 2067/2056,
  33321. bottom: 70/2137
  33322. }
  33323. },
  33324. monsterBack: {
  33325. height: math.unit(12, "feet"),
  33326. weight: math.unit(4700, "lb"),
  33327. name: "Monster (Back)",
  33328. image: {
  33329. source: "./media/characters/teshy/monster-back.svg",
  33330. extra: 1921/1914,
  33331. bottom: 171/2092
  33332. }
  33333. },
  33334. },
  33335. [
  33336. {
  33337. name: "Normal",
  33338. height: math.unit(6, "feet"),
  33339. default: true
  33340. },
  33341. ]
  33342. ))
  33343. characterMakers.push(() => makeCharacter(
  33344. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33345. {
  33346. front: {
  33347. height: math.unit(6, "feet"),
  33348. name: "Front",
  33349. image: {
  33350. source: "./media/characters/ramey/front.svg",
  33351. extra: 790/787,
  33352. bottom: 27/817
  33353. }
  33354. },
  33355. },
  33356. [
  33357. {
  33358. name: "Normal",
  33359. height: math.unit(6, "feet"),
  33360. default: true
  33361. },
  33362. ]
  33363. ))
  33364. characterMakers.push(() => makeCharacter(
  33365. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33366. {
  33367. front: {
  33368. height: math.unit(5 + 5/12, "feet"),
  33369. weight: math.unit(120, "lb"),
  33370. name: "Front",
  33371. image: {
  33372. source: "./media/characters/phirae/front.svg",
  33373. extra: 2491/2436,
  33374. bottom: 38/2529
  33375. }
  33376. },
  33377. },
  33378. [
  33379. {
  33380. name: "Normal",
  33381. height: math.unit(5 + 5/12, "feet"),
  33382. default: true
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(6, "feet"),
  33391. weight: math.unit(150, "lb"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/stagglas/front.svg",
  33395. extra: 962/882,
  33396. bottom: 53/1015
  33397. }
  33398. },
  33399. },
  33400. [
  33401. {
  33402. name: "Normal",
  33403. height: math.unit(5 + 3/12, "feet"),
  33404. default: true
  33405. },
  33406. ]
  33407. ))
  33408. characterMakers.push(() => makeCharacter(
  33409. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33410. {
  33411. front: {
  33412. height: math.unit(5 + 4/12, "feet"),
  33413. weight: math.unit(145, "lb"),
  33414. name: "Front",
  33415. image: {
  33416. source: "./media/characters/starra/front.svg",
  33417. extra: 1790/1691,
  33418. bottom: 91/1881
  33419. }
  33420. },
  33421. },
  33422. [
  33423. {
  33424. name: "Normal",
  33425. height: math.unit(5 + 4/12, "feet"),
  33426. default: true
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33432. {
  33433. front: {
  33434. height: math.unit(2.2, "meters"),
  33435. name: "Front",
  33436. image: {
  33437. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33438. extra: 1194/1005,
  33439. bottom: 25/1219
  33440. }
  33441. },
  33442. },
  33443. [
  33444. {
  33445. name: "Normal",
  33446. height: math.unit(2.2, "meters"),
  33447. default: true
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33453. {
  33454. side: {
  33455. height: math.unit(8 + 2/12, "feet"),
  33456. weight: math.unit(1240, "lb"),
  33457. name: "Side",
  33458. image: {
  33459. source: "./media/characters/mika-valentine/side.svg",
  33460. extra: 2670/2501,
  33461. bottom: 250/2920
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Normal",
  33468. height: math.unit(8 + 2/12, "feet"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(7 + 2/12, "feet"),
  33478. name: "Front",
  33479. image: {
  33480. source: "./media/characters/xoltol/front.svg",
  33481. extra: 2212/2124,
  33482. bottom: 84/2296
  33483. }
  33484. },
  33485. side: {
  33486. height: math.unit(7 + 2/12, "feet"),
  33487. name: "Side",
  33488. image: {
  33489. source: "./media/characters/xoltol/side.svg",
  33490. extra: 2273/2197,
  33491. bottom: 26/2299
  33492. }
  33493. },
  33494. hand: {
  33495. height: math.unit(2.5, "feet"),
  33496. name: "Hand",
  33497. image: {
  33498. source: "./media/characters/xoltol/hand.svg"
  33499. }
  33500. },
  33501. },
  33502. [
  33503. {
  33504. name: "Small-ish",
  33505. height: math.unit(5 + 11/12, "feet")
  33506. },
  33507. {
  33508. name: "Normal",
  33509. height: math.unit(7 + 2/12, "feet")
  33510. },
  33511. {
  33512. name: "\"Macro\"",
  33513. height: math.unit(14 + 9/12, "feet"),
  33514. default: true
  33515. },
  33516. {
  33517. name: "Alternate Height",
  33518. height: math.unit(20, "feet")
  33519. },
  33520. {
  33521. name: "Actually Macro",
  33522. height: math.unit(100, "feet")
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33528. {
  33529. front: {
  33530. height: math.unit(5 + 2/12, "feet"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/kotetsu-redwood/front.svg",
  33534. extra: 1053/942,
  33535. bottom: 60/1113
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Normal",
  33542. height: math.unit(5 + 2/12, "feet"),
  33543. default: true
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(2.4, "meters"),
  33552. weight: math.unit(125, "kg"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/lilith/front.svg",
  33556. extra: 1590/1513,
  33557. bottom: 203/1793
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Humanoid",
  33564. height: math.unit(2.4, "meters")
  33565. },
  33566. {
  33567. name: "Normal",
  33568. height: math.unit(6, "meters"),
  33569. default: true
  33570. },
  33571. {
  33572. name: "Largest",
  33573. height: math.unit(55, "meters")
  33574. },
  33575. ]
  33576. ))
  33577. characterMakers.push(() => makeCharacter(
  33578. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33579. {
  33580. front: {
  33581. height: math.unit(8 + 4/12, "feet"),
  33582. weight: math.unit(535, "lb"),
  33583. name: "Front",
  33584. image: {
  33585. source: "./media/characters/beh'kah-bolger/front.svg",
  33586. extra: 1660/1603,
  33587. bottom: 37/1697
  33588. }
  33589. },
  33590. },
  33591. [
  33592. {
  33593. name: "Normal",
  33594. height: math.unit(8 + 4/12, "feet"),
  33595. default: true
  33596. },
  33597. {
  33598. name: "Kaiju",
  33599. height: math.unit(250, "feet")
  33600. },
  33601. {
  33602. name: "Still Growing",
  33603. height: math.unit(10, "miles")
  33604. },
  33605. {
  33606. name: "Continental",
  33607. height: math.unit(5000, "miles")
  33608. },
  33609. {
  33610. name: "Final Form",
  33611. height: math.unit(2500000, "miles")
  33612. },
  33613. ]
  33614. ))
  33615. characterMakers.push(() => makeCharacter(
  33616. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33617. {
  33618. front: {
  33619. height: math.unit(7 + 2/12, "feet"),
  33620. weight: math.unit(230, "kg"),
  33621. name: "Front",
  33622. image: {
  33623. source: "./media/characters/tatyana-milewska/front.svg",
  33624. extra: 1199/1150,
  33625. bottom: 86/1285
  33626. }
  33627. },
  33628. },
  33629. [
  33630. {
  33631. name: "Normal",
  33632. height: math.unit(7 + 2/12, "feet"),
  33633. default: true
  33634. },
  33635. {
  33636. name: "Big",
  33637. height: math.unit(12, "feet")
  33638. },
  33639. {
  33640. name: "Minimacro",
  33641. height: math.unit(20, "feet")
  33642. },
  33643. {
  33644. name: "Macro",
  33645. height: math.unit(120, "feet")
  33646. },
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33651. {
  33652. front: {
  33653. height: math.unit(7 + 8/12, "feet"),
  33654. weight: math.unit(152, "kg"),
  33655. name: "Front",
  33656. image: {
  33657. source: "./media/characters/helen-arri/front.svg",
  33658. extra: 440/423,
  33659. bottom: 14/454
  33660. }
  33661. },
  33662. back: {
  33663. height: math.unit(7 + 8/12, "feet"),
  33664. weight: math.unit(152, "kg"),
  33665. name: "Back",
  33666. image: {
  33667. source: "./media/characters/helen-arri/back.svg",
  33668. extra: 443/426,
  33669. bottom: 8/451
  33670. }
  33671. },
  33672. },
  33673. [
  33674. {
  33675. name: "Normal",
  33676. height: math.unit(7 + 8/12, "feet"),
  33677. default: true
  33678. },
  33679. {
  33680. name: "Big",
  33681. height: math.unit(14, "feet")
  33682. },
  33683. {
  33684. name: "Minimacro",
  33685. height: math.unit(24, "feet")
  33686. },
  33687. {
  33688. name: "Macro",
  33689. height: math.unit(140, "feet")
  33690. },
  33691. ]
  33692. ))
  33693. characterMakers.push(() => makeCharacter(
  33694. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33695. {
  33696. front: {
  33697. height: math.unit(6, "meters"),
  33698. name: "Front",
  33699. image: {
  33700. source: "./media/characters/ehanu-rehu/front.svg",
  33701. extra: 1800/1800,
  33702. bottom: 59/1859
  33703. }
  33704. },
  33705. },
  33706. [
  33707. {
  33708. name: "Normal",
  33709. height: math.unit(6, "meters"),
  33710. default: true
  33711. },
  33712. ]
  33713. ))
  33714. characterMakers.push(() => makeCharacter(
  33715. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33716. {
  33717. front: {
  33718. height: math.unit(7 + 3/12, "feet"),
  33719. name: "Front",
  33720. image: {
  33721. source: "./media/characters/renholder/front.svg",
  33722. extra: 3096/2960,
  33723. bottom: 250/3346
  33724. }
  33725. },
  33726. },
  33727. [
  33728. {
  33729. name: "Normal Bat",
  33730. height: math.unit(7 + 3/12, "feet"),
  33731. default: true
  33732. },
  33733. {
  33734. name: "Slightly Tall Bat",
  33735. height: math.unit(100, "feet")
  33736. },
  33737. {
  33738. name: "Big Bat",
  33739. height: math.unit(1000, "feet")
  33740. },
  33741. {
  33742. name: "City-Sized Bat",
  33743. height: math.unit(200000, "feet")
  33744. },
  33745. {
  33746. name: "Bigger Bat",
  33747. height: math.unit(10000, "miles")
  33748. },
  33749. {
  33750. name: "Solar Sized Bat",
  33751. height: math.unit(100, "AU")
  33752. },
  33753. {
  33754. name: "Galactic Bat",
  33755. height: math.unit(200000, "lightyears")
  33756. },
  33757. {
  33758. name: "Universally Known Bat",
  33759. height: math.unit(1, "universe")
  33760. },
  33761. ]
  33762. ))
  33763. characterMakers.push(() => makeCharacter(
  33764. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33765. {
  33766. front: {
  33767. height: math.unit(6 + 11/12, "feet"),
  33768. weight: math.unit(250, "lb"),
  33769. name: "Front",
  33770. image: {
  33771. source: "./media/characters/cookiecat/front.svg",
  33772. extra: 893/827,
  33773. bottom: 14/907
  33774. }
  33775. },
  33776. },
  33777. [
  33778. {
  33779. name: "Micro",
  33780. height: math.unit(3, "inches")
  33781. },
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(6 + 11/12, "feet"),
  33785. default: true
  33786. },
  33787. {
  33788. name: "Macro",
  33789. height: math.unit(100, "feet")
  33790. },
  33791. {
  33792. name: "Macro+",
  33793. height: math.unit(404, "feet")
  33794. },
  33795. {
  33796. name: "Megamacro",
  33797. height: math.unit(165, "miles")
  33798. },
  33799. {
  33800. name: "Planetary",
  33801. height: math.unit(4600, "miles")
  33802. },
  33803. ]
  33804. ))
  33805. characterMakers.push(() => makeCharacter(
  33806. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33807. {
  33808. front: {
  33809. height: math.unit(10 + 3/12, "feet"),
  33810. weight: math.unit(1500, "lb"),
  33811. name: "Front",
  33812. image: {
  33813. source: "./media/characters/tux-kusanagi/front.svg",
  33814. extra: 944/840,
  33815. bottom: 39/983
  33816. }
  33817. },
  33818. back: {
  33819. height: math.unit(10 + 3/12, "feet"),
  33820. weight: math.unit(1500, "lb"),
  33821. name: "Back",
  33822. image: {
  33823. source: "./media/characters/tux-kusanagi/back.svg",
  33824. extra: 941/842,
  33825. bottom: 28/969
  33826. }
  33827. },
  33828. rump: {
  33829. height: math.unit(5.25, "feet"),
  33830. name: "Rump",
  33831. image: {
  33832. source: "./media/characters/tux-kusanagi/rump.svg"
  33833. }
  33834. },
  33835. beak: {
  33836. height: math.unit(1.54, "feet"),
  33837. name: "Beak",
  33838. image: {
  33839. source: "./media/characters/tux-kusanagi/beak.svg"
  33840. }
  33841. },
  33842. },
  33843. [
  33844. {
  33845. name: "Normal",
  33846. height: math.unit(10 + 3/12, "feet"),
  33847. default: true
  33848. },
  33849. ]
  33850. ))
  33851. characterMakers.push(() => makeCharacter(
  33852. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33853. {
  33854. front: {
  33855. height: math.unit(58, "feet"),
  33856. weight: math.unit(200, "tons"),
  33857. name: "Front",
  33858. image: {
  33859. source: "./media/characters/uzarmazari/front.svg",
  33860. extra: 1575/1455,
  33861. bottom: 152/1727
  33862. }
  33863. },
  33864. back: {
  33865. height: math.unit(58, "feet"),
  33866. weight: math.unit(200, "tons"),
  33867. name: "Back",
  33868. image: {
  33869. source: "./media/characters/uzarmazari/back.svg",
  33870. extra: 1585/1510,
  33871. bottom: 157/1742
  33872. }
  33873. },
  33874. head: {
  33875. height: math.unit(26, "feet"),
  33876. name: "Head",
  33877. image: {
  33878. source: "./media/characters/uzarmazari/head.svg"
  33879. }
  33880. },
  33881. },
  33882. [
  33883. {
  33884. name: "Normal",
  33885. height: math.unit(58, "feet"),
  33886. default: true
  33887. },
  33888. ]
  33889. ))
  33890. characterMakers.push(() => makeCharacter(
  33891. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33892. {
  33893. side: {
  33894. height: math.unit(15, "feet"),
  33895. name: "Side",
  33896. image: {
  33897. source: "./media/characters/akitu/side.svg",
  33898. extra: 1421/1321,
  33899. bottom: 157/1578
  33900. }
  33901. },
  33902. front: {
  33903. height: math.unit(15, "feet"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/akitu/front.svg",
  33907. extra: 1435/1326,
  33908. bottom: 232/1667
  33909. }
  33910. },
  33911. },
  33912. [
  33913. {
  33914. name: "Normal",
  33915. height: math.unit(15, "feet"),
  33916. default: true
  33917. },
  33918. ]
  33919. ))
  33920. characterMakers.push(() => makeCharacter(
  33921. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33922. {
  33923. front: {
  33924. height: math.unit(10 + 8/12, "feet"),
  33925. name: "Front",
  33926. image: {
  33927. source: "./media/characters/azalie-croixland/front.svg",
  33928. extra: 1972/1856,
  33929. bottom: 31/2003
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Original Height",
  33936. height: math.unit(5 + 4/12, "feet")
  33937. },
  33938. {
  33939. name: "Normal Height",
  33940. height: math.unit(10 + 8/12, "feet"),
  33941. default: true
  33942. },
  33943. ]
  33944. ))
  33945. characterMakers.push(() => makeCharacter(
  33946. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33947. {
  33948. side: {
  33949. height: math.unit(7 + 1/12, "feet"),
  33950. weight: math.unit(245, "lb"),
  33951. name: "Side",
  33952. image: {
  33953. source: "./media/characters/kavus-kazian/side.svg",
  33954. extra: 349/342,
  33955. bottom: 15/364
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Normal",
  33962. height: math.unit(7 + 1/12, "feet"),
  33963. default: true
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33969. {
  33970. normal: {
  33971. height: math.unit(5 + 11/12, "feet"),
  33972. name: "Normal",
  33973. image: {
  33974. source: "./media/characters/moonlight-rose/normal.svg",
  33975. extra: 1979/1835,
  33976. bottom: 14/1993
  33977. }
  33978. },
  33979. demon: {
  33980. height: math.unit(5, "km"),
  33981. name: "Demon",
  33982. image: {
  33983. source: "./media/characters/moonlight-rose/demon.svg",
  33984. extra: 986/916,
  33985. bottom: 28/1014
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "\"Natural\" height",
  33992. height: math.unit(5 + 11/12, "feet")
  33993. },
  33994. {
  33995. name: "Comfortable Size",
  33996. height: math.unit(40, "meters")
  33997. },
  33998. {
  33999. name: "Common Size",
  34000. height: math.unit(50, "km"),
  34001. default: true
  34002. },
  34003. {
  34004. name: "Demonic",
  34005. height: math.unit(1.24415e+21, "meters")
  34006. },
  34007. ]
  34008. ))
  34009. characterMakers.push(() => makeCharacter(
  34010. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34011. {
  34012. front: {
  34013. height: math.unit(16, "feet"),
  34014. weight: math.unit(610, "kg"),
  34015. name: "Front",
  34016. image: {
  34017. source: "./media/characters/huckle/front.svg",
  34018. extra: 1731/1625,
  34019. bottom: 33/1764
  34020. }
  34021. },
  34022. back: {
  34023. height: math.unit(16, "feet"),
  34024. weight: math.unit(610, "kg"),
  34025. name: "Back",
  34026. image: {
  34027. source: "./media/characters/huckle/back.svg",
  34028. extra: 1738/1651,
  34029. bottom: 37/1775
  34030. }
  34031. },
  34032. laughing: {
  34033. height: math.unit(3.75, "feet"),
  34034. name: "Laughing",
  34035. image: {
  34036. source: "./media/characters/huckle/laughing.svg"
  34037. }
  34038. },
  34039. angry: {
  34040. height: math.unit(4.15, "feet"),
  34041. name: "Angry",
  34042. image: {
  34043. source: "./media/characters/huckle/angry.svg"
  34044. }
  34045. },
  34046. },
  34047. [
  34048. {
  34049. name: "Normal",
  34050. height: math.unit(16, "feet"),
  34051. default: true
  34052. },
  34053. {
  34054. name: "Mini Macro",
  34055. height: math.unit(463, "feet")
  34056. },
  34057. {
  34058. name: "Macro",
  34059. height: math.unit(1680, "meters")
  34060. },
  34061. {
  34062. name: "Mega Macro",
  34063. height: math.unit(175, "km")
  34064. },
  34065. {
  34066. name: "Terra Macro",
  34067. height: math.unit(32, "gigameters")
  34068. },
  34069. {
  34070. name: "Multiverse+",
  34071. height: math.unit(2.56e23, "yottameters")
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34077. {
  34078. front: {
  34079. height: math.unit(6 + 9/12, "feet"),
  34080. weight: math.unit(280, "lb"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/candy/front.svg",
  34084. extra: 234/217,
  34085. bottom: 11/245
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Really Small",
  34092. height: math.unit(0.1, "nm")
  34093. },
  34094. {
  34095. name: "Micro",
  34096. height: math.unit(2, "inches")
  34097. },
  34098. {
  34099. name: "Normal",
  34100. height: math.unit(6 + 9/12, "feet"),
  34101. default: true
  34102. },
  34103. {
  34104. name: "Small Macro",
  34105. height: math.unit(69, "feet")
  34106. },
  34107. {
  34108. name: "Macro",
  34109. height: math.unit(160, "feet")
  34110. },
  34111. {
  34112. name: "Megamacro",
  34113. height: math.unit(22000, "miles")
  34114. },
  34115. {
  34116. name: "Gigamacro",
  34117. height: math.unit(50000, "miles")
  34118. },
  34119. ]
  34120. ))
  34121. characterMakers.push(() => makeCharacter(
  34122. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34123. {
  34124. front: {
  34125. height: math.unit(4, "feet"),
  34126. weight: math.unit(90, "lb"),
  34127. name: "Front",
  34128. image: {
  34129. source: "./media/characters/joey-mcdonald/front.svg",
  34130. extra: 1059/852,
  34131. bottom: 33/1092
  34132. }
  34133. },
  34134. back: {
  34135. height: math.unit(4, "feet"),
  34136. weight: math.unit(90, "lb"),
  34137. name: "Back",
  34138. image: {
  34139. source: "./media/characters/joey-mcdonald/back.svg",
  34140. extra: 1077/879,
  34141. bottom: 5/1082
  34142. }
  34143. },
  34144. },
  34145. [
  34146. {
  34147. name: "Normal",
  34148. height: math.unit(4, "feet"),
  34149. default: true
  34150. },
  34151. ]
  34152. ))
  34153. characterMakers.push(() => makeCharacter(
  34154. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34155. {
  34156. front: {
  34157. height: math.unit(12 + 6/12, "feet"),
  34158. name: "Front",
  34159. image: {
  34160. source: "./media/characters/kass-lockheed/front.svg",
  34161. extra: 354/343,
  34162. bottom: 9/363
  34163. }
  34164. },
  34165. back: {
  34166. height: math.unit(12 + 6/12, "feet"),
  34167. name: "Back",
  34168. image: {
  34169. source: "./media/characters/kass-lockheed/back.svg",
  34170. extra: 364/352,
  34171. bottom: 3/367
  34172. }
  34173. },
  34174. dick: {
  34175. height: math.unit(3.12, "feet"),
  34176. name: "Dick",
  34177. image: {
  34178. source: "./media/characters/kass-lockheed/dick.svg"
  34179. }
  34180. },
  34181. head: {
  34182. height: math.unit(2.6, "feet"),
  34183. name: "Head",
  34184. image: {
  34185. source: "./media/characters/kass-lockheed/head.svg"
  34186. }
  34187. },
  34188. bleh: {
  34189. height: math.unit(2.85, "feet"),
  34190. name: "Bleh",
  34191. image: {
  34192. source: "./media/characters/kass-lockheed/bleh.svg"
  34193. }
  34194. },
  34195. smug: {
  34196. height: math.unit(2.85, "feet"),
  34197. name: "Smug",
  34198. image: {
  34199. source: "./media/characters/kass-lockheed/smug.svg"
  34200. }
  34201. },
  34202. },
  34203. [
  34204. {
  34205. name: "Normal",
  34206. height: math.unit(12 + 6/12, "feet"),
  34207. default: true
  34208. },
  34209. ]
  34210. ))
  34211. characterMakers.push(() => makeCharacter(
  34212. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34213. {
  34214. front: {
  34215. height: math.unit(6 + 2/12, "feet"),
  34216. name: "Front",
  34217. image: {
  34218. source: "./media/characters/taylor/front.svg",
  34219. extra: 639/495,
  34220. bottom: 12/651
  34221. }
  34222. },
  34223. },
  34224. [
  34225. {
  34226. name: "Normal",
  34227. height: math.unit(6 + 2/12, "feet"),
  34228. default: true
  34229. },
  34230. {
  34231. name: "Big",
  34232. height: math.unit(15, "feet")
  34233. },
  34234. {
  34235. name: "Lorg",
  34236. height: math.unit(80, "feet")
  34237. },
  34238. {
  34239. name: "Too Lorg",
  34240. height: math.unit(120, "feet")
  34241. },
  34242. ]
  34243. ))
  34244. characterMakers.push(() => makeCharacter(
  34245. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34246. {
  34247. front: {
  34248. height: math.unit(15, "feet"),
  34249. name: "Front",
  34250. image: {
  34251. source: "./media/characters/kaizer/front.svg",
  34252. extra: 1612/1436,
  34253. bottom: 43/1655
  34254. }
  34255. },
  34256. },
  34257. [
  34258. {
  34259. name: "Normal",
  34260. height: math.unit(15, "feet"),
  34261. default: true
  34262. },
  34263. ]
  34264. ))
  34265. characterMakers.push(() => makeCharacter(
  34266. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34267. {
  34268. front: {
  34269. height: math.unit(2, "feet"),
  34270. weight: math.unit(30, "lb"),
  34271. name: "Front",
  34272. image: {
  34273. source: "./media/characters/sandy/front.svg",
  34274. extra: 1439/1307,
  34275. bottom: 194/1633
  34276. }
  34277. },
  34278. },
  34279. [
  34280. {
  34281. name: "Normal",
  34282. height: math.unit(2, "feet"),
  34283. default: true
  34284. },
  34285. ]
  34286. ))
  34287. characterMakers.push(() => makeCharacter(
  34288. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34289. {
  34290. front: {
  34291. height: math.unit(3, "feet"),
  34292. name: "Front",
  34293. image: {
  34294. source: "./media/characters/mellvi/front.svg",
  34295. extra: 1831/1630,
  34296. bottom: 58/1889
  34297. }
  34298. },
  34299. },
  34300. [
  34301. {
  34302. name: "Normal",
  34303. height: math.unit(3, "feet"),
  34304. default: true
  34305. },
  34306. ]
  34307. ))
  34308. characterMakers.push(() => makeCharacter(
  34309. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34310. {
  34311. front: {
  34312. height: math.unit(5 + 11/12, "feet"),
  34313. weight: math.unit(200, "lb"),
  34314. name: "Front",
  34315. image: {
  34316. source: "./media/characters/shirou/front.svg",
  34317. extra: 2491/2383,
  34318. bottom: 189/2680
  34319. }
  34320. },
  34321. back: {
  34322. height: math.unit(5 + 11/12, "feet"),
  34323. weight: math.unit(200, "lb"),
  34324. name: "Back",
  34325. image: {
  34326. source: "./media/characters/shirou/back.svg",
  34327. extra: 2554/2450,
  34328. bottom: 76/2630
  34329. }
  34330. },
  34331. },
  34332. [
  34333. {
  34334. name: "Normal",
  34335. height: math.unit(5 + 11/12, "feet"),
  34336. default: true
  34337. },
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34342. {
  34343. front: {
  34344. height: math.unit(6 + 3/12, "feet"),
  34345. weight: math.unit(177, "lb"),
  34346. name: "Front",
  34347. image: {
  34348. source: "./media/characters/noryu/front.svg",
  34349. extra: 973/885,
  34350. bottom: 10/983
  34351. }
  34352. },
  34353. },
  34354. [
  34355. {
  34356. name: "Normal",
  34357. height: math.unit(6 + 3/12, "feet"),
  34358. default: true
  34359. },
  34360. ]
  34361. ))
  34362. characterMakers.push(() => makeCharacter(
  34363. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34364. {
  34365. front: {
  34366. height: math.unit(5 + 6/12, "feet"),
  34367. weight: math.unit(170, "lb"),
  34368. name: "Front",
  34369. image: {
  34370. source: "./media/characters/mevolas-rubenido/front.svg",
  34371. extra: 2109/1901,
  34372. bottom: 96/2205
  34373. }
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "Normal",
  34379. height: math.unit(5 + 6/12, "feet"),
  34380. default: true
  34381. },
  34382. ]
  34383. ))
  34384. characterMakers.push(() => makeCharacter(
  34385. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34386. {
  34387. front: {
  34388. height: math.unit(100, "feet"),
  34389. name: "Front",
  34390. image: {
  34391. source: "./media/characters/dee/front.svg",
  34392. extra: 2153/2036,
  34393. bottom: 59/2212
  34394. }
  34395. },
  34396. back: {
  34397. height: math.unit(100, "feet"),
  34398. name: "Back",
  34399. image: {
  34400. source: "./media/characters/dee/back.svg",
  34401. extra: 2183/2058,
  34402. bottom: 75/2258
  34403. }
  34404. },
  34405. foot: {
  34406. height: math.unit(19.43, "feet"),
  34407. name: "Foot",
  34408. image: {
  34409. source: "./media/characters/dee/foot.svg"
  34410. }
  34411. },
  34412. hoof: {
  34413. height: math.unit(20.6, "feet"),
  34414. name: "Hoof",
  34415. image: {
  34416. source: "./media/characters/dee/hoof.svg"
  34417. }
  34418. },
  34419. },
  34420. [
  34421. {
  34422. name: "Macro",
  34423. height: math.unit(100, "feet"),
  34424. default: true
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34430. {
  34431. front: {
  34432. height: math.unit(5 + 6/12, "feet"),
  34433. name: "Front",
  34434. image: {
  34435. source: "./media/characters/teh/front.svg",
  34436. extra: 1002/847,
  34437. bottom: 62/1064
  34438. }
  34439. },
  34440. },
  34441. [
  34442. {
  34443. name: "Normal",
  34444. height: math.unit(5 + 6/12, "feet"),
  34445. default: true
  34446. },
  34447. ]
  34448. ))
  34449. characterMakers.push(() => makeCharacter(
  34450. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34451. {
  34452. side: {
  34453. height: math.unit(6 + 1/12, "feet"),
  34454. weight: math.unit(204, "lb"),
  34455. name: "Side",
  34456. image: {
  34457. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34458. extra: 974/775,
  34459. bottom: 169/1143
  34460. }
  34461. },
  34462. sitting: {
  34463. height: math.unit(6 + 2/12, "feet"),
  34464. weight: math.unit(204, "lb"),
  34465. name: "Sitting",
  34466. image: {
  34467. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34468. extra: 1175/964,
  34469. bottom: 378/1553
  34470. }
  34471. },
  34472. },
  34473. [
  34474. {
  34475. name: "Normal",
  34476. height: math.unit(6 + 1/12, "feet"),
  34477. default: true
  34478. },
  34479. ]
  34480. ))
  34481. characterMakers.push(() => makeCharacter(
  34482. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34483. {
  34484. front: {
  34485. height: math.unit(6, "inches"),
  34486. name: "Front",
  34487. image: {
  34488. source: "./media/characters/tululi/front.svg",
  34489. extra: 1997/1876,
  34490. bottom: 20/2017
  34491. }
  34492. },
  34493. },
  34494. [
  34495. {
  34496. name: "Normal",
  34497. height: math.unit(6, "inches"),
  34498. default: true
  34499. },
  34500. ]
  34501. ))
  34502. characterMakers.push(() => makeCharacter(
  34503. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34504. {
  34505. front: {
  34506. height: math.unit(4 + 1/12, "feet"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/star/front.svg",
  34510. extra: 1493/1189,
  34511. bottom: 48/1541
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(4 + 1/12, "feet"),
  34519. default: true
  34520. },
  34521. ]
  34522. ))
  34523. characterMakers.push(() => makeCharacter(
  34524. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34525. {
  34526. front: {
  34527. height: math.unit(6 + 3/12, "feet"),
  34528. name: "Front",
  34529. image: {
  34530. source: "./media/characters/comet/front.svg",
  34531. extra: 1681/1462,
  34532. bottom: 26/1707
  34533. }
  34534. },
  34535. },
  34536. [
  34537. {
  34538. name: "Normal",
  34539. height: math.unit(6 + 3/12, "feet"),
  34540. default: true
  34541. },
  34542. ]
  34543. ))
  34544. characterMakers.push(() => makeCharacter(
  34545. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34546. {
  34547. front: {
  34548. height: math.unit(950, "feet"),
  34549. name: "Front",
  34550. image: {
  34551. source: "./media/characters/vortex/front.svg",
  34552. extra: 1497/1434,
  34553. bottom: 56/1553
  34554. }
  34555. },
  34556. maw: {
  34557. height: math.unit(285, "feet"),
  34558. name: "Maw",
  34559. image: {
  34560. source: "./media/characters/vortex/maw.svg"
  34561. }
  34562. },
  34563. },
  34564. [
  34565. {
  34566. name: "Macro",
  34567. height: math.unit(950, "feet"),
  34568. default: true
  34569. },
  34570. ]
  34571. ))
  34572. characterMakers.push(() => makeCharacter(
  34573. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34574. {
  34575. front: {
  34576. height: math.unit(600, "feet"),
  34577. weight: math.unit(0.02, "grams"),
  34578. name: "Front",
  34579. image: {
  34580. source: "./media/characters/doodle/front.svg",
  34581. extra: 1578/1413,
  34582. bottom: 37/1615
  34583. }
  34584. },
  34585. },
  34586. [
  34587. {
  34588. name: "Macro",
  34589. height: math.unit(600, "feet"),
  34590. default: true
  34591. },
  34592. ]
  34593. ))
  34594. characterMakers.push(() => makeCharacter(
  34595. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34596. {
  34597. front: {
  34598. height: math.unit(6 + 6/12, "feet"),
  34599. name: "Front",
  34600. image: {
  34601. source: "./media/characters/jai/front.svg",
  34602. extra: 1645/1534,
  34603. bottom: 115/1760
  34604. }
  34605. },
  34606. },
  34607. [
  34608. {
  34609. name: "Normal",
  34610. height: math.unit(6 + 6/12, "feet"),
  34611. default: true
  34612. },
  34613. ]
  34614. ))
  34615. characterMakers.push(() => makeCharacter(
  34616. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34617. {
  34618. front: {
  34619. height: math.unit(6 + 8/12, "feet"),
  34620. name: "Front",
  34621. image: {
  34622. source: "./media/characters/pixel/front.svg",
  34623. extra: 1900/1735,
  34624. bottom: 63/1963
  34625. }
  34626. },
  34627. },
  34628. [
  34629. {
  34630. name: "Normal",
  34631. height: math.unit(6 + 8/12, "feet"),
  34632. default: true
  34633. },
  34634. ]
  34635. ))
  34636. characterMakers.push(() => makeCharacter(
  34637. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34638. {
  34639. front: {
  34640. height: math.unit(4 + 11/12, "feet"),
  34641. weight: math.unit(111, "lb"),
  34642. name: "Front",
  34643. image: {
  34644. source: "./media/characters/rhett/front.svg",
  34645. extra: 1682/1586,
  34646. bottom: 92/1774
  34647. }
  34648. },
  34649. },
  34650. [
  34651. {
  34652. name: "Mini",
  34653. height: math.unit(1 + 1/12, "feet")
  34654. },
  34655. {
  34656. name: "Normal",
  34657. height: math.unit(4 + 11/12, "feet"),
  34658. default: true
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(3 + 3/12, "feet"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/penny/front.svg",
  34670. extra: 1406/1311,
  34671. bottom: 26/1432
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Normal",
  34678. height: math.unit(3 + 3/12, "feet"),
  34679. default: true
  34680. },
  34681. ]
  34682. ))
  34683. characterMakers.push(() => makeCharacter(
  34684. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34685. {
  34686. front: {
  34687. height: math.unit(4 + 11/12, "feet"),
  34688. name: "Front",
  34689. image: {
  34690. source: "./media/characters/monty/front.svg",
  34691. extra: 1479/1209,
  34692. bottom: 0/1479
  34693. }
  34694. },
  34695. },
  34696. [
  34697. {
  34698. name: "Normal",
  34699. height: math.unit(4 + 11/12, "feet"),
  34700. default: true
  34701. },
  34702. ]
  34703. ))
  34704. characterMakers.push(() => makeCharacter(
  34705. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34706. {
  34707. front: {
  34708. height: math.unit(8 + 4/12, "feet"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/sterling/front.svg",
  34712. extra: 1420/1236,
  34713. bottom: 27/1447
  34714. }
  34715. },
  34716. },
  34717. [
  34718. {
  34719. name: "Normal",
  34720. height: math.unit(8 + 4/12, "feet"),
  34721. default: true
  34722. },
  34723. ]
  34724. ))
  34725. characterMakers.push(() => makeCharacter(
  34726. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34727. {
  34728. front: {
  34729. height: math.unit(15, "feet"),
  34730. name: "Front",
  34731. image: {
  34732. source: "./media/characters/marble/front.svg",
  34733. extra: 973/937,
  34734. bottom: 32/1005
  34735. }
  34736. },
  34737. },
  34738. [
  34739. {
  34740. name: "Normal",
  34741. height: math.unit(15, "feet"),
  34742. default: true
  34743. },
  34744. ]
  34745. ))
  34746. characterMakers.push(() => makeCharacter(
  34747. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34748. {
  34749. front: {
  34750. height: math.unit(3, "inches"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/powder/front.svg",
  34754. extra: 1504/1334,
  34755. bottom: 518/2022
  34756. }
  34757. },
  34758. },
  34759. [
  34760. {
  34761. name: "Normal",
  34762. height: math.unit(3, "inches"),
  34763. default: true
  34764. },
  34765. ]
  34766. ))
  34767. characterMakers.push(() => makeCharacter(
  34768. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34769. {
  34770. front: {
  34771. height: math.unit(4 + 5/12, "feet"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/joey-raccoon/front.svg",
  34775. extra: 1273/1197,
  34776. bottom: 0/1273
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Normal",
  34783. height: math.unit(4 + 5/12, "feet"),
  34784. default: true
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34790. {
  34791. front: {
  34792. height: math.unit(8 + 4/12, "feet"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/vick/front.svg",
  34796. extra: 2187/2118,
  34797. bottom: 47/2234
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(8 + 4/12, "feet"),
  34805. default: true
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(5 + 5/12, "feet"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/mitsy/front.svg",
  34817. extra: 1842/1695,
  34818. bottom: 0/1842
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(5 + 5/12, "feet"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34832. {
  34833. front: {
  34834. height: math.unit(6 + 3/12, "feet"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/silvy/front.svg",
  34838. extra: 1995/1836,
  34839. bottom: 225/2220
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(6 + 3/12, "feet"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(3 + 8/12, "feet"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/rodney/front.svg",
  34859. extra: 1956/1747,
  34860. bottom: 31/1987
  34861. }
  34862. },
  34863. frontDressed: {
  34864. height: math.unit(2.9, "feet"),
  34865. name: "Front (Dressed)",
  34866. image: {
  34867. source: "./media/characters/rodney/front-dressed.svg",
  34868. extra: 1382/1241,
  34869. bottom: 385/1767
  34870. }
  34871. },
  34872. },
  34873. [
  34874. {
  34875. name: "Normal",
  34876. height: math.unit(3 + 8/12, "feet"),
  34877. default: true
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34883. {
  34884. front: {
  34885. height: math.unit(5 + 9/12, "feet"),
  34886. weight: math.unit(194, "lbs"),
  34887. name: "Front",
  34888. image: {
  34889. source: "./media/characters/zakail-sudekai/front.svg",
  34890. extra: 2696/2533,
  34891. bottom: 248/2944
  34892. }
  34893. },
  34894. maw: {
  34895. height: math.unit(1.35, "feet"),
  34896. name: "Maw",
  34897. image: {
  34898. source: "./media/characters/zakail-sudekai/maw.svg"
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Normal",
  34905. height: math.unit(5 + 9/12, "feet"),
  34906. default: true
  34907. },
  34908. ]
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34912. {
  34913. front: {
  34914. height: math.unit(8 + 4/12, "feet"),
  34915. weight: math.unit(1200, "lb"),
  34916. name: "Front",
  34917. image: {
  34918. source: "./media/characters/eleanor/front.svg",
  34919. extra: 1226/1192,
  34920. bottom: 52/1278
  34921. }
  34922. },
  34923. back: {
  34924. height: math.unit(8 + 4/12, "feet"),
  34925. weight: math.unit(1200, "lb"),
  34926. name: "Back",
  34927. image: {
  34928. source: "./media/characters/eleanor/back.svg",
  34929. extra: 1242/1184,
  34930. bottom: 60/1302
  34931. }
  34932. },
  34933. head: {
  34934. height: math.unit(2.62, "feet"),
  34935. name: "Head",
  34936. image: {
  34937. source: "./media/characters/eleanor/head.svg"
  34938. }
  34939. },
  34940. },
  34941. [
  34942. {
  34943. name: "Normal",
  34944. height: math.unit(8 + 4/12, "feet"),
  34945. default: true
  34946. },
  34947. ]
  34948. ))
  34949. characterMakers.push(() => makeCharacter(
  34950. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34951. {
  34952. front: {
  34953. height: math.unit(8 + 4/12, "feet"),
  34954. weight: math.unit(750, "lb"),
  34955. name: "Front",
  34956. image: {
  34957. source: "./media/characters/tanya/front.svg",
  34958. extra: 1749/1615,
  34959. bottom: 33/1782
  34960. }
  34961. },
  34962. },
  34963. [
  34964. {
  34965. name: "Normal",
  34966. height: math.unit(8 + 4/12, "feet"),
  34967. default: true
  34968. },
  34969. ]
  34970. ))
  34971. characterMakers.push(() => makeCharacter(
  34972. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  34973. {
  34974. front: {
  34975. height: math.unit(5, "feet"),
  34976. weight: math.unit(225, "lb"),
  34977. name: "Front",
  34978. image: {
  34979. source: "./media/characters/cindy/front.svg",
  34980. extra: 1320/1250,
  34981. bottom: 42/1362
  34982. }
  34983. },
  34984. frontDressed: {
  34985. height: math.unit(5, "feet"),
  34986. weight: math.unit(225, "lb"),
  34987. name: "Front (Dressed)",
  34988. image: {
  34989. source: "./media/characters/cindy/front-dressed.svg",
  34990. extra: 1320/1250,
  34991. bottom: 42/1362
  34992. }
  34993. },
  34994. back: {
  34995. height: math.unit(5, "feet"),
  34996. weight: math.unit(225, "lb"),
  34997. name: "Back",
  34998. image: {
  34999. source: "./media/characters/cindy/back.svg",
  35000. extra: 1384/1346,
  35001. bottom: 14/1398
  35002. }
  35003. },
  35004. },
  35005. [
  35006. {
  35007. name: "Normal",
  35008. height: math.unit(5, "feet"),
  35009. default: true
  35010. },
  35011. ]
  35012. ))
  35013. characterMakers.push(() => makeCharacter(
  35014. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35015. {
  35016. front: {
  35017. height: math.unit(6 + 9/12, "feet"),
  35018. weight: math.unit(440, "lb"),
  35019. name: "Front",
  35020. image: {
  35021. source: "./media/characters/wilbur-owen/front.svg",
  35022. extra: 1575/1448,
  35023. bottom: 72/1647
  35024. }
  35025. },
  35026. back: {
  35027. height: math.unit(6 + 9/12, "feet"),
  35028. weight: math.unit(440, "lb"),
  35029. name: "Back",
  35030. image: {
  35031. source: "./media/characters/wilbur-owen/back.svg",
  35032. extra: 1578/1445,
  35033. bottom: 36/1614
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(6 + 9/12, "feet"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(6 + 5/12, "feet"),
  35050. weight: math.unit(650, "lb"),
  35051. name: "Front",
  35052. image: {
  35053. source: "./media/characters/keegan/front.svg",
  35054. extra: 2387/2198,
  35055. bottom: 33/2420
  35056. }
  35057. },
  35058. side: {
  35059. height: math.unit(6 + 5/12, "feet"),
  35060. weight: math.unit(650, "lb"),
  35061. name: "Side",
  35062. image: {
  35063. source: "./media/characters/keegan/side.svg",
  35064. extra: 2390/2202,
  35065. bottom: 47/2437
  35066. }
  35067. },
  35068. back: {
  35069. height: math.unit(6 + 5/12, "feet"),
  35070. weight: math.unit(650, "lb"),
  35071. name: "Back",
  35072. image: {
  35073. source: "./media/characters/keegan/back.svg",
  35074. extra: 2418/2268,
  35075. bottom: 15/2433
  35076. }
  35077. },
  35078. frontSfw: {
  35079. height: math.unit(6 + 5/12, "feet"),
  35080. weight: math.unit(650, "lb"),
  35081. name: "Front (SFW)",
  35082. image: {
  35083. source: "./media/characters/keegan/front-sfw.svg",
  35084. extra: 2387/2198,
  35085. bottom: 33/2420
  35086. }
  35087. },
  35088. beans: {
  35089. height: math.unit(1.85, "feet"),
  35090. name: "Beans",
  35091. image: {
  35092. source: "./media/characters/keegan/beans.svg"
  35093. }
  35094. },
  35095. },
  35096. [
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(6 + 5/12, "feet"),
  35100. default: true
  35101. },
  35102. ]
  35103. ))
  35104. characterMakers.push(() => makeCharacter(
  35105. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35106. {
  35107. front: {
  35108. height: math.unit(9, "feet"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/colton/front.svg",
  35112. extra: 1589/1326,
  35113. bottom: 139/1728
  35114. }
  35115. },
  35116. },
  35117. [
  35118. {
  35119. name: "Normal",
  35120. height: math.unit(9, "feet"),
  35121. default: true
  35122. },
  35123. ]
  35124. ))
  35125. characterMakers.push(() => makeCharacter(
  35126. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35127. {
  35128. front: {
  35129. height: math.unit(2 + 9/12, "feet"),
  35130. name: "Front",
  35131. image: {
  35132. source: "./media/characters/bora/front.svg",
  35133. extra: 1265/1250,
  35134. bottom: 24/1289
  35135. }
  35136. },
  35137. },
  35138. [
  35139. {
  35140. name: "Normal",
  35141. height: math.unit(2 + 9/12, "feet"),
  35142. default: true
  35143. },
  35144. ]
  35145. ))
  35146. characterMakers.push(() => makeCharacter(
  35147. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35148. {
  35149. front: {
  35150. height: math.unit(8, "feet"),
  35151. name: "Front",
  35152. image: {
  35153. source: "./media/characters/myu-myu/front.svg",
  35154. extra: 1949/1857,
  35155. bottom: 90/2039
  35156. }
  35157. },
  35158. },
  35159. [
  35160. {
  35161. name: "Normal",
  35162. height: math.unit(8, "feet"),
  35163. default: true
  35164. },
  35165. {
  35166. name: "Big",
  35167. height: math.unit(15, "feet")
  35168. },
  35169. {
  35170. name: "BIG",
  35171. height: math.unit(25, "feet")
  35172. },
  35173. ]
  35174. ))
  35175. //characters
  35176. function makeCharacters() {
  35177. const results = [];
  35178. characterMakers.forEach(character => {
  35179. results.push(character());
  35180. });
  35181. return results;
  35182. }