less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

31959 wiersze
801 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.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. "umbreon": {
  1416. name: "Umbreon",
  1417. parents: ["eeveelution"]
  1418. },
  1419. "slime-dragon": {
  1420. name: "Slime Dragon",
  1421. parents: ["dragon"]
  1422. },
  1423. "enderman": {
  1424. name: "Enderman",
  1425. parents: ["monster"]
  1426. },
  1427. }
  1428. //species
  1429. function getSpeciesInfo(speciesList) {
  1430. let result = new Set();
  1431. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1432. result.add(entry)
  1433. });
  1434. return Array.from(result);
  1435. };
  1436. function getSpeciesInfoHelper(species) {
  1437. if (!speciesData[species]) {
  1438. console.warn(species + " doesn't exist");
  1439. return [];
  1440. }
  1441. if (speciesData[species].parents) {
  1442. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1443. } else {
  1444. return [species];
  1445. }
  1446. }
  1447. characterMakers.push(() => makeCharacter(
  1448. {
  1449. name: "Fen",
  1450. species: ["crux"],
  1451. description: {
  1452. title: "Bio",
  1453. text: "Very furry. Sheds on everything."
  1454. },
  1455. tags: [
  1456. "anthro",
  1457. "goo"
  1458. ]
  1459. },
  1460. {
  1461. back: {
  1462. height: math.unit(2.2428, "meter"),
  1463. weight: math.unit(124.738, "kg"),
  1464. name: "Back",
  1465. image: {
  1466. source: "./media/characters/fen/back.svg",
  1467. extra: 2024 / 1867,
  1468. bottom: 13 / 2037
  1469. },
  1470. info: {
  1471. description: {
  1472. mode: "append",
  1473. text: "\n\nHe is not currently looking at you."
  1474. }
  1475. }
  1476. },
  1477. full: {
  1478. height: math.unit(1.34, "meter"),
  1479. weight: math.unit(225, "kg"),
  1480. name: "Full",
  1481. image: {
  1482. source: "./media/characters/fen/full.svg"
  1483. },
  1484. info: {
  1485. description: {
  1486. mode: "append",
  1487. text: "\n\nMunch."
  1488. }
  1489. }
  1490. },
  1491. kneeling: {
  1492. height: math.unit(5.4, "feet"),
  1493. weight: math.unit(124.738, "kg"),
  1494. name: "Kneeling",
  1495. image: {
  1496. source: "./media/characters/fen/kneeling.svg",
  1497. extra: 563 / 507
  1498. }
  1499. },
  1500. goo: {
  1501. height: math.unit(2.8, "feet"),
  1502. weight: math.unit(125, "kg"),
  1503. capacity: math.unit(1, "people"),
  1504. name: "Goo",
  1505. image: {
  1506. source: "./media/characters/fen/goo.svg",
  1507. bottom: 116 / 613
  1508. }
  1509. },
  1510. lounging: {
  1511. height: math.unit(6.5, "feet"),
  1512. weight: math.unit(125, "kg"),
  1513. name: "Lounging",
  1514. image: {
  1515. source: "./media/characters/fen/lounging.svg"
  1516. }
  1517. },
  1518. },
  1519. [
  1520. {
  1521. name: "Normal",
  1522. height: math.unit(2.2428, "meter")
  1523. },
  1524. {
  1525. name: "Big",
  1526. height: math.unit(12, "feet")
  1527. },
  1528. {
  1529. name: "Minimacro",
  1530. height: math.unit(40, "feet"),
  1531. default: true,
  1532. info: {
  1533. description: {
  1534. mode: "append",
  1535. text: "\n\nTOO DAMN BIG"
  1536. }
  1537. }
  1538. },
  1539. {
  1540. name: "Macro",
  1541. height: math.unit(100, "feet"),
  1542. info: {
  1543. description: {
  1544. mode: "append",
  1545. text: "\n\nTOO DAMN BIG"
  1546. }
  1547. }
  1548. },
  1549. {
  1550. name: "Macro+",
  1551. height: math.unit(300, "feet")
  1552. },
  1553. {
  1554. name: "Megamacro",
  1555. height: math.unit(2, "miles")
  1556. }
  1557. ]
  1558. ))
  1559. characterMakers.push(() => makeCharacter(
  1560. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1561. {
  1562. front: {
  1563. height: math.unit(183, "cm"),
  1564. weight: math.unit(80, "kg"),
  1565. name: "Front",
  1566. image: {
  1567. source: "./media/characters/sofia-fluttertail/front.svg",
  1568. bottom: 0.01,
  1569. extra: 2154 / 2081
  1570. }
  1571. },
  1572. frontAlt: {
  1573. height: math.unit(183, "cm"),
  1574. weight: math.unit(80, "kg"),
  1575. name: "Front (alt)",
  1576. image: {
  1577. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1578. }
  1579. },
  1580. back: {
  1581. height: math.unit(183, "cm"),
  1582. weight: math.unit(80, "kg"),
  1583. name: "Back",
  1584. image: {
  1585. source: "./media/characters/sofia-fluttertail/back.svg"
  1586. }
  1587. },
  1588. kneeling: {
  1589. height: math.unit(125, "cm"),
  1590. weight: math.unit(80, "kg"),
  1591. name: "Kneeling",
  1592. image: {
  1593. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1594. extra: 1033 / 977,
  1595. bottom: 23.7 / 1057
  1596. }
  1597. },
  1598. maw: {
  1599. height: math.unit(183 / 5, "cm"),
  1600. name: "Maw",
  1601. image: {
  1602. source: "./media/characters/sofia-fluttertail/maw.svg"
  1603. }
  1604. },
  1605. mawcloseup: {
  1606. height: math.unit(183 / 5 * 0.41, "cm"),
  1607. name: "Maw (Closeup)",
  1608. image: {
  1609. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1610. }
  1611. },
  1612. paws: {
  1613. height: math.unit(1.17, "feet"),
  1614. name: "Paws",
  1615. image: {
  1616. source: "./media/characters/sofia-fluttertail/paws.svg",
  1617. extra: 851 / 851,
  1618. bottom: 17 / 868
  1619. }
  1620. },
  1621. },
  1622. [
  1623. {
  1624. name: "Normal",
  1625. height: math.unit(1.83, "meter")
  1626. },
  1627. {
  1628. name: "Size Thief",
  1629. height: math.unit(18, "feet")
  1630. },
  1631. {
  1632. name: "50 Foot Collie",
  1633. height: math.unit(50, "feet")
  1634. },
  1635. {
  1636. name: "Macro",
  1637. height: math.unit(96, "feet"),
  1638. default: true
  1639. },
  1640. {
  1641. name: "Megamerger",
  1642. height: math.unit(650, "feet")
  1643. },
  1644. ]
  1645. ))
  1646. characterMakers.push(() => makeCharacter(
  1647. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1648. {
  1649. front: {
  1650. height: math.unit(7, "feet"),
  1651. weight: math.unit(100, "kg"),
  1652. name: "Front",
  1653. image: {
  1654. source: "./media/characters/march/front.svg",
  1655. extra: 1,
  1656. bottom: 0.015
  1657. }
  1658. },
  1659. foot: {
  1660. height: math.unit(0.9, "feet"),
  1661. name: "Foot",
  1662. image: {
  1663. source: "./media/characters/march/foot.svg"
  1664. }
  1665. },
  1666. },
  1667. [
  1668. {
  1669. name: "Normal",
  1670. height: math.unit(7.9, "feet")
  1671. },
  1672. {
  1673. name: "Macro",
  1674. height: math.unit(220, "meters")
  1675. },
  1676. {
  1677. name: "Megamacro",
  1678. height: math.unit(2.98, "km"),
  1679. default: true
  1680. },
  1681. {
  1682. name: "Gigamacro",
  1683. height: math.unit(15963, "km")
  1684. },
  1685. {
  1686. name: "Teramacro",
  1687. height: math.unit(2980000000, "km")
  1688. },
  1689. {
  1690. name: "Examacro",
  1691. height: math.unit(250, "parsecs")
  1692. },
  1693. ]
  1694. ))
  1695. characterMakers.push(() => makeCharacter(
  1696. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1697. {
  1698. front: {
  1699. height: math.unit(6, "feet"),
  1700. weight: math.unit(60, "kg"),
  1701. name: "Front",
  1702. image: {
  1703. source: "./media/characters/noir/front.svg",
  1704. extra: 1,
  1705. bottom: 0.032
  1706. }
  1707. },
  1708. },
  1709. [
  1710. {
  1711. name: "Normal",
  1712. height: math.unit(6.6, "feet")
  1713. },
  1714. {
  1715. name: "Macro",
  1716. height: math.unit(500, "feet")
  1717. },
  1718. {
  1719. name: "Megamacro",
  1720. height: math.unit(2.5, "km"),
  1721. default: true
  1722. },
  1723. {
  1724. name: "Gigamacro",
  1725. height: math.unit(22500, "km")
  1726. },
  1727. {
  1728. name: "Teramacro",
  1729. height: math.unit(2500000000, "km")
  1730. },
  1731. {
  1732. name: "Examacro",
  1733. height: math.unit(200, "parsecs")
  1734. },
  1735. ]
  1736. ))
  1737. characterMakers.push(() => makeCharacter(
  1738. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1739. {
  1740. front: {
  1741. height: math.unit(7, "feet"),
  1742. weight: math.unit(100, "kg"),
  1743. name: "Front",
  1744. image: {
  1745. source: "./media/characters/okuri/front.svg",
  1746. extra: 1,
  1747. bottom: 0.037
  1748. }
  1749. },
  1750. back: {
  1751. height: math.unit(7, "feet"),
  1752. weight: math.unit(100, "kg"),
  1753. name: "Back",
  1754. image: {
  1755. source: "./media/characters/okuri/back.svg",
  1756. extra: 1,
  1757. bottom: 0.007
  1758. }
  1759. },
  1760. },
  1761. [
  1762. {
  1763. name: "Megamacro",
  1764. height: math.unit(100, "miles"),
  1765. default: true
  1766. },
  1767. ]
  1768. ))
  1769. characterMakers.push(() => makeCharacter(
  1770. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1771. {
  1772. front: {
  1773. height: math.unit(7, "feet"),
  1774. weight: math.unit(100, "kg"),
  1775. name: "Front",
  1776. image: {
  1777. source: "./media/characters/manny/front.svg",
  1778. extra: 1,
  1779. bottom: 0.06
  1780. }
  1781. },
  1782. back: {
  1783. height: math.unit(7, "feet"),
  1784. weight: math.unit(100, "kg"),
  1785. name: "Back",
  1786. image: {
  1787. source: "./media/characters/manny/back.svg",
  1788. extra: 1,
  1789. bottom: 0.014
  1790. }
  1791. },
  1792. },
  1793. [
  1794. {
  1795. name: "Normal",
  1796. height: math.unit(7, "feet"),
  1797. },
  1798. {
  1799. name: "Macro",
  1800. height: math.unit(78, "feet"),
  1801. default: true
  1802. },
  1803. {
  1804. name: "Macro+",
  1805. height: math.unit(300, "meters")
  1806. },
  1807. {
  1808. name: "Macro++",
  1809. height: math.unit(2400, "meters")
  1810. },
  1811. {
  1812. name: "Megamacro",
  1813. height: math.unit(5167, "meters")
  1814. },
  1815. {
  1816. name: "Gigamacro",
  1817. height: math.unit(41769, "miles")
  1818. },
  1819. ]
  1820. ))
  1821. characterMakers.push(() => makeCharacter(
  1822. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1823. {
  1824. front: {
  1825. height: math.unit(7, "feet"),
  1826. weight: math.unit(100, "kg"),
  1827. name: "Front",
  1828. image: {
  1829. source: "./media/characters/adake/front-1.svg"
  1830. }
  1831. },
  1832. frontAlt: {
  1833. height: math.unit(7, "feet"),
  1834. weight: math.unit(100, "kg"),
  1835. name: "Front (Alt)",
  1836. image: {
  1837. source: "./media/characters/adake/front-2.svg",
  1838. extra: 1,
  1839. bottom: 0.01
  1840. }
  1841. },
  1842. back: {
  1843. height: math.unit(7, "feet"),
  1844. weight: math.unit(100, "kg"),
  1845. name: "Back",
  1846. image: {
  1847. source: "./media/characters/adake/back.svg",
  1848. }
  1849. },
  1850. kneel: {
  1851. height: math.unit(5.385, "feet"),
  1852. weight: math.unit(100, "kg"),
  1853. name: "Kneeling",
  1854. image: {
  1855. source: "./media/characters/adake/kneel.svg",
  1856. bottom: 0.052
  1857. }
  1858. },
  1859. },
  1860. [
  1861. {
  1862. name: "Normal",
  1863. height: math.unit(7, "feet"),
  1864. },
  1865. {
  1866. name: "Macro",
  1867. height: math.unit(78, "feet"),
  1868. default: true
  1869. },
  1870. {
  1871. name: "Macro+",
  1872. height: math.unit(300, "meters")
  1873. },
  1874. {
  1875. name: "Macro++",
  1876. height: math.unit(2400, "meters")
  1877. },
  1878. {
  1879. name: "Megamacro",
  1880. height: math.unit(5167, "meters")
  1881. },
  1882. {
  1883. name: "Gigamacro",
  1884. height: math.unit(41769, "miles")
  1885. },
  1886. ]
  1887. ))
  1888. characterMakers.push(() => makeCharacter(
  1889. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1890. {
  1891. front: {
  1892. height: math.unit(1.65, "meters"),
  1893. weight: math.unit(50, "kg"),
  1894. name: "Front",
  1895. image: {
  1896. source: "./media/characters/elijah/front.svg",
  1897. extra: 858 / 830,
  1898. bottom: 95.5 / 953.8559
  1899. }
  1900. },
  1901. back: {
  1902. height: math.unit(1.65, "meters"),
  1903. weight: math.unit(50, "kg"),
  1904. name: "Back",
  1905. image: {
  1906. source: "./media/characters/elijah/back.svg",
  1907. extra: 895 / 850,
  1908. bottom: 5.3 / 897.956
  1909. }
  1910. },
  1911. frontNsfw: {
  1912. height: math.unit(1.65, "meters"),
  1913. weight: math.unit(50, "kg"),
  1914. name: "Front (NSFW)",
  1915. image: {
  1916. source: "./media/characters/elijah/front-nsfw.svg",
  1917. extra: 858 / 830,
  1918. bottom: 95.5 / 953.8559
  1919. }
  1920. },
  1921. backNsfw: {
  1922. height: math.unit(1.65, "meters"),
  1923. weight: math.unit(50, "kg"),
  1924. name: "Back (NSFW)",
  1925. image: {
  1926. source: "./media/characters/elijah/back-nsfw.svg",
  1927. extra: 895 / 850,
  1928. bottom: 5.3 / 897.956
  1929. }
  1930. },
  1931. dick: {
  1932. height: math.unit(1, "feet"),
  1933. name: "Dick",
  1934. image: {
  1935. source: "./media/characters/elijah/dick.svg"
  1936. }
  1937. },
  1938. beakOpen: {
  1939. height: math.unit(1.25, "feet"),
  1940. name: "Beak (Open)",
  1941. image: {
  1942. source: "./media/characters/elijah/beak-open.svg"
  1943. }
  1944. },
  1945. beakShut: {
  1946. height: math.unit(1.25, "feet"),
  1947. name: "Beak (Shut)",
  1948. image: {
  1949. source: "./media/characters/elijah/beak-shut.svg"
  1950. }
  1951. },
  1952. footFlexing: {
  1953. height: math.unit(1.61, "feet"),
  1954. name: "Foot (Flexing)",
  1955. image: {
  1956. source: "./media/characters/elijah/foot-flexing.svg"
  1957. }
  1958. },
  1959. footStepping: {
  1960. height: math.unit(1.44, "feet"),
  1961. name: "Foot (Stepping)",
  1962. image: {
  1963. source: "./media/characters/elijah/foot-stepping.svg"
  1964. }
  1965. },
  1966. plantigradeLeg: {
  1967. height: math.unit(2.34, "feet"),
  1968. name: "Plantigrade Leg",
  1969. image: {
  1970. source: "./media/characters/elijah/plantigrade-leg.svg"
  1971. }
  1972. },
  1973. plantigradeFootLeft: {
  1974. height: math.unit(0.9, "feet"),
  1975. name: "Plantigrade Foot (Left)",
  1976. image: {
  1977. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1978. }
  1979. },
  1980. plantigradeFootRight: {
  1981. height: math.unit(0.9, "feet"),
  1982. name: "Plantigrade Foot (Right)",
  1983. image: {
  1984. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1985. }
  1986. },
  1987. },
  1988. [
  1989. {
  1990. name: "Normal",
  1991. height: math.unit(1.65, "meters")
  1992. },
  1993. {
  1994. name: "Macro",
  1995. height: math.unit(55, "meters"),
  1996. default: true
  1997. },
  1998. {
  1999. name: "Macro+",
  2000. height: math.unit(105, "meters")
  2001. },
  2002. ]
  2003. ))
  2004. characterMakers.push(() => makeCharacter(
  2005. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2006. {
  2007. front: {
  2008. height: math.unit(11, "feet"),
  2009. weight: math.unit(80, "kg"),
  2010. name: "Front",
  2011. image: {
  2012. source: "./media/characters/rai/front.svg",
  2013. extra: 1,
  2014. bottom: 0.03
  2015. }
  2016. },
  2017. side: {
  2018. height: math.unit(11, "feet"),
  2019. weight: math.unit(80, "kg"),
  2020. name: "Side",
  2021. image: {
  2022. source: "./media/characters/rai/side.svg"
  2023. }
  2024. },
  2025. back: {
  2026. height: math.unit(11, "feet"),
  2027. weight: math.unit(80, "lb"),
  2028. name: "Back",
  2029. image: {
  2030. source: "./media/characters/rai/back.svg",
  2031. extra: 1,
  2032. bottom: 0.01
  2033. }
  2034. },
  2035. feral: {
  2036. height: math.unit(11, "feet"),
  2037. weight: math.unit(800, "lb"),
  2038. name: "Feral",
  2039. image: {
  2040. source: "./media/characters/rai/feral.svg",
  2041. extra: 1050 / 659,
  2042. bottom: 0.07
  2043. }
  2044. },
  2045. dragon: {
  2046. height: math.unit(23, "feet"),
  2047. weight: math.unit(50000, "lb"),
  2048. name: "Dragon",
  2049. image: {
  2050. source: "./media/characters/rai/dragon.svg",
  2051. extra: 2498 / 2030,
  2052. bottom: 85.2 / 2584
  2053. }
  2054. },
  2055. maw: {
  2056. height: math.unit(6 / 3.81416, "feet"),
  2057. name: "Maw",
  2058. image: {
  2059. source: "./media/characters/rai/maw.svg"
  2060. }
  2061. },
  2062. },
  2063. [
  2064. {
  2065. name: "Normal",
  2066. height: math.unit(11, "feet")
  2067. },
  2068. {
  2069. name: "Macro",
  2070. height: math.unit(302, "feet"),
  2071. default: true
  2072. },
  2073. ]
  2074. ))
  2075. characterMakers.push(() => makeCharacter(
  2076. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2077. {
  2078. frontDressed: {
  2079. height: math.unit(216, "feet"),
  2080. weight: math.unit(7000000, "lb"),
  2081. name: "Front (Dressed)",
  2082. image: {
  2083. source: "./media/characters/jazzy/front-dressed.svg",
  2084. extra: 2738 / 2651,
  2085. bottom: 41.8 / 2786
  2086. }
  2087. },
  2088. backDressed: {
  2089. height: math.unit(216, "feet"),
  2090. weight: math.unit(7000000, "lb"),
  2091. name: "Back (Dressed)",
  2092. image: {
  2093. source: "./media/characters/jazzy/back-dressed.svg",
  2094. extra: 2775 / 2673,
  2095. bottom: 36.8 / 2817
  2096. }
  2097. },
  2098. front: {
  2099. height: math.unit(216, "feet"),
  2100. weight: math.unit(7000000, "lb"),
  2101. name: "Front",
  2102. image: {
  2103. source: "./media/characters/jazzy/front.svg",
  2104. extra: 2738 / 2651,
  2105. bottom: 41.8 / 2786
  2106. }
  2107. },
  2108. back: {
  2109. height: math.unit(216, "feet"),
  2110. weight: math.unit(7000000, "lb"),
  2111. name: "Back",
  2112. image: {
  2113. source: "./media/characters/jazzy/back.svg",
  2114. extra: 2775 / 2673,
  2115. bottom: 36.8 / 2817
  2116. }
  2117. },
  2118. maw: {
  2119. height: math.unit(20, "feet"),
  2120. name: "Maw",
  2121. image: {
  2122. source: "./media/characters/jazzy/maw.svg"
  2123. }
  2124. },
  2125. paws: {
  2126. height: math.unit(27.5, "feet"),
  2127. name: "Paws",
  2128. image: {
  2129. source: "./media/characters/jazzy/paws.svg"
  2130. }
  2131. },
  2132. eye: {
  2133. height: math.unit(4.4, "feet"),
  2134. name: "Eye",
  2135. image: {
  2136. source: "./media/characters/jazzy/eye.svg"
  2137. }
  2138. },
  2139. droneOffense: {
  2140. height: math.unit(9.5, "inches"),
  2141. name: "Drone (Offense)",
  2142. image: {
  2143. source: "./media/characters/jazzy/drone-offense.svg"
  2144. }
  2145. },
  2146. droneRecon: {
  2147. height: math.unit(9.5, "inches"),
  2148. name: "Drone (Recon)",
  2149. image: {
  2150. source: "./media/characters/jazzy/drone-recon.svg"
  2151. }
  2152. },
  2153. droneDefense: {
  2154. height: math.unit(9.5, "inches"),
  2155. name: "Drone (Defense)",
  2156. image: {
  2157. source: "./media/characters/jazzy/drone-defense.svg"
  2158. }
  2159. },
  2160. },
  2161. [
  2162. {
  2163. name: "Macro",
  2164. height: math.unit(216, "feet"),
  2165. default: true
  2166. },
  2167. ]
  2168. ))
  2169. characterMakers.push(() => makeCharacter(
  2170. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2171. {
  2172. front: {
  2173. height: math.unit(7, "feet"),
  2174. weight: math.unit(80, "kg"),
  2175. name: "Front",
  2176. image: {
  2177. source: "./media/characters/flamm/front.svg",
  2178. extra: 1794 / 1677,
  2179. bottom: 31.7 / 1828.5
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(9.5, "feet")
  2187. },
  2188. {
  2189. name: "Macro",
  2190. height: math.unit(200, "feet"),
  2191. default: true
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2197. {
  2198. front: {
  2199. height: math.unit(7, "feet"),
  2200. weight: math.unit(80, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/zephiro/front.svg",
  2204. extra: 2309 / 2162,
  2205. bottom: 0.069
  2206. }
  2207. },
  2208. side: {
  2209. height: math.unit(7, "feet"),
  2210. weight: math.unit(80, "kg"),
  2211. name: "Side",
  2212. image: {
  2213. source: "./media/characters/zephiro/side.svg",
  2214. extra: 2403 / 2279,
  2215. bottom: 0.015
  2216. }
  2217. },
  2218. back: {
  2219. height: math.unit(7, "feet"),
  2220. weight: math.unit(80, "kg"),
  2221. name: "Back",
  2222. image: {
  2223. source: "./media/characters/zephiro/back.svg",
  2224. extra: 2373 / 2244,
  2225. bottom: 0.013
  2226. }
  2227. },
  2228. },
  2229. [
  2230. {
  2231. name: "Micro",
  2232. height: math.unit(3, "inches")
  2233. },
  2234. {
  2235. name: "Normal",
  2236. height: math.unit(5 + 3 / 12, "feet"),
  2237. default: true
  2238. },
  2239. {
  2240. name: "Macro",
  2241. height: math.unit(118, "feet")
  2242. },
  2243. ]
  2244. ))
  2245. characterMakers.push(() => makeCharacter(
  2246. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2247. {
  2248. front: {
  2249. height: math.unit(5, "feet"),
  2250. weight: math.unit(90, "kg"),
  2251. name: "Front",
  2252. image: {
  2253. source: "./media/characters/fory/front.svg",
  2254. extra: 2862 / 2674,
  2255. bottom: 180 / 3043.8
  2256. }
  2257. },
  2258. back: {
  2259. height: math.unit(5, "feet"),
  2260. weight: math.unit(90, "kg"),
  2261. name: "Back",
  2262. image: {
  2263. source: "./media/characters/fory/back.svg",
  2264. extra: 2962 / 2791,
  2265. bottom: 106 / 3071.8
  2266. }
  2267. },
  2268. foot: {
  2269. height: math.unit(2.14, "feet"),
  2270. name: "Foot",
  2271. image: {
  2272. source: "./media/characters/fory/foot.svg"
  2273. }
  2274. },
  2275. },
  2276. [
  2277. {
  2278. name: "Normal",
  2279. height: math.unit(5, "feet")
  2280. },
  2281. {
  2282. name: "Macro",
  2283. height: math.unit(50, "feet"),
  2284. default: true
  2285. },
  2286. {
  2287. name: "Megamacro",
  2288. height: math.unit(10, "miles")
  2289. },
  2290. {
  2291. name: "Gigamacro",
  2292. height: math.unit(5, "earths")
  2293. },
  2294. ]
  2295. ))
  2296. characterMakers.push(() => makeCharacter(
  2297. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2298. {
  2299. front: {
  2300. height: math.unit(7, "feet"),
  2301. weight: math.unit(90, "kg"),
  2302. name: "Front",
  2303. image: {
  2304. source: "./media/characters/kurrikage/front.svg",
  2305. extra: 1,
  2306. bottom: 0.035
  2307. }
  2308. },
  2309. back: {
  2310. height: math.unit(7, "feet"),
  2311. weight: math.unit(90, "lb"),
  2312. name: "Back",
  2313. image: {
  2314. source: "./media/characters/kurrikage/back.svg"
  2315. }
  2316. },
  2317. paw: {
  2318. height: math.unit(1.5, "feet"),
  2319. name: "Paw",
  2320. image: {
  2321. source: "./media/characters/kurrikage/paw.svg"
  2322. }
  2323. },
  2324. staff: {
  2325. height: math.unit(6.7, "feet"),
  2326. name: "Staff",
  2327. image: {
  2328. source: "./media/characters/kurrikage/staff.svg"
  2329. }
  2330. },
  2331. peek: {
  2332. height: math.unit(1.05, "feet"),
  2333. name: "Peeking",
  2334. image: {
  2335. source: "./media/characters/kurrikage/peek.svg",
  2336. bottom: 0.08
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Normal",
  2343. height: math.unit(12, "feet"),
  2344. default: true
  2345. },
  2346. {
  2347. name: "Big",
  2348. height: math.unit(20, "feet")
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(500, "feet")
  2353. },
  2354. {
  2355. name: "Megamacro",
  2356. height: math.unit(20, "miles")
  2357. },
  2358. ]
  2359. ))
  2360. characterMakers.push(() => makeCharacter(
  2361. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2362. {
  2363. front: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(75, "kg"),
  2366. name: "Front",
  2367. image: {
  2368. source: "./media/characters/shingo/front.svg",
  2369. extra: 3511 / 3338,
  2370. bottom: 0.005
  2371. }
  2372. },
  2373. paw: {
  2374. height: math.unit(1, "feet"),
  2375. name: "Paw",
  2376. image: {
  2377. source: "./media/characters/shingo/paw.svg"
  2378. }
  2379. },
  2380. },
  2381. [
  2382. {
  2383. name: "Micro",
  2384. height: math.unit(4, "inches")
  2385. },
  2386. {
  2387. name: "Normal",
  2388. height: math.unit(6, "feet"),
  2389. default: true
  2390. },
  2391. {
  2392. name: "Macro",
  2393. height: math.unit(108, "feet")
  2394. },
  2395. {
  2396. name: "Macro+",
  2397. height: math.unit(1500, "feet")
  2398. },
  2399. ]
  2400. ))
  2401. characterMakers.push(() => makeCharacter(
  2402. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2403. {
  2404. side: {
  2405. height: math.unit(6, "feet"),
  2406. weight: math.unit(75, "kg"),
  2407. name: "Side",
  2408. image: {
  2409. source: "./media/characters/aigey/side.svg"
  2410. }
  2411. },
  2412. },
  2413. [
  2414. {
  2415. name: "Macro",
  2416. height: math.unit(200, "feet"),
  2417. default: true
  2418. },
  2419. {
  2420. name: "Megamacro",
  2421. height: math.unit(100, "miles")
  2422. },
  2423. ]
  2424. )
  2425. )
  2426. characterMakers.push(() => makeCharacter(
  2427. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2428. {
  2429. front: {
  2430. height: math.unit(5 + 5 / 12, "feet"),
  2431. weight: math.unit(75, "kg"),
  2432. name: "Front",
  2433. image: {
  2434. source: "./media/characters/natasha/front.svg",
  2435. extra: 859 / 824,
  2436. bottom: 23 / 879.6
  2437. }
  2438. },
  2439. frontNsfw: {
  2440. height: math.unit(5 + 5 / 12, "feet"),
  2441. weight: math.unit(75, "kg"),
  2442. name: "Front (NSFW)",
  2443. image: {
  2444. source: "./media/characters/natasha/front-nsfw.svg",
  2445. extra: 859 / 824,
  2446. bottom: 23 / 879.6
  2447. }
  2448. },
  2449. frontErect: {
  2450. height: math.unit(5 + 5 / 12, "feet"),
  2451. weight: math.unit(75, "kg"),
  2452. name: "Front (Erect)",
  2453. image: {
  2454. source: "./media/characters/natasha/front-erect.svg",
  2455. extra: 859 / 824,
  2456. bottom: 23 / 879.6
  2457. }
  2458. },
  2459. back: {
  2460. height: math.unit(5 + 5 / 12, "feet"),
  2461. weight: math.unit(75, "kg"),
  2462. name: "Back",
  2463. image: {
  2464. source: "./media/characters/natasha/back.svg",
  2465. extra: 887.9 / 852.6,
  2466. bottom: 9.7 / 896.4
  2467. }
  2468. },
  2469. backAlt: {
  2470. height: math.unit(5 + 5 / 12, "feet"),
  2471. weight: math.unit(75, "kg"),
  2472. name: "Back (Alt)",
  2473. image: {
  2474. source: "./media/characters/natasha/back-alt.svg",
  2475. extra: 1236.7 / 1192,
  2476. bottom: 22.3 / 1258.2
  2477. }
  2478. },
  2479. dick: {
  2480. height: math.unit(1.772, "feet"),
  2481. name: "Dick",
  2482. image: {
  2483. source: "./media/characters/natasha/dick.svg"
  2484. }
  2485. },
  2486. paw: {
  2487. height: math.unit(0.250, "meters"),
  2488. name: "Paw",
  2489. image: {
  2490. source: "./media/characters/natasha/paw.svg"
  2491. }
  2492. },
  2493. },
  2494. [
  2495. {
  2496. name: "Normal",
  2497. height: math.unit(5 + 5 / 12, "feet")
  2498. },
  2499. {
  2500. name: "Large",
  2501. height: math.unit(12, "feet")
  2502. },
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(100, "feet"),
  2506. default: true
  2507. },
  2508. {
  2509. name: "Macro+",
  2510. height: math.unit(260, "feet")
  2511. },
  2512. {
  2513. name: "Macro++",
  2514. height: math.unit(1, "mile")
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(6, "feet"),
  2523. weight: math.unit(75, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/malik/front.svg"
  2527. }
  2528. },
  2529. side: {
  2530. height: math.unit(6, "feet"),
  2531. weight: math.unit(75, "kg"),
  2532. name: "Side",
  2533. image: {
  2534. source: "./media/characters/malik/side.svg",
  2535. extra: 1.1539
  2536. }
  2537. },
  2538. back: {
  2539. height: math.unit(6, "feet"),
  2540. weight: math.unit(75, "kg"),
  2541. name: "Back",
  2542. image: {
  2543. source: "./media/characters/malik/back.svg"
  2544. }
  2545. },
  2546. },
  2547. [
  2548. {
  2549. name: "Macro",
  2550. height: math.unit(156, "feet"),
  2551. default: true
  2552. },
  2553. {
  2554. name: "Macro+",
  2555. height: math.unit(1188, "feet")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(6, "feet"),
  2564. weight: math.unit(75, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/sefer/front.svg",
  2568. extra: 848 / 659,
  2569. bottom: 28.3 / 876.442
  2570. }
  2571. },
  2572. back: {
  2573. height: math.unit(6, "feet"),
  2574. weight: math.unit(75, "kg"),
  2575. name: "Back",
  2576. image: {
  2577. source: "./media/characters/sefer/back.svg",
  2578. extra: 864 / 695,
  2579. bottom: 10 / 871
  2580. }
  2581. },
  2582. frontDressed: {
  2583. height: math.unit(6, "feet"),
  2584. weight: math.unit(75, "kg"),
  2585. name: "Front (Dressed)",
  2586. image: {
  2587. source: "./media/characters/sefer/front-dressed.svg",
  2588. extra: 839 / 653,
  2589. bottom: 37.6 / 878
  2590. }
  2591. },
  2592. },
  2593. [
  2594. {
  2595. name: "Normal",
  2596. height: math.unit(6, "feet"),
  2597. default: true
  2598. },
  2599. ]
  2600. ))
  2601. characterMakers.push(() => makeCharacter(
  2602. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2603. {
  2604. body: {
  2605. height: math.unit(2.2428, "meter"),
  2606. weight: math.unit(124.738, "kg"),
  2607. name: "Body",
  2608. image: {
  2609. extra: 1225 / 1050,
  2610. source: "./media/characters/north/front.svg"
  2611. }
  2612. }
  2613. },
  2614. [
  2615. {
  2616. name: "Micro",
  2617. height: math.unit(4, "inches")
  2618. },
  2619. {
  2620. name: "Macro",
  2621. height: math.unit(63, "meters")
  2622. },
  2623. {
  2624. name: "Megamacro",
  2625. height: math.unit(101, "miles"),
  2626. default: true
  2627. }
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2632. {
  2633. angled: {
  2634. height: math.unit(4, "meter"),
  2635. weight: math.unit(150, "kg"),
  2636. name: "Angled",
  2637. image: {
  2638. source: "./media/characters/talan/angled-sfw.svg",
  2639. bottom: 29 / 3734
  2640. }
  2641. },
  2642. angledNsfw: {
  2643. height: math.unit(4, "meter"),
  2644. weight: math.unit(150, "kg"),
  2645. name: "Angled (NSFW)",
  2646. image: {
  2647. source: "./media/characters/talan/angled-nsfw.svg",
  2648. bottom: 29 / 3734
  2649. }
  2650. },
  2651. frontNsfw: {
  2652. height: math.unit(4, "meter"),
  2653. weight: math.unit(150, "kg"),
  2654. name: "Front (NSFW)",
  2655. image: {
  2656. source: "./media/characters/talan/front-nsfw.svg",
  2657. bottom: 29 / 3734
  2658. }
  2659. },
  2660. sideNsfw: {
  2661. height: math.unit(4, "meter"),
  2662. weight: math.unit(150, "kg"),
  2663. name: "Side (NSFW)",
  2664. image: {
  2665. source: "./media/characters/talan/side-nsfw.svg",
  2666. bottom: 29 / 3734
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(4, "meter"),
  2671. weight: math.unit(150, "kg"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/talan/back.svg"
  2675. }
  2676. },
  2677. dickBottom: {
  2678. height: math.unit(0.621, "meter"),
  2679. name: "Dick (Bottom)",
  2680. image: {
  2681. source: "./media/characters/talan/dick-bottom.svg"
  2682. }
  2683. },
  2684. dickTop: {
  2685. height: math.unit(0.621, "meter"),
  2686. name: "Dick (Top)",
  2687. image: {
  2688. source: "./media/characters/talan/dick-top.svg"
  2689. }
  2690. },
  2691. dickSide: {
  2692. height: math.unit(0.305, "meter"),
  2693. name: "Dick (Side)",
  2694. image: {
  2695. source: "./media/characters/talan/dick-side.svg"
  2696. }
  2697. },
  2698. dickFront: {
  2699. height: math.unit(0.305, "meter"),
  2700. name: "Dick (Front)",
  2701. image: {
  2702. source: "./media/characters/talan/dick-front.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(4, "meters")
  2710. },
  2711. {
  2712. name: "Macro",
  2713. height: math.unit(100, "meters")
  2714. },
  2715. {
  2716. name: "Megamacro",
  2717. height: math.unit(2, "miles"),
  2718. default: true
  2719. },
  2720. {
  2721. name: "Gigamacro",
  2722. height: math.unit(5000, "miles")
  2723. },
  2724. {
  2725. name: "Teramacro",
  2726. height: math.unit(100, "parsecs")
  2727. }
  2728. ]
  2729. ))
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2732. {
  2733. front: {
  2734. height: math.unit(2, "meter"),
  2735. weight: math.unit(90, "kg"),
  2736. name: "Front",
  2737. image: {
  2738. source: "./media/characters/gael'rathus/front.svg"
  2739. }
  2740. },
  2741. frontAlt: {
  2742. height: math.unit(2, "meter"),
  2743. weight: math.unit(90, "kg"),
  2744. name: "Front (alt)",
  2745. image: {
  2746. source: "./media/characters/gael'rathus/front-alt.svg"
  2747. }
  2748. },
  2749. frontAlt2: {
  2750. height: math.unit(2, "meter"),
  2751. weight: math.unit(90, "kg"),
  2752. name: "Front (alt 2)",
  2753. image: {
  2754. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2755. }
  2756. }
  2757. },
  2758. [
  2759. {
  2760. name: "Normal",
  2761. height: math.unit(9, "feet"),
  2762. default: true
  2763. },
  2764. {
  2765. name: "Large",
  2766. height: math.unit(25, "feet")
  2767. },
  2768. {
  2769. name: "Macro",
  2770. height: math.unit(0.25, "miles")
  2771. },
  2772. {
  2773. name: "Megamacro",
  2774. height: math.unit(10, "miles")
  2775. }
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2780. {
  2781. side: {
  2782. height: math.unit(2, "meter"),
  2783. weight: math.unit(140, "kg"),
  2784. name: "Side",
  2785. image: {
  2786. source: "./media/characters/sosha/side.svg",
  2787. bottom: 0.042
  2788. }
  2789. },
  2790. },
  2791. [
  2792. {
  2793. name: "Normal",
  2794. height: math.unit(12, "feet"),
  2795. default: true
  2796. }
  2797. ]
  2798. ))
  2799. characterMakers.push(() => makeCharacter(
  2800. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2801. {
  2802. side: {
  2803. height: math.unit(5 + 5 / 12, "feet"),
  2804. weight: math.unit(170, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/runnola/side.svg",
  2808. extra: 741 / 448,
  2809. bottom: 0.05
  2810. }
  2811. },
  2812. },
  2813. [
  2814. {
  2815. name: "Small",
  2816. height: math.unit(3, "feet")
  2817. },
  2818. {
  2819. name: "Normal",
  2820. height: math.unit(5 + 5 / 12, "feet"),
  2821. default: true
  2822. },
  2823. {
  2824. name: "Big",
  2825. height: math.unit(10, "feet")
  2826. },
  2827. ]
  2828. ))
  2829. characterMakers.push(() => makeCharacter(
  2830. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2831. {
  2832. front: {
  2833. height: math.unit(2, "meter"),
  2834. weight: math.unit(50, "kg"),
  2835. name: "Front",
  2836. image: {
  2837. source: "./media/characters/kurribird/front.svg",
  2838. bottom: 0.015
  2839. }
  2840. },
  2841. frontAlt: {
  2842. height: math.unit(1.5, "meter"),
  2843. weight: math.unit(50, "kg"),
  2844. name: "Front (Alt)",
  2845. image: {
  2846. source: "./media/characters/kurribird/front-alt.svg",
  2847. extra: 1.45
  2848. }
  2849. },
  2850. },
  2851. [
  2852. {
  2853. name: "Normal",
  2854. height: math.unit(7, "feet")
  2855. },
  2856. {
  2857. name: "Big",
  2858. height: math.unit(12, "feet"),
  2859. default: true
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(1500, "feet")
  2864. },
  2865. {
  2866. name: "Megamacro",
  2867. height: math.unit(2, "miles")
  2868. }
  2869. ]
  2870. ))
  2871. characterMakers.push(() => makeCharacter(
  2872. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2873. {
  2874. front: {
  2875. height: math.unit(2, "meter"),
  2876. weight: math.unit(80, "kg"),
  2877. name: "Front",
  2878. image: {
  2879. source: "./media/characters/elbial/front.svg",
  2880. extra: 1643 / 1556,
  2881. bottom: 60.2 / 1696
  2882. }
  2883. },
  2884. side: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(80, "kg"),
  2887. name: "Side",
  2888. image: {
  2889. source: "./media/characters/elbial/side.svg",
  2890. extra: 1630 / 1565,
  2891. bottom: 71.5 / 1697
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(2, "meter"),
  2896. weight: math.unit(80, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/elbial/back.svg",
  2900. extra: 1668 / 1595,
  2901. bottom: 5.6 / 1672
  2902. }
  2903. },
  2904. frontDressed: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(80, "kg"),
  2907. name: "Front (Dressed)",
  2908. image: {
  2909. source: "./media/characters/elbial/front-dressed.svg",
  2910. extra: 1653 / 1584,
  2911. bottom: 57 / 1708
  2912. }
  2913. },
  2914. genitals: {
  2915. height: math.unit(2 / 3.367, "meter"),
  2916. name: "Genitals",
  2917. image: {
  2918. source: "./media/characters/elbial/genitals.svg"
  2919. }
  2920. },
  2921. },
  2922. [
  2923. {
  2924. name: "Large",
  2925. height: math.unit(100, "feet")
  2926. },
  2927. {
  2928. name: "Macro",
  2929. height: math.unit(500, "feet"),
  2930. default: true
  2931. },
  2932. {
  2933. name: "Megamacro",
  2934. height: math.unit(10, "miles")
  2935. },
  2936. {
  2937. name: "Gigamacro",
  2938. height: math.unit(25000, "miles")
  2939. },
  2940. {
  2941. name: "Full-Size",
  2942. height: math.unit(8000000, "gigaparsecs")
  2943. }
  2944. ]
  2945. ))
  2946. characterMakers.push(() => makeCharacter(
  2947. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2948. {
  2949. front: {
  2950. height: math.unit(2, "meter"),
  2951. weight: math.unit(60, "kg"),
  2952. name: "Front",
  2953. image: {
  2954. source: "./media/characters/noah/front.svg"
  2955. }
  2956. },
  2957. talons: {
  2958. height: math.unit(0.315, "meter"),
  2959. name: "Talons",
  2960. image: {
  2961. source: "./media/characters/noah/talons.svg"
  2962. }
  2963. }
  2964. },
  2965. [
  2966. {
  2967. name: "Large",
  2968. height: math.unit(50, "feet")
  2969. },
  2970. {
  2971. name: "Macro",
  2972. height: math.unit(750, "feet"),
  2973. default: true
  2974. },
  2975. {
  2976. name: "Megamacro",
  2977. height: math.unit(50, "miles")
  2978. },
  2979. {
  2980. name: "Gigamacro",
  2981. height: math.unit(100000, "miles")
  2982. },
  2983. {
  2984. name: "Full-Size",
  2985. height: math.unit(3000000000, "miles")
  2986. }
  2987. ]
  2988. ))
  2989. characterMakers.push(() => makeCharacter(
  2990. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2991. {
  2992. front: {
  2993. height: math.unit(2, "meter"),
  2994. weight: math.unit(80, "kg"),
  2995. name: "Front",
  2996. image: {
  2997. source: "./media/characters/natalya/front.svg"
  2998. }
  2999. },
  3000. back: {
  3001. height: math.unit(2, "meter"),
  3002. weight: math.unit(80, "kg"),
  3003. name: "Back",
  3004. image: {
  3005. source: "./media/characters/natalya/back.svg"
  3006. }
  3007. }
  3008. },
  3009. [
  3010. {
  3011. name: "Normal",
  3012. height: math.unit(150, "feet"),
  3013. default: true
  3014. },
  3015. {
  3016. name: "Megamacro",
  3017. height: math.unit(5, "miles")
  3018. },
  3019. {
  3020. name: "Full-Size",
  3021. height: math.unit(600, "kiloparsecs")
  3022. }
  3023. ]
  3024. ))
  3025. characterMakers.push(() => makeCharacter(
  3026. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3027. {
  3028. front: {
  3029. height: math.unit(2, "meter"),
  3030. weight: math.unit(50, "kg"),
  3031. name: "Front",
  3032. image: {
  3033. source: "./media/characters/erestrebah/front.svg",
  3034. extra: 208 / 193,
  3035. bottom: 0.055
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(2, "meter"),
  3040. weight: math.unit(50, "kg"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/erestrebah/back.svg",
  3044. extra: 1.3
  3045. }
  3046. }
  3047. },
  3048. [
  3049. {
  3050. name: "Normal",
  3051. height: math.unit(10, "feet")
  3052. },
  3053. {
  3054. name: "Large",
  3055. height: math.unit(50, "feet"),
  3056. default: true
  3057. },
  3058. {
  3059. name: "Macro",
  3060. height: math.unit(300, "feet")
  3061. },
  3062. {
  3063. name: "Macro+",
  3064. height: math.unit(750, "feet")
  3065. },
  3066. {
  3067. name: "Megamacro",
  3068. height: math.unit(3, "miles")
  3069. }
  3070. ]
  3071. ))
  3072. characterMakers.push(() => makeCharacter(
  3073. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3074. {
  3075. front: {
  3076. height: math.unit(2, "meter"),
  3077. weight: math.unit(80, "kg"),
  3078. name: "Front",
  3079. image: {
  3080. source: "./media/characters/jennifer/front.svg",
  3081. bottom: 0.11,
  3082. extra: 1.16
  3083. }
  3084. },
  3085. frontAlt: {
  3086. height: math.unit(2, "meter"),
  3087. weight: math.unit(80, "kg"),
  3088. name: "Front (Alt)",
  3089. image: {
  3090. source: "./media/characters/jennifer/front-alt.svg"
  3091. }
  3092. }
  3093. },
  3094. [
  3095. {
  3096. name: "Canon Height",
  3097. height: math.unit(120, "feet"),
  3098. default: true
  3099. },
  3100. {
  3101. name: "Macro+",
  3102. height: math.unit(300, "feet")
  3103. },
  3104. {
  3105. name: "Megamacro",
  3106. height: math.unit(20000, "feet")
  3107. }
  3108. ]
  3109. ))
  3110. characterMakers.push(() => makeCharacter(
  3111. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3112. {
  3113. front: {
  3114. height: math.unit(2, "meter"),
  3115. weight: math.unit(50, "kg"),
  3116. name: "Front",
  3117. image: {
  3118. source: "./media/characters/kalista/front.svg",
  3119. extra: 1947 / 1700,
  3120. bottom: 76.6 / 1412.98
  3121. }
  3122. },
  3123. back: {
  3124. height: math.unit(2, "meter"),
  3125. weight: math.unit(50, "kg"),
  3126. name: "Back",
  3127. image: {
  3128. source: "./media/characters/kalista/back.svg",
  3129. extra: 1366 / 1156,
  3130. bottom: 33.9 / 1362.78
  3131. }
  3132. }
  3133. },
  3134. [
  3135. {
  3136. name: "Uncomfortably Small",
  3137. height: math.unit(10, "feet")
  3138. },
  3139. {
  3140. name: "Small",
  3141. height: math.unit(30, "feet")
  3142. },
  3143. {
  3144. name: "Macro",
  3145. height: math.unit(100, "feet"),
  3146. default: true
  3147. },
  3148. {
  3149. name: "Macro+",
  3150. height: math.unit(2000, "feet")
  3151. },
  3152. {
  3153. name: "True Form",
  3154. height: math.unit(8924, "miles")
  3155. }
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(120, "kg"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/ggv/front.svg"
  3167. }
  3168. },
  3169. side: {
  3170. height: math.unit(2, "meter"),
  3171. weight: math.unit(120, "kg"),
  3172. name: "Side",
  3173. image: {
  3174. source: "./media/characters/ggv/side.svg"
  3175. }
  3176. }
  3177. },
  3178. [
  3179. {
  3180. name: "Extremely Puny",
  3181. height: math.unit(9 + 5 / 12, "feet")
  3182. },
  3183. {
  3184. name: "Horribly Small",
  3185. height: math.unit(47.7, "miles"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Reasonably Sized",
  3190. height: math.unit(25000, "parsecs")
  3191. },
  3192. {
  3193. name: "Slightly Uncompressed",
  3194. height: math.unit(7.77e31, "parsecs")
  3195. },
  3196. {
  3197. name: "Omniversal",
  3198. height: math.unit(1e300, "meters")
  3199. },
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3204. {
  3205. front: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(75, "lb"),
  3208. name: "Front",
  3209. image: {
  3210. source: "./media/characters/napalm/front.svg"
  3211. }
  3212. },
  3213. back: {
  3214. height: math.unit(2, "meter"),
  3215. weight: math.unit(75, "lb"),
  3216. name: "Back",
  3217. image: {
  3218. source: "./media/characters/napalm/back.svg"
  3219. }
  3220. }
  3221. },
  3222. [
  3223. {
  3224. name: "Standard",
  3225. height: math.unit(55, "feet"),
  3226. default: true
  3227. }
  3228. ]
  3229. ))
  3230. characterMakers.push(() => makeCharacter(
  3231. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3232. {
  3233. front: {
  3234. height: math.unit(7 + 5 / 6, "feet"),
  3235. weight: math.unit(325, "lb"),
  3236. name: "Front",
  3237. image: {
  3238. source: "./media/characters/asana/front.svg",
  3239. extra: 1133 / 1060,
  3240. bottom: 15.2 / 1148.6
  3241. }
  3242. },
  3243. back: {
  3244. height: math.unit(7 + 5 / 6, "feet"),
  3245. weight: math.unit(325, "lb"),
  3246. name: "Back",
  3247. image: {
  3248. source: "./media/characters/asana/back.svg",
  3249. extra: 1114 / 1043,
  3250. bottom: 5 / 1120
  3251. }
  3252. },
  3253. dressedDark: {
  3254. height: math.unit(7 + 5 / 6, "feet"),
  3255. weight: math.unit(325, "lb"),
  3256. name: "Dressed (Dark)",
  3257. image: {
  3258. source: "./media/characters/asana/dressed-dark.svg",
  3259. extra: 1133 / 1060,
  3260. bottom: 15.2 / 1148.6
  3261. }
  3262. },
  3263. dressedLight: {
  3264. height: math.unit(7 + 5 / 6, "feet"),
  3265. weight: math.unit(325, "lb"),
  3266. name: "Dressed (Light)",
  3267. image: {
  3268. source: "./media/characters/asana/dressed-light.svg",
  3269. extra: 1133 / 1060,
  3270. bottom: 15.2 / 1148.6
  3271. }
  3272. },
  3273. },
  3274. [
  3275. {
  3276. name: "Standard",
  3277. height: math.unit(7 + 5 / 6, "feet"),
  3278. default: true
  3279. },
  3280. {
  3281. name: "Large",
  3282. height: math.unit(10, "meters")
  3283. },
  3284. {
  3285. name: "Macro",
  3286. height: math.unit(2500, "meters")
  3287. },
  3288. {
  3289. name: "Megamacro",
  3290. height: math.unit(5e6, "meters")
  3291. },
  3292. {
  3293. name: "Examacro",
  3294. height: math.unit(5e12, "lightyears")
  3295. },
  3296. {
  3297. name: "Max Size",
  3298. height: math.unit(1e31, "lightyears")
  3299. }
  3300. ]
  3301. ))
  3302. characterMakers.push(() => makeCharacter(
  3303. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3304. {
  3305. front: {
  3306. height: math.unit(2, "meter"),
  3307. weight: math.unit(60, "kg"),
  3308. name: "Front",
  3309. image: {
  3310. source: "./media/characters/ebony/front.svg",
  3311. bottom: 0.03,
  3312. extra: 1045 / 810 + 0.03
  3313. }
  3314. },
  3315. side: {
  3316. height: math.unit(2, "meter"),
  3317. weight: math.unit(60, "kg"),
  3318. name: "Side",
  3319. image: {
  3320. source: "./media/characters/ebony/side.svg",
  3321. bottom: 0.03,
  3322. extra: 1045 / 810 + 0.03
  3323. }
  3324. },
  3325. back: {
  3326. height: math.unit(2, "meter"),
  3327. weight: math.unit(60, "kg"),
  3328. name: "Back",
  3329. image: {
  3330. source: "./media/characters/ebony/back.svg",
  3331. bottom: 0.01,
  3332. extra: 1045 / 810 + 0.01
  3333. }
  3334. },
  3335. },
  3336. [
  3337. // TODO check why I did this lol
  3338. {
  3339. name: "Standard",
  3340. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Macro",
  3345. height: math.unit(200, "feet")
  3346. },
  3347. {
  3348. name: "Gigamacro",
  3349. height: math.unit(13000, "km")
  3350. }
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3355. {
  3356. front: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(175, "lb"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/mountain/front.svg",
  3362. extra: 972 / 955,
  3363. bottom: 64 / 1036.6
  3364. }
  3365. },
  3366. back: {
  3367. height: math.unit(6, "feet"),
  3368. weight: math.unit(175, "lb"),
  3369. name: "Back",
  3370. image: {
  3371. source: "./media/characters/mountain/back.svg",
  3372. extra: 970 / 950,
  3373. bottom: 28.25 / 999
  3374. }
  3375. },
  3376. },
  3377. [
  3378. {
  3379. name: "Large",
  3380. height: math.unit(20, "meters")
  3381. },
  3382. {
  3383. name: "Macro",
  3384. height: math.unit(300, "meters")
  3385. },
  3386. {
  3387. name: "Gigamacro",
  3388. height: math.unit(10000, "km"),
  3389. default: true
  3390. },
  3391. {
  3392. name: "Examacro",
  3393. height: math.unit(10e9, "lightyears")
  3394. }
  3395. ]
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3399. {
  3400. front: {
  3401. height: math.unit(8, "feet"),
  3402. weight: math.unit(500, "lb"),
  3403. name: "Front",
  3404. image: {
  3405. source: "./media/characters/rick/front.svg"
  3406. }
  3407. }
  3408. },
  3409. [
  3410. {
  3411. name: "Normal",
  3412. height: math.unit(8, "feet"),
  3413. default: true
  3414. },
  3415. {
  3416. name: "Macro",
  3417. height: math.unit(5, "km")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(8, "feet"),
  3426. weight: math.unit(120, "lb"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/ona/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(8, "feet"),
  3434. weight: math.unit(120, "lb"),
  3435. name: "Front (Alt)",
  3436. image: {
  3437. source: "./media/characters/ona/front-alt.svg"
  3438. }
  3439. },
  3440. back: {
  3441. height: math.unit(8, "feet"),
  3442. weight: math.unit(120, "lb"),
  3443. name: "Back",
  3444. image: {
  3445. source: "./media/characters/ona/back.svg"
  3446. }
  3447. },
  3448. foot: {
  3449. height: math.unit(1.1, "feet"),
  3450. name: "Foot",
  3451. image: {
  3452. source: "./media/characters/ona/foot.svg"
  3453. }
  3454. }
  3455. },
  3456. [
  3457. {
  3458. name: "Megamacro",
  3459. height: math.unit(70, "km"),
  3460. default: true
  3461. },
  3462. {
  3463. name: "Gigamacro",
  3464. height: math.unit(681818, "miles")
  3465. },
  3466. {
  3467. name: "Examacro",
  3468. height: math.unit(3800000, "lightyears")
  3469. },
  3470. ]
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3474. {
  3475. front: {
  3476. height: math.unit(12, "feet"),
  3477. weight: math.unit(3000, "lb"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/mech/front.svg",
  3481. extra: 2900 / 2770,
  3482. bottom: 110 / 3010
  3483. }
  3484. },
  3485. back: {
  3486. height: math.unit(12, "feet"),
  3487. weight: math.unit(3000, "lb"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/mech/back.svg",
  3491. extra: 3011 / 2890,
  3492. bottom: 94 / 3105
  3493. }
  3494. },
  3495. maw: {
  3496. height: math.unit(3.07, "feet"),
  3497. name: "Maw",
  3498. image: {
  3499. source: "./media/characters/mech/maw.svg"
  3500. }
  3501. },
  3502. head: {
  3503. height: math.unit(2.82, "feet"),
  3504. name: "Head",
  3505. image: {
  3506. source: "./media/characters/mech/head.svg"
  3507. }
  3508. },
  3509. dick: {
  3510. height: math.unit(1.43, "feet"),
  3511. name: "Dick",
  3512. image: {
  3513. source: "./media/characters/mech/dick.svg"
  3514. }
  3515. },
  3516. },
  3517. [
  3518. {
  3519. name: "Normal",
  3520. height: math.unit(12, "feet")
  3521. },
  3522. {
  3523. name: "Macro",
  3524. height: math.unit(300, "feet"),
  3525. default: true
  3526. },
  3527. {
  3528. name: "Macro+",
  3529. height: math.unit(1500, "feet")
  3530. },
  3531. ]
  3532. ))
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3535. {
  3536. front: {
  3537. height: math.unit(1.3, "meter"),
  3538. weight: math.unit(30, "kg"),
  3539. name: "Front",
  3540. image: {
  3541. source: "./media/characters/gregory/front.svg",
  3542. }
  3543. }
  3544. },
  3545. [
  3546. {
  3547. name: "Normal",
  3548. height: math.unit(1.3, "meter"),
  3549. default: true
  3550. },
  3551. {
  3552. name: "Macro",
  3553. height: math.unit(20, "meter")
  3554. }
  3555. ]
  3556. ))
  3557. characterMakers.push(() => makeCharacter(
  3558. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3559. {
  3560. front: {
  3561. height: math.unit(2.8, "meter"),
  3562. weight: math.unit(200, "kg"),
  3563. name: "Front",
  3564. image: {
  3565. source: "./media/characters/elory/front.svg",
  3566. }
  3567. }
  3568. },
  3569. [
  3570. {
  3571. name: "Normal",
  3572. height: math.unit(2.8, "meter"),
  3573. default: true
  3574. },
  3575. {
  3576. name: "Macro",
  3577. height: math.unit(38, "meter")
  3578. }
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3583. {
  3584. front: {
  3585. height: math.unit(470, "feet"),
  3586. weight: math.unit(924, "tons"),
  3587. name: "Front",
  3588. image: {
  3589. source: "./media/characters/angelpatamon/front.svg",
  3590. }
  3591. }
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(470, "feet"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Deity Size I",
  3601. height: math.unit(28651.2, "km")
  3602. },
  3603. {
  3604. name: "Deity Size II",
  3605. height: math.unit(171907.2, "km")
  3606. }
  3607. ]
  3608. ))
  3609. characterMakers.push(() => makeCharacter(
  3610. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3611. {
  3612. side: {
  3613. height: math.unit(7.2, "meter"),
  3614. weight: math.unit(8.2, "tons"),
  3615. name: "Side",
  3616. image: {
  3617. source: "./media/characters/cryae/side.svg",
  3618. extra: 3500 / 1500
  3619. }
  3620. }
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(7.2, "meter"),
  3626. default: true
  3627. }
  3628. ]
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3632. {
  3633. front: {
  3634. height: math.unit(6, "feet"),
  3635. weight: math.unit(175, "lb"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/xera/front.svg",
  3639. extra: 2377 / 1972,
  3640. bottom: 75.5 / 2452
  3641. }
  3642. },
  3643. side: {
  3644. height: math.unit(6, "feet"),
  3645. weight: math.unit(175, "lb"),
  3646. name: "Side",
  3647. image: {
  3648. source: "./media/characters/xera/side.svg",
  3649. extra: 2345 / 2019,
  3650. bottom: 39.7 / 2384
  3651. }
  3652. },
  3653. back: {
  3654. height: math.unit(6, "feet"),
  3655. weight: math.unit(175, "lb"),
  3656. name: "Back",
  3657. image: {
  3658. source: "./media/characters/xera/back.svg",
  3659. extra: 2095 / 1984,
  3660. bottom: 67 / 2166
  3661. }
  3662. },
  3663. },
  3664. [
  3665. {
  3666. name: "Small",
  3667. height: math.unit(10, "feet")
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(500, "meters"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "Macro+",
  3676. height: math.unit(10, "km")
  3677. },
  3678. {
  3679. name: "Gigamacro",
  3680. height: math.unit(25000, "km")
  3681. },
  3682. {
  3683. name: "Teramacro",
  3684. height: math.unit(3e6, "km")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(6, "feet"),
  3693. weight: math.unit(175, "lb"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/nebula/front.svg",
  3697. extra: 2566 / 2362,
  3698. bottom: 81 / 2644
  3699. }
  3700. }
  3701. },
  3702. [
  3703. {
  3704. name: "Small",
  3705. height: math.unit(4.5, "meters")
  3706. },
  3707. {
  3708. name: "Macro",
  3709. height: math.unit(1500, "meters"),
  3710. default: true
  3711. },
  3712. {
  3713. name: "Megamacro",
  3714. height: math.unit(150, "km")
  3715. },
  3716. {
  3717. name: "Gigamacro",
  3718. height: math.unit(27000, "km")
  3719. }
  3720. ]
  3721. ))
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3724. {
  3725. front: {
  3726. height: math.unit(6, "feet"),
  3727. weight: math.unit(225, "lb"),
  3728. name: "Front",
  3729. image: {
  3730. source: "./media/characters/abysgar/front.svg"
  3731. }
  3732. }
  3733. },
  3734. [
  3735. {
  3736. name: "Small",
  3737. height: math.unit(4.5, "meters")
  3738. },
  3739. {
  3740. name: "Macro",
  3741. height: math.unit(1250, "meters"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Megamacro",
  3746. height: math.unit(125, "km")
  3747. },
  3748. {
  3749. name: "Gigamacro",
  3750. height: math.unit(26000, "km")
  3751. }
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3756. {
  3757. front: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(180, "lb"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/yakuz/front.svg"
  3763. }
  3764. }
  3765. },
  3766. [
  3767. {
  3768. name: "Small",
  3769. height: math.unit(5, "meters")
  3770. },
  3771. {
  3772. name: "Macro",
  3773. height: math.unit(1500, "meters"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "Megamacro",
  3778. height: math.unit(200, "km")
  3779. },
  3780. {
  3781. name: "Gigamacro",
  3782. height: math.unit(100000, "km")
  3783. }
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3788. {
  3789. front: {
  3790. height: math.unit(6, "feet"),
  3791. weight: math.unit(175, "lb"),
  3792. name: "Front",
  3793. image: {
  3794. source: "./media/characters/mirova/front.svg",
  3795. extra: 3334 / 3071,
  3796. bottom: 42 / 3375.6
  3797. }
  3798. }
  3799. },
  3800. [
  3801. {
  3802. name: "Small",
  3803. height: math.unit(5, "meters")
  3804. },
  3805. {
  3806. name: "Macro",
  3807. height: math.unit(900, "meters"),
  3808. default: true
  3809. },
  3810. {
  3811. name: "Megamacro",
  3812. height: math.unit(135, "km")
  3813. },
  3814. {
  3815. name: "Gigamacro",
  3816. height: math.unit(20000, "km")
  3817. }
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3822. {
  3823. side: {
  3824. height: math.unit(28.35, "feet"),
  3825. weight: math.unit(99.75, "tons"),
  3826. name: "Side",
  3827. image: {
  3828. source: "./media/characters/asana-mech/side.svg",
  3829. extra: 923 / 699,
  3830. bottom: 50 / 975
  3831. }
  3832. },
  3833. chaingun: {
  3834. height: math.unit(7, "feet"),
  3835. weight: math.unit(2400, "lb"),
  3836. name: "Chaingun",
  3837. image: {
  3838. source: "./media/characters/asana-mech/chaingun.svg"
  3839. }
  3840. },
  3841. laser: {
  3842. height: math.unit(7.12, "feet"),
  3843. weight: math.unit(2000, "lb"),
  3844. name: "Laser",
  3845. image: {
  3846. source: "./media/characters/asana-mech/laser.svg"
  3847. }
  3848. },
  3849. },
  3850. [
  3851. {
  3852. name: "Normal",
  3853. height: math.unit(28.35, "feet"),
  3854. default: true
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(2500, "feet")
  3859. },
  3860. {
  3861. name: "Megamacro",
  3862. height: math.unit(25, "miles")
  3863. },
  3864. {
  3865. name: "Examacro",
  3866. height: math.unit(6e8, "lightyears")
  3867. },
  3868. ]
  3869. ))
  3870. characterMakers.push(() => makeCharacter(
  3871. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3872. {
  3873. front: {
  3874. height: math.unit(5, "meters"),
  3875. weight: math.unit(1000, "kg"),
  3876. name: "Front",
  3877. image: {
  3878. source: "./media/characters/asche/front.svg",
  3879. extra: 1258 / 1190,
  3880. bottom: 47 / 1305
  3881. }
  3882. },
  3883. frontUnderwear: {
  3884. height: math.unit(5, "meters"),
  3885. weight: math.unit(1000, "kg"),
  3886. name: "Front (Underwear)",
  3887. image: {
  3888. source: "./media/characters/asche/front-underwear.svg",
  3889. extra: 1258 / 1190,
  3890. bottom: 47 / 1305
  3891. }
  3892. },
  3893. frontDressed: {
  3894. height: math.unit(5, "meters"),
  3895. weight: math.unit(1000, "kg"),
  3896. name: "Front (Dressed)",
  3897. image: {
  3898. source: "./media/characters/asche/front-dressed.svg",
  3899. extra: 1258 / 1190,
  3900. bottom: 47 / 1305
  3901. }
  3902. },
  3903. frontArmor: {
  3904. height: math.unit(5, "meters"),
  3905. weight: math.unit(1000, "kg"),
  3906. name: "Front (Armored)",
  3907. image: {
  3908. source: "./media/characters/asche/front-armored.svg",
  3909. extra: 1374 / 1308,
  3910. bottom: 23 / 1397
  3911. }
  3912. },
  3913. mp724: {
  3914. height: math.unit(0.96, "meters"),
  3915. weight: math.unit(38, "kg"),
  3916. name: "H&K MP724",
  3917. image: {
  3918. source: "./media/characters/asche/h&k-mp724.svg"
  3919. }
  3920. },
  3921. side: {
  3922. height: math.unit(5, "meters"),
  3923. weight: math.unit(1000, "kg"),
  3924. name: "Side",
  3925. image: {
  3926. source: "./media/characters/asche/side.svg",
  3927. extra: 1717 / 1609,
  3928. bottom: 0.005
  3929. }
  3930. },
  3931. back: {
  3932. height: math.unit(5, "meters"),
  3933. weight: math.unit(1000, "kg"),
  3934. name: "Back",
  3935. image: {
  3936. source: "./media/characters/asche/back.svg",
  3937. extra: 1570 / 1501
  3938. }
  3939. },
  3940. },
  3941. [
  3942. {
  3943. name: "DEFCON 5",
  3944. height: math.unit(5, "meters")
  3945. },
  3946. {
  3947. name: "DEFCON 4",
  3948. height: math.unit(500, "meters"),
  3949. default: true
  3950. },
  3951. {
  3952. name: "DEFCON 3",
  3953. height: math.unit(5, "km")
  3954. },
  3955. {
  3956. name: "DEFCON 2",
  3957. height: math.unit(500, "km")
  3958. },
  3959. {
  3960. name: "DEFCON 1",
  3961. height: math.unit(500000, "km")
  3962. },
  3963. {
  3964. name: "DEFCON 0",
  3965. height: math.unit(3, "gigaparsecs")
  3966. },
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3971. {
  3972. front: {
  3973. height: math.unit(2, "meters"),
  3974. weight: math.unit(76, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/gale/front.svg"
  3978. }
  3979. },
  3980. frontAlt1: {
  3981. height: math.unit(2, "meters"),
  3982. weight: math.unit(76, "kg"),
  3983. name: "Front (Alt 1)",
  3984. image: {
  3985. source: "./media/characters/gale/front-alt-1.svg"
  3986. }
  3987. },
  3988. frontAlt2: {
  3989. height: math.unit(2, "meters"),
  3990. weight: math.unit(76, "kg"),
  3991. name: "Front (Alt 2)",
  3992. image: {
  3993. source: "./media/characters/gale/front-alt-2.svg"
  3994. }
  3995. },
  3996. },
  3997. [
  3998. {
  3999. name: "Normal",
  4000. height: math.unit(7, "feet")
  4001. },
  4002. {
  4003. name: "Macro",
  4004. height: math.unit(150, "feet"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Macro+",
  4009. height: math.unit(300, "feet")
  4010. },
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4015. {
  4016. front: {
  4017. height: math.unit(2, "meters"),
  4018. weight: math.unit(76, "kg"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/draylen/front.svg"
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Macro",
  4028. height: math.unit(150, "feet"),
  4029. default: true
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4035. {
  4036. front: {
  4037. height: math.unit(7 + 9 / 12, "feet"),
  4038. weight: math.unit(379, "lbs"),
  4039. name: "Front",
  4040. image: {
  4041. source: "./media/characters/chez/front.svg"
  4042. }
  4043. },
  4044. side: {
  4045. height: math.unit(7 + 9 / 12, "feet"),
  4046. weight: math.unit(379, "lbs"),
  4047. name: "Side",
  4048. image: {
  4049. source: "./media/characters/chez/side.svg"
  4050. }
  4051. }
  4052. },
  4053. [
  4054. {
  4055. name: "Normal",
  4056. height: math.unit(7 + 9 / 12, "feet"),
  4057. default: true
  4058. },
  4059. {
  4060. name: "God King",
  4061. height: math.unit(9750000, "meters")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4067. {
  4068. front: {
  4069. height: math.unit(6, "feet"),
  4070. weight: math.unit(275, "lbs"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/kaylum/front.svg",
  4074. bottom: 0.01,
  4075. extra: 1166 / 1031
  4076. }
  4077. },
  4078. frontWingless: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(275, "lbs"),
  4081. name: "Front (Wingless)",
  4082. image: {
  4083. source: "./media/characters/kaylum/front-wingless.svg",
  4084. bottom: 0.01,
  4085. extra: 1117 / 1031
  4086. }
  4087. }
  4088. },
  4089. [
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(3.05, "meters")
  4093. },
  4094. {
  4095. name: "Master",
  4096. height: math.unit(5.5, "meters")
  4097. },
  4098. {
  4099. name: "Rampage",
  4100. height: math.unit(19, "meters")
  4101. },
  4102. {
  4103. name: "Macro Lite",
  4104. height: math.unit(37, "meters")
  4105. },
  4106. {
  4107. name: "Hyper Predator",
  4108. height: math.unit(61, "meters")
  4109. },
  4110. {
  4111. name: "Macro",
  4112. height: math.unit(138, "meters"),
  4113. default: true
  4114. }
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4119. {
  4120. front: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(150, "lbs"),
  4123. name: "Front",
  4124. image: {
  4125. source: "./media/characters/geta/front.svg"
  4126. }
  4127. }
  4128. },
  4129. [
  4130. {
  4131. name: "Micro",
  4132. height: math.unit(3, "inches"),
  4133. default: true
  4134. },
  4135. {
  4136. name: "Normal",
  4137. height: math.unit(5 + 5 / 12, "feet")
  4138. }
  4139. ]
  4140. ))
  4141. characterMakers.push(() => makeCharacter(
  4142. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4143. {
  4144. front: {
  4145. height: math.unit(6, "feet"),
  4146. weight: math.unit(300, "lbs"),
  4147. name: "Front",
  4148. image: {
  4149. source: "./media/characters/tyrnn/front.svg"
  4150. }
  4151. }
  4152. },
  4153. [
  4154. {
  4155. name: "Main Height",
  4156. height: math.unit(355, "feet"),
  4157. default: true
  4158. },
  4159. {
  4160. name: "Fave. Height",
  4161. height: math.unit(2400, "feet")
  4162. }
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4167. {
  4168. front: {
  4169. height: math.unit(6, "feet"),
  4170. weight: math.unit(300, "lbs"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/appledectomy/front.svg"
  4174. }
  4175. }
  4176. },
  4177. [
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(2500, "feet")
  4181. },
  4182. {
  4183. name: "Megamacro",
  4184. height: math.unit(50, "miles"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Gigamacro",
  4189. height: math.unit(5000, "miles")
  4190. },
  4191. {
  4192. name: "Teramacro",
  4193. height: math.unit(250000, "miles")
  4194. },
  4195. ]
  4196. ))
  4197. characterMakers.push(() => makeCharacter(
  4198. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4199. {
  4200. front: {
  4201. height: math.unit(6, "feet"),
  4202. weight: math.unit(200, "lbs"),
  4203. name: "Front",
  4204. image: {
  4205. source: "./media/characters/vulpes/front.svg",
  4206. extra: 573 / 543,
  4207. bottom: 0.033
  4208. }
  4209. },
  4210. side: {
  4211. height: math.unit(6, "feet"),
  4212. weight: math.unit(200, "lbs"),
  4213. name: "Side",
  4214. image: {
  4215. source: "./media/characters/vulpes/side.svg",
  4216. extra: 577 / 549,
  4217. bottom: 11 / 588
  4218. }
  4219. },
  4220. back: {
  4221. height: math.unit(6, "feet"),
  4222. weight: math.unit(200, "lbs"),
  4223. name: "Back",
  4224. image: {
  4225. source: "./media/characters/vulpes/back.svg",
  4226. extra: 573 / 549,
  4227. bottom: 20 / 593
  4228. }
  4229. },
  4230. feet: {
  4231. height: math.unit(1.276, "feet"),
  4232. name: "Feet",
  4233. image: {
  4234. source: "./media/characters/vulpes/feet.svg"
  4235. }
  4236. },
  4237. maw: {
  4238. height: math.unit(1.18, "feet"),
  4239. name: "Maw",
  4240. image: {
  4241. source: "./media/characters/vulpes/maw.svg"
  4242. }
  4243. },
  4244. },
  4245. [
  4246. {
  4247. name: "Micro",
  4248. height: math.unit(2, "inches")
  4249. },
  4250. {
  4251. name: "Normal",
  4252. height: math.unit(6.3, "feet")
  4253. },
  4254. {
  4255. name: "Macro",
  4256. height: math.unit(850, "feet")
  4257. },
  4258. {
  4259. name: "Megamacro",
  4260. height: math.unit(7500, "feet"),
  4261. default: true
  4262. },
  4263. {
  4264. name: "Gigamacro",
  4265. height: math.unit(570000, "miles")
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4271. {
  4272. front: {
  4273. height: math.unit(6, "feet"),
  4274. weight: math.unit(210, "lbs"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/rain-fallen/front.svg"
  4278. }
  4279. },
  4280. side: {
  4281. height: math.unit(6, "feet"),
  4282. weight: math.unit(210, "lbs"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/rain-fallen/side.svg"
  4286. }
  4287. },
  4288. back: {
  4289. height: math.unit(6, "feet"),
  4290. weight: math.unit(210, "lbs"),
  4291. name: "Back",
  4292. image: {
  4293. source: "./media/characters/rain-fallen/back.svg"
  4294. }
  4295. },
  4296. feral: {
  4297. height: math.unit(9, "feet"),
  4298. weight: math.unit(700, "lbs"),
  4299. name: "Feral",
  4300. image: {
  4301. source: "./media/characters/rain-fallen/feral.svg"
  4302. }
  4303. },
  4304. },
  4305. [
  4306. {
  4307. name: "Meddling with Mortals",
  4308. height: math.unit(8 + 8/12, "feet")
  4309. },
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(5, "meter")
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(150, "meter"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Megamacro",
  4321. height: math.unit(278e6, "meter")
  4322. },
  4323. {
  4324. name: "Gigamacro",
  4325. height: math.unit(2e9, "meter")
  4326. },
  4327. {
  4328. name: "Teramacro",
  4329. height: math.unit(8e12, "meter")
  4330. },
  4331. {
  4332. name: "Devourer",
  4333. height: math.unit(14, "zettameters")
  4334. },
  4335. {
  4336. name: "Scarlet King",
  4337. height: math.unit(18, "yottameters")
  4338. },
  4339. {
  4340. name: "Void",
  4341. height: math.unit(6.66e66, "yottameters")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4347. {
  4348. standing: {
  4349. height: math.unit(6, "feet"),
  4350. weight: math.unit(180, "lbs"),
  4351. name: "Standing",
  4352. image: {
  4353. source: "./media/characters/zaakira/standing.svg"
  4354. }
  4355. },
  4356. laying: {
  4357. height: math.unit(3, "feet"),
  4358. weight: math.unit(180, "lbs"),
  4359. name: "Laying",
  4360. image: {
  4361. source: "./media/characters/zaakira/laying.svg"
  4362. }
  4363. },
  4364. },
  4365. [
  4366. {
  4367. name: "Normal",
  4368. height: math.unit(12, "feet")
  4369. },
  4370. {
  4371. name: "Macro",
  4372. height: math.unit(279, "feet"),
  4373. default: true
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4379. {
  4380. femSfw: {
  4381. height: math.unit(8, "feet"),
  4382. weight: math.unit(350, "lb"),
  4383. name: "Fem",
  4384. image: {
  4385. source: "./media/characters/sigvald/fem-sfw.svg",
  4386. extra: 182 / 164,
  4387. bottom: 8.7 / 190.5
  4388. }
  4389. },
  4390. femNsfw: {
  4391. height: math.unit(8, "feet"),
  4392. weight: math.unit(350, "lb"),
  4393. name: "Fem (NSFW)",
  4394. image: {
  4395. source: "./media/characters/sigvald/fem-nsfw.svg",
  4396. extra: 182 / 164,
  4397. bottom: 8.7 / 190.5
  4398. }
  4399. },
  4400. maleNsfw: {
  4401. height: math.unit(8, "feet"),
  4402. weight: math.unit(350, "lb"),
  4403. name: "Male (NSFW)",
  4404. image: {
  4405. source: "./media/characters/sigvald/male-nsfw.svg",
  4406. extra: 182 / 164,
  4407. bottom: 8.7 / 190.5
  4408. }
  4409. },
  4410. hermNsfw: {
  4411. height: math.unit(8, "feet"),
  4412. weight: math.unit(350, "lb"),
  4413. name: "Herm (NSFW)",
  4414. image: {
  4415. source: "./media/characters/sigvald/herm-nsfw.svg",
  4416. extra: 182 / 164,
  4417. bottom: 8.7 / 190.5
  4418. }
  4419. },
  4420. dick: {
  4421. height: math.unit(2.36, "feet"),
  4422. name: "Dick",
  4423. image: {
  4424. source: "./media/characters/sigvald/dick.svg"
  4425. }
  4426. },
  4427. eye: {
  4428. height: math.unit(0.31, "feet"),
  4429. name: "Eye",
  4430. image: {
  4431. source: "./media/characters/sigvald/eye.svg"
  4432. }
  4433. },
  4434. mouth: {
  4435. height: math.unit(0.92, "feet"),
  4436. name: "Mouth",
  4437. image: {
  4438. source: "./media/characters/sigvald/mouth.svg"
  4439. }
  4440. },
  4441. paws: {
  4442. height: math.unit(2.2, "feet"),
  4443. name: "Paws",
  4444. image: {
  4445. source: "./media/characters/sigvald/paws.svg"
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Normal",
  4452. height: math.unit(8, "feet")
  4453. },
  4454. {
  4455. name: "Large",
  4456. height: math.unit(12, "feet")
  4457. },
  4458. {
  4459. name: "Larger",
  4460. height: math.unit(20, "feet")
  4461. },
  4462. {
  4463. name: "Macro",
  4464. height: math.unit(150, "feet")
  4465. },
  4466. {
  4467. name: "Macro+",
  4468. height: math.unit(200, "feet"),
  4469. default: true
  4470. },
  4471. ]
  4472. ))
  4473. characterMakers.push(() => makeCharacter(
  4474. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4475. {
  4476. side: {
  4477. height: math.unit(12, "feet"),
  4478. weight: math.unit(2000, "kg"),
  4479. name: "Side",
  4480. image: {
  4481. source: "./media/characters/scott/side.svg",
  4482. extra: 754 / 724,
  4483. bottom: 0.069
  4484. }
  4485. },
  4486. upright: {
  4487. height: math.unit(12, "feet"),
  4488. weight: math.unit(2000, "kg"),
  4489. name: "Upright",
  4490. image: {
  4491. source: "./media/characters/scott/upright.svg",
  4492. extra: 3881 / 3722,
  4493. bottom: 0.05
  4494. }
  4495. },
  4496. },
  4497. [
  4498. {
  4499. name: "Normal",
  4500. height: math.unit(12, "feet"),
  4501. default: true
  4502. },
  4503. ]
  4504. ))
  4505. characterMakers.push(() => makeCharacter(
  4506. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4507. {
  4508. side: {
  4509. height: math.unit(8, "meters"),
  4510. weight: math.unit(84755, "lbs"),
  4511. name: "Side",
  4512. image: {
  4513. source: "./media/characters/tobias/side.svg",
  4514. extra: 1474 / 1096,
  4515. bottom: 38.9 / 1513.1235
  4516. }
  4517. },
  4518. },
  4519. [
  4520. {
  4521. name: "Normal",
  4522. height: math.unit(8, "meters"),
  4523. default: true
  4524. },
  4525. ]
  4526. ))
  4527. characterMakers.push(() => makeCharacter(
  4528. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4529. {
  4530. front: {
  4531. height: math.unit(5.5, "feet"),
  4532. weight: math.unit(400, "lbs"),
  4533. name: "Front",
  4534. image: {
  4535. source: "./media/characters/kieran/front.svg",
  4536. extra: 2694 / 2364,
  4537. bottom: 217 / 2908
  4538. }
  4539. },
  4540. side: {
  4541. height: math.unit(5.5, "feet"),
  4542. weight: math.unit(400, "lbs"),
  4543. name: "Side",
  4544. image: {
  4545. source: "./media/characters/kieran/side.svg",
  4546. extra: 875 / 777,
  4547. bottom: 84.6 / 959
  4548. }
  4549. },
  4550. },
  4551. [
  4552. {
  4553. name: "Normal",
  4554. height: math.unit(5.5, "feet"),
  4555. default: true
  4556. },
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4561. {
  4562. side: {
  4563. height: math.unit(2, "meters"),
  4564. weight: math.unit(70, "kg"),
  4565. name: "Side",
  4566. image: {
  4567. source: "./media/characters/sanya/side.svg",
  4568. bottom: 0.02,
  4569. extra: 1.02
  4570. }
  4571. },
  4572. },
  4573. [
  4574. {
  4575. name: "Small",
  4576. height: math.unit(2, "meters")
  4577. },
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(3, "meters")
  4581. },
  4582. {
  4583. name: "Macro",
  4584. height: math.unit(16, "meters"),
  4585. default: true
  4586. },
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(2, "meters"),
  4594. weight: math.unit(120, "kg"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/miranda/front.svg",
  4598. extra: 195 / 185,
  4599. bottom: 10.9 / 206.5
  4600. }
  4601. },
  4602. back: {
  4603. height: math.unit(2, "meters"),
  4604. weight: math.unit(120, "kg"),
  4605. name: "Back",
  4606. image: {
  4607. source: "./media/characters/miranda/back.svg",
  4608. extra: 201 / 193,
  4609. bottom: 2.3 / 203.7
  4610. }
  4611. },
  4612. },
  4613. [
  4614. {
  4615. name: "Normal",
  4616. height: math.unit(10, "feet"),
  4617. default: true
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "James", species: ["deer"], tags: ["anthro"] },
  4623. {
  4624. side: {
  4625. height: math.unit(2, "meters"),
  4626. weight: math.unit(100, "kg"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/james/front.svg",
  4630. extra: 10 / 8.5
  4631. }
  4632. },
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(8.5, "feet"),
  4638. default: true
  4639. }
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4644. {
  4645. side: {
  4646. height: math.unit(9.5, "feet"),
  4647. weight: math.unit(2500, "lbs"),
  4648. name: "Side",
  4649. image: {
  4650. source: "./media/characters/heather/side.svg"
  4651. }
  4652. },
  4653. },
  4654. [
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(9.5, "feet"),
  4658. default: true
  4659. }
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4664. {
  4665. side: {
  4666. height: math.unit(6.5, "feet"),
  4667. weight: math.unit(400, "lbs"),
  4668. name: "Side",
  4669. image: {
  4670. source: "./media/characters/lukas/side.svg",
  4671. extra: 7.25 / 6.5
  4672. }
  4673. },
  4674. },
  4675. [
  4676. {
  4677. name: "Normal",
  4678. height: math.unit(6.5, "feet"),
  4679. default: true
  4680. }
  4681. ]
  4682. ))
  4683. characterMakers.push(() => makeCharacter(
  4684. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4685. {
  4686. side: {
  4687. height: math.unit(5, "feet"),
  4688. weight: math.unit(3000, "lbs"),
  4689. name: "Side",
  4690. image: {
  4691. source: "./media/characters/louise/side.svg"
  4692. }
  4693. },
  4694. },
  4695. [
  4696. {
  4697. name: "Normal",
  4698. height: math.unit(5, "feet"),
  4699. default: true
  4700. }
  4701. ]
  4702. ))
  4703. characterMakers.push(() => makeCharacter(
  4704. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4705. {
  4706. side: {
  4707. height: math.unit(6, "feet"),
  4708. weight: math.unit(150, "lbs"),
  4709. name: "Side",
  4710. image: {
  4711. source: "./media/characters/ramona/side.svg"
  4712. }
  4713. },
  4714. },
  4715. [
  4716. {
  4717. name: "Normal",
  4718. height: math.unit(5.3, "meters"),
  4719. default: true
  4720. },
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(20, "stories")
  4724. },
  4725. {
  4726. name: "Macro+",
  4727. height: math.unit(50, "stories")
  4728. },
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4733. {
  4734. standing: {
  4735. height: math.unit(5.75, "feet"),
  4736. weight: math.unit(160, "lbs"),
  4737. name: "Standing",
  4738. image: {
  4739. source: "./media/characters/deerpuff/standing.svg",
  4740. extra: 682 / 624
  4741. }
  4742. },
  4743. sitting: {
  4744. height: math.unit(5.75 / 1.79, "feet"),
  4745. weight: math.unit(160, "lbs"),
  4746. name: "Sitting",
  4747. image: {
  4748. source: "./media/characters/deerpuff/sitting.svg",
  4749. bottom: 44 / 400,
  4750. extra: 1
  4751. }
  4752. },
  4753. taurLaying: {
  4754. height: math.unit(6, "feet"),
  4755. weight: math.unit(400, "lbs"),
  4756. name: "Taur (Laying)",
  4757. image: {
  4758. source: "./media/characters/deerpuff/taur-laying.svg"
  4759. }
  4760. },
  4761. },
  4762. [
  4763. {
  4764. name: "Puffball",
  4765. height: math.unit(6, "inches")
  4766. },
  4767. {
  4768. name: "Normalpuff",
  4769. height: math.unit(5.75, "feet")
  4770. },
  4771. {
  4772. name: "Macropuff",
  4773. height: math.unit(1500, "feet"),
  4774. default: true
  4775. },
  4776. {
  4777. name: "Megapuff",
  4778. height: math.unit(500, "miles")
  4779. },
  4780. {
  4781. name: "Gigapuff",
  4782. height: math.unit(250000, "miles")
  4783. },
  4784. {
  4785. name: "Omegapuff",
  4786. height: math.unit(1000, "lightyears")
  4787. },
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4792. {
  4793. stomping: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(170, "lbs"),
  4796. name: "Stomping",
  4797. image: {
  4798. source: "./media/characters/vivian/stomping.svg"
  4799. }
  4800. },
  4801. sitting: {
  4802. height: math.unit(6 / 1.75, "feet"),
  4803. weight: math.unit(170, "lbs"),
  4804. name: "Sitting",
  4805. image: {
  4806. source: "./media/characters/vivian/sitting.svg",
  4807. bottom: 1 / 6.4,
  4808. extra: 1,
  4809. }
  4810. },
  4811. },
  4812. [
  4813. {
  4814. name: "Normal",
  4815. height: math.unit(7, "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Macro",
  4820. height: math.unit(10, "stories")
  4821. },
  4822. {
  4823. name: "Macro+",
  4824. height: math.unit(30, "stories")
  4825. },
  4826. {
  4827. name: "Megamacro",
  4828. height: math.unit(10, "miles")
  4829. },
  4830. {
  4831. name: "Megamacro+",
  4832. height: math.unit(2750000, "meters")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(160, "lbs"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/prince/front.svg",
  4845. extra: 3400 / 3000
  4846. }
  4847. },
  4848. jumping: {
  4849. height: math.unit(6, "feet"),
  4850. weight: math.unit(160, "lbs"),
  4851. name: "Jumping",
  4852. image: {
  4853. source: "./media/characters/prince/jump.svg",
  4854. extra: 2555 / 2134
  4855. }
  4856. },
  4857. },
  4858. [
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(7.75, "feet"),
  4862. default: true
  4863. },
  4864. {
  4865. name: "Not cute",
  4866. height: math.unit(17, "feet")
  4867. },
  4868. {
  4869. name: "I said NOT",
  4870. height: math.unit(91, "feet")
  4871. },
  4872. {
  4873. name: "Please stop",
  4874. height: math.unit(560, "feet")
  4875. },
  4876. {
  4877. name: "What have you done",
  4878. height: math.unit(2200, "feet")
  4879. },
  4880. {
  4881. name: "Deer God",
  4882. height: math.unit(3.6, "miles")
  4883. },
  4884. ]
  4885. ))
  4886. characterMakers.push(() => makeCharacter(
  4887. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4888. {
  4889. standing: {
  4890. height: math.unit(6, "feet"),
  4891. weight: math.unit(300, "lbs"),
  4892. name: "Standing",
  4893. image: {
  4894. source: "./media/characters/psymon/standing.svg",
  4895. extra: 1888 / 1810,
  4896. bottom: 0.05
  4897. }
  4898. },
  4899. slithering: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(300, "lbs"),
  4902. name: "Slithering",
  4903. image: {
  4904. source: "./media/characters/psymon/slithering.svg",
  4905. extra: 1330 / 1224
  4906. }
  4907. },
  4908. slitheringAlt: {
  4909. height: math.unit(6, "feet"),
  4910. weight: math.unit(300, "lbs"),
  4911. name: "Slithering (Alt)",
  4912. image: {
  4913. source: "./media/characters/psymon/slithering-alt.svg",
  4914. extra: 1330 / 1224
  4915. }
  4916. },
  4917. },
  4918. [
  4919. {
  4920. name: "Normal",
  4921. height: math.unit(11.25, "feet"),
  4922. default: true
  4923. },
  4924. {
  4925. name: "Large",
  4926. height: math.unit(27, "feet")
  4927. },
  4928. {
  4929. name: "Giant",
  4930. height: math.unit(87, "feet")
  4931. },
  4932. {
  4933. name: "Macro",
  4934. height: math.unit(365, "feet")
  4935. },
  4936. {
  4937. name: "Megamacro",
  4938. height: math.unit(3, "miles")
  4939. },
  4940. {
  4941. name: "World Serpent",
  4942. height: math.unit(8000, "miles")
  4943. },
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4948. {
  4949. front: {
  4950. height: math.unit(6, "feet"),
  4951. weight: math.unit(180, "lbs"),
  4952. name: "Front",
  4953. image: {
  4954. source: "./media/characters/daimos/front.svg",
  4955. extra: 4160 / 3897,
  4956. bottom: 0.021
  4957. }
  4958. }
  4959. },
  4960. [
  4961. {
  4962. name: "Normal",
  4963. height: math.unit(8, "feet"),
  4964. default: true
  4965. },
  4966. {
  4967. name: "Big Dog",
  4968. height: math.unit(22, "feet")
  4969. },
  4970. {
  4971. name: "Macro",
  4972. height: math.unit(127, "feet")
  4973. },
  4974. {
  4975. name: "Megamacro",
  4976. height: math.unit(3600, "feet")
  4977. },
  4978. ]
  4979. ))
  4980. characterMakers.push(() => makeCharacter(
  4981. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4982. {
  4983. side: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(180, "lbs"),
  4986. name: "Side",
  4987. image: {
  4988. source: "./media/characters/blake/side.svg",
  4989. extra: 1212 / 1120,
  4990. bottom: 0.05
  4991. }
  4992. },
  4993. crouched: {
  4994. height: math.unit(6 * 0.57, "feet"),
  4995. weight: math.unit(180, "lbs"),
  4996. name: "Crouched",
  4997. image: {
  4998. source: "./media/characters/blake/crouched.svg",
  4999. extra: 840 / 587,
  5000. bottom: 0.04
  5001. }
  5002. },
  5003. bent: {
  5004. height: math.unit(6 * 0.75, "feet"),
  5005. weight: math.unit(180, "lbs"),
  5006. name: "Bent",
  5007. image: {
  5008. source: "./media/characters/blake/bent.svg",
  5009. extra: 592 / 544,
  5010. bottom: 0.035
  5011. }
  5012. },
  5013. },
  5014. [
  5015. {
  5016. name: "Normal",
  5017. height: math.unit(8 + 1 / 6, "feet"),
  5018. default: true
  5019. },
  5020. {
  5021. name: "Big Backside",
  5022. height: math.unit(37, "feet")
  5023. },
  5024. {
  5025. name: "Subway Shredder",
  5026. height: math.unit(72, "feet")
  5027. },
  5028. {
  5029. name: "City Carver",
  5030. height: math.unit(1675, "feet")
  5031. },
  5032. {
  5033. name: "Tectonic Tweaker",
  5034. height: math.unit(2300, "miles")
  5035. },
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5040. {
  5041. front: {
  5042. height: math.unit(6, "feet"),
  5043. weight: math.unit(180, "lbs"),
  5044. name: "Front",
  5045. image: {
  5046. source: "./media/characters/guisetto/front.svg",
  5047. extra: 856 / 817,
  5048. bottom: 0.06
  5049. }
  5050. },
  5051. airborne: {
  5052. height: math.unit(6, "feet"),
  5053. weight: math.unit(180, "lbs"),
  5054. name: "Airborne",
  5055. image: {
  5056. source: "./media/characters/guisetto/airborne.svg",
  5057. extra: 584 / 525
  5058. }
  5059. },
  5060. },
  5061. [
  5062. {
  5063. name: "Normal",
  5064. height: math.unit(10 + 11 / 12, "feet"),
  5065. default: true
  5066. },
  5067. {
  5068. name: "Large",
  5069. height: math.unit(35, "feet")
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(475, "feet")
  5074. },
  5075. ]
  5076. ))
  5077. characterMakers.push(() => makeCharacter(
  5078. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5079. {
  5080. front: {
  5081. height: math.unit(6, "feet"),
  5082. weight: math.unit(180, "lbs"),
  5083. name: "Front",
  5084. image: {
  5085. source: "./media/characters/luxor/front.svg",
  5086. extra: 2940 / 2152
  5087. }
  5088. },
  5089. back: {
  5090. height: math.unit(6, "feet"),
  5091. weight: math.unit(180, "lbs"),
  5092. name: "Back",
  5093. image: {
  5094. source: "./media/characters/luxor/back.svg",
  5095. extra: 1083 / 960
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(5 + 5 / 6, "feet"),
  5103. default: true
  5104. },
  5105. {
  5106. name: "Lamp",
  5107. height: math.unit(50, "feet")
  5108. },
  5109. {
  5110. name: "Lämp",
  5111. height: math.unit(300, "feet")
  5112. },
  5113. {
  5114. name: "The sun is a lamp",
  5115. height: math.unit(250000, "miles")
  5116. },
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5121. {
  5122. front: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(50, "lbs"),
  5125. name: "Front",
  5126. image: {
  5127. source: "./media/characters/huoyan/front.svg"
  5128. }
  5129. },
  5130. side: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(180, "lbs"),
  5133. name: "Side",
  5134. image: {
  5135. source: "./media/characters/huoyan/side.svg"
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Chef",
  5142. height: math.unit(9, "feet")
  5143. },
  5144. {
  5145. name: "Normal",
  5146. height: math.unit(65, "feet"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Macro",
  5151. height: math.unit(780, "feet")
  5152. },
  5153. {
  5154. name: "Flaming Mountain",
  5155. height: math.unit(4.8, "miles")
  5156. },
  5157. {
  5158. name: "Celestial",
  5159. height: math.unit(765000, "miles")
  5160. },
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(5 + 3 / 4, "feet"),
  5168. weight: math.unit(120, "lbs"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/tails/front.svg"
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(5 + 3 / 4, "feet"),
  5179. default: true
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5185. {
  5186. front: {
  5187. height: math.unit(4, "feet"),
  5188. weight: math.unit(50, "lbs"),
  5189. name: "Front",
  5190. image: {
  5191. source: "./media/characters/rainy/front.svg"
  5192. }
  5193. }
  5194. },
  5195. [
  5196. {
  5197. name: "Macro",
  5198. height: math.unit(800, "feet"),
  5199. default: true
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5205. {
  5206. front: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(150, "lbs"),
  5209. name: "Front",
  5210. image: {
  5211. source: "./media/characters/rainier/front.svg"
  5212. }
  5213. }
  5214. },
  5215. [
  5216. {
  5217. name: "Micro",
  5218. height: math.unit(2, "mm"),
  5219. default: true
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5225. {
  5226. front: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(180, "lbs"),
  5229. name: "Front",
  5230. image: {
  5231. source: "./media/characters/andy/front.svg"
  5232. }
  5233. }
  5234. },
  5235. [
  5236. {
  5237. name: "Normal",
  5238. height: math.unit(8, "feet"),
  5239. default: true
  5240. },
  5241. {
  5242. name: "Macro",
  5243. height: math.unit(1000, "feet")
  5244. },
  5245. {
  5246. name: "Megamacro",
  5247. height: math.unit(5, "miles")
  5248. },
  5249. {
  5250. name: "Gigamacro",
  5251. height: math.unit(5000, "miles")
  5252. },
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5257. {
  5258. front: {
  5259. height: math.unit(6, "feet"),
  5260. weight: math.unit(210, "lbs"),
  5261. name: "Front",
  5262. image: {
  5263. source: "./media/characters/cimmaron/front-sfw.svg",
  5264. extra: 701 / 676,
  5265. bottom: 0.046
  5266. }
  5267. },
  5268. back: {
  5269. height: math.unit(6, "feet"),
  5270. weight: math.unit(210, "lbs"),
  5271. name: "Back",
  5272. image: {
  5273. source: "./media/characters/cimmaron/back-sfw.svg",
  5274. extra: 701 / 676,
  5275. bottom: 0.046
  5276. }
  5277. },
  5278. frontNsfw: {
  5279. height: math.unit(6, "feet"),
  5280. weight: math.unit(210, "lbs"),
  5281. name: "Front (NSFW)",
  5282. image: {
  5283. source: "./media/characters/cimmaron/front-nsfw.svg",
  5284. extra: 701 / 676,
  5285. bottom: 0.046
  5286. }
  5287. },
  5288. backNsfw: {
  5289. height: math.unit(6, "feet"),
  5290. weight: math.unit(210, "lbs"),
  5291. name: "Back (NSFW)",
  5292. image: {
  5293. source: "./media/characters/cimmaron/back-nsfw.svg",
  5294. extra: 701 / 676,
  5295. bottom: 0.046
  5296. }
  5297. },
  5298. dick: {
  5299. height: math.unit(1.714, "feet"),
  5300. name: "Dick",
  5301. image: {
  5302. source: "./media/characters/cimmaron/dick.svg"
  5303. }
  5304. },
  5305. },
  5306. [
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(6, "feet"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Macro Mayor",
  5314. height: math.unit(350, "meters")
  5315. },
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(200, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/akari/front.svg",
  5327. extra: 962 / 901,
  5328. bottom: 0.04
  5329. }
  5330. }
  5331. },
  5332. [
  5333. {
  5334. name: "Micro",
  5335. height: math.unit(5, "inches"),
  5336. default: true
  5337. },
  5338. {
  5339. name: "Normal",
  5340. height: math.unit(7, "feet")
  5341. },
  5342. ]
  5343. ))
  5344. characterMakers.push(() => makeCharacter(
  5345. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5346. {
  5347. front: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(140, "lbs"),
  5350. name: "Front",
  5351. image: {
  5352. source: "./media/characters/cynosura/front.svg",
  5353. extra: 896 / 847
  5354. }
  5355. },
  5356. back: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(140, "lbs"),
  5359. name: "Back",
  5360. image: {
  5361. source: "./media/characters/cynosura/back.svg",
  5362. extra: 1365 / 1250
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Micro",
  5369. height: math.unit(4, "inches")
  5370. },
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(5.75, "feet"),
  5374. default: true
  5375. },
  5376. {
  5377. name: "Tall",
  5378. height: math.unit(10, "feet")
  5379. },
  5380. {
  5381. name: "Big",
  5382. height: math.unit(20, "feet")
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(50, "feet")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(170, "lbs"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/gin/front.svg",
  5399. extra: 1.053,
  5400. bottom: 0.025
  5401. }
  5402. },
  5403. foot: {
  5404. height: math.unit(6 / 4.25, "feet"),
  5405. name: "Foot",
  5406. image: {
  5407. source: "./media/characters/gin/foot.svg"
  5408. }
  5409. },
  5410. sole: {
  5411. height: math.unit(6 / 4.40, "feet"),
  5412. name: "Sole",
  5413. image: {
  5414. source: "./media/characters/gin/sole.svg"
  5415. }
  5416. },
  5417. },
  5418. [
  5419. {
  5420. name: "Normal",
  5421. height: math.unit(13 + 2 / 12, "feet")
  5422. },
  5423. {
  5424. name: "Macro",
  5425. height: math.unit(1500, "feet")
  5426. },
  5427. {
  5428. name: "Megamacro",
  5429. height: math.unit(200, "miles"),
  5430. default: true
  5431. },
  5432. {
  5433. name: "Gigamacro",
  5434. height: math.unit(500, "megameters")
  5435. },
  5436. {
  5437. name: "Teramacro",
  5438. height: math.unit(15, "lightyears")
  5439. }
  5440. ]
  5441. ))
  5442. characterMakers.push(() => makeCharacter(
  5443. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5444. {
  5445. front: {
  5446. height: math.unit(6 + 1 / 6, "feet"),
  5447. weight: math.unit(178, "lbs"),
  5448. name: "Front",
  5449. image: {
  5450. source: "./media/characters/guy/front.svg"
  5451. }
  5452. }
  5453. },
  5454. [
  5455. {
  5456. name: "Normal",
  5457. height: math.unit(6 + 1 / 6, "feet"),
  5458. default: true
  5459. },
  5460. {
  5461. name: "Large",
  5462. height: math.unit(25 + 7 / 12, "feet")
  5463. },
  5464. {
  5465. name: "Macro",
  5466. height: math.unit(60 + 9 / 12, "feet")
  5467. },
  5468. {
  5469. name: "Macro+",
  5470. height: math.unit(246, "feet")
  5471. },
  5472. {
  5473. name: "Macro++",
  5474. height: math.unit(878, "feet")
  5475. }
  5476. ]
  5477. ))
  5478. characterMakers.push(() => makeCharacter(
  5479. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5480. {
  5481. front: {
  5482. height: math.unit(9, "feet"),
  5483. weight: math.unit(800, "lbs"),
  5484. name: "Front",
  5485. image: {
  5486. source: "./media/characters/tiberius/front.svg",
  5487. extra: 2295 / 2071
  5488. }
  5489. },
  5490. back: {
  5491. height: math.unit(9, "feet"),
  5492. weight: math.unit(800, "lbs"),
  5493. name: "Back",
  5494. image: {
  5495. source: "./media/characters/tiberius/back.svg",
  5496. extra: 2373 / 2160
  5497. }
  5498. },
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(9, "feet"),
  5504. default: true
  5505. }
  5506. ]
  5507. ))
  5508. characterMakers.push(() => makeCharacter(
  5509. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5510. {
  5511. front: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(600, "lbs"),
  5514. name: "Front",
  5515. image: {
  5516. source: "./media/characters/surgo/front.svg",
  5517. extra: 3591 / 2227
  5518. }
  5519. },
  5520. back: {
  5521. height: math.unit(6, "feet"),
  5522. weight: math.unit(600, "lbs"),
  5523. name: "Back",
  5524. image: {
  5525. source: "./media/characters/surgo/back.svg",
  5526. extra: 3557 / 2228
  5527. }
  5528. },
  5529. laying: {
  5530. height: math.unit(6 * 0.85, "feet"),
  5531. weight: math.unit(600, "lbs"),
  5532. name: "Laying",
  5533. image: {
  5534. source: "./media/characters/surgo/laying.svg"
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(6, "feet"),
  5542. default: true
  5543. }
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5548. {
  5549. side: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(150, "lbs"),
  5552. name: "Side",
  5553. image: {
  5554. source: "./media/characters/cibus/side.svg",
  5555. extra: 800 / 400
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(6, "feet"),
  5563. default: true
  5564. }
  5565. ]
  5566. ))
  5567. characterMakers.push(() => makeCharacter(
  5568. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5569. {
  5570. front: {
  5571. height: math.unit(6, "feet"),
  5572. weight: math.unit(240, "lbs"),
  5573. name: "Front",
  5574. image: {
  5575. source: "./media/characters/nibbles/front.svg"
  5576. }
  5577. },
  5578. side: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(240, "lbs"),
  5581. name: "Side",
  5582. image: {
  5583. source: "./media/characters/nibbles/side.svg"
  5584. }
  5585. },
  5586. },
  5587. [
  5588. {
  5589. name: "Normal",
  5590. height: math.unit(9, "feet"),
  5591. default: true
  5592. }
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5597. {
  5598. side: {
  5599. height: math.unit(5 + 1 / 6, "feet"),
  5600. weight: math.unit(130, "lbs"),
  5601. name: "Side",
  5602. image: {
  5603. source: "./media/characters/rikky/side.svg",
  5604. extra: 851 / 801
  5605. }
  5606. },
  5607. },
  5608. [
  5609. {
  5610. name: "Normal",
  5611. height: math.unit(5 + 1 / 6, "feet")
  5612. },
  5613. {
  5614. name: "Macro",
  5615. height: math.unit(152, "feet"),
  5616. default: true
  5617. },
  5618. {
  5619. name: "Megamacro",
  5620. height: math.unit(7, "miles")
  5621. }
  5622. ]
  5623. ))
  5624. characterMakers.push(() => makeCharacter(
  5625. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5626. {
  5627. side: {
  5628. height: math.unit(370, "cm"),
  5629. weight: math.unit(350, "lbs"),
  5630. name: "Side",
  5631. image: {
  5632. source: "./media/characters/malfressa/side.svg"
  5633. }
  5634. },
  5635. walking: {
  5636. height: math.unit(370, "cm"),
  5637. weight: math.unit(350, "lbs"),
  5638. name: "Walking",
  5639. image: {
  5640. source: "./media/characters/malfressa/walking.svg"
  5641. }
  5642. },
  5643. feral: {
  5644. height: math.unit(2500, "cm"),
  5645. weight: math.unit(100000, "lbs"),
  5646. name: "Feral",
  5647. image: {
  5648. source: "./media/characters/malfressa/feral.svg",
  5649. extra: 2108 / 837,
  5650. bottom: 0.02
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(370, "cm")
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(300, "meters"),
  5662. default: true
  5663. }
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5668. {
  5669. front: {
  5670. height: math.unit(6, "feet"),
  5671. weight: math.unit(60, "kg"),
  5672. name: "Front",
  5673. image: {
  5674. source: "./media/characters/jaro/front.svg"
  5675. }
  5676. },
  5677. back: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(60, "kg"),
  5680. name: "Back",
  5681. image: {
  5682. source: "./media/characters/jaro/back.svg"
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Micro",
  5689. height: math.unit(7, "inches")
  5690. },
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(5.5, "feet"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Minimacro",
  5698. height: math.unit(20, "feet")
  5699. },
  5700. {
  5701. name: "Macro",
  5702. height: math.unit(200, "meters")
  5703. }
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(195, "lb"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/rogue/front.svg"
  5715. }
  5716. },
  5717. },
  5718. [
  5719. {
  5720. name: "Macro",
  5721. height: math.unit(90, "feet"),
  5722. default: true
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(5 + 8 / 12, "feet"),
  5731. weight: math.unit(140, "lb"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/piper/front.svg",
  5735. extra: 3928 / 3681
  5736. }
  5737. },
  5738. },
  5739. [
  5740. {
  5741. name: "Micro",
  5742. height: math.unit(2, "inches")
  5743. },
  5744. {
  5745. name: "Normal",
  5746. height: math.unit(5 + 8 / 12, "feet")
  5747. },
  5748. {
  5749. name: "Macro",
  5750. height: math.unit(250, "feet"),
  5751. default: true
  5752. },
  5753. {
  5754. name: "Megamacro",
  5755. height: math.unit(7, "miles")
  5756. },
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5761. {
  5762. front: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(220, "lb"),
  5765. name: "Front",
  5766. image: {
  5767. source: "./media/characters/gemini/front.svg"
  5768. }
  5769. },
  5770. back: {
  5771. height: math.unit(6, "feet"),
  5772. weight: math.unit(220, "lb"),
  5773. name: "Back",
  5774. image: {
  5775. source: "./media/characters/gemini/back.svg"
  5776. }
  5777. },
  5778. kneeling: {
  5779. height: math.unit(6 / 1.5, "feet"),
  5780. weight: math.unit(220, "lb"),
  5781. name: "Kneeling",
  5782. image: {
  5783. source: "./media/characters/gemini/kneeling.svg",
  5784. bottom: 0.02
  5785. }
  5786. },
  5787. },
  5788. [
  5789. {
  5790. name: "Macro",
  5791. height: math.unit(300, "meters"),
  5792. default: true
  5793. },
  5794. {
  5795. name: "Megamacro",
  5796. height: math.unit(6900, "meters")
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5802. {
  5803. anthro: {
  5804. height: math.unit(2.35, "meters"),
  5805. weight: math.unit(73, "kg"),
  5806. name: "Anthro",
  5807. image: {
  5808. source: "./media/characters/alicia/anthro.svg",
  5809. extra: 2571 / 2385,
  5810. bottom: 75 / 2648
  5811. }
  5812. },
  5813. paw: {
  5814. height: math.unit(1.32, "feet"),
  5815. name: "Paw",
  5816. image: {
  5817. source: "./media/characters/alicia/paw.svg"
  5818. }
  5819. },
  5820. feral: {
  5821. height: math.unit(1.69, "meters"),
  5822. weight: math.unit(73, "kg"),
  5823. name: "Feral",
  5824. image: {
  5825. source: "./media/characters/alicia/feral.svg",
  5826. extra: 2123 / 1715,
  5827. bottom: 222 / 2349
  5828. }
  5829. },
  5830. },
  5831. [
  5832. {
  5833. name: "Normal",
  5834. height: math.unit(2.35, "meters")
  5835. },
  5836. {
  5837. name: "Macro",
  5838. height: math.unit(60, "meters"),
  5839. default: true
  5840. },
  5841. {
  5842. name: "Megamacro",
  5843. height: math.unit(10000, "kilometers")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5849. {
  5850. front: {
  5851. height: math.unit(7, "feet"),
  5852. weight: math.unit(250, "lbs"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/archy/front.svg"
  5856. }
  5857. }
  5858. },
  5859. [
  5860. {
  5861. name: "Micro",
  5862. height: math.unit(1, "inch")
  5863. },
  5864. {
  5865. name: "Shorty",
  5866. height: math.unit(5, "feet")
  5867. },
  5868. {
  5869. name: "Normal",
  5870. height: math.unit(7, "feet")
  5871. },
  5872. {
  5873. name: "Macro",
  5874. height: math.unit(600, "meters"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Megamacro",
  5879. height: math.unit(1, "mile")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5885. {
  5886. front: {
  5887. height: math.unit(1.65, "meters"),
  5888. weight: math.unit(74, "kg"),
  5889. name: "Front",
  5890. image: {
  5891. source: "./media/characters/berri/front.svg",
  5892. extra: 857 / 837,
  5893. bottom: 18 / 877
  5894. }
  5895. },
  5896. bum: {
  5897. height: math.unit(1.46, "feet"),
  5898. name: "Bum",
  5899. image: {
  5900. source: "./media/characters/berri/bum.svg"
  5901. }
  5902. },
  5903. mouth: {
  5904. height: math.unit(0.44, "feet"),
  5905. name: "Mouth",
  5906. image: {
  5907. source: "./media/characters/berri/mouth.svg"
  5908. }
  5909. },
  5910. paw: {
  5911. height: math.unit(0.826, "feet"),
  5912. name: "Paw",
  5913. image: {
  5914. source: "./media/characters/berri/paw.svg"
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(1.65, "meters")
  5922. },
  5923. {
  5924. name: "Macro",
  5925. height: math.unit(60, "m"),
  5926. default: true
  5927. },
  5928. {
  5929. name: "Megamacro",
  5930. height: math.unit(9.213, "km")
  5931. },
  5932. {
  5933. name: "Planet Eater",
  5934. height: math.unit(489, "megameters")
  5935. },
  5936. {
  5937. name: "Teramacro",
  5938. height: math.unit(2471635000000, "meters")
  5939. },
  5940. {
  5941. name: "Examacro",
  5942. height: math.unit(8.0624e+26, "meters")
  5943. }
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5948. {
  5949. front: {
  5950. height: math.unit(1.72, "meters"),
  5951. weight: math.unit(68, "kg"),
  5952. name: "Front",
  5953. image: {
  5954. source: "./media/characters/lexi/front.svg"
  5955. }
  5956. }
  5957. },
  5958. [
  5959. {
  5960. name: "Very Smol",
  5961. height: math.unit(10, "mm")
  5962. },
  5963. {
  5964. name: "Micro",
  5965. height: math.unit(6.8, "cm"),
  5966. default: true
  5967. },
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(1.72, "m")
  5971. }
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5976. {
  5977. front: {
  5978. height: math.unit(1.69, "meters"),
  5979. weight: math.unit(68, "kg"),
  5980. name: "Front",
  5981. image: {
  5982. source: "./media/characters/martin/front.svg",
  5983. extra: 596 / 581
  5984. }
  5985. }
  5986. },
  5987. [
  5988. {
  5989. name: "Micro",
  5990. height: math.unit(6.85, "cm"),
  5991. default: true
  5992. },
  5993. {
  5994. name: "Normal",
  5995. height: math.unit(1.69, "m")
  5996. }
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(1.69, "meters"),
  6004. weight: math.unit(68, "kg"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/juno/front.svg"
  6008. }
  6009. }
  6010. },
  6011. [
  6012. {
  6013. name: "Micro",
  6014. height: math.unit(7, "cm")
  6015. },
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(1.89, "m")
  6019. },
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(353, "meters"),
  6023. default: true
  6024. }
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(1.93, "meters"),
  6032. weight: math.unit(83, "kg"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/samantha/front.svg"
  6036. }
  6037. },
  6038. frontClothed: {
  6039. height: math.unit(1.93, "meters"),
  6040. weight: math.unit(83, "kg"),
  6041. name: "Front (Clothed)",
  6042. image: {
  6043. source: "./media/characters/samantha/front-clothed.svg"
  6044. }
  6045. },
  6046. back: {
  6047. height: math.unit(1.93, "meters"),
  6048. weight: math.unit(83, "kg"),
  6049. name: "Back",
  6050. image: {
  6051. source: "./media/characters/samantha/back.svg"
  6052. }
  6053. },
  6054. },
  6055. [
  6056. {
  6057. name: "Normal",
  6058. height: math.unit(1.93, "m")
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(74, "meters"),
  6063. default: true
  6064. },
  6065. {
  6066. name: "Macro+",
  6067. height: math.unit(223, "meters"),
  6068. },
  6069. {
  6070. name: "Megamacro",
  6071. height: math.unit(8381, "meters"),
  6072. },
  6073. {
  6074. name: "Megamacro+",
  6075. height: math.unit(12000, "kilometers")
  6076. },
  6077. ]
  6078. ))
  6079. characterMakers.push(() => makeCharacter(
  6080. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6081. {
  6082. front: {
  6083. height: math.unit(1.92, "meters"),
  6084. weight: math.unit(80, "kg"),
  6085. name: "Front",
  6086. image: {
  6087. source: "./media/characters/dr-clay/front.svg"
  6088. }
  6089. },
  6090. frontClothed: {
  6091. height: math.unit(1.92, "meters"),
  6092. weight: math.unit(80, "kg"),
  6093. name: "Front (Clothed)",
  6094. image: {
  6095. source: "./media/characters/dr-clay/front-clothed.svg"
  6096. }
  6097. }
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(1.92, "m")
  6103. },
  6104. {
  6105. name: "Macro",
  6106. height: math.unit(214, "meters"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Macro+",
  6111. height: math.unit(12.237, "meters"),
  6112. },
  6113. {
  6114. name: "Megamacro",
  6115. height: math.unit(557, "megameters"),
  6116. },
  6117. {
  6118. name: "Unimaginable",
  6119. height: math.unit(120e9, "lightyears")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(2, "meters"),
  6128. weight: math.unit(80, "kg"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6132. }
  6133. }
  6134. },
  6135. [
  6136. {
  6137. name: "Teramacro",
  6138. height: math.unit(500000, "lightyears"),
  6139. default: true
  6140. },
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6145. {
  6146. front: {
  6147. height: math.unit(2, "meters"),
  6148. weight: math.unit(150, "kg"),
  6149. name: "Front",
  6150. image: {
  6151. source: "./media/characters/vemus/front.svg",
  6152. extra: 2384 / 2084,
  6153. bottom: 0.0123
  6154. }
  6155. }
  6156. },
  6157. [
  6158. {
  6159. name: "Normal",
  6160. height: math.unit(3.75, "meters"),
  6161. default: true
  6162. },
  6163. {
  6164. name: "Big",
  6165. height: math.unit(8, "meters")
  6166. },
  6167. {
  6168. name: "Macro",
  6169. height: math.unit(100, "meters")
  6170. },
  6171. {
  6172. name: "Macro+",
  6173. height: math.unit(1500, "meters")
  6174. },
  6175. {
  6176. name: "Stellar",
  6177. height: math.unit(14e8, "meters")
  6178. },
  6179. ]
  6180. ))
  6181. characterMakers.push(() => makeCharacter(
  6182. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6183. {
  6184. front: {
  6185. height: math.unit(2, "meters"),
  6186. weight: math.unit(70, "kg"),
  6187. name: "Front",
  6188. image: {
  6189. source: "./media/characters/beherit/front.svg",
  6190. extra: 1408 / 1242
  6191. }
  6192. }
  6193. },
  6194. [
  6195. {
  6196. name: "Normal",
  6197. height: math.unit(6, "feet")
  6198. },
  6199. {
  6200. name: "Lorg",
  6201. height: math.unit(25, "feet"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Lorger",
  6206. height: math.unit(75, "feet")
  6207. },
  6208. {
  6209. name: "Macro",
  6210. height: math.unit(200, "meters")
  6211. },
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6216. {
  6217. front: {
  6218. height: math.unit(2, "meters"),
  6219. weight: math.unit(150, "kg"),
  6220. name: "Front",
  6221. image: {
  6222. source: "./media/characters/everett/front.svg",
  6223. extra: 2038 / 1737,
  6224. bottom: 0.03
  6225. }
  6226. },
  6227. paw: {
  6228. height: math.unit(2 / 3.6, "meters"),
  6229. name: "Paw",
  6230. image: {
  6231. source: "./media/characters/everett/paw.svg"
  6232. }
  6233. },
  6234. },
  6235. [
  6236. {
  6237. name: "Normal",
  6238. height: math.unit(15, "feet"),
  6239. default: true
  6240. },
  6241. {
  6242. name: "Lorg",
  6243. height: math.unit(70, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Lorger",
  6248. height: math.unit(250, "feet")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(500, "meters")
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(2, "meters"),
  6261. weight: math.unit(86, "kg"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/rose/front.svg",
  6265. extra: 350/335,
  6266. bottom: 10/360
  6267. }
  6268. },
  6269. frontAlt: {
  6270. height: math.unit(1.6, "meters"),
  6271. weight: math.unit(86, "kg"),
  6272. name: "Front (Alt)",
  6273. image: {
  6274. source: "./media/characters/rose/front-alt.svg",
  6275. extra: 299/283,
  6276. bottom: 3/302
  6277. }
  6278. },
  6279. plush: {
  6280. height: math.unit(2, "meters"),
  6281. weight: math.unit(86/3, "kg"),
  6282. name: "Plush",
  6283. image: {
  6284. source: "./media/characters/rose/plush.svg",
  6285. extra: 361/337,
  6286. bottom: 11/372
  6287. }
  6288. },
  6289. },
  6290. [
  6291. {
  6292. name: "Mini-Micro",
  6293. height: math.unit(1, "cm")
  6294. },
  6295. {
  6296. name: "Micro",
  6297. height: math.unit(3.5, "inches"),
  6298. default: true
  6299. },
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(6 + 1 / 6, "feet")
  6303. },
  6304. {
  6305. name: "Mini-Macro",
  6306. height: math.unit(9 + 10 / 12, "feet")
  6307. },
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6312. {
  6313. front: {
  6314. height: math.unit(2, "meters"),
  6315. weight: math.unit(350, "lbs"),
  6316. name: "Front",
  6317. image: {
  6318. source: "./media/characters/regal/front.svg"
  6319. }
  6320. },
  6321. back: {
  6322. height: math.unit(2, "meters"),
  6323. weight: math.unit(350, "lbs"),
  6324. name: "Back",
  6325. image: {
  6326. source: "./media/characters/regal/back.svg"
  6327. }
  6328. },
  6329. },
  6330. [
  6331. {
  6332. name: "Macro",
  6333. height: math.unit(350, "feet"),
  6334. default: true
  6335. }
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6340. {
  6341. front: {
  6342. height: math.unit(4 + 11 / 12, "feet"),
  6343. weight: math.unit(100, "lbs"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/opal/front.svg"
  6347. }
  6348. },
  6349. frontAlt: {
  6350. height: math.unit(4 + 11 / 12, "feet"),
  6351. weight: math.unit(100, "lbs"),
  6352. name: "Front (Alt)",
  6353. image: {
  6354. source: "./media/characters/opal/front-alt.svg"
  6355. }
  6356. },
  6357. },
  6358. [
  6359. {
  6360. name: "Small",
  6361. height: math.unit(4 + 11 / 12, "feet")
  6362. },
  6363. {
  6364. name: "Normal",
  6365. height: math.unit(20, "feet"),
  6366. default: true
  6367. },
  6368. {
  6369. name: "Macro",
  6370. height: math.unit(120, "feet")
  6371. },
  6372. {
  6373. name: "Megamacro",
  6374. height: math.unit(80, "miles")
  6375. },
  6376. {
  6377. name: "True Size",
  6378. height: math.unit(100000, "lightyears")
  6379. },
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6384. {
  6385. front: {
  6386. height: math.unit(6, "feet"),
  6387. weight: math.unit(200, "lbs"),
  6388. name: "Front",
  6389. image: {
  6390. source: "./media/characters/vector-wuff/front.svg"
  6391. }
  6392. }
  6393. },
  6394. [
  6395. {
  6396. name: "Normal",
  6397. height: math.unit(2.8, "meters")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(450, "meters"),
  6402. default: true
  6403. },
  6404. {
  6405. name: "Megamacro",
  6406. height: math.unit(15, "kilometers")
  6407. }
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6412. {
  6413. front: {
  6414. height: math.unit(6, "feet"),
  6415. weight: math.unit(256, "lbs"),
  6416. name: "Front",
  6417. image: {
  6418. source: "./media/characters/dannik/front.svg"
  6419. }
  6420. }
  6421. },
  6422. [
  6423. {
  6424. name: "Macro",
  6425. height: math.unit(69.57, "meters"),
  6426. default: true
  6427. },
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(120, "lbs"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/azura-saharah/front.svg"
  6439. }
  6440. },
  6441. back: {
  6442. height: math.unit(6, "feet"),
  6443. weight: math.unit(120, "lbs"),
  6444. name: "Back",
  6445. image: {
  6446. source: "./media/characters/azura-saharah/back.svg"
  6447. }
  6448. },
  6449. },
  6450. [
  6451. {
  6452. name: "Macro",
  6453. height: math.unit(100, "feet"),
  6454. default: true
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6460. {
  6461. side: {
  6462. height: math.unit(5 + 4 / 12, "feet"),
  6463. weight: math.unit(163, "lbs"),
  6464. name: "Side",
  6465. image: {
  6466. source: "./media/characters/kennedy/side.svg"
  6467. }
  6468. }
  6469. },
  6470. [
  6471. {
  6472. name: "Standard Doggo",
  6473. height: math.unit(5 + 4 / 12, "feet")
  6474. },
  6475. {
  6476. name: "Big Doggo",
  6477. height: math.unit(25 + 3 / 12, "feet"),
  6478. default: true
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(90, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/odi-lunar/front.svg"
  6491. }
  6492. }
  6493. },
  6494. [
  6495. {
  6496. name: "Micro",
  6497. height: math.unit(3, "inches"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(5.5, "feet")
  6503. }
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6508. {
  6509. back: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(220, "lbs"),
  6512. name: "Back",
  6513. image: {
  6514. source: "./media/characters/mandake/back.svg"
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(7, "feet"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(78, "feet")
  6527. },
  6528. {
  6529. name: "Macro+",
  6530. height: math.unit(300, "meters")
  6531. },
  6532. {
  6533. name: "Macro++",
  6534. height: math.unit(2400, "feet")
  6535. },
  6536. {
  6537. name: "Megamacro",
  6538. height: math.unit(5167, "meters")
  6539. },
  6540. {
  6541. name: "Gigamacro",
  6542. height: math.unit(41769, "miles")
  6543. },
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(120, "lbs"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/yozey/front.svg"
  6555. }
  6556. },
  6557. frontAlt: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(120, "lbs"),
  6560. name: "Front (Alt)",
  6561. image: {
  6562. source: "./media/characters/yozey/front-alt.svg"
  6563. }
  6564. },
  6565. side: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(120, "lbs"),
  6568. name: "Side",
  6569. image: {
  6570. source: "./media/characters/yozey/side.svg"
  6571. }
  6572. },
  6573. },
  6574. [
  6575. {
  6576. name: "Micro",
  6577. height: math.unit(3, "inches"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(6, "feet")
  6583. }
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(103, "lbs"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/valeska-voss/front.svg"
  6595. }
  6596. }
  6597. },
  6598. [
  6599. {
  6600. name: "Mini-Sized Sub",
  6601. height: math.unit(3.1, "inches")
  6602. },
  6603. {
  6604. name: "Mid-Sized Sub",
  6605. height: math.unit(6.2, "inches")
  6606. },
  6607. {
  6608. name: "Full-Sized Sub",
  6609. height: math.unit(9.3, "inches")
  6610. },
  6611. {
  6612. name: "Normal",
  6613. height: math.unit(5 + 2 / 12, "foot"),
  6614. default: true
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(160, "lbs"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/gene-zeta/front.svg",
  6627. extra: 3006 / 2826,
  6628. bottom: 182 / 3188
  6629. }
  6630. }
  6631. },
  6632. [
  6633. {
  6634. name: "Micro",
  6635. height: math.unit(6, "inches")
  6636. },
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(5 + 11 / 12, "foot"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(140, "feet")
  6645. },
  6646. {
  6647. name: "Supercharged",
  6648. height: math.unit(2500, "feet")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(350, "lbs"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/razinox/front.svg",
  6661. extra: 1686 / 1548,
  6662. bottom: 28.2 / 1868
  6663. }
  6664. },
  6665. back: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(350, "lbs"),
  6668. name: "Back",
  6669. image: {
  6670. source: "./media/characters/razinox/back.svg",
  6671. extra: 1660 / 1590,
  6672. bottom: 15 / 1665
  6673. }
  6674. },
  6675. },
  6676. [
  6677. {
  6678. name: "Normal",
  6679. height: math.unit(10 + 8 / 12, "foot")
  6680. },
  6681. {
  6682. name: "Minimacro",
  6683. height: math.unit(15, "foot")
  6684. },
  6685. {
  6686. name: "Macro",
  6687. height: math.unit(60, "foot"),
  6688. default: true
  6689. },
  6690. {
  6691. name: "Megamacro",
  6692. height: math.unit(5, "miles")
  6693. },
  6694. {
  6695. name: "Gigamacro",
  6696. height: math.unit(6000, "miles")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(150, "lbs"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/cobalt/front.svg"
  6709. }
  6710. }
  6711. },
  6712. [
  6713. {
  6714. name: "Normal",
  6715. height: math.unit(8 + 1 / 12, "foot")
  6716. },
  6717. {
  6718. name: "Macro",
  6719. height: math.unit(111, "foot"),
  6720. default: true
  6721. },
  6722. {
  6723. name: "Supracosmic",
  6724. height: math.unit(1e42, "feet")
  6725. },
  6726. ]
  6727. ))
  6728. characterMakers.push(() => makeCharacter(
  6729. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6730. {
  6731. front: {
  6732. height: math.unit(6, "feet"),
  6733. weight: math.unit(140, "lbs"),
  6734. name: "Front",
  6735. image: {
  6736. source: "./media/characters/amanda/front.svg"
  6737. }
  6738. }
  6739. },
  6740. [
  6741. {
  6742. name: "Micro",
  6743. height: math.unit(5, "inches"),
  6744. default: true
  6745. },
  6746. ]
  6747. ))
  6748. characterMakers.push(() => makeCharacter(
  6749. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6750. {
  6751. front: {
  6752. height: math.unit(2.75, "meters"),
  6753. weight: math.unit(1200, "lb"),
  6754. name: "Front",
  6755. image: {
  6756. source: "./media/characters/teal/front.svg",
  6757. extra: 2463 / 2320,
  6758. bottom: 166 / 2629
  6759. }
  6760. },
  6761. back: {
  6762. height: math.unit(2.75, "meters"),
  6763. weight: math.unit(1200, "lb"),
  6764. name: "Back",
  6765. image: {
  6766. source: "./media/characters/teal/back.svg",
  6767. extra: 2580 / 2489,
  6768. bottom: 151 / 2731
  6769. }
  6770. },
  6771. sitting: {
  6772. height: math.unit(1.9, "meters"),
  6773. weight: math.unit(1200, "lb"),
  6774. name: "Sitting",
  6775. image: {
  6776. source: "./media/characters/teal/sitting.svg",
  6777. extra: 623 / 590,
  6778. bottom: 121 / 744
  6779. }
  6780. },
  6781. standing: {
  6782. height: math.unit(2.75, "meters"),
  6783. weight: math.unit(1200, "lb"),
  6784. name: "Standing",
  6785. image: {
  6786. source: "./media/characters/teal/standing.svg",
  6787. extra: 923 / 893,
  6788. bottom: 60 / 983
  6789. }
  6790. },
  6791. stretching: {
  6792. height: math.unit(3.65, "meters"),
  6793. weight: math.unit(1200, "lb"),
  6794. name: "Stretching",
  6795. image: {
  6796. source: "./media/characters/teal/stretching.svg",
  6797. extra: 1276 / 1244,
  6798. bottom: 0 / 1276
  6799. }
  6800. },
  6801. legged: {
  6802. height: math.unit(1.3, "meters"),
  6803. weight: math.unit(100, "lb"),
  6804. name: "Legged",
  6805. image: {
  6806. source: "./media/characters/teal/legged.svg",
  6807. extra: 462 / 437,
  6808. bottom: 24 / 486
  6809. }
  6810. },
  6811. naga: {
  6812. height: math.unit(5.4, "meters"),
  6813. weight: math.unit(4000, "lb"),
  6814. name: "Naga",
  6815. image: {
  6816. source: "./media/characters/teal/naga.svg",
  6817. extra: 1902 / 1858,
  6818. bottom: 0 / 1902
  6819. }
  6820. },
  6821. hand: {
  6822. height: math.unit(0.52, "meters"),
  6823. name: "Hand",
  6824. image: {
  6825. source: "./media/characters/teal/hand.svg"
  6826. }
  6827. },
  6828. maw: {
  6829. height: math.unit(0.43, "meters"),
  6830. name: "Maw",
  6831. image: {
  6832. source: "./media/characters/teal/maw.svg"
  6833. }
  6834. },
  6835. slit: {
  6836. height: math.unit(0.25, "meters"),
  6837. name: "Slit",
  6838. image: {
  6839. source: "./media/characters/teal/slit.svg"
  6840. }
  6841. },
  6842. },
  6843. [
  6844. {
  6845. name: "Normal",
  6846. height: math.unit(2.75, "meters"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(300, "feet")
  6852. },
  6853. {
  6854. name: "Macro+",
  6855. height: math.unit(2000, "feet")
  6856. },
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6861. {
  6862. frontCat: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(180, "lbs"),
  6865. name: "Front (Cat)",
  6866. image: {
  6867. source: "./media/characters/ravin-amulet/front-cat.svg"
  6868. }
  6869. },
  6870. frontCatAlt: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(180, "lbs"),
  6873. name: "Front (Alt, Cat)",
  6874. image: {
  6875. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6876. }
  6877. },
  6878. frontWerewolf: {
  6879. height: math.unit(6 * 1.2, "feet"),
  6880. weight: math.unit(225, "lbs"),
  6881. name: "Front (Werewolf)",
  6882. image: {
  6883. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6884. }
  6885. },
  6886. backWerewolf: {
  6887. height: math.unit(6 * 1.2, "feet"),
  6888. weight: math.unit(225, "lbs"),
  6889. name: "Back (Werewolf)",
  6890. image: {
  6891. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6892. }
  6893. },
  6894. },
  6895. [
  6896. {
  6897. name: "Nano",
  6898. height: math.unit(1, "micrometer")
  6899. },
  6900. {
  6901. name: "Micro",
  6902. height: math.unit(1, "inch")
  6903. },
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(6, "feet"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Macro",
  6911. height: math.unit(60, "feet")
  6912. }
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(165, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/fluoresce/front.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Micro",
  6930. height: math.unit(6, "cm")
  6931. },
  6932. {
  6933. name: "Normal",
  6934. height: math.unit(5 + 7 / 12, "feet"),
  6935. default: true
  6936. },
  6937. {
  6938. name: "Macro",
  6939. height: math.unit(56, "feet")
  6940. },
  6941. {
  6942. name: "Megamacro",
  6943. height: math.unit(1.9, "miles")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(9 + 6 / 12, "feet"),
  6952. weight: math.unit(523, "lbs"),
  6953. name: "Side",
  6954. image: {
  6955. source: "./media/characters/aurora/side.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(9 + 6 / 12, "feet")
  6963. },
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(96, "feet"),
  6967. default: true
  6968. },
  6969. {
  6970. name: "Macro+",
  6971. height: math.unit(243, "feet")
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6977. {
  6978. front: {
  6979. height: math.unit(194, "cm"),
  6980. weight: math.unit(90, "kg"),
  6981. name: "Front",
  6982. image: {
  6983. source: "./media/characters/ranek/front.svg"
  6984. }
  6985. },
  6986. side: {
  6987. height: math.unit(194, "cm"),
  6988. weight: math.unit(90, "kg"),
  6989. name: "Side",
  6990. image: {
  6991. source: "./media/characters/ranek/side.svg"
  6992. }
  6993. },
  6994. back: {
  6995. height: math.unit(194, "cm"),
  6996. weight: math.unit(90, "kg"),
  6997. name: "Back",
  6998. image: {
  6999. source: "./media/characters/ranek/back.svg"
  7000. }
  7001. },
  7002. feral: {
  7003. height: math.unit(30, "cm"),
  7004. weight: math.unit(1.6, "lbs"),
  7005. name: "Feral",
  7006. image: {
  7007. source: "./media/characters/ranek/feral.svg"
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(194, "cm"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(100, "meters")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(5 + 6 / 12, "feet"),
  7028. weight: math.unit(153, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/andrew-cooper/front.svg"
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Nano",
  7038. height: math.unit(1, "mm")
  7039. },
  7040. {
  7041. name: "Micro",
  7042. height: math.unit(2, "inches")
  7043. },
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(5 + 6 / 12, "feet"),
  7047. default: true
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(180, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/akane-sato/front.svg",
  7060. extra: 1219 / 1140
  7061. }
  7062. },
  7063. back: {
  7064. height: math.unit(6, "feet"),
  7065. weight: math.unit(180, "lbs"),
  7066. name: "Back",
  7067. image: {
  7068. source: "./media/characters/akane-sato/back.svg",
  7069. extra: 1219 / 1170
  7070. }
  7071. },
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(2.5, "meters")
  7077. },
  7078. {
  7079. name: "Macro",
  7080. height: math.unit(250, "meters"),
  7081. default: true
  7082. },
  7083. {
  7084. name: "Megamacro",
  7085. height: math.unit(25, "km")
  7086. },
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7091. {
  7092. front: {
  7093. height: math.unit(6, "feet"),
  7094. weight: math.unit(65, "kg"),
  7095. name: "Front",
  7096. image: {
  7097. source: "./media/characters/rook/front.svg",
  7098. extra: 960 / 950
  7099. }
  7100. }
  7101. },
  7102. [
  7103. {
  7104. name: "Normal",
  7105. height: math.unit(8.8, "feet")
  7106. },
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(88, "feet"),
  7110. default: true
  7111. },
  7112. {
  7113. name: "Megamacro",
  7114. height: math.unit(8, "miles")
  7115. },
  7116. ]
  7117. ))
  7118. characterMakers.push(() => makeCharacter(
  7119. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7120. {
  7121. front: {
  7122. height: math.unit(12 + 2 / 12, "feet"),
  7123. weight: math.unit(808, "lbs"),
  7124. name: "Front",
  7125. image: {
  7126. source: "./media/characters/prodigy/front.svg"
  7127. }
  7128. }
  7129. },
  7130. [
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(12 + 2 / 12, "feet"),
  7134. default: true
  7135. },
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(143, "feet")
  7139. },
  7140. {
  7141. name: "Macro+",
  7142. height: math.unit(400, "feet")
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(225, "lbs"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/daniel/front.svg"
  7155. }
  7156. },
  7157. leaning: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(225, "lbs"),
  7160. name: "Leaning",
  7161. image: {
  7162. source: "./media/characters/daniel/leaning.svg"
  7163. }
  7164. },
  7165. },
  7166. [
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(1000, "feet"),
  7170. default: true
  7171. },
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7176. {
  7177. front: {
  7178. height: math.unit(6, "feet"),
  7179. weight: math.unit(88, "lbs"),
  7180. name: "Front",
  7181. image: {
  7182. source: "./media/characters/chiros/front.svg",
  7183. extra: 306 / 226
  7184. }
  7185. },
  7186. side: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(88, "lbs"),
  7189. name: "Side",
  7190. image: {
  7191. source: "./media/characters/chiros/side.svg",
  7192. extra: 306 / 226
  7193. }
  7194. },
  7195. },
  7196. [
  7197. {
  7198. name: "Normal",
  7199. height: math.unit(6, "cm"),
  7200. default: true
  7201. },
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7206. {
  7207. front: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(100, "lbs"),
  7210. name: "Front",
  7211. image: {
  7212. source: "./media/characters/selka/front.svg",
  7213. extra: 947 / 887
  7214. }
  7215. }
  7216. },
  7217. [
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(5, "cm"),
  7221. default: true
  7222. },
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7227. {
  7228. front: {
  7229. height: math.unit(8 + 3 / 12, "feet"),
  7230. weight: math.unit(424, "lbs"),
  7231. name: "Front",
  7232. image: {
  7233. source: "./media/characters/verin/front.svg",
  7234. extra: 1845 / 1550
  7235. }
  7236. },
  7237. frontArmored: {
  7238. height: math.unit(8 + 3 / 12, "feet"),
  7239. weight: math.unit(424, "lbs"),
  7240. name: "Front (Armored)",
  7241. image: {
  7242. source: "./media/characters/verin/front-armor.svg",
  7243. extra: 1845 / 1550,
  7244. bottom: 0.01
  7245. }
  7246. },
  7247. back: {
  7248. height: math.unit(8 + 3 / 12, "feet"),
  7249. weight: math.unit(424, "lbs"),
  7250. name: "Back",
  7251. image: {
  7252. source: "./media/characters/verin/back.svg",
  7253. bottom: 0.1,
  7254. extra: 1
  7255. }
  7256. },
  7257. foot: {
  7258. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7259. name: "Foot",
  7260. image: {
  7261. source: "./media/characters/verin/foot.svg"
  7262. }
  7263. },
  7264. },
  7265. [
  7266. {
  7267. name: "Normal",
  7268. height: math.unit(8 + 3 / 12, "feet")
  7269. },
  7270. {
  7271. name: "Minimacro",
  7272. height: math.unit(21, "feet"),
  7273. default: true
  7274. },
  7275. {
  7276. name: "Macro",
  7277. height: math.unit(626, "feet")
  7278. },
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7283. {
  7284. front: {
  7285. height: math.unit(2.718, "meters"),
  7286. weight: math.unit(150, "lbs"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/sovrim-terraquian/front.svg"
  7290. }
  7291. },
  7292. back: {
  7293. height: math.unit(2.718, "meters"),
  7294. weight: math.unit(150, "lbs"),
  7295. name: "Back",
  7296. image: {
  7297. source: "./media/characters/sovrim-terraquian/back.svg"
  7298. }
  7299. }
  7300. },
  7301. [
  7302. {
  7303. name: "Micro",
  7304. height: math.unit(2, "inches")
  7305. },
  7306. {
  7307. name: "Small",
  7308. height: math.unit(1, "meter")
  7309. },
  7310. {
  7311. name: "Normal",
  7312. height: math.unit(Math.E, "meters"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Macro",
  7317. height: math.unit(20, "meters")
  7318. },
  7319. {
  7320. name: "Macro+",
  7321. height: math.unit(400, "meters")
  7322. },
  7323. ]
  7324. ))
  7325. characterMakers.push(() => makeCharacter(
  7326. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7327. {
  7328. front: {
  7329. height: math.unit(7, "feet"),
  7330. weight: math.unit(489, "lbs"),
  7331. name: "Front",
  7332. image: {
  7333. source: "./media/characters/reece-silvermane/front.svg",
  7334. bottom: 0.02,
  7335. extra: 1
  7336. }
  7337. },
  7338. },
  7339. [
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(1.5, "miles"),
  7343. default: true
  7344. },
  7345. ]
  7346. ))
  7347. characterMakers.push(() => makeCharacter(
  7348. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7349. {
  7350. front: {
  7351. height: math.unit(6, "feet"),
  7352. weight: math.unit(78, "kg"),
  7353. name: "Front",
  7354. image: {
  7355. source: "./media/characters/kane/front.svg",
  7356. extra: 978 / 899
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(2.1, "m"),
  7364. },
  7365. {
  7366. name: "Macro",
  7367. height: math.unit(1, "km"),
  7368. default: true
  7369. },
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7374. {
  7375. front: {
  7376. height: math.unit(6, "feet"),
  7377. weight: math.unit(200, "kg"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/tegon/front.svg",
  7381. bottom: 0.01,
  7382. extra: 1
  7383. }
  7384. },
  7385. },
  7386. [
  7387. {
  7388. name: "Micro",
  7389. height: math.unit(1, "inch")
  7390. },
  7391. {
  7392. name: "Normal",
  7393. height: math.unit(6 + 3 / 12, "feet"),
  7394. default: true
  7395. },
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(300, "feet")
  7399. },
  7400. {
  7401. name: "Megamacro",
  7402. height: math.unit(69, "miles")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7408. {
  7409. side: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(2304, "lbs"),
  7412. name: "Side",
  7413. image: {
  7414. source: "./media/characters/arcturax/side.svg",
  7415. extra: 790 / 376,
  7416. bottom: 0.01
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Micro",
  7423. height: math.unit(2, "inch")
  7424. },
  7425. {
  7426. name: "Normal",
  7427. height: math.unit(6, "feet")
  7428. },
  7429. {
  7430. name: "Macro",
  7431. height: math.unit(39, "feet"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Megamacro",
  7436. height: math.unit(7, "miles")
  7437. },
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7442. {
  7443. front: {
  7444. height: math.unit(6, "feet"),
  7445. weight: math.unit(50, "lbs"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/sentri/front.svg",
  7449. extra: 1750 / 1570,
  7450. bottom: 0.025
  7451. }
  7452. },
  7453. frontAlt: {
  7454. height: math.unit(6, "feet"),
  7455. weight: math.unit(50, "lbs"),
  7456. name: "Front (Alt)",
  7457. image: {
  7458. source: "./media/characters/sentri/front-alt.svg",
  7459. extra: 1750 / 1570,
  7460. bottom: 0.025
  7461. }
  7462. },
  7463. },
  7464. [
  7465. {
  7466. name: "Normal",
  7467. height: math.unit(15, "feet"),
  7468. default: true
  7469. },
  7470. {
  7471. name: "Macro",
  7472. height: math.unit(2500, "feet")
  7473. }
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(5 + 8 / 12, "feet"),
  7481. weight: math.unit(130, "lbs"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/corvin/front.svg",
  7485. extra: 1803 / 1629
  7486. }
  7487. },
  7488. frontShirt: {
  7489. height: math.unit(5 + 8 / 12, "feet"),
  7490. weight: math.unit(130, "lbs"),
  7491. name: "Front (Shirt)",
  7492. image: {
  7493. source: "./media/characters/corvin/front-shirt.svg",
  7494. extra: 1803 / 1629
  7495. }
  7496. },
  7497. frontPoncho: {
  7498. height: math.unit(5 + 8 / 12, "feet"),
  7499. weight: math.unit(130, "lbs"),
  7500. name: "Front (Poncho)",
  7501. image: {
  7502. source: "./media/characters/corvin/front-poncho.svg",
  7503. extra: 1803 / 1629
  7504. }
  7505. },
  7506. side: {
  7507. height: math.unit(5 + 8 / 12, "feet"),
  7508. weight: math.unit(130, "lbs"),
  7509. name: "Side",
  7510. image: {
  7511. source: "./media/characters/corvin/side.svg",
  7512. extra: 1012 / 945
  7513. }
  7514. },
  7515. back: {
  7516. height: math.unit(5 + 8 / 12, "feet"),
  7517. weight: math.unit(130, "lbs"),
  7518. name: "Back",
  7519. image: {
  7520. source: "./media/characters/corvin/back.svg",
  7521. extra: 1803 / 1629
  7522. }
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "Micro",
  7528. height: math.unit(3, "inches")
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(5 + 8 / 12, "feet")
  7533. },
  7534. {
  7535. name: "Macro",
  7536. height: math.unit(300, "feet"),
  7537. default: true
  7538. },
  7539. {
  7540. name: "Megamacro",
  7541. height: math.unit(500, "miles")
  7542. }
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7547. {
  7548. front: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(135, "lbs"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/q/front.svg",
  7554. extra: 854 / 752,
  7555. bottom: 0.005
  7556. }
  7557. },
  7558. back: {
  7559. height: math.unit(6, "feet"),
  7560. weight: math.unit(130, "lbs"),
  7561. name: "Back",
  7562. image: {
  7563. source: "./media/characters/q/back.svg",
  7564. extra: 854 / 752
  7565. }
  7566. },
  7567. },
  7568. [
  7569. {
  7570. name: "Macro",
  7571. height: math.unit(90, "feet"),
  7572. default: true
  7573. },
  7574. {
  7575. name: "Extra Macro",
  7576. height: math.unit(300, "feet"),
  7577. },
  7578. {
  7579. name: "BIG WALF",
  7580. height: math.unit(750, "feet"),
  7581. },
  7582. ]
  7583. ))
  7584. characterMakers.push(() => makeCharacter(
  7585. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7586. {
  7587. front: {
  7588. height: math.unit(6, "feet"),
  7589. weight: math.unit(150, "lbs"),
  7590. name: "Front",
  7591. image: {
  7592. source: "./media/characters/carley/front.svg",
  7593. extra: 3927 / 3540,
  7594. bottom: 29.2 / 735
  7595. }
  7596. }
  7597. },
  7598. [
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(6 + 3 / 12, "feet")
  7602. },
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(185, "feet"),
  7606. default: true
  7607. },
  7608. {
  7609. name: "Megamacro",
  7610. height: math.unit(8, "miles"),
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(3, "feet"),
  7619. weight: math.unit(28, "lbs"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/citrine/front.svg"
  7623. }
  7624. }
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(3, "feet"),
  7630. default: true
  7631. }
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7636. {
  7637. front: {
  7638. height: math.unit(14, "feet"),
  7639. weight: math.unit(1450, "kg"),
  7640. capacity: math.unit(15, "people"),
  7641. name: "Front",
  7642. image: {
  7643. source: "./media/characters/aura-starwind/front.svg",
  7644. extra: 1455 / 1335
  7645. }
  7646. },
  7647. side: {
  7648. height: math.unit(14, "feet"),
  7649. weight: math.unit(1450, "kg"),
  7650. capacity: math.unit(15, "people"),
  7651. name: "Side",
  7652. image: {
  7653. source: "./media/characters/aura-starwind/side.svg",
  7654. extra: 1654 / 1497
  7655. }
  7656. },
  7657. taur: {
  7658. height: math.unit(18, "feet"),
  7659. weight: math.unit(5500, "kg"),
  7660. capacity: math.unit(50, "people"),
  7661. name: "Taur",
  7662. image: {
  7663. source: "./media/characters/aura-starwind/taur.svg",
  7664. extra: 1760 / 1650
  7665. }
  7666. },
  7667. feral: {
  7668. height: math.unit(46, "feet"),
  7669. weight: math.unit(25000, "kg"),
  7670. capacity: math.unit(120, "people"),
  7671. name: "Feral",
  7672. image: {
  7673. source: "./media/characters/aura-starwind/feral.svg"
  7674. }
  7675. },
  7676. },
  7677. [
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(14, "feet"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(50, "meters")
  7686. },
  7687. {
  7688. name: "Megamacro",
  7689. height: math.unit(5000, "meters")
  7690. },
  7691. {
  7692. name: "Gigamacro",
  7693. height: math.unit(100000, "kilometers")
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7699. {
  7700. front: {
  7701. height: math.unit(2 + 7 / 12, "feet"),
  7702. weight: math.unit(32, "lbs"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/rivet/front.svg",
  7706. extra: 1716 / 1658,
  7707. bottom: 0.03
  7708. }
  7709. },
  7710. foot: {
  7711. height: math.unit(0.551, "feet"),
  7712. name: "Rivet's Foot",
  7713. image: {
  7714. source: "./media/characters/rivet/foot.svg"
  7715. },
  7716. rename: true
  7717. }
  7718. },
  7719. [
  7720. {
  7721. name: "Micro",
  7722. height: math.unit(1.5, "inches"),
  7723. },
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(2 + 7 / 12, "feet"),
  7727. default: true
  7728. },
  7729. {
  7730. name: "Macro",
  7731. height: math.unit(85, "feet")
  7732. },
  7733. {
  7734. name: "Megamacro",
  7735. height: math.unit(2.2, "km")
  7736. }
  7737. ]
  7738. ))
  7739. characterMakers.push(() => makeCharacter(
  7740. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7741. {
  7742. front: {
  7743. height: math.unit(5 + 9 / 12, "feet"),
  7744. weight: math.unit(150, "lbs"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/coffee/front.svg",
  7748. extra: 3666 / 3032,
  7749. bottom: 0.04
  7750. }
  7751. },
  7752. foot: {
  7753. height: math.unit(1.29, "feet"),
  7754. name: "Foot",
  7755. image: {
  7756. source: "./media/characters/coffee/foot.svg"
  7757. }
  7758. },
  7759. },
  7760. [
  7761. {
  7762. name: "Micro",
  7763. height: math.unit(2, "inches"),
  7764. },
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(5 + 9 / 12, "feet"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(800, "feet")
  7773. },
  7774. {
  7775. name: "Megamacro",
  7776. height: math.unit(25, "miles")
  7777. }
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(200, "lbs"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/chari-gal/front.svg",
  7789. extra: 1568 / 1385,
  7790. bottom: 0.047
  7791. }
  7792. },
  7793. gigantamax: {
  7794. height: math.unit(6 * 16, "feet"),
  7795. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7796. name: "Gigantamax",
  7797. image: {
  7798. source: "./media/characters/chari-gal/gigantamax.svg",
  7799. extra: 1124 / 888,
  7800. bottom: 0.03
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(5 + 7 / 12, "feet")
  7808. },
  7809. {
  7810. name: "Macro",
  7811. height: math.unit(200, "feet"),
  7812. default: true
  7813. }
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(150, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/nova/front.svg",
  7825. extra: 5000 / 4722,
  7826. bottom: 0.02
  7827. }
  7828. }
  7829. },
  7830. [
  7831. {
  7832. name: "Micro-",
  7833. height: math.unit(0.8, "inches")
  7834. },
  7835. {
  7836. name: "Micro",
  7837. height: math.unit(2, "inches"),
  7838. default: true
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(3 + 1 / 12, "feet"),
  7847. weight: math.unit(21.7, "lbs"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/argent/front.svg",
  7851. extra: 1471 / 1331,
  7852. bottom: 100.8 / 1575.5
  7853. }
  7854. }
  7855. },
  7856. [
  7857. {
  7858. name: "Micro",
  7859. height: math.unit(2, "inches")
  7860. },
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(3 + 1 / 12, "feet"),
  7864. default: true
  7865. },
  7866. {
  7867. name: "Macro",
  7868. height: math.unit(120, "feet")
  7869. },
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7874. {
  7875. lamp: {
  7876. height: math.unit(7 * 1559 / 989, "feet"),
  7877. name: "Magic Lamp",
  7878. image: {
  7879. source: "./media/characters/mira-al-cul/lamp.svg",
  7880. extra: 1617 / 1559
  7881. }
  7882. },
  7883. front: {
  7884. height: math.unit(7, "feet"),
  7885. name: "Front",
  7886. image: {
  7887. source: "./media/characters/mira-al-cul/front.svg",
  7888. extra: 1044 / 990
  7889. }
  7890. },
  7891. },
  7892. [
  7893. {
  7894. name: "Heavily Restricted",
  7895. height: math.unit(7 * 1559 / 989, "feet")
  7896. },
  7897. {
  7898. name: "Freshly Freed",
  7899. height: math.unit(50 * 1559 / 989, "feet")
  7900. },
  7901. {
  7902. name: "World Encompassing",
  7903. height: math.unit(10000 * 1559 / 989, "miles")
  7904. },
  7905. {
  7906. name: "Galactic",
  7907. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7908. },
  7909. {
  7910. name: "Palmed Universe",
  7911. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7912. default: true
  7913. },
  7914. {
  7915. name: "Multiversal Matriarch",
  7916. height: math.unit(8.87e10, "yottameters")
  7917. },
  7918. {
  7919. name: "Void Mother",
  7920. height: math.unit(3.14e110, "yottaparsecs")
  7921. },
  7922. {
  7923. name: "Toying with Transcendence",
  7924. height: math.unit(1e307, "meters")
  7925. },
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7930. {
  7931. front: {
  7932. height: math.unit(17 + 1 / 12, "feet"),
  7933. weight: math.unit(476.2 * 5, "lbs"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/kuro-shi-uchū/front.svg",
  7937. extra: 2329 / 1835,
  7938. bottom: 0.02
  7939. }
  7940. },
  7941. },
  7942. [
  7943. {
  7944. name: "Micro",
  7945. height: math.unit(2, "inches")
  7946. },
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(12, "meters")
  7950. },
  7951. {
  7952. name: "Planetary",
  7953. height: math.unit(0.00929, "AU"),
  7954. default: true
  7955. },
  7956. {
  7957. name: "Universal",
  7958. height: math.unit(20, "gigaparsecs")
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(5 + 2 / 12, "feet"),
  7967. weight: math.unit(120, "lbs"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/katherine/front.svg",
  7971. extra: 2075 / 1969
  7972. }
  7973. },
  7974. dress: {
  7975. height: math.unit(5 + 2 / 12, "feet"),
  7976. weight: math.unit(120, "lbs"),
  7977. name: "Dress",
  7978. image: {
  7979. source: "./media/characters/katherine/dress.svg",
  7980. extra: 2258 / 2064
  7981. }
  7982. },
  7983. },
  7984. [
  7985. {
  7986. name: "Micro",
  7987. height: math.unit(1, "inches"),
  7988. default: true
  7989. },
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(5 + 2 / 12, "feet")
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(100, "meters")
  7997. },
  7998. {
  7999. name: "Megamacro",
  8000. height: math.unit(80, "miles")
  8001. },
  8002. ]
  8003. ))
  8004. characterMakers.push(() => makeCharacter(
  8005. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8006. {
  8007. front: {
  8008. height: math.unit(7 + 8 / 12, "feet"),
  8009. weight: math.unit(250, "lbs"),
  8010. name: "Front",
  8011. image: {
  8012. source: "./media/characters/yevis/front.svg",
  8013. extra: 1938 / 1755
  8014. }
  8015. }
  8016. },
  8017. [
  8018. {
  8019. name: "Mortal",
  8020. height: math.unit(7 + 8 / 12, "feet")
  8021. },
  8022. {
  8023. name: "Battle",
  8024. height: math.unit(25 + 11 / 12, "feet")
  8025. },
  8026. {
  8027. name: "Wrath",
  8028. height: math.unit(1654 + 11 / 12, "feet")
  8029. },
  8030. {
  8031. name: "Planet Destroyer",
  8032. height: math.unit(12000, "miles")
  8033. },
  8034. {
  8035. name: "Galaxy Conqueror",
  8036. height: math.unit(1.45, "zettameters"),
  8037. default: true
  8038. },
  8039. {
  8040. name: "Universal War",
  8041. height: math.unit(184, "gigaparsecs")
  8042. },
  8043. {
  8044. name: "Eternity War",
  8045. height: math.unit(1.98e55, "yottaparsecs")
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8051. {
  8052. front: {
  8053. height: math.unit(5 + 8 / 12, "feet"),
  8054. weight: math.unit(63, "kg"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/xavier/front.svg",
  8058. extra: 944 / 883
  8059. }
  8060. },
  8061. frontStretch: {
  8062. height: math.unit(5 + 8 / 12, "feet"),
  8063. weight: math.unit(63, "kg"),
  8064. name: "Stretching",
  8065. image: {
  8066. source: "./media/characters/xavier/front-stretch.svg",
  8067. extra: 962 / 820
  8068. }
  8069. },
  8070. },
  8071. [
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(5 + 8 / 12, "feet")
  8075. },
  8076. {
  8077. name: "Macro",
  8078. height: math.unit(100, "meters"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "McLargeHuge",
  8083. height: math.unit(10, "miles")
  8084. },
  8085. ]
  8086. ))
  8087. characterMakers.push(() => makeCharacter(
  8088. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8089. {
  8090. front: {
  8091. height: math.unit(5 + 5 / 12, "feet"),
  8092. weight: math.unit(150, "lb"),
  8093. name: "Front",
  8094. image: {
  8095. source: "./media/characters/joshii/front.svg",
  8096. extra: 765 / 653,
  8097. bottom: 51 / 816
  8098. }
  8099. },
  8100. foot: {
  8101. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8102. name: "Foot",
  8103. image: {
  8104. source: "./media/characters/joshii/foot.svg"
  8105. }
  8106. },
  8107. },
  8108. [
  8109. {
  8110. name: "Micro",
  8111. height: math.unit(2, "inches"),
  8112. default: true
  8113. },
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(5 + 5 / 12, "feet")
  8117. },
  8118. {
  8119. name: "Macro",
  8120. height: math.unit(785, "feet")
  8121. },
  8122. {
  8123. name: "Megamacro",
  8124. height: math.unit(24.5, "miles")
  8125. },
  8126. ]
  8127. ))
  8128. characterMakers.push(() => makeCharacter(
  8129. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8130. {
  8131. front: {
  8132. height: math.unit(6, "feet"),
  8133. weight: math.unit(150, "lb"),
  8134. name: "Front",
  8135. image: {
  8136. source: "./media/characters/goddess-elizabeth/front.svg",
  8137. extra: 1800 / 1525,
  8138. bottom: 0.005
  8139. }
  8140. },
  8141. foot: {
  8142. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8143. name: "Foot",
  8144. image: {
  8145. source: "./media/characters/goddess-elizabeth/foot.svg"
  8146. }
  8147. },
  8148. mouth: {
  8149. height: math.unit(6, "feet"),
  8150. name: "Mouth",
  8151. image: {
  8152. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8153. }
  8154. },
  8155. },
  8156. [
  8157. {
  8158. name: "Micro",
  8159. height: math.unit(12, "feet")
  8160. },
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(80, "miles"),
  8164. default: true
  8165. },
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(15000, "parsecs")
  8169. },
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(5 + 9 / 12, "feet"),
  8177. weight: math.unit(144, "lb"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/kara/front.svg"
  8181. }
  8182. },
  8183. feet: {
  8184. height: math.unit(6 / 6.765, "feet"),
  8185. name: "Kara's Feet",
  8186. rename: true,
  8187. image: {
  8188. source: "./media/characters/kara/feet.svg"
  8189. }
  8190. },
  8191. },
  8192. [
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(5 + 9 / 12, "feet")
  8196. },
  8197. {
  8198. name: "Macro",
  8199. height: math.unit(174, "feet"),
  8200. default: true
  8201. },
  8202. ]
  8203. ))
  8204. characterMakers.push(() => makeCharacter(
  8205. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8206. {
  8207. front: {
  8208. height: math.unit(18, "feet"),
  8209. weight: math.unit(4050, "lb"),
  8210. name: "Front",
  8211. image: {
  8212. source: "./media/characters/tyrone/front.svg",
  8213. extra: 2405 / 2270,
  8214. bottom: 182 / 2587
  8215. }
  8216. },
  8217. },
  8218. [
  8219. {
  8220. name: "Normal",
  8221. height: math.unit(18, "feet"),
  8222. default: true
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(300, "feet")
  8227. },
  8228. {
  8229. name: "Megamacro",
  8230. height: math.unit(15, "km")
  8231. },
  8232. {
  8233. name: "Gigamacro",
  8234. height: math.unit(500, "km")
  8235. },
  8236. {
  8237. name: "Teramacro",
  8238. height: math.unit(0.5, "gigameters")
  8239. },
  8240. {
  8241. name: "Omnimacro",
  8242. height: math.unit(1e252, "yottauniverse")
  8243. },
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(7 + 8 / 12, "feet"),
  8251. weight: math.unit(120, "lb"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/danny/front.svg",
  8255. extra: 1490 / 1350
  8256. }
  8257. },
  8258. back: {
  8259. height: math.unit(7 + 8 / 12, "feet"),
  8260. weight: math.unit(120, "lb"),
  8261. name: "Back",
  8262. image: {
  8263. source: "./media/characters/danny/back.svg",
  8264. extra: 1490 / 1350
  8265. }
  8266. },
  8267. },
  8268. [
  8269. {
  8270. name: "Normal",
  8271. height: math.unit(7 + 8 / 12, "feet"),
  8272. default: true
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8278. {
  8279. front: {
  8280. height: math.unit(3.5, "inches"),
  8281. weight: math.unit(19, "grams"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/mallow/front.svg",
  8285. extra: 471 / 431
  8286. }
  8287. },
  8288. back: {
  8289. height: math.unit(3.5, "inches"),
  8290. weight: math.unit(19, "grams"),
  8291. name: "Back",
  8292. image: {
  8293. source: "./media/characters/mallow/back.svg",
  8294. extra: 471 / 431
  8295. }
  8296. },
  8297. },
  8298. [
  8299. {
  8300. name: "Normal",
  8301. height: math.unit(3.5, "inches"),
  8302. default: true
  8303. },
  8304. ]
  8305. ))
  8306. characterMakers.push(() => makeCharacter(
  8307. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8308. {
  8309. front: {
  8310. height: math.unit(9, "feet"),
  8311. weight: math.unit(230, "kg"),
  8312. name: "Front",
  8313. image: {
  8314. source: "./media/characters/starry-aqua/front.svg"
  8315. }
  8316. },
  8317. back: {
  8318. height: math.unit(9, "feet"),
  8319. weight: math.unit(230, "kg"),
  8320. name: "Back",
  8321. image: {
  8322. source: "./media/characters/starry-aqua/back.svg"
  8323. }
  8324. },
  8325. hand: {
  8326. height: math.unit(9 * 0.1168, "feet"),
  8327. name: "Hand",
  8328. image: {
  8329. source: "./media/characters/starry-aqua/hand.svg"
  8330. }
  8331. },
  8332. foot: {
  8333. height: math.unit(9 * 0.18, "feet"),
  8334. name: "Foot",
  8335. image: {
  8336. source: "./media/characters/starry-aqua/foot.svg"
  8337. }
  8338. }
  8339. },
  8340. [
  8341. {
  8342. name: "Micro",
  8343. height: math.unit(3, "inches")
  8344. },
  8345. {
  8346. name: "Normal",
  8347. height: math.unit(9, "feet")
  8348. },
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(300, "feet"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Megamacro",
  8356. height: math.unit(3200, "feet")
  8357. }
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(6, "feet"),
  8365. weight: math.unit(230, "lb"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/luka/front.svg",
  8369. extra: 1,
  8370. bottom: 0.025
  8371. }
  8372. },
  8373. },
  8374. [
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(12 + 8 / 12, "feet"),
  8378. default: true
  8379. },
  8380. {
  8381. name: "Minimacro",
  8382. height: math.unit(20, "feet")
  8383. },
  8384. {
  8385. name: "Macro",
  8386. height: math.unit(250, "feet")
  8387. },
  8388. {
  8389. name: "Megamacro",
  8390. height: math.unit(5, "miles")
  8391. },
  8392. {
  8393. name: "Gigamacro",
  8394. height: math.unit(8000, "miles")
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(6, "feet"),
  8403. weight: math.unit(150, "lb"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/natalie-nightring/front.svg",
  8407. extra: 1,
  8408. bottom: 0.06
  8409. }
  8410. },
  8411. },
  8412. [
  8413. {
  8414. name: "Uh Oh",
  8415. height: math.unit(0.1, "mm")
  8416. },
  8417. {
  8418. name: "Small",
  8419. height: math.unit(3, "inches")
  8420. },
  8421. {
  8422. name: "Human Scale",
  8423. height: math.unit(6, "feet")
  8424. },
  8425. {
  8426. name: "Librarian",
  8427. height: math.unit(50, "feet"),
  8428. default: true
  8429. },
  8430. {
  8431. name: "Immense",
  8432. height: math.unit(200, "miles")
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(6, "feet"),
  8441. weight: math.unit(180, "lbs"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/danni-rosie/front.svg",
  8445. extra: 1260 / 1128,
  8446. bottom: 0.022
  8447. }
  8448. },
  8449. },
  8450. [
  8451. {
  8452. name: "Micro",
  8453. height: math.unit(2, "inches"),
  8454. default: true
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8460. {
  8461. front: {
  8462. height: math.unit(5 + 9 / 12, "feet"),
  8463. weight: math.unit(220, "lb"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/samantha-kruse/front.svg",
  8467. extra: (985 / 935),
  8468. bottom: 0.03
  8469. }
  8470. },
  8471. frontUndressed: {
  8472. height: math.unit(5 + 9 / 12, "feet"),
  8473. weight: math.unit(220, "lb"),
  8474. name: "Front (Undressed)",
  8475. image: {
  8476. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8477. extra: (973 / 923),
  8478. bottom: 0.025
  8479. }
  8480. },
  8481. fat: {
  8482. height: math.unit(5 + 9 / 12, "feet"),
  8483. weight: math.unit(900, "lb"),
  8484. name: "Front (Fat)",
  8485. image: {
  8486. source: "./media/characters/samantha-kruse/fat.svg",
  8487. extra: 2688 / 2561
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Normal",
  8494. height: math.unit(5 + 9 / 12, "feet"),
  8495. default: true
  8496. }
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8501. {
  8502. back: {
  8503. height: math.unit(5 + 4 / 12, "feet"),
  8504. weight: math.unit(4963, "lb"),
  8505. name: "Back",
  8506. image: {
  8507. source: "./media/characters/amelia-rosie/back.svg",
  8508. extra: 1113 / 963,
  8509. bottom: 0.01
  8510. }
  8511. },
  8512. },
  8513. [
  8514. {
  8515. name: "Level 0",
  8516. height: math.unit(5 + 4 / 12, "feet")
  8517. },
  8518. {
  8519. name: "Level 1",
  8520. height: math.unit(164597, "feet"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "Level 2",
  8525. height: math.unit(956243, "miles")
  8526. },
  8527. {
  8528. name: "Level 3",
  8529. height: math.unit(29421709423, "miles")
  8530. },
  8531. {
  8532. name: "Level 4",
  8533. height: math.unit(154, "lightyears")
  8534. },
  8535. {
  8536. name: "Level 5",
  8537. height: math.unit(4738272, "lightyears")
  8538. },
  8539. {
  8540. name: "Level 6",
  8541. height: math.unit(145787152896, "lightyears")
  8542. },
  8543. ]
  8544. ))
  8545. characterMakers.push(() => makeCharacter(
  8546. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8547. {
  8548. front: {
  8549. height: math.unit(5 + 11 / 12, "feet"),
  8550. weight: math.unit(65, "kg"),
  8551. name: "Front",
  8552. image: {
  8553. source: "./media/characters/rook-kitara/front.svg",
  8554. extra: 1347 / 1274,
  8555. bottom: 0.005
  8556. }
  8557. },
  8558. },
  8559. [
  8560. {
  8561. name: "Totally Unfair",
  8562. height: math.unit(1.8, "mm")
  8563. },
  8564. {
  8565. name: "Lap Rookie",
  8566. height: math.unit(1.4, "feet")
  8567. },
  8568. {
  8569. name: "Normal",
  8570. height: math.unit(5 + 11 / 12, "feet"),
  8571. default: true
  8572. },
  8573. {
  8574. name: "How Did This Happen",
  8575. height: math.unit(80, "miles")
  8576. }
  8577. ]
  8578. ))
  8579. characterMakers.push(() => makeCharacter(
  8580. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8581. {
  8582. front: {
  8583. height: math.unit(7, "feet"),
  8584. weight: math.unit(300, "lb"),
  8585. name: "Front",
  8586. image: {
  8587. source: "./media/characters/pisces/front.svg",
  8588. extra: 2255 / 2115,
  8589. bottom: 0.03
  8590. }
  8591. },
  8592. back: {
  8593. height: math.unit(7, "feet"),
  8594. weight: math.unit(300, "lb"),
  8595. name: "Back",
  8596. image: {
  8597. source: "./media/characters/pisces/back.svg",
  8598. extra: 2146 / 2055,
  8599. bottom: 0.04
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(7, "feet"),
  8607. default: true
  8608. },
  8609. {
  8610. name: "Swimming Pool",
  8611. height: math.unit(12.2, "meters")
  8612. },
  8613. {
  8614. name: "Olympic Swimming Pool",
  8615. height: math.unit(56.3, "meters")
  8616. },
  8617. {
  8618. name: "Lake Superior",
  8619. height: math.unit(93900, "meters")
  8620. },
  8621. {
  8622. name: "Mediterranean Sea",
  8623. height: math.unit(644457, "meters")
  8624. },
  8625. {
  8626. name: "World's Oceans",
  8627. height: math.unit(4567491, "meters")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8633. {
  8634. front: {
  8635. height: math.unit(2.3, "meters"),
  8636. weight: math.unit(120, "kg"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/zelas/front.svg"
  8640. }
  8641. },
  8642. side: {
  8643. height: math.unit(2.3, "meters"),
  8644. weight: math.unit(120, "kg"),
  8645. name: "Side",
  8646. image: {
  8647. source: "./media/characters/zelas/side.svg"
  8648. }
  8649. },
  8650. back: {
  8651. height: math.unit(2.3, "meters"),
  8652. weight: math.unit(120, "kg"),
  8653. name: "Back",
  8654. image: {
  8655. source: "./media/characters/zelas/back.svg"
  8656. }
  8657. },
  8658. foot: {
  8659. height: math.unit(1.116, "feet"),
  8660. name: "Foot",
  8661. image: {
  8662. source: "./media/characters/zelas/foot.svg"
  8663. }
  8664. },
  8665. },
  8666. [
  8667. {
  8668. name: "Normal",
  8669. height: math.unit(2.3, "meters")
  8670. },
  8671. {
  8672. name: "Macro",
  8673. height: math.unit(30, "meters"),
  8674. default: true
  8675. },
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(1, "inch"),
  8683. weight: math.unit(0.21, "grams"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/talbot/front.svg",
  8687. extra: 594 / 544
  8688. }
  8689. },
  8690. },
  8691. [
  8692. {
  8693. name: "Micro",
  8694. height: math.unit(1, "inch"),
  8695. default: true
  8696. },
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8701. {
  8702. front: {
  8703. height: math.unit(3 + 3 / 12, "feet"),
  8704. weight: math.unit(51.8, "lb"),
  8705. name: "Front",
  8706. image: {
  8707. source: "./media/characters/fliss/front.svg",
  8708. extra: 840 / 640
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Teeny Tiny",
  8715. height: math.unit(1, "mm")
  8716. },
  8717. {
  8718. name: "Small",
  8719. height: math.unit(1, "inch"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Standard Sylveon",
  8724. height: math.unit(3 + 3 / 12, "feet")
  8725. },
  8726. {
  8727. name: "Large Nuisance",
  8728. height: math.unit(33, "feet")
  8729. },
  8730. {
  8731. name: "City Filler",
  8732. height: math.unit(3000, "feet")
  8733. },
  8734. {
  8735. name: "New Horizon",
  8736. height: math.unit(6000, "miles")
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8742. {
  8743. front: {
  8744. height: math.unit(5, "cm"),
  8745. weight: math.unit(1.94, "g"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/fleta/front.svg",
  8749. extra: 835 / 803
  8750. }
  8751. },
  8752. back: {
  8753. height: math.unit(5, "cm"),
  8754. weight: math.unit(1.94, "g"),
  8755. name: "Back",
  8756. image: {
  8757. source: "./media/characters/fleta/back.svg",
  8758. extra: 835 / 803
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Micro",
  8765. height: math.unit(5, "cm"),
  8766. default: true
  8767. },
  8768. ]
  8769. ))
  8770. characterMakers.push(() => makeCharacter(
  8771. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8772. {
  8773. front: {
  8774. height: math.unit(6, "feet"),
  8775. weight: math.unit(225, "lb"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/dominic/front.svg",
  8779. extra: 1770 / 1620,
  8780. bottom: 0.025
  8781. }
  8782. },
  8783. back: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(225, "lb"),
  8786. name: "Back",
  8787. image: {
  8788. source: "./media/characters/dominic/back.svg",
  8789. extra: 1745 / 1620,
  8790. bottom: 0.065
  8791. }
  8792. },
  8793. },
  8794. [
  8795. {
  8796. name: "Nano",
  8797. height: math.unit(0.1, "mm")
  8798. },
  8799. {
  8800. name: "Micro-",
  8801. height: math.unit(1, "mm")
  8802. },
  8803. {
  8804. name: "Micro",
  8805. height: math.unit(4, "inches")
  8806. },
  8807. {
  8808. name: "Normal",
  8809. height: math.unit(6 + 4 / 12, "feet"),
  8810. default: true
  8811. },
  8812. {
  8813. name: "Macro",
  8814. height: math.unit(115, "feet")
  8815. },
  8816. {
  8817. name: "Macro+",
  8818. height: math.unit(955, "feet")
  8819. },
  8820. {
  8821. name: "Megamacro",
  8822. height: math.unit(8990, "feet")
  8823. },
  8824. {
  8825. name: "Gigmacro",
  8826. height: math.unit(9310, "miles")
  8827. },
  8828. {
  8829. name: "Teramacro",
  8830. height: math.unit(1567005010, "miles")
  8831. },
  8832. {
  8833. name: "Examacro",
  8834. height: math.unit(1425, "parsecs")
  8835. },
  8836. ]
  8837. ))
  8838. characterMakers.push(() => makeCharacter(
  8839. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8840. {
  8841. front: {
  8842. height: math.unit(400, "feet"),
  8843. weight: math.unit(44444444, "lb"),
  8844. name: "Front",
  8845. image: {
  8846. source: "./media/characters/major-colonel/front.svg"
  8847. }
  8848. },
  8849. back: {
  8850. height: math.unit(400, "feet"),
  8851. weight: math.unit(44444444, "lb"),
  8852. name: "Back",
  8853. image: {
  8854. source: "./media/characters/major-colonel/back.svg"
  8855. }
  8856. },
  8857. },
  8858. [
  8859. {
  8860. name: "Macro",
  8861. height: math.unit(400, "feet"),
  8862. default: true
  8863. },
  8864. ]
  8865. ))
  8866. characterMakers.push(() => makeCharacter(
  8867. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8868. {
  8869. catFront: {
  8870. height: math.unit(6, "feet"),
  8871. weight: math.unit(120, "lb"),
  8872. name: "Front (Cat Side)",
  8873. image: {
  8874. source: "./media/characters/axel-lycan/cat-front.svg",
  8875. extra: 430 / 402,
  8876. bottom: 43 / 472.35
  8877. }
  8878. },
  8879. catBack: {
  8880. height: math.unit(6, "feet"),
  8881. weight: math.unit(120, "lb"),
  8882. name: "Back (Cat Side)",
  8883. image: {
  8884. source: "./media/characters/axel-lycan/cat-back.svg",
  8885. extra: 447 / 419,
  8886. bottom: 23.3 / 469
  8887. }
  8888. },
  8889. wolfFront: {
  8890. height: math.unit(6, "feet"),
  8891. weight: math.unit(120, "lb"),
  8892. name: "Front (Wolf Side)",
  8893. image: {
  8894. source: "./media/characters/axel-lycan/wolf-front.svg",
  8895. extra: 485 / 456,
  8896. bottom: 19 / 504
  8897. }
  8898. },
  8899. wolfBack: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(120, "lb"),
  8902. name: "Back (Wolf Side)",
  8903. image: {
  8904. source: "./media/characters/axel-lycan/wolf-back.svg",
  8905. extra: 475 / 438,
  8906. bottom: 39.2 / 514
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Macro",
  8913. height: math.unit(1, "km"),
  8914. default: true
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(5 + 9 / 12, "feet"),
  8923. weight: math.unit(175, "lb"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/vanrel-hyena/front.svg",
  8927. extra: 1086 / 1010,
  8928. bottom: 0.04
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(5 + 9 / 12, "feet"),
  8936. default: true
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(6, "feet"),
  8945. weight: math.unit(103, "lb"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/abbott-absol/front.svg",
  8949. extra: 2010 / 1842
  8950. }
  8951. },
  8952. },
  8953. [
  8954. {
  8955. name: "Megamicro",
  8956. height: math.unit(0.1, "mm")
  8957. },
  8958. {
  8959. name: "Micro",
  8960. height: math.unit(1, "inch")
  8961. },
  8962. {
  8963. name: "Normal",
  8964. height: math.unit(6, "feet"),
  8965. default: true
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(6, "feet"),
  8974. weight: math.unit(264, "lb"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/hector/front.svg",
  8978. extra: 2280 / 2130,
  8979. bottom: 0.07
  8980. }
  8981. },
  8982. },
  8983. [
  8984. {
  8985. name: "Normal",
  8986. height: math.unit(12.25, "foot"),
  8987. default: true
  8988. },
  8989. {
  8990. name: "Macro",
  8991. height: math.unit(160, "feet")
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8997. {
  8998. front: {
  8999. height: math.unit(6, "feet"),
  9000. weight: math.unit(150, "lb"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/sal/front.svg",
  9004. extra: 1846 / 1699,
  9005. bottom: 0.04
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Megamacro",
  9012. height: math.unit(10, "miles"),
  9013. default: true
  9014. },
  9015. ]
  9016. ))
  9017. characterMakers.push(() => makeCharacter(
  9018. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9019. {
  9020. front: {
  9021. height: math.unit(3, "meters"),
  9022. weight: math.unit(450, "kg"),
  9023. name: "front",
  9024. image: {
  9025. source: "./media/characters/ranger/front.svg",
  9026. extra: 2401 / 2243,
  9027. bottom: 0.05
  9028. }
  9029. },
  9030. },
  9031. [
  9032. {
  9033. name: "Normal",
  9034. height: math.unit(3, "meters"),
  9035. default: true
  9036. },
  9037. ]
  9038. ))
  9039. characterMakers.push(() => makeCharacter(
  9040. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9041. {
  9042. front: {
  9043. height: math.unit(14, "feet"),
  9044. weight: math.unit(800, "kg"),
  9045. name: "Front",
  9046. image: {
  9047. source: "./media/characters/theresa/front.svg",
  9048. extra: 3575 / 3346,
  9049. bottom: 0.03
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(14, "feet"),
  9057. default: true
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9063. {
  9064. front: {
  9065. height: math.unit(6, "feet"),
  9066. weight: math.unit(3, "kg"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/ine/front.svg",
  9070. extra: 678 / 539,
  9071. bottom: 0.023
  9072. }
  9073. },
  9074. },
  9075. [
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(2.265, "feet"),
  9079. default: true
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(5, "feet"),
  9088. weight: math.unit(30, "kg"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/vial/front.svg",
  9092. extra: 1365 / 1277,
  9093. bottom: 0.04
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(5, "feet"),
  9101. default: true
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9107. {
  9108. side: {
  9109. height: math.unit(3.4, "meters"),
  9110. weight: math.unit(1000, "lb"),
  9111. name: "Side",
  9112. image: {
  9113. source: "./media/characters/rovoska/side.svg",
  9114. extra: 4403 / 1515
  9115. }
  9116. },
  9117. },
  9118. [
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(3.4, "meters"),
  9122. default: true
  9123. },
  9124. ]
  9125. ))
  9126. characterMakers.push(() => makeCharacter(
  9127. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9128. {
  9129. front: {
  9130. height: math.unit(8, "feet"),
  9131. weight: math.unit(315, "lb"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/gunner-rotthbauer/front.svg"
  9135. }
  9136. },
  9137. back: {
  9138. height: math.unit(8, "feet"),
  9139. weight: math.unit(315, "lb"),
  9140. name: "Back",
  9141. image: {
  9142. source: "./media/characters/gunner-rotthbauer/back.svg"
  9143. }
  9144. },
  9145. },
  9146. [
  9147. {
  9148. name: "Micro",
  9149. height: math.unit(3.5, "inches")
  9150. },
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(8, "feet"),
  9154. default: true
  9155. },
  9156. {
  9157. name: "Macro",
  9158. height: math.unit(250, "feet")
  9159. },
  9160. {
  9161. name: "Megamacro",
  9162. height: math.unit(1, "AU")
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9168. {
  9169. front: {
  9170. height: math.unit(5 + 5 / 12, "feet"),
  9171. weight: math.unit(140, "lb"),
  9172. name: "Front",
  9173. image: {
  9174. source: "./media/characters/allatia/front.svg",
  9175. extra: 1227 / 1180,
  9176. bottom: 0.027
  9177. }
  9178. },
  9179. },
  9180. [
  9181. {
  9182. name: "Normal",
  9183. height: math.unit(5 + 5 / 12, "feet")
  9184. },
  9185. {
  9186. name: "Macro",
  9187. height: math.unit(250, "feet"),
  9188. default: true
  9189. },
  9190. {
  9191. name: "Megamacro",
  9192. height: math.unit(8, "miles")
  9193. }
  9194. ]
  9195. ))
  9196. characterMakers.push(() => makeCharacter(
  9197. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9198. {
  9199. front: {
  9200. height: math.unit(6, "feet"),
  9201. weight: math.unit(120, "lb"),
  9202. name: "Front",
  9203. image: {
  9204. source: "./media/characters/tene/front.svg",
  9205. extra: 1728 / 1578,
  9206. bottom: 0.022
  9207. }
  9208. },
  9209. stomping: {
  9210. height: math.unit(2.025, "meters"),
  9211. weight: math.unit(120, "lb"),
  9212. name: "Stomping",
  9213. image: {
  9214. source: "./media/characters/tene/stomping.svg",
  9215. extra: 938 / 873,
  9216. bottom: 0.01
  9217. }
  9218. },
  9219. sitting: {
  9220. height: math.unit(1, "meter"),
  9221. weight: math.unit(120, "lb"),
  9222. name: "Sitting",
  9223. image: {
  9224. source: "./media/characters/tene/sitting.svg",
  9225. extra: 437 / 415,
  9226. bottom: 0.1
  9227. }
  9228. },
  9229. feral: {
  9230. height: math.unit(3.9, "feet"),
  9231. weight: math.unit(250, "lb"),
  9232. name: "Feral",
  9233. image: {
  9234. source: "./media/characters/tene/feral.svg",
  9235. extra: 717 / 458,
  9236. bottom: 0.179
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Normal",
  9243. height: math.unit(6, "feet")
  9244. },
  9245. {
  9246. name: "Macro",
  9247. height: math.unit(300, "feet"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Megamacro",
  9252. height: math.unit(5, "miles")
  9253. },
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9258. {
  9259. side: {
  9260. height: math.unit(6, "feet"),
  9261. name: "Side",
  9262. image: {
  9263. source: "./media/characters/evander/side.svg",
  9264. extra: 877 / 477
  9265. }
  9266. },
  9267. },
  9268. [
  9269. {
  9270. name: "Normal",
  9271. height: math.unit(0.83, "meters"),
  9272. default: true
  9273. },
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(12, "feet"),
  9281. weight: math.unit(1000, "lb"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9285. extra: 1762 / 1611
  9286. }
  9287. },
  9288. back: {
  9289. height: math.unit(12, "feet"),
  9290. weight: math.unit(1000, "lb"),
  9291. name: "Back",
  9292. image: {
  9293. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9294. extra: 1762 / 1611
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(12, "feet"),
  9302. default: true
  9303. },
  9304. {
  9305. name: "Kaiju",
  9306. height: math.unit(150, "feet")
  9307. },
  9308. ]
  9309. ))
  9310. characterMakers.push(() => makeCharacter(
  9311. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9312. {
  9313. front: {
  9314. height: math.unit(6, "feet"),
  9315. weight: math.unit(150, "lb"),
  9316. name: "Front",
  9317. image: {
  9318. source: "./media/characters/zero-alurus/front.svg"
  9319. }
  9320. },
  9321. back: {
  9322. height: math.unit(6, "feet"),
  9323. weight: math.unit(150, "lb"),
  9324. name: "Back",
  9325. image: {
  9326. source: "./media/characters/zero-alurus/back.svg"
  9327. }
  9328. },
  9329. },
  9330. [
  9331. {
  9332. name: "Normal",
  9333. height: math.unit(5 + 10 / 12, "feet")
  9334. },
  9335. {
  9336. name: "Macro",
  9337. height: math.unit(60, "feet"),
  9338. default: true
  9339. },
  9340. {
  9341. name: "Macro+",
  9342. height: math.unit(450, "feet")
  9343. },
  9344. ]
  9345. ))
  9346. characterMakers.push(() => makeCharacter(
  9347. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9348. {
  9349. front: {
  9350. height: math.unit(6, "feet"),
  9351. weight: math.unit(200, "lb"),
  9352. name: "Front",
  9353. image: {
  9354. source: "./media/characters/mega-shi/front.svg",
  9355. extra: 1279 / 1250,
  9356. bottom: 0.02
  9357. }
  9358. },
  9359. back: {
  9360. height: math.unit(6, "feet"),
  9361. weight: math.unit(200, "lb"),
  9362. name: "Back",
  9363. image: {
  9364. source: "./media/characters/mega-shi/back.svg",
  9365. extra: 1279 / 1250,
  9366. bottom: 0.02
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Micro",
  9373. height: math.unit(16 + 6 / 12, "feet")
  9374. },
  9375. {
  9376. name: "Third Dimension",
  9377. height: math.unit(40, "meters")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(660, "feet"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Megamacro",
  9386. height: math.unit(10, "miles")
  9387. },
  9388. {
  9389. name: "Planetary Launch",
  9390. height: math.unit(500, "miles")
  9391. },
  9392. {
  9393. name: "Interstellar",
  9394. height: math.unit(1e9, "miles")
  9395. },
  9396. {
  9397. name: "Leaving the Universe",
  9398. height: math.unit(1, "gigaparsec")
  9399. },
  9400. {
  9401. name: "Travelling Universes",
  9402. height: math.unit(30e15, "parsecs")
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(150, "lb"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/odyssey/front.svg",
  9415. extra: 1782 / 1582,
  9416. bottom: 0.01
  9417. }
  9418. },
  9419. side: {
  9420. height: math.unit(5.7, "feet"),
  9421. weight: math.unit(140, "lb"),
  9422. name: "Side",
  9423. image: {
  9424. source: "./media/characters/odyssey/side.svg",
  9425. extra: 6462 / 5700
  9426. }
  9427. },
  9428. },
  9429. [
  9430. {
  9431. name: "Normal",
  9432. height: math.unit(5 + 4 / 12, "feet")
  9433. },
  9434. {
  9435. name: "Macro",
  9436. height: math.unit(1, "km")
  9437. },
  9438. {
  9439. name: "Megamacro",
  9440. height: math.unit(3000, "km")
  9441. },
  9442. {
  9443. name: "Gigamacro",
  9444. height: math.unit(1, "AU"),
  9445. default: true
  9446. },
  9447. {
  9448. name: "Omniversal",
  9449. height: math.unit(100e14, "lightyears")
  9450. },
  9451. ]
  9452. ))
  9453. characterMakers.push(() => makeCharacter(
  9454. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9455. {
  9456. front: {
  9457. height: math.unit(6, "feet"),
  9458. weight: math.unit(300, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/mekuto/front.svg",
  9462. extra: 921 / 832,
  9463. bottom: 0.03
  9464. }
  9465. },
  9466. hand: {
  9467. height: math.unit(6 / 10.24, "feet"),
  9468. name: "Hand",
  9469. image: {
  9470. source: "./media/characters/mekuto/hand.svg"
  9471. }
  9472. },
  9473. foot: {
  9474. height: math.unit(6 / 5.05, "feet"),
  9475. name: "Foot",
  9476. image: {
  9477. source: "./media/characters/mekuto/foot.svg"
  9478. }
  9479. },
  9480. },
  9481. [
  9482. {
  9483. name: "Minimicro",
  9484. height: math.unit(0.2, "inches")
  9485. },
  9486. {
  9487. name: "Micro",
  9488. height: math.unit(1.5, "inches")
  9489. },
  9490. {
  9491. name: "Normal",
  9492. height: math.unit(5 + 11 / 12, "feet"),
  9493. default: true
  9494. },
  9495. {
  9496. name: "Minimacro",
  9497. height: math.unit(17 + 9 / 12, "feet")
  9498. },
  9499. {
  9500. name: "Macro",
  9501. height: math.unit(177.5, "feet")
  9502. },
  9503. {
  9504. name: "Megamacro",
  9505. height: math.unit(152, "miles")
  9506. },
  9507. ]
  9508. ))
  9509. characterMakers.push(() => makeCharacter(
  9510. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9511. {
  9512. front: {
  9513. height: math.unit(6.5, "inches"),
  9514. weight: math.unit(13, "oz"),
  9515. name: "Front",
  9516. image: {
  9517. source: "./media/characters/dafydd-tomos/front.svg",
  9518. extra: 2990 / 2603,
  9519. bottom: 0.03
  9520. }
  9521. },
  9522. },
  9523. [
  9524. {
  9525. name: "Micro",
  9526. height: math.unit(6.5, "inches"),
  9527. default: true
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(6, "feet"),
  9536. weight: math.unit(150, "lb"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/splinter/front.svg",
  9540. extra: 2990 / 2882,
  9541. bottom: 0.04
  9542. }
  9543. },
  9544. back: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(150, "lb"),
  9547. name: "Back",
  9548. image: {
  9549. source: "./media/characters/splinter/back.svg",
  9550. extra: 2990 / 2882,
  9551. bottom: 0.04
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(6, "feet")
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(230, "meters"),
  9563. default: true
  9564. },
  9565. ]
  9566. ))
  9567. characterMakers.push(() => makeCharacter(
  9568. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9569. {
  9570. front: {
  9571. height: math.unit(4 + 10 / 12, "feet"),
  9572. weight: math.unit(480, "lb"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/snow-gabumon/front.svg",
  9576. extra: 1140 / 963,
  9577. bottom: 0.058
  9578. }
  9579. },
  9580. back: {
  9581. height: math.unit(4 + 10 / 12, "feet"),
  9582. weight: math.unit(480, "lb"),
  9583. name: "Back",
  9584. image: {
  9585. source: "./media/characters/snow-gabumon/back.svg",
  9586. extra: 1115 / 962,
  9587. bottom: 0.041
  9588. }
  9589. },
  9590. frontUndresed: {
  9591. height: math.unit(4 + 10 / 12, "feet"),
  9592. weight: math.unit(480, "lb"),
  9593. name: "Front (Undressed)",
  9594. image: {
  9595. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9596. extra: 1061 / 960,
  9597. bottom: 0.045
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Micro",
  9604. height: math.unit(1, "inch")
  9605. },
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(4 + 10 / 12, "feet"),
  9609. default: true
  9610. },
  9611. {
  9612. name: "Macro",
  9613. height: math.unit(200, "feet")
  9614. },
  9615. {
  9616. name: "Megamacro",
  9617. height: math.unit(120, "miles")
  9618. },
  9619. {
  9620. name: "Gigamacro",
  9621. height: math.unit(9800, "miles")
  9622. },
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(1.7, "meters"),
  9630. weight: math.unit(140, "lb"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/moody/front.svg",
  9634. extra: 3226 / 3007,
  9635. bottom: 0.087
  9636. }
  9637. },
  9638. },
  9639. [
  9640. {
  9641. name: "Micro",
  9642. height: math.unit(1, "mm")
  9643. },
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(1.7, "meters"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Macro",
  9651. height: math.unit(80, "meters")
  9652. },
  9653. {
  9654. name: "Macro+",
  9655. height: math.unit(500, "meters")
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9661. {
  9662. front: {
  9663. height: math.unit(6, "feet"),
  9664. weight: math.unit(150, "lb"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/zyas/front.svg",
  9668. extra: 1180 / 1120,
  9669. bottom: 0.045
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Normal",
  9676. height: math.unit(10, "feet"),
  9677. default: true
  9678. },
  9679. {
  9680. name: "Macro",
  9681. height: math.unit(500, "feet")
  9682. },
  9683. {
  9684. name: "Megamacro",
  9685. height: math.unit(5, "miles")
  9686. },
  9687. {
  9688. name: "Teramacro",
  9689. height: math.unit(150000, "miles")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(150, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/cuon/front.svg",
  9702. extra: 1390 / 1320,
  9703. bottom: 0.008
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Micro",
  9710. height: math.unit(3, "inches")
  9711. },
  9712. {
  9713. name: "Normal",
  9714. height: math.unit(18 + 9 / 12, "feet"),
  9715. default: true
  9716. },
  9717. {
  9718. name: "Macro",
  9719. height: math.unit(360, "feet")
  9720. },
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(360, "miles")
  9724. },
  9725. ]
  9726. ))
  9727. characterMakers.push(() => makeCharacter(
  9728. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9729. {
  9730. front: {
  9731. height: math.unit(2.4, "meters"),
  9732. weight: math.unit(70, "kg"),
  9733. name: "Front",
  9734. image: {
  9735. source: "./media/characters/nyanuxk/front.svg",
  9736. extra: 1172 / 1084,
  9737. bottom: 0.065
  9738. }
  9739. },
  9740. side: {
  9741. height: math.unit(2.4, "meters"),
  9742. weight: math.unit(70, "kg"),
  9743. name: "Side",
  9744. image: {
  9745. source: "./media/characters/nyanuxk/side.svg",
  9746. extra: 1190 / 1132,
  9747. bottom: 0.007
  9748. }
  9749. },
  9750. back: {
  9751. height: math.unit(2.4, "meters"),
  9752. weight: math.unit(70, "kg"),
  9753. name: "Back",
  9754. image: {
  9755. source: "./media/characters/nyanuxk/back.svg",
  9756. extra: 1200 / 1141,
  9757. bottom: 0.015
  9758. }
  9759. },
  9760. foot: {
  9761. height: math.unit(0.52, "meters"),
  9762. name: "Foot",
  9763. image: {
  9764. source: "./media/characters/nyanuxk/foot.svg"
  9765. }
  9766. },
  9767. },
  9768. [
  9769. {
  9770. name: "Micro",
  9771. height: math.unit(2, "cm")
  9772. },
  9773. {
  9774. name: "Normal",
  9775. height: math.unit(2.4, "meters"),
  9776. default: true
  9777. },
  9778. {
  9779. name: "Smaller Macro",
  9780. height: math.unit(120, "meters")
  9781. },
  9782. {
  9783. name: "Bigger Macro",
  9784. height: math.unit(1.2, "km")
  9785. },
  9786. {
  9787. name: "Megamacro",
  9788. height: math.unit(15, "kilometers")
  9789. },
  9790. {
  9791. name: "Gigamacro",
  9792. height: math.unit(2000, "km")
  9793. },
  9794. {
  9795. name: "Teramacro",
  9796. height: math.unit(500000, "km")
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9802. {
  9803. side: {
  9804. height: math.unit(6, "feet"),
  9805. name: "Side",
  9806. image: {
  9807. source: "./media/characters/ailbhe/side.svg",
  9808. extra: 757 / 464,
  9809. bottom: 0.041
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(1.07, "meters"),
  9817. default: true
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9823. {
  9824. front: {
  9825. height: math.unit(6, "feet"),
  9826. weight: math.unit(120, "kg"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/zevulfius/front.svg",
  9830. extra: 965 / 903
  9831. }
  9832. },
  9833. side: {
  9834. height: math.unit(6, "feet"),
  9835. weight: math.unit(120, "kg"),
  9836. name: "Side",
  9837. image: {
  9838. source: "./media/characters/zevulfius/side.svg",
  9839. extra: 939 / 900
  9840. }
  9841. },
  9842. back: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(120, "kg"),
  9845. name: "Back",
  9846. image: {
  9847. source: "./media/characters/zevulfius/back.svg",
  9848. extra: 918 / 854,
  9849. bottom: 0.005
  9850. }
  9851. },
  9852. foot: {
  9853. height: math.unit(6 / 3.72, "feet"),
  9854. name: "Foot",
  9855. image: {
  9856. source: "./media/characters/zevulfius/foot.svg"
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Macro",
  9863. height: math.unit(750, "meters")
  9864. },
  9865. {
  9866. name: "Megamacro",
  9867. height: math.unit(20, "km"),
  9868. default: true
  9869. },
  9870. {
  9871. name: "Gigamacro",
  9872. height: math.unit(2000, "km")
  9873. },
  9874. {
  9875. name: "Teramacro",
  9876. height: math.unit(250000, "km")
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9882. {
  9883. front: {
  9884. height: math.unit(100, "feet"),
  9885. weight: math.unit(350, "kg"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/rikes/front.svg",
  9889. extra: 1565 / 1483,
  9890. bottom: 0.017
  9891. }
  9892. },
  9893. },
  9894. [
  9895. {
  9896. name: "Macro",
  9897. height: math.unit(100, "feet"),
  9898. default: true
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9904. {
  9905. anthro: {
  9906. height: math.unit(8, "feet"),
  9907. weight: math.unit(120, "kg"),
  9908. name: "Anthro",
  9909. image: {
  9910. source: "./media/characters/adam-silver-mane/anthro.svg",
  9911. extra: 5743 / 5339,
  9912. bottom: 0.07
  9913. }
  9914. },
  9915. taur: {
  9916. height: math.unit(16, "feet"),
  9917. weight: math.unit(1500, "kg"),
  9918. name: "Taur",
  9919. image: {
  9920. source: "./media/characters/adam-silver-mane/taur.svg",
  9921. extra: 1713 / 1571,
  9922. bottom: 0.01
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Normal",
  9929. height: math.unit(8, "feet")
  9930. },
  9931. {
  9932. name: "Minimacro",
  9933. height: math.unit(80, "feet")
  9934. },
  9935. {
  9936. name: "Macro",
  9937. height: math.unit(800, "feet"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Megamacro",
  9942. height: math.unit(8000, "feet")
  9943. },
  9944. {
  9945. name: "Gigamacro",
  9946. height: math.unit(800, "miles")
  9947. },
  9948. {
  9949. name: "Teramacro",
  9950. height: math.unit(80000, "miles")
  9951. },
  9952. {
  9953. name: "Celestial",
  9954. height: math.unit(8e6, "miles")
  9955. },
  9956. {
  9957. name: "Star Dragon",
  9958. height: math.unit(800000, "parsecs")
  9959. },
  9960. {
  9961. name: "Godly",
  9962. height: math.unit(800, "teraparsecs")
  9963. },
  9964. ]
  9965. ))
  9966. characterMakers.push(() => makeCharacter(
  9967. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9968. {
  9969. front: {
  9970. height: math.unit(6, "feet"),
  9971. weight: math.unit(150, "lb"),
  9972. name: "Front",
  9973. image: {
  9974. source: "./media/characters/ky'owin/front.svg",
  9975. extra: 3888 / 3068,
  9976. bottom: 0.015
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(6 + 8 / 12, "feet")
  9984. },
  9985. {
  9986. name: "Large",
  9987. height: math.unit(68, "feet")
  9988. },
  9989. {
  9990. name: "Macro",
  9991. height: math.unit(132, "feet")
  9992. },
  9993. {
  9994. name: "Macro+",
  9995. height: math.unit(340, "feet")
  9996. },
  9997. {
  9998. name: "Macro++",
  9999. height: math.unit(680, "feet"),
  10000. default: true
  10001. },
  10002. {
  10003. name: "Megamacro",
  10004. height: math.unit(1, "mile")
  10005. },
  10006. {
  10007. name: "Megamacro+",
  10008. height: math.unit(10, "miles")
  10009. },
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10014. {
  10015. front: {
  10016. height: math.unit(4, "feet"),
  10017. weight: math.unit(50, "lb"),
  10018. name: "Front",
  10019. image: {
  10020. source: "./media/characters/mal/front.svg",
  10021. extra: 785 / 724,
  10022. bottom: 0.07
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Micro",
  10029. height: math.unit(4, "inches")
  10030. },
  10031. {
  10032. name: "Normal",
  10033. height: math.unit(4, "feet"),
  10034. default: true
  10035. },
  10036. {
  10037. name: "Macro",
  10038. height: math.unit(200, "feet")
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10044. {
  10045. front: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(150, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/jordan-deware/front.svg",
  10051. extra: 1191 / 1012
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Nano",
  10058. height: math.unit(0.01, "mm")
  10059. },
  10060. {
  10061. name: "Minimicro",
  10062. height: math.unit(1, "mm")
  10063. },
  10064. {
  10065. name: "Micro",
  10066. height: math.unit(0.5, "inches")
  10067. },
  10068. {
  10069. name: "Normal",
  10070. height: math.unit(4, "feet"),
  10071. default: true
  10072. },
  10073. {
  10074. name: "Minimacro",
  10075. height: math.unit(40, "meters")
  10076. },
  10077. {
  10078. name: "Small Macro",
  10079. height: math.unit(400, "meters")
  10080. },
  10081. {
  10082. name: "Macro",
  10083. height: math.unit(4, "miles")
  10084. },
  10085. {
  10086. name: "Megamacro",
  10087. height: math.unit(40, "miles")
  10088. },
  10089. {
  10090. name: "Megamacro+",
  10091. height: math.unit(400, "miles")
  10092. },
  10093. {
  10094. name: "Gigamacro",
  10095. height: math.unit(400000, "miles")
  10096. },
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10101. {
  10102. side: {
  10103. height: math.unit(6, "feet"),
  10104. weight: math.unit(150, "lb"),
  10105. name: "Side",
  10106. image: {
  10107. source: "./media/characters/kimiko/side.svg",
  10108. extra: 600 / 358
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Normal",
  10115. height: math.unit(15, "feet"),
  10116. default: true
  10117. },
  10118. {
  10119. name: "Macro",
  10120. height: math.unit(220, "feet")
  10121. },
  10122. {
  10123. name: "Macro+",
  10124. height: math.unit(1450, "feet")
  10125. },
  10126. {
  10127. name: "Megamacro",
  10128. height: math.unit(11500, "feet")
  10129. },
  10130. {
  10131. name: "Gigamacro",
  10132. height: math.unit(9500, "miles")
  10133. },
  10134. {
  10135. name: "Teramacro",
  10136. height: math.unit(2208005005, "miles")
  10137. },
  10138. {
  10139. name: "Examacro",
  10140. height: math.unit(2750, "parsecs")
  10141. },
  10142. {
  10143. name: "Zettamacro",
  10144. height: math.unit(101500, "parsecs")
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10150. {
  10151. front: {
  10152. height: math.unit(6, "feet"),
  10153. weight: math.unit(70, "kg"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/andrew-sleepy/front.svg"
  10157. }
  10158. },
  10159. side: {
  10160. height: math.unit(6, "feet"),
  10161. weight: math.unit(70, "kg"),
  10162. name: "Side",
  10163. image: {
  10164. source: "./media/characters/andrew-sleepy/side.svg"
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Micro",
  10171. height: math.unit(1, "mm"),
  10172. default: true
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(150, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/judio/front.svg",
  10185. extra: 1258 / 1110
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(5 + 6 / 12, "feet")
  10193. },
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(1000, "feet"),
  10197. default: true
  10198. },
  10199. {
  10200. name: "Megamacro",
  10201. height: math.unit(10, "miles")
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(6, "feet"),
  10210. weight: math.unit(68, "kg"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/nomaxice/front.svg",
  10214. extra: 1498 / 1073,
  10215. bottom: 0.075
  10216. }
  10217. },
  10218. foot: {
  10219. height: math.unit(1.1, "feet"),
  10220. name: "Foot",
  10221. image: {
  10222. source: "./media/characters/nomaxice/foot.svg"
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Micro",
  10229. height: math.unit(8, "cm")
  10230. },
  10231. {
  10232. name: "Norm",
  10233. height: math.unit(1.82, "m")
  10234. },
  10235. {
  10236. name: "Norm+",
  10237. height: math.unit(8.8, "feet")
  10238. },
  10239. {
  10240. name: "Big",
  10241. height: math.unit(8, "meters"),
  10242. default: true
  10243. },
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(18, "meters")
  10247. },
  10248. {
  10249. name: "Macro+",
  10250. height: math.unit(88, "meters")
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(12, "feet"),
  10259. weight: math.unit(1.5, "tons"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/dydros/front.svg",
  10263. extra: 863 / 800,
  10264. bottom: 0.015
  10265. }
  10266. },
  10267. back: {
  10268. height: math.unit(12, "feet"),
  10269. weight: math.unit(1.5, "tons"),
  10270. name: "Back",
  10271. image: {
  10272. source: "./media/characters/dydros/back.svg",
  10273. extra: 900 / 843,
  10274. bottom: 0.005
  10275. }
  10276. },
  10277. },
  10278. [
  10279. {
  10280. name: "Normal",
  10281. height: math.unit(12, "feet"),
  10282. default: true
  10283. },
  10284. ]
  10285. ))
  10286. characterMakers.push(() => makeCharacter(
  10287. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10288. {
  10289. front: {
  10290. height: math.unit(6, "feet"),
  10291. weight: math.unit(100, "kg"),
  10292. name: "Front",
  10293. image: {
  10294. source: "./media/characters/riggi/front.svg",
  10295. extra: 5787 / 5303
  10296. }
  10297. },
  10298. hyper: {
  10299. height: math.unit(6 * 5 / 3, "feet"),
  10300. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10301. name: "Hyper",
  10302. image: {
  10303. source: "./media/characters/riggi/hyper.svg",
  10304. extra: 3595 / 3485
  10305. }
  10306. },
  10307. },
  10308. [
  10309. {
  10310. name: "Small Macro",
  10311. height: math.unit(50, "feet")
  10312. },
  10313. {
  10314. name: "Default",
  10315. height: math.unit(200, "feet"),
  10316. default: true
  10317. },
  10318. {
  10319. name: "Loom",
  10320. height: math.unit(10000, "feet")
  10321. },
  10322. {
  10323. name: "Cruising Altitude",
  10324. height: math.unit(30000, "feet")
  10325. },
  10326. {
  10327. name: "Megamacro",
  10328. height: math.unit(100, "miles")
  10329. },
  10330. {
  10331. name: "Continent Sized",
  10332. height: math.unit(2800, "miles")
  10333. },
  10334. {
  10335. name: "Earth Sized",
  10336. height: math.unit(8000, "miles")
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(250, "lb"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/alexi/front.svg",
  10349. extra: 3483 / 3291,
  10350. bottom: 0.04
  10351. }
  10352. },
  10353. back: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(250, "lb"),
  10356. name: "Back",
  10357. image: {
  10358. source: "./media/characters/alexi/back.svg",
  10359. extra: 3533 / 3356,
  10360. bottom: 0.021
  10361. }
  10362. },
  10363. frontTransforming: {
  10364. height: math.unit(8.58, "feet"),
  10365. weight: math.unit(1300, "lb"),
  10366. name: "Transforming",
  10367. image: {
  10368. source: "./media/characters/alexi/front-transforming.svg",
  10369. extra: 437 / 409,
  10370. bottom: 19 / 458.66
  10371. }
  10372. },
  10373. frontTransformed: {
  10374. height: math.unit(12.5, "feet"),
  10375. weight: math.unit(4000, "lb"),
  10376. name: "Transformed",
  10377. image: {
  10378. source: "./media/characters/alexi/front-transformed.svg",
  10379. extra: 639 / 614,
  10380. bottom: 30.55 / 671
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Normal",
  10387. height: math.unit(14, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Minimacro",
  10392. height: math.unit(30, "meters")
  10393. },
  10394. {
  10395. name: "Macro",
  10396. height: math.unit(500, "meters")
  10397. },
  10398. {
  10399. name: "Megamacro",
  10400. height: math.unit(9000, "km")
  10401. },
  10402. {
  10403. name: "Teramacro",
  10404. height: math.unit(384000, "km")
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(6, "feet"),
  10413. weight: math.unit(150, "lb"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/kayroo/front.svg",
  10417. extra: 1153 / 1038,
  10418. bottom: 0.06
  10419. }
  10420. },
  10421. foot: {
  10422. height: math.unit(6, "feet"),
  10423. weight: math.unit(150, "lb"),
  10424. name: "Foot",
  10425. image: {
  10426. source: "./media/characters/kayroo/foot.svg"
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(8, "feet"),
  10434. default: true
  10435. },
  10436. {
  10437. name: "Minimacro",
  10438. height: math.unit(250, "feet")
  10439. },
  10440. {
  10441. name: "Macro",
  10442. height: math.unit(2800, "feet")
  10443. },
  10444. {
  10445. name: "Megamacro",
  10446. height: math.unit(5200, "feet")
  10447. },
  10448. {
  10449. name: "Gigamacro",
  10450. height: math.unit(27000, "feet")
  10451. },
  10452. {
  10453. name: "Omega",
  10454. height: math.unit(45000, "feet")
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(18, "feet"),
  10463. weight: math.unit(5800, "lb"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/rhys/front.svg",
  10467. extra: 3386 / 3090,
  10468. bottom: 0.07
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Normal",
  10475. height: math.unit(18, "feet"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Working Size",
  10480. height: math.unit(200, "feet")
  10481. },
  10482. {
  10483. name: "Demolition Size",
  10484. height: math.unit(2000, "feet")
  10485. },
  10486. {
  10487. name: "Maximum Licensed Size",
  10488. height: math.unit(5, "miles")
  10489. },
  10490. {
  10491. name: "Maximum Observed Size",
  10492. height: math.unit(10, "yottameters")
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10498. {
  10499. front: {
  10500. height: math.unit(6, "feet"),
  10501. weight: math.unit(250, "lb"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/toto/front.svg",
  10505. extra: 527 / 479,
  10506. bottom: 0.05
  10507. }
  10508. },
  10509. },
  10510. [
  10511. {
  10512. name: "Micro",
  10513. height: math.unit(3, "feet")
  10514. },
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(10, "feet")
  10518. },
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(150, "feet"),
  10522. default: true
  10523. },
  10524. {
  10525. name: "Megamacro",
  10526. height: math.unit(1200, "feet")
  10527. },
  10528. ]
  10529. ))
  10530. characterMakers.push(() => makeCharacter(
  10531. { name: "King", species: ["lion"], tags: ["anthro"] },
  10532. {
  10533. back: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(150, "lb"),
  10536. name: "Back",
  10537. image: {
  10538. source: "./media/characters/king/back.svg"
  10539. }
  10540. },
  10541. },
  10542. [
  10543. {
  10544. name: "Micro",
  10545. height: math.unit(2, "inches")
  10546. },
  10547. {
  10548. name: "Normal",
  10549. height: math.unit(8, "feet")
  10550. },
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(200, "feet"),
  10554. default: true
  10555. },
  10556. {
  10557. name: "Megamacro",
  10558. height: math.unit(50, "miles")
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10564. {
  10565. anthro: {
  10566. height: math.unit(6 + 5 / 12, "feet"),
  10567. weight: math.unit(280, "lb"),
  10568. name: "Anthro",
  10569. image: {
  10570. source: "./media/characters/cordite/anthro.svg",
  10571. extra: 1986 / 1905,
  10572. bottom: 0.025
  10573. }
  10574. },
  10575. feral: {
  10576. height: math.unit(2, "feet"),
  10577. weight: math.unit(90, "lb"),
  10578. name: "Feral",
  10579. image: {
  10580. source: "./media/characters/cordite/feral.svg",
  10581. extra: 1260 / 755,
  10582. bottom: 0.05
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(6 + 5 / 12, "feet"),
  10590. default: true
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(6, "feet"),
  10599. weight: math.unit(150, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/pianostrong/front.svg",
  10603. extra: 6577 / 6254,
  10604. bottom: 0.02
  10605. }
  10606. },
  10607. side: {
  10608. height: math.unit(6, "feet"),
  10609. weight: math.unit(150, "lb"),
  10610. name: "Side",
  10611. image: {
  10612. source: "./media/characters/pianostrong/side.svg",
  10613. extra: 6106 / 5730
  10614. }
  10615. },
  10616. back: {
  10617. height: math.unit(6, "feet"),
  10618. weight: math.unit(150, "lb"),
  10619. name: "Back",
  10620. image: {
  10621. source: "./media/characters/pianostrong/back.svg",
  10622. extra: 6085 / 5733,
  10623. bottom: 0.01
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Macro",
  10630. height: math.unit(100, "feet")
  10631. },
  10632. {
  10633. name: "Macro+",
  10634. height: math.unit(300, "feet"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Macro++",
  10639. height: math.unit(1000, "feet")
  10640. },
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10645. {
  10646. front: {
  10647. height: math.unit(6, "feet"),
  10648. weight: math.unit(150, "lb"),
  10649. name: "Front",
  10650. image: {
  10651. source: "./media/characters/kona/front.svg",
  10652. extra: 2960 / 2629,
  10653. bottom: 0.005
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Normal",
  10660. height: math.unit(11 + 8 / 12, "feet")
  10661. },
  10662. {
  10663. name: "Macro",
  10664. height: math.unit(850, "feet"),
  10665. default: true
  10666. },
  10667. {
  10668. name: "Macro+",
  10669. height: math.unit(1.5, "km"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Megamacro",
  10674. height: math.unit(80, "miles")
  10675. },
  10676. {
  10677. name: "Gigamacro",
  10678. height: math.unit(3500, "miles")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10684. {
  10685. side: {
  10686. height: math.unit(1.9, "meters"),
  10687. weight: math.unit(326, "kg"),
  10688. name: "Side",
  10689. image: {
  10690. source: "./media/characters/levi/side.svg",
  10691. extra: 1704 / 1334,
  10692. bottom: 0.02
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(1.9, "meters"),
  10700. default: true
  10701. },
  10702. {
  10703. name: "Macro",
  10704. height: math.unit(20, "meters")
  10705. },
  10706. {
  10707. name: "Macro+",
  10708. height: math.unit(200, "meters")
  10709. },
  10710. {
  10711. name: "Megamacro",
  10712. height: math.unit(2, "km")
  10713. },
  10714. {
  10715. name: "Megamacro+",
  10716. height: math.unit(20, "km")
  10717. },
  10718. {
  10719. name: "Gigamacro",
  10720. height: math.unit(2500, "km")
  10721. },
  10722. {
  10723. name: "Gigamacro+",
  10724. height: math.unit(120000, "km")
  10725. },
  10726. {
  10727. name: "Teramacro",
  10728. height: math.unit(7.77e6, "km")
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10734. {
  10735. front: {
  10736. height: math.unit(6 + 4 / 12, "feet"),
  10737. weight: math.unit(188, "lb"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/bmc/front.svg",
  10741. extra: 1067 / 1022,
  10742. bottom: 0.047
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Human-sized",
  10749. height: math.unit(6 + 4 / 12, "feet")
  10750. },
  10751. {
  10752. name: "Small",
  10753. height: math.unit(250, "feet")
  10754. },
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(1250, "feet"),
  10758. default: true
  10759. },
  10760. {
  10761. name: "Good Day",
  10762. height: math.unit(88, "miles")
  10763. },
  10764. {
  10765. name: "Largest Measured Size",
  10766. height: math.unit(11.2e6, "lightyears")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(20, "feet"),
  10775. weight: math.unit(2016, "kg"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/sven-the-kaiju/front.svg",
  10779. extra: 1479 / 1449,
  10780. bottom: 0.05
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Fairy",
  10787. height: math.unit(6, "inches")
  10788. },
  10789. {
  10790. name: "Normal",
  10791. height: math.unit(20, "feet"),
  10792. default: true
  10793. },
  10794. {
  10795. name: "Rampage",
  10796. height: math.unit(200, "feet")
  10797. },
  10798. {
  10799. name: "Archfey Forest Guardian",
  10800. height: math.unit(1, "mile")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(4, "meters"),
  10809. weight: math.unit(2, "tons"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/marik/front.svg",
  10813. extra: 1057 / 1003,
  10814. bottom: 0.08
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(4, "meters"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(20, "meters")
  10827. },
  10828. {
  10829. name: "Megamacro",
  10830. height: math.unit(50, "km")
  10831. },
  10832. {
  10833. name: "Gigamacro",
  10834. height: math.unit(100, "km")
  10835. },
  10836. {
  10837. name: "Alpha Macro",
  10838. height: math.unit(7.88e7, "yottameters")
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10844. {
  10845. front: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(110, "lb"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/mel/front.svg",
  10851. extra: 736 / 617,
  10852. bottom: 0.017
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Pico",
  10859. height: math.unit(3, "pm")
  10860. },
  10861. {
  10862. name: "Nano",
  10863. height: math.unit(3, "nm")
  10864. },
  10865. {
  10866. name: "Micro",
  10867. height: math.unit(0.3, "mm"),
  10868. default: true
  10869. },
  10870. {
  10871. name: "Micro+",
  10872. height: math.unit(3, "mm")
  10873. },
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(5 + 10.5 / 12, "feet")
  10877. },
  10878. ]
  10879. ))
  10880. characterMakers.push(() => makeCharacter(
  10881. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10882. {
  10883. kaiju: {
  10884. height: math.unit(1.75, "meters"),
  10885. weight: math.unit(55, "kg"),
  10886. name: "Kaiju",
  10887. image: {
  10888. source: "./media/characters/lykonous/kaiju.svg",
  10889. extra: 1055 / 946,
  10890. bottom: 0.135
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Normal",
  10897. height: math.unit(2.5, "meters"),
  10898. default: true
  10899. },
  10900. {
  10901. name: "Kaiju Dragon",
  10902. height: math.unit(60, "meters")
  10903. },
  10904. {
  10905. name: "Mega Kaiju",
  10906. height: math.unit(120, "km")
  10907. },
  10908. {
  10909. name: "Giga Kaiju",
  10910. height: math.unit(200, "megameters")
  10911. },
  10912. {
  10913. name: "Terra Kaiju",
  10914. height: math.unit(400, "gigameters")
  10915. },
  10916. {
  10917. name: "Kaiju Dragon God",
  10918. height: math.unit(13000, "exaparsecs")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(150, "lb"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/blü/front.svg",
  10931. extra: 1883 / 1564,
  10932. bottom: 0.031
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Normal",
  10939. height: math.unit(13, "feet"),
  10940. default: true
  10941. },
  10942. {
  10943. name: "Big Boi",
  10944. height: math.unit(150, "meters")
  10945. },
  10946. {
  10947. name: "Mini Stomper",
  10948. height: math.unit(300, "meters")
  10949. },
  10950. {
  10951. name: "Macro",
  10952. height: math.unit(1000, "meters")
  10953. },
  10954. {
  10955. name: "Megamacro",
  10956. height: math.unit(11000, "meters")
  10957. },
  10958. {
  10959. name: "Gigamacro",
  10960. height: math.unit(11000, "km")
  10961. },
  10962. {
  10963. name: "Teramacro",
  10964. height: math.unit(420000, "km")
  10965. },
  10966. {
  10967. name: "Examacro",
  10968. height: math.unit(120, "parsecs")
  10969. },
  10970. {
  10971. name: "God Tho",
  10972. height: math.unit(98000000000, "parsecs")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10978. {
  10979. taurFront: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(200, "lb"),
  10982. name: "Taur (Front)",
  10983. image: {
  10984. source: "./media/characters/scales/taur-front.svg",
  10985. extra: 1,
  10986. bottom: 0.05
  10987. }
  10988. },
  10989. taurBack: {
  10990. height: math.unit(6, "feet"),
  10991. weight: math.unit(200, "lb"),
  10992. name: "Taur (Back)",
  10993. image: {
  10994. source: "./media/characters/scales/taur-back.svg",
  10995. extra: 1,
  10996. bottom: 0.08
  10997. }
  10998. },
  10999. anthro: {
  11000. height: math.unit(6 * 7 / 12, "feet"),
  11001. weight: math.unit(100, "lb"),
  11002. name: "Anthro",
  11003. image: {
  11004. source: "./media/characters/scales/anthro.svg",
  11005. extra: 1,
  11006. bottom: 0.06
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(12, "feet"),
  11014. default: true
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(150, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/koragos/front.svg",
  11027. extra: 841 / 794,
  11028. bottom: 0.035
  11029. }
  11030. },
  11031. back: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(150, "lb"),
  11034. name: "Back",
  11035. image: {
  11036. source: "./media/characters/koragos/back.svg",
  11037. extra: 841 / 810,
  11038. bottom: 0.022
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Normal",
  11045. height: math.unit(6 + 11 / 12, "feet"),
  11046. default: true
  11047. },
  11048. {
  11049. name: "Macro",
  11050. height: math.unit(490, "feet")
  11051. },
  11052. {
  11053. name: "Megamacro",
  11054. height: math.unit(10, "miles")
  11055. },
  11056. {
  11057. name: "Gigamacro",
  11058. height: math.unit(50, "miles")
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11064. {
  11065. front: {
  11066. height: math.unit(6, "feet"),
  11067. weight: math.unit(250, "lb"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/xylrem/front.svg",
  11071. extra: 3323 / 3050,
  11072. bottom: 0.065
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Micro",
  11079. height: math.unit(4, "feet")
  11080. },
  11081. {
  11082. name: "Normal",
  11083. height: math.unit(16, "feet"),
  11084. default: true
  11085. },
  11086. {
  11087. name: "Macro",
  11088. height: math.unit(2720, "feet")
  11089. },
  11090. {
  11091. name: "Megamacro",
  11092. height: math.unit(25000, "miles")
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11098. {
  11099. front: {
  11100. height: math.unit(8, "feet"),
  11101. weight: math.unit(250, "kg"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/ikideru/front.svg",
  11105. extra: 930 / 870,
  11106. bottom: 0.087
  11107. }
  11108. },
  11109. back: {
  11110. height: math.unit(8, "feet"),
  11111. weight: math.unit(250, "kg"),
  11112. name: "Back",
  11113. image: {
  11114. source: "./media/characters/ikideru/back.svg",
  11115. extra: 919 / 852,
  11116. bottom: 0.055
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Rare",
  11123. height: math.unit(8, "feet"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Playful Loom",
  11128. height: math.unit(80, "feet")
  11129. },
  11130. {
  11131. name: "City Leaner",
  11132. height: math.unit(230, "feet")
  11133. },
  11134. {
  11135. name: "Megamacro",
  11136. height: math.unit(2500, "feet")
  11137. },
  11138. {
  11139. name: "Gigamacro",
  11140. height: math.unit(26400, "feet")
  11141. },
  11142. {
  11143. name: "Tectonic Shifter",
  11144. height: math.unit(1.7, "megameters")
  11145. },
  11146. {
  11147. name: "Planet Carer",
  11148. height: math.unit(21, "megameters")
  11149. },
  11150. {
  11151. name: "God",
  11152. height: math.unit(11157.22, "parsecs")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(120, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/neo/front.svg"
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Micro",
  11171. height: math.unit(2, "inches"),
  11172. default: true
  11173. },
  11174. {
  11175. name: "Human Size",
  11176. height: math.unit(5 + 8 / 12, "feet")
  11177. },
  11178. ]
  11179. ))
  11180. characterMakers.push(() => makeCharacter(
  11181. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11182. {
  11183. front: {
  11184. height: math.unit(13 + 10 / 12, "feet"),
  11185. weight: math.unit(5320, "lb"),
  11186. name: "Front",
  11187. image: {
  11188. source: "./media/characters/chauncey-chantz/front.svg",
  11189. extra: 1587 / 1435,
  11190. bottom: 0.02
  11191. }
  11192. },
  11193. },
  11194. [
  11195. {
  11196. name: "Normal",
  11197. height: math.unit(13 + 10 / 12, "feet"),
  11198. default: true
  11199. },
  11200. {
  11201. name: "Macro",
  11202. height: math.unit(45, "feet")
  11203. },
  11204. {
  11205. name: "Megamacro",
  11206. height: math.unit(250, "miles")
  11207. },
  11208. {
  11209. name: "Planetary",
  11210. height: math.unit(10000, "miles")
  11211. },
  11212. {
  11213. name: "Galactic",
  11214. height: math.unit(40000, "parsecs")
  11215. },
  11216. {
  11217. name: "Universal",
  11218. height: math.unit(1, "yottameter")
  11219. },
  11220. ]
  11221. ))
  11222. characterMakers.push(() => makeCharacter(
  11223. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11224. {
  11225. front: {
  11226. height: math.unit(6, "feet"),
  11227. weight: math.unit(150, "lb"),
  11228. name: "Front",
  11229. image: {
  11230. source: "./media/characters/epifox/front.svg",
  11231. extra: 1,
  11232. bottom: 0.075
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Micro",
  11239. height: math.unit(6, "inches")
  11240. },
  11241. {
  11242. name: "Normal",
  11243. height: math.unit(12, "feet"),
  11244. default: true
  11245. },
  11246. {
  11247. name: "Macro",
  11248. height: math.unit(3810, "feet")
  11249. },
  11250. {
  11251. name: "Megamacro",
  11252. height: math.unit(500, "miles")
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(1.8796, "m"),
  11261. weight: math.unit(230, "lb"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/colin-t/front.svg",
  11265. extra: 1272 / 1193,
  11266. bottom: 0.07
  11267. }
  11268. },
  11269. },
  11270. [
  11271. {
  11272. name: "Micro",
  11273. height: math.unit(0.571, "meters")
  11274. },
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(1.8796, "meters"),
  11278. default: true
  11279. },
  11280. {
  11281. name: "Tall",
  11282. height: math.unit(4, "meters")
  11283. },
  11284. {
  11285. name: "Macro",
  11286. height: math.unit(67.241, "meters")
  11287. },
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(371.856, "meters")
  11291. },
  11292. {
  11293. name: "Planetary",
  11294. height: math.unit(12631.5689, "km")
  11295. },
  11296. ]
  11297. ))
  11298. characterMakers.push(() => makeCharacter(
  11299. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11300. {
  11301. front: {
  11302. height: math.unit(1.85, "meters"),
  11303. weight: math.unit(80, "kg"),
  11304. name: "Front",
  11305. image: {
  11306. source: "./media/characters/matvei/front.svg",
  11307. extra: 614 / 594,
  11308. bottom: 0.01
  11309. }
  11310. },
  11311. },
  11312. [
  11313. {
  11314. name: "Normal",
  11315. height: math.unit(1.85, "meters"),
  11316. default: true
  11317. },
  11318. ]
  11319. ))
  11320. characterMakers.push(() => makeCharacter(
  11321. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11322. {
  11323. front: {
  11324. height: math.unit(5 + 9 / 12, "feet"),
  11325. weight: math.unit(70, "lb"),
  11326. name: "Front",
  11327. image: {
  11328. source: "./media/characters/quincy/front.svg",
  11329. extra: 3041 / 2751
  11330. }
  11331. },
  11332. back: {
  11333. height: math.unit(5 + 9 / 12, "feet"),
  11334. weight: math.unit(70, "lb"),
  11335. name: "Back",
  11336. image: {
  11337. source: "./media/characters/quincy/back.svg",
  11338. extra: 3041 / 2751
  11339. }
  11340. },
  11341. flying: {
  11342. height: math.unit(5 + 4 / 12, "feet"),
  11343. weight: math.unit(70, "lb"),
  11344. name: "Flying",
  11345. image: {
  11346. source: "./media/characters/quincy/flying.svg",
  11347. extra: 1044 / 930
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Micro",
  11354. height: math.unit(3, "cm")
  11355. },
  11356. {
  11357. name: "Normal",
  11358. height: math.unit(5 + 9 / 12, "feet")
  11359. },
  11360. {
  11361. name: "Macro",
  11362. height: math.unit(200, "meters"),
  11363. default: true
  11364. },
  11365. {
  11366. name: "Megamacro",
  11367. height: math.unit(1000, "meters")
  11368. },
  11369. ]
  11370. ))
  11371. characterMakers.push(() => makeCharacter(
  11372. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11373. {
  11374. front: {
  11375. height: math.unit(4 + 7 / 12, "feet"),
  11376. weight: math.unit(50, "lb"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/vanrel/front.svg",
  11380. extra: 1,
  11381. bottom: 0.02
  11382. }
  11383. },
  11384. frontAlt: {
  11385. height: math.unit(4 + 7 / 12, "feet"),
  11386. weight: math.unit(50, "lb"),
  11387. name: "Front-alt",
  11388. image: {
  11389. source: "./media/characters/vanrel/front-alt.svg",
  11390. extra: 1,
  11391. bottom: 15 / 1511
  11392. }
  11393. },
  11394. elemental: {
  11395. height: math.unit(3, "feet"),
  11396. weight: math.unit(50, "lb"),
  11397. name: "Elemental",
  11398. image: {
  11399. source: "./media/characters/vanrel/elemental.svg",
  11400. extra: 192.3 / 162.8,
  11401. bottom: 1.79 / 194.17
  11402. }
  11403. },
  11404. side: {
  11405. height: math.unit(4 + 7 / 12, "feet"),
  11406. weight: math.unit(50, "lb"),
  11407. name: "Side",
  11408. image: {
  11409. source: "./media/characters/vanrel/side.svg",
  11410. extra: 1,
  11411. bottom: 0.025
  11412. }
  11413. },
  11414. tome: {
  11415. height: math.unit(1.35, "feet"),
  11416. weight: math.unit(10, "lb"),
  11417. name: "Vanrel's Tome",
  11418. rename: true,
  11419. image: {
  11420. source: "./media/characters/vanrel/tome.svg"
  11421. }
  11422. },
  11423. beans: {
  11424. height: math.unit(0.89, "feet"),
  11425. name: "Beans",
  11426. image: {
  11427. source: "./media/characters/vanrel/beans.svg"
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(4 + 7 / 12, "feet"),
  11435. default: true
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(7 + 5 / 12, "feet"),
  11444. weight: math.unit(150, "lb"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/kuiper-vanrel/front.svg",
  11448. extra: 1118 / 1068,
  11449. bottom: 0.09
  11450. }
  11451. },
  11452. foot: {
  11453. height: math.unit(0.55, "meters"),
  11454. name: "Foot",
  11455. image: {
  11456. source: "./media/characters/kuiper-vanrel/foot.svg",
  11457. }
  11458. },
  11459. battle: {
  11460. height: math.unit(6.824, "feet"),
  11461. weight: math.unit(150, "lb"),
  11462. name: "Battle",
  11463. image: {
  11464. source: "./media/characters/kuiper-vanrel/battle.svg",
  11465. extra: 1466 / 1327,
  11466. bottom: 29 / 1492.5
  11467. }
  11468. },
  11469. battleAlt: {
  11470. height: math.unit(6.824, "feet"),
  11471. weight: math.unit(150, "lb"),
  11472. name: "Battle (Alt)",
  11473. image: {
  11474. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11475. extra: 2081 / 1965,
  11476. bottom: 40 / 2121
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(7 + 5 / 12, "feet"),
  11484. default: true
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(8 + 5 / 12, "feet"),
  11493. weight: math.unit(150, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/keset-vanrel/front.svg",
  11497. extra: 1150 / 1084,
  11498. bottom: 0.05
  11499. }
  11500. },
  11501. hand: {
  11502. height: math.unit(0.6, "meters"),
  11503. name: "Hand",
  11504. image: {
  11505. source: "./media/characters/keset-vanrel/hand.svg"
  11506. }
  11507. },
  11508. foot: {
  11509. height: math.unit(0.94978, "meters"),
  11510. name: "Foot",
  11511. image: {
  11512. source: "./media/characters/keset-vanrel/foot.svg"
  11513. }
  11514. },
  11515. battle: {
  11516. height: math.unit(7.408, "feet"),
  11517. weight: math.unit(150, "lb"),
  11518. name: "Battle",
  11519. image: {
  11520. source: "./media/characters/keset-vanrel/battle.svg",
  11521. extra: 1890 / 1386,
  11522. bottom: 73.28 / 1970
  11523. }
  11524. },
  11525. },
  11526. [
  11527. {
  11528. name: "Normal",
  11529. height: math.unit(8 + 5 / 12, "feet"),
  11530. default: true
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11536. {
  11537. front: {
  11538. height: math.unit(6, "feet"),
  11539. weight: math.unit(150, "lb"),
  11540. name: "Front",
  11541. image: {
  11542. source: "./media/characters/neos/front.svg",
  11543. extra: 1696 / 992,
  11544. bottom: 0.14
  11545. }
  11546. },
  11547. },
  11548. [
  11549. {
  11550. name: "Normal",
  11551. height: math.unit(54, "cm"),
  11552. default: true
  11553. },
  11554. {
  11555. name: "Macro",
  11556. height: math.unit(100, "m")
  11557. },
  11558. {
  11559. name: "Megamacro",
  11560. height: math.unit(10, "km")
  11561. },
  11562. {
  11563. name: "Megamacro+",
  11564. height: math.unit(100, "km")
  11565. },
  11566. {
  11567. name: "Gigamacro",
  11568. height: math.unit(100, "Mm")
  11569. },
  11570. {
  11571. name: "Teramacro",
  11572. height: math.unit(100, "Gm")
  11573. },
  11574. {
  11575. name: "Examacro",
  11576. height: math.unit(100, "Em")
  11577. },
  11578. {
  11579. name: "Godly",
  11580. height: math.unit(10000, "Ym")
  11581. },
  11582. {
  11583. name: "Beyond Godly",
  11584. height: math.unit(25, "multiverses")
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11590. {
  11591. feminine: {
  11592. height: math.unit(5, "feet"),
  11593. weight: math.unit(100, "lb"),
  11594. name: "Feminine",
  11595. image: {
  11596. source: "./media/characters/sammy-mouse/feminine.svg",
  11597. extra: 2526 / 2425,
  11598. bottom: 0.123
  11599. }
  11600. },
  11601. masculine: {
  11602. height: math.unit(5, "feet"),
  11603. weight: math.unit(100, "lb"),
  11604. name: "Masculine",
  11605. image: {
  11606. source: "./media/characters/sammy-mouse/masculine.svg",
  11607. extra: 2526 / 2425,
  11608. bottom: 0.123
  11609. }
  11610. },
  11611. },
  11612. [
  11613. {
  11614. name: "Micro",
  11615. height: math.unit(5, "inches")
  11616. },
  11617. {
  11618. name: "Normal",
  11619. height: math.unit(5, "feet"),
  11620. default: true
  11621. },
  11622. {
  11623. name: "Macro",
  11624. height: math.unit(60, "feet")
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(4, "feet"),
  11633. weight: math.unit(50, "lb"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/kole/front.svg",
  11637. extra: 1423 / 1303,
  11638. bottom: 0.025
  11639. }
  11640. },
  11641. back: {
  11642. height: math.unit(4, "feet"),
  11643. weight: math.unit(50, "lb"),
  11644. name: "Back",
  11645. image: {
  11646. source: "./media/characters/kole/back.svg",
  11647. extra: 1426 / 1280,
  11648. bottom: 0.02
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(4, "feet"),
  11656. default: true
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(2 + 6 / 12, "feet"),
  11665. weight: math.unit(20, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/rufran/front.svg",
  11669. extra: 2041 / 1839,
  11670. bottom: 0.055
  11671. }
  11672. },
  11673. back: {
  11674. height: math.unit(2 + 6 / 12, "feet"),
  11675. weight: math.unit(20, "lb"),
  11676. name: "Back",
  11677. image: {
  11678. source: "./media/characters/rufran/back.svg",
  11679. extra: 2054 / 1839,
  11680. bottom: 0.01
  11681. }
  11682. },
  11683. hand: {
  11684. height: math.unit(0.2166, "meters"),
  11685. name: "Hand",
  11686. image: {
  11687. source: "./media/characters/rufran/hand.svg"
  11688. }
  11689. },
  11690. foot: {
  11691. height: math.unit(0.185, "meters"),
  11692. name: "Foot",
  11693. image: {
  11694. source: "./media/characters/rufran/foot.svg"
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Micro",
  11701. height: math.unit(1, "inch")
  11702. },
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(2 + 6 / 12, "feet"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Big",
  11710. height: math.unit(60, "feet")
  11711. },
  11712. {
  11713. name: "Macro",
  11714. height: math.unit(325, "feet")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(0.3, "meters"),
  11723. weight: math.unit(3.5, "kg"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/chip/front.svg",
  11727. extra: 748 / 674
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(1, "inch"),
  11735. default: true
  11736. },
  11737. ]
  11738. ))
  11739. characterMakers.push(() => makeCharacter(
  11740. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11741. {
  11742. side: {
  11743. height: math.unit(2.3, "meters"),
  11744. weight: math.unit(3500, "lb"),
  11745. name: "Side",
  11746. image: {
  11747. source: "./media/characters/torvid/side.svg",
  11748. extra: 1972 / 722,
  11749. bottom: 0.035
  11750. }
  11751. },
  11752. },
  11753. [
  11754. {
  11755. name: "Normal",
  11756. height: math.unit(2.3, "meters"),
  11757. default: true
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(2, "meters"),
  11766. weight: math.unit(150.5, "kg"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/susan/front.svg",
  11770. extra: 693 / 635,
  11771. bottom: 0.05
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Megamacro",
  11778. height: math.unit(505, "miles"),
  11779. default: true
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11785. {
  11786. front: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(150, "lb"),
  11789. name: "Front",
  11790. image: {
  11791. source: "./media/characters/raindrops/front.svg",
  11792. extra: 2655 / 2461,
  11793. bottom: 49 / 2705
  11794. }
  11795. },
  11796. back: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Back",
  11800. image: {
  11801. source: "./media/characters/raindrops/back.svg",
  11802. extra: 2574 / 2400,
  11803. bottom: 65 / 2634
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "Micro",
  11810. height: math.unit(6, "inches")
  11811. },
  11812. {
  11813. name: "Normal",
  11814. height: math.unit(6 + 2 / 12, "feet")
  11815. },
  11816. {
  11817. name: "Macro",
  11818. height: math.unit(131, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(15, "miles")
  11824. },
  11825. {
  11826. name: "Gigamacro",
  11827. height: math.unit(4000, "miles")
  11828. },
  11829. {
  11830. name: "Teramacro",
  11831. height: math.unit(315000, "miles")
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11837. {
  11838. front: {
  11839. height: math.unit(2.794, "meters"),
  11840. weight: math.unit(325, "kg"),
  11841. name: "Front",
  11842. image: {
  11843. source: "./media/characters/tezwa/front.svg",
  11844. extra: 2083 / 1906,
  11845. bottom: 0.031
  11846. }
  11847. },
  11848. foot: {
  11849. height: math.unit(0.687, "meters"),
  11850. name: "Foot",
  11851. image: {
  11852. source: "./media/characters/tezwa/foot.svg"
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Normal",
  11859. height: math.unit(9 + 2 / 12, "feet"),
  11860. default: true
  11861. },
  11862. ]
  11863. ))
  11864. characterMakers.push(() => makeCharacter(
  11865. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11866. {
  11867. front: {
  11868. height: math.unit(58, "feet"),
  11869. weight: math.unit(89000, "lb"),
  11870. name: "Front",
  11871. image: {
  11872. source: "./media/characters/typhus/front.svg",
  11873. extra: 816 / 800,
  11874. bottom: 0.065
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Macro",
  11881. height: math.unit(58, "feet"),
  11882. default: true
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(12, "feet"),
  11891. weight: math.unit(6, "tonnes"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/lyra-von-wulf/front.svg",
  11895. extra: 1,
  11896. bottom: 0.10
  11897. }
  11898. },
  11899. frontMecha: {
  11900. height: math.unit(12, "feet"),
  11901. weight: math.unit(12, "tonnes"),
  11902. name: "Front (Mecha)",
  11903. image: {
  11904. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11905. extra: 1,
  11906. bottom: 0.042
  11907. }
  11908. },
  11909. maw: {
  11910. height: math.unit(2.2, "feet"),
  11911. name: "Maw",
  11912. image: {
  11913. source: "./media/characters/lyra-von-wulf/maw.svg"
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Normal",
  11920. height: math.unit(12, "feet"),
  11921. default: true
  11922. },
  11923. {
  11924. name: "Classic",
  11925. height: math.unit(50, "feet")
  11926. },
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(500, "feet")
  11930. },
  11931. {
  11932. name: "Megamacro",
  11933. height: math.unit(1, "mile")
  11934. },
  11935. {
  11936. name: "Gigamacro",
  11937. height: math.unit(400, "miles")
  11938. },
  11939. {
  11940. name: "Teramacro",
  11941. height: math.unit(22000, "miles")
  11942. },
  11943. {
  11944. name: "Solarmacro",
  11945. height: math.unit(8600000, "miles")
  11946. },
  11947. {
  11948. name: "Galactic",
  11949. height: math.unit(1057000, "lightyears")
  11950. },
  11951. ]
  11952. ))
  11953. characterMakers.push(() => makeCharacter(
  11954. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11955. {
  11956. front: {
  11957. height: math.unit(6 + 10 / 12, "feet"),
  11958. weight: math.unit(150, "lb"),
  11959. name: "Front",
  11960. image: {
  11961. source: "./media/characters/dixon/front.svg",
  11962. extra: 3361 / 3209,
  11963. bottom: 0.01
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(6 + 10 / 12, "feet"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Big",
  11975. height: math.unit(12, "meters")
  11976. },
  11977. {
  11978. name: "Macro",
  11979. height: math.unit(500, "meters")
  11980. },
  11981. {
  11982. name: "Megamacro",
  11983. height: math.unit(2, "km")
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(185, "cm"),
  11992. weight: math.unit(68, "kg"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/kauko/front.svg",
  11996. extra: 1455 / 1421,
  11997. bottom: 0.03
  11998. }
  11999. },
  12000. back: {
  12001. height: math.unit(185, "cm"),
  12002. weight: math.unit(68, "kg"),
  12003. name: "Back",
  12004. image: {
  12005. source: "./media/characters/kauko/back.svg",
  12006. extra: 1455 / 1421,
  12007. bottom: 0.004
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Normal",
  12014. height: math.unit(185, "cm"),
  12015. default: true
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12021. {
  12022. front: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(150, "kg"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/varg/front.svg",
  12028. extra: 1108 / 1018,
  12029. bottom: 0.0375
  12030. }
  12031. },
  12032. },
  12033. [
  12034. {
  12035. name: "Normal",
  12036. height: math.unit(5, "meters")
  12037. },
  12038. {
  12039. name: "Macro",
  12040. height: math.unit(200, "meters")
  12041. },
  12042. {
  12043. name: "Megamacro",
  12044. height: math.unit(20, "kilometers")
  12045. },
  12046. {
  12047. name: "True Size",
  12048. height: math.unit(211, "km"),
  12049. default: true
  12050. },
  12051. {
  12052. name: "Gigamacro",
  12053. height: math.unit(1000, "km")
  12054. },
  12055. {
  12056. name: "Gigamacro+",
  12057. height: math.unit(8000, "km")
  12058. },
  12059. {
  12060. name: "Teramacro",
  12061. height: math.unit(1000000, "km")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(7 + 7 / 12, "feet"),
  12070. weight: math.unit(267, "lb"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/dayza/front.svg",
  12074. extra: 1262 / 1200,
  12075. bottom: 0.035
  12076. }
  12077. },
  12078. side: {
  12079. height: math.unit(7 + 7 / 12, "feet"),
  12080. weight: math.unit(267, "lb"),
  12081. name: "Side",
  12082. image: {
  12083. source: "./media/characters/dayza/side.svg",
  12084. extra: 1295 / 1245,
  12085. bottom: 0.05
  12086. }
  12087. },
  12088. back: {
  12089. height: math.unit(7 + 7 / 12, "feet"),
  12090. weight: math.unit(267, "lb"),
  12091. name: "Back",
  12092. image: {
  12093. source: "./media/characters/dayza/back.svg",
  12094. extra: 1241 / 1170
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Normal",
  12101. height: math.unit(7 + 7 / 12, "feet"),
  12102. default: true
  12103. },
  12104. {
  12105. name: "Macro",
  12106. height: math.unit(155, "feet")
  12107. },
  12108. ]
  12109. ))
  12110. characterMakers.push(() => makeCharacter(
  12111. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12112. {
  12113. front: {
  12114. height: math.unit(6 + 5 / 12, "feet"),
  12115. weight: math.unit(160, "lb"),
  12116. name: "Front",
  12117. image: {
  12118. source: "./media/characters/xanthos/front.svg",
  12119. extra: 1,
  12120. bottom: 0.04
  12121. }
  12122. },
  12123. back: {
  12124. height: math.unit(6 + 5 / 12, "feet"),
  12125. weight: math.unit(160, "lb"),
  12126. name: "Back",
  12127. image: {
  12128. source: "./media/characters/xanthos/back.svg",
  12129. extra: 1,
  12130. bottom: 0.03
  12131. }
  12132. },
  12133. hand: {
  12134. height: math.unit(0.928, "feet"),
  12135. name: "Hand",
  12136. image: {
  12137. source: "./media/characters/xanthos/hand.svg"
  12138. }
  12139. },
  12140. foot: {
  12141. height: math.unit(1.286, "feet"),
  12142. name: "Foot",
  12143. image: {
  12144. source: "./media/characters/xanthos/foot.svg"
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(6 + 5 / 12, "feet"),
  12152. default: true
  12153. },
  12154. {
  12155. name: "Normal+",
  12156. height: math.unit(6, "meters")
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(40, "feet")
  12161. },
  12162. {
  12163. name: "Macro+",
  12164. height: math.unit(200, "meters")
  12165. },
  12166. {
  12167. name: "Megamacro",
  12168. height: math.unit(20, "km")
  12169. },
  12170. {
  12171. name: "Megamacro+",
  12172. height: math.unit(100, "km")
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(6 + 3 / 12, "feet"),
  12181. weight: math.unit(215, "lb"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/grynn/front.svg",
  12185. extra: 4627 / 4209,
  12186. bottom: 0.047
  12187. }
  12188. },
  12189. },
  12190. [
  12191. {
  12192. name: "Micro",
  12193. height: math.unit(6, "inches")
  12194. },
  12195. {
  12196. name: "Normal",
  12197. height: math.unit(6 + 3 / 12, "feet"),
  12198. default: true
  12199. },
  12200. {
  12201. name: "Big",
  12202. height: math.unit(104, "feet")
  12203. },
  12204. {
  12205. name: "Macro",
  12206. height: math.unit(944, "feet")
  12207. },
  12208. {
  12209. name: "Macro+",
  12210. height: math.unit(9480, "feet")
  12211. },
  12212. {
  12213. name: "Megamacro",
  12214. height: math.unit(78752, "feet")
  12215. },
  12216. {
  12217. name: "Megamacro+",
  12218. height: math.unit(630128, "feet")
  12219. },
  12220. {
  12221. name: "Megamacro++",
  12222. height: math.unit(3150695, "feet")
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(7 + 5 / 12, "feet"),
  12231. weight: math.unit(450, "lb"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/mocha-aura/front.svg",
  12235. extra: 1907 / 1817,
  12236. bottom: 0.04
  12237. }
  12238. },
  12239. back: {
  12240. height: math.unit(7 + 5 / 12, "feet"),
  12241. weight: math.unit(450, "lb"),
  12242. name: "Back",
  12243. image: {
  12244. source: "./media/characters/mocha-aura/back.svg",
  12245. extra: 1900 / 1825,
  12246. bottom: 0.045
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Nano",
  12253. height: math.unit(1, "nm")
  12254. },
  12255. {
  12256. name: "Megamicro",
  12257. height: math.unit(1, "mm")
  12258. },
  12259. {
  12260. name: "Micro",
  12261. height: math.unit(3, "inches")
  12262. },
  12263. {
  12264. name: "Normal",
  12265. height: math.unit(7 + 5 / 12, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(30, "feet")
  12271. },
  12272. {
  12273. name: "Megamacro",
  12274. height: math.unit(3500, "feet")
  12275. },
  12276. {
  12277. name: "Teramacro",
  12278. height: math.unit(500000, "miles")
  12279. },
  12280. {
  12281. name: "Petamacro",
  12282. height: math.unit(50000000000000000, "parsecs")
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(6, "feet"),
  12291. weight: math.unit(150, "lb"),
  12292. name: "Front",
  12293. image: {
  12294. source: "./media/characters/ilisha-devya/front.svg",
  12295. extra: 1,
  12296. bottom: 0.175
  12297. }
  12298. },
  12299. back: {
  12300. height: math.unit(6, "feet"),
  12301. weight: math.unit(150, "lb"),
  12302. name: "Back",
  12303. image: {
  12304. source: "./media/characters/ilisha-devya/back.svg",
  12305. extra: 1,
  12306. bottom: 0.015
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Macro",
  12313. height: math.unit(500, "feet"),
  12314. default: true
  12315. },
  12316. {
  12317. name: "Megamacro",
  12318. height: math.unit(10, "miles")
  12319. },
  12320. {
  12321. name: "Gigamacro",
  12322. height: math.unit(100000, "miles")
  12323. },
  12324. {
  12325. name: "Examacro",
  12326. height: math.unit(1e9, "lightyears")
  12327. },
  12328. {
  12329. name: "Omniversal",
  12330. height: math.unit(1e33, "lightyears")
  12331. },
  12332. {
  12333. name: "Beyond Infinite",
  12334. height: math.unit(1e100, "lightyears")
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12340. {
  12341. Side: {
  12342. height: math.unit(6, "feet"),
  12343. weight: math.unit(150, "lb"),
  12344. name: "Side",
  12345. image: {
  12346. source: "./media/characters/mira/side.svg",
  12347. extra: 900 / 799,
  12348. bottom: 0.02
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Human Size",
  12355. height: math.unit(6, "feet")
  12356. },
  12357. {
  12358. name: "Macro",
  12359. height: math.unit(100, "feet"),
  12360. default: true
  12361. },
  12362. {
  12363. name: "Megamacro",
  12364. height: math.unit(10, "miles")
  12365. },
  12366. {
  12367. name: "Gigamacro",
  12368. height: math.unit(25000, "miles")
  12369. },
  12370. {
  12371. name: "Teramacro",
  12372. height: math.unit(300, "AU")
  12373. },
  12374. {
  12375. name: "Full Size",
  12376. height: math.unit(4.5e10, "lightyears")
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(150, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/holly/front.svg",
  12389. extra: 639 / 606
  12390. }
  12391. },
  12392. back: {
  12393. height: math.unit(6, "feet"),
  12394. weight: math.unit(150, "lb"),
  12395. name: "Back",
  12396. image: {
  12397. source: "./media/characters/holly/back.svg",
  12398. extra: 623 / 598
  12399. }
  12400. },
  12401. frontWorking: {
  12402. height: math.unit(6, "feet"),
  12403. weight: math.unit(150, "lb"),
  12404. name: "Front (Working)",
  12405. image: {
  12406. source: "./media/characters/holly/front-working.svg",
  12407. extra: 607 / 577,
  12408. bottom: 0.048
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(12 + 3 / 12, "feet"),
  12416. default: true
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(6, "feet"),
  12425. weight: math.unit(150, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/porter/front.svg",
  12429. extra: 1,
  12430. bottom: 0.01
  12431. }
  12432. },
  12433. frontRobes: {
  12434. height: math.unit(6, "feet"),
  12435. weight: math.unit(150, "lb"),
  12436. name: "Front (Robes)",
  12437. image: {
  12438. source: "./media/characters/porter/front-robes.svg",
  12439. extra: 1.01,
  12440. bottom: 0.01
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Normal",
  12447. height: math.unit(11 + 9 / 12, "feet"),
  12448. default: true
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12454. {
  12455. legendary: {
  12456. height: math.unit(6, "feet"),
  12457. weight: math.unit(150, "lb"),
  12458. name: "Legendary",
  12459. image: {
  12460. source: "./media/characters/lucy/legendary.svg",
  12461. extra: 1355 / 1100,
  12462. bottom: 0.045
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Legendary",
  12469. height: math.unit(86882 * 2, "miles"),
  12470. default: true
  12471. },
  12472. ]
  12473. ))
  12474. characterMakers.push(() => makeCharacter(
  12475. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12476. {
  12477. front: {
  12478. height: math.unit(6, "feet"),
  12479. weight: math.unit(150, "lb"),
  12480. name: "Front",
  12481. image: {
  12482. source: "./media/characters/drusilla/front.svg",
  12483. extra: 678 / 635,
  12484. bottom: 0.03
  12485. }
  12486. },
  12487. back: {
  12488. height: math.unit(6, "feet"),
  12489. weight: math.unit(150, "lb"),
  12490. name: "Back",
  12491. image: {
  12492. source: "./media/characters/drusilla/back.svg",
  12493. extra: 678 / 635,
  12494. bottom: 0.005
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Macro",
  12501. height: math.unit(100, "feet")
  12502. },
  12503. {
  12504. name: "Canon Height",
  12505. height: math.unit(2000, "feet"),
  12506. default: true
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12512. {
  12513. front: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(180, "lb"),
  12516. name: "Front",
  12517. image: {
  12518. source: "./media/characters/renard-thatch/front.svg",
  12519. extra: 2411 / 2275,
  12520. bottom: 0.01
  12521. }
  12522. },
  12523. frontPosing: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(180, "lb"),
  12526. name: "Front (Posing)",
  12527. image: {
  12528. source: "./media/characters/renard-thatch/front-posing.svg",
  12529. extra: 2381 / 2261,
  12530. bottom: 0.01
  12531. }
  12532. },
  12533. back: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(180, "lb"),
  12536. name: "Back",
  12537. image: {
  12538. source: "./media/characters/renard-thatch/back.svg",
  12539. extra: 2428 / 2288
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Micro",
  12546. height: math.unit(3, "inches")
  12547. },
  12548. {
  12549. name: "Default",
  12550. height: math.unit(6, "feet"),
  12551. default: true
  12552. },
  12553. {
  12554. name: "Macro",
  12555. height: math.unit(75, "feet")
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12561. {
  12562. front: {
  12563. height: math.unit(1450, "feet"),
  12564. weight: math.unit(1.21e6, "tons"),
  12565. name: "Front",
  12566. image: {
  12567. source: "./media/characters/sekvra/front.svg",
  12568. extra: 1,
  12569. bottom: 0.03
  12570. }
  12571. },
  12572. frontClothed: {
  12573. height: math.unit(1450, "feet"),
  12574. weight: math.unit(1.21e6, "tons"),
  12575. name: "Front (Clothed)",
  12576. image: {
  12577. source: "./media/characters/sekvra/front-clothed.svg",
  12578. extra: 1,
  12579. bottom: 0.03
  12580. }
  12581. },
  12582. side: {
  12583. height: math.unit(1450, "feet"),
  12584. weight: math.unit(1.21e6, "tons"),
  12585. name: "Side",
  12586. image: {
  12587. source: "./media/characters/sekvra/side.svg",
  12588. extra: 1,
  12589. bottom: 0.025
  12590. }
  12591. },
  12592. back: {
  12593. height: math.unit(1450, "feet"),
  12594. weight: math.unit(1.21e6, "tons"),
  12595. name: "Back",
  12596. image: {
  12597. source: "./media/characters/sekvra/back.svg",
  12598. extra: 1,
  12599. bottom: 0.005
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(1450, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Megamacro",
  12611. height: math.unit(15000, "feet")
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12617. {
  12618. front: {
  12619. height: math.unit(6, "feet"),
  12620. weight: math.unit(150, "lb"),
  12621. name: "Front",
  12622. image: {
  12623. source: "./media/characters/carmine/front.svg",
  12624. extra: 1,
  12625. bottom: 0.035
  12626. }
  12627. },
  12628. frontArmor: {
  12629. height: math.unit(6, "feet"),
  12630. weight: math.unit(150, "lb"),
  12631. name: "Front (Armor)",
  12632. image: {
  12633. source: "./media/characters/carmine/front-armor.svg",
  12634. extra: 1,
  12635. bottom: 0.035
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Large",
  12642. height: math.unit(1, "mile")
  12643. },
  12644. {
  12645. name: "Huge",
  12646. height: math.unit(40, "miles"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Colossal",
  12651. height: math.unit(2500, "miles")
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12657. {
  12658. front: {
  12659. height: math.unit(6, "feet"),
  12660. weight: math.unit(150, "lb"),
  12661. name: "Front",
  12662. image: {
  12663. source: "./media/characters/elyssia/front.svg",
  12664. extra: 2201 / 2035,
  12665. bottom: 0.05
  12666. }
  12667. },
  12668. frontClothed: {
  12669. height: math.unit(6, "feet"),
  12670. weight: math.unit(150, "lb"),
  12671. name: "Front (Clothed)",
  12672. image: {
  12673. source: "./media/characters/elyssia/front-clothed.svg",
  12674. extra: 2201 / 2035,
  12675. bottom: 0.05
  12676. }
  12677. },
  12678. back: {
  12679. height: math.unit(6, "feet"),
  12680. weight: math.unit(150, "lb"),
  12681. name: "Back",
  12682. image: {
  12683. source: "./media/characters/elyssia/back.svg",
  12684. extra: 2201 / 2035,
  12685. bottom: 0.013
  12686. }
  12687. },
  12688. },
  12689. [
  12690. {
  12691. name: "Smaller",
  12692. height: math.unit(150, "feet")
  12693. },
  12694. {
  12695. name: "Standard",
  12696. height: math.unit(1400, "feet"),
  12697. default: true
  12698. },
  12699. {
  12700. name: "Distracted",
  12701. height: math.unit(15000, "feet")
  12702. },
  12703. ]
  12704. ))
  12705. characterMakers.push(() => makeCharacter(
  12706. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12707. {
  12708. front: {
  12709. height: math.unit(7 + 4 / 12, "feet"),
  12710. weight: math.unit(500, "lb"),
  12711. name: "Front",
  12712. image: {
  12713. source: "./media/characters/geno-maxwell/front.svg",
  12714. extra: 2207 / 2040,
  12715. bottom: 0.015
  12716. }
  12717. },
  12718. },
  12719. [
  12720. {
  12721. name: "Micro",
  12722. height: math.unit(3, "inches")
  12723. },
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(7 + 4 / 12, "feet"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Macro",
  12731. height: math.unit(220, "feet")
  12732. },
  12733. {
  12734. name: "Megamacro",
  12735. height: math.unit(11, "miles")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12741. {
  12742. front: {
  12743. height: math.unit(7 + 4 / 12, "feet"),
  12744. weight: math.unit(500, "lb"),
  12745. name: "Front",
  12746. image: {
  12747. source: "./media/characters/regena-maxwell/front.svg",
  12748. extra: 3115 / 2770,
  12749. bottom: 0.02
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(7 + 4 / 12, "feet"),
  12757. default: true
  12758. },
  12759. {
  12760. name: "Macro",
  12761. height: math.unit(220, "feet")
  12762. },
  12763. {
  12764. name: "Megamacro",
  12765. height: math.unit(11, "miles")
  12766. },
  12767. ]
  12768. ))
  12769. characterMakers.push(() => makeCharacter(
  12770. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12771. {
  12772. front: {
  12773. height: math.unit(6, "feet"),
  12774. weight: math.unit(150, "lb"),
  12775. name: "Front",
  12776. image: {
  12777. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12778. extra: 860 / 690,
  12779. bottom: 0.03
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(1.7, "meters"),
  12787. default: true
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(150, "lb"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/quilly/front.svg",
  12800. extra: 890 / 776
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Gigamacro",
  12807. height: math.unit(404090, "miles"),
  12808. default: true
  12809. },
  12810. ]
  12811. ))
  12812. characterMakers.push(() => makeCharacter(
  12813. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12814. {
  12815. front: {
  12816. height: math.unit(7 + 8 / 12, "feet"),
  12817. weight: math.unit(350, "lb"),
  12818. name: "Front",
  12819. image: {
  12820. source: "./media/characters/tempest/front.svg",
  12821. extra: 1175 / 1086,
  12822. bottom: 0.02
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(7 + 8 / 12, "feet"),
  12830. default: true
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12836. {
  12837. side: {
  12838. height: math.unit(4 + 5 / 12, "feet"),
  12839. weight: math.unit(80, "lb"),
  12840. name: "Side",
  12841. image: {
  12842. source: "./media/characters/rodger/side.svg",
  12843. extra: 1235 / 1118
  12844. }
  12845. },
  12846. },
  12847. [
  12848. {
  12849. name: "Micro",
  12850. height: math.unit(1, "inch")
  12851. },
  12852. {
  12853. name: "Normal",
  12854. height: math.unit(4 + 5 / 12, "feet"),
  12855. default: true
  12856. },
  12857. {
  12858. name: "Macro",
  12859. height: math.unit(120, "feet")
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12865. {
  12866. front: {
  12867. height: math.unit(6, "feet"),
  12868. weight: math.unit(150, "lb"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/danyel/front.svg",
  12872. extra: 1185 / 1123,
  12873. bottom: 0.05
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Shrunken",
  12880. height: math.unit(0.5, "mm")
  12881. },
  12882. {
  12883. name: "Micro",
  12884. height: math.unit(1, "mm"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Upsized",
  12889. height: math.unit(5 + 5 / 12, "feet")
  12890. },
  12891. ]
  12892. ))
  12893. characterMakers.push(() => makeCharacter(
  12894. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12895. {
  12896. front: {
  12897. height: math.unit(5 + 6 / 12, "feet"),
  12898. weight: math.unit(200, "lb"),
  12899. name: "Front",
  12900. image: {
  12901. source: "./media/characters/vivian-bijoux/front.svg",
  12902. extra: 1,
  12903. bottom: 0.072
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Normal",
  12910. height: math.unit(5 + 6 / 12, "feet"),
  12911. default: true
  12912. },
  12913. {
  12914. name: "Bad Dream",
  12915. height: math.unit(500, "feet")
  12916. },
  12917. {
  12918. name: "Nightmare",
  12919. height: math.unit(500, "miles")
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(6 + 1 / 12, "feet"),
  12928. weight: math.unit(260, "lb"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/zeta/front.svg",
  12932. extra: 1968 / 1889,
  12933. bottom: 0.06
  12934. }
  12935. },
  12936. back: {
  12937. height: math.unit(6 + 1 / 12, "feet"),
  12938. weight: math.unit(260, "lb"),
  12939. name: "Back",
  12940. image: {
  12941. source: "./media/characters/zeta/back.svg",
  12942. extra: 1944 / 1858,
  12943. bottom: 0.03
  12944. }
  12945. },
  12946. hand: {
  12947. height: math.unit(1.112, "feet"),
  12948. name: "Hand",
  12949. image: {
  12950. source: "./media/characters/zeta/hand.svg"
  12951. }
  12952. },
  12953. foot: {
  12954. height: math.unit(1.48, "feet"),
  12955. name: "Foot",
  12956. image: {
  12957. source: "./media/characters/zeta/foot.svg"
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Micro",
  12964. height: math.unit(6, "inches")
  12965. },
  12966. {
  12967. name: "Normal",
  12968. height: math.unit(6 + 1 / 12, "feet"),
  12969. default: true
  12970. },
  12971. {
  12972. name: "Macro",
  12973. height: math.unit(20, "feet")
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12979. {
  12980. front: {
  12981. height: math.unit(6, "feet"),
  12982. weight: math.unit(150, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/jamie-larsen/front.svg",
  12986. extra: 962 / 933,
  12987. bottom: 0.02
  12988. }
  12989. },
  12990. back: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Back",
  12994. image: {
  12995. source: "./media/characters/jamie-larsen/back.svg",
  12996. extra: 997 / 946
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Macro",
  13003. height: math.unit(28 + 7 / 12, "feet"),
  13004. default: true
  13005. },
  13006. {
  13007. name: "Macro+",
  13008. height: math.unit(180, "feet")
  13009. },
  13010. {
  13011. name: "Megamacro",
  13012. height: math.unit(10, "miles")
  13013. },
  13014. {
  13015. name: "Gigamacro",
  13016. height: math.unit(200000, "miles")
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(120, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/vance/front.svg",
  13029. extra: 1980 / 1890,
  13030. bottom: 0.09
  13031. }
  13032. },
  13033. back: {
  13034. height: math.unit(6, "feet"),
  13035. weight: math.unit(120, "lb"),
  13036. name: "Back",
  13037. image: {
  13038. source: "./media/characters/vance/back.svg",
  13039. extra: 2081 / 1994,
  13040. bottom: 0.014
  13041. }
  13042. },
  13043. hand: {
  13044. height: math.unit(0.88, "feet"),
  13045. name: "Hand",
  13046. image: {
  13047. source: "./media/characters/vance/hand.svg"
  13048. }
  13049. },
  13050. foot: {
  13051. height: math.unit(0.64, "feet"),
  13052. name: "Foot",
  13053. image: {
  13054. source: "./media/characters/vance/foot.svg"
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Small",
  13061. height: math.unit(90, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(100, "meters")
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(15, "miles")
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13076. {
  13077. front: {
  13078. height: math.unit(6, "feet"),
  13079. weight: math.unit(180, "lb"),
  13080. name: "Front",
  13081. image: {
  13082. source: "./media/characters/xochitl/front.svg",
  13083. extra: 2297 / 2261,
  13084. bottom: 0.065
  13085. }
  13086. },
  13087. back: {
  13088. height: math.unit(6, "feet"),
  13089. weight: math.unit(180, "lb"),
  13090. name: "Back",
  13091. image: {
  13092. source: "./media/characters/xochitl/back.svg",
  13093. extra: 2386 / 2354,
  13094. bottom: 0.01
  13095. }
  13096. },
  13097. foot: {
  13098. height: math.unit(6 / 5 * 1.15, "feet"),
  13099. weight: math.unit(150, "lb"),
  13100. name: "Foot",
  13101. image: {
  13102. source: "./media/characters/xochitl/foot.svg"
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(80, "feet")
  13110. },
  13111. {
  13112. name: "Macro+",
  13113. height: math.unit(400, "feet"),
  13114. default: true
  13115. },
  13116. {
  13117. name: "Gigamacro",
  13118. height: math.unit(80000, "miles")
  13119. },
  13120. {
  13121. name: "Gigamacro+",
  13122. height: math.unit(400000, "miles")
  13123. },
  13124. {
  13125. name: "Teramacro",
  13126. height: math.unit(300, "AU")
  13127. },
  13128. ]
  13129. ))
  13130. characterMakers.push(() => makeCharacter(
  13131. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13132. {
  13133. front: {
  13134. height: math.unit(6, "feet"),
  13135. weight: math.unit(150, "lb"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/vincent/front.svg",
  13139. extra: 1130 / 1080,
  13140. bottom: 0.055
  13141. }
  13142. },
  13143. beak: {
  13144. height: math.unit(6 * 0.1, "feet"),
  13145. name: "Beak",
  13146. image: {
  13147. source: "./media/characters/vincent/beak.svg"
  13148. }
  13149. },
  13150. hand: {
  13151. height: math.unit(6 * 0.85, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Hand",
  13154. image: {
  13155. source: "./media/characters/vincent/hand.svg"
  13156. }
  13157. },
  13158. foot: {
  13159. height: math.unit(6 * 0.19, "feet"),
  13160. weight: math.unit(150, "lb"),
  13161. name: "Foot",
  13162. image: {
  13163. source: "./media/characters/vincent/foot.svg"
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Base",
  13170. height: math.unit(6 + 5 / 12, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(300, "feet")
  13176. },
  13177. {
  13178. name: "Megamacro",
  13179. height: math.unit(2, "miles")
  13180. },
  13181. {
  13182. name: "Gigamacro",
  13183. height: math.unit(1000, "miles")
  13184. },
  13185. ]
  13186. ))
  13187. characterMakers.push(() => makeCharacter(
  13188. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13189. {
  13190. front: {
  13191. height: math.unit(6 + 2 / 12, "feet"),
  13192. weight: math.unit(265, "lb"),
  13193. name: "Front",
  13194. image: {
  13195. source: "./media/characters/jay/front.svg",
  13196. extra: 1510 / 1430,
  13197. bottom: 0.042
  13198. }
  13199. },
  13200. back: {
  13201. height: math.unit(6 + 2 / 12, "feet"),
  13202. weight: math.unit(265, "lb"),
  13203. name: "Back",
  13204. image: {
  13205. source: "./media/characters/jay/back.svg",
  13206. extra: 1510 / 1430,
  13207. bottom: 0.025
  13208. }
  13209. },
  13210. clothed: {
  13211. height: math.unit(6 + 2 / 12, "feet"),
  13212. weight: math.unit(265, "lb"),
  13213. name: "Front (Clothed)",
  13214. image: {
  13215. source: "./media/characters/jay/clothed.svg",
  13216. extra: 744 / 699,
  13217. bottom: 0.043
  13218. }
  13219. },
  13220. head: {
  13221. height: math.unit(1.772, "feet"),
  13222. name: "Head",
  13223. image: {
  13224. source: "./media/characters/jay/head.svg"
  13225. }
  13226. },
  13227. sizeRay: {
  13228. height: math.unit(1.331, "feet"),
  13229. name: "Size Ray",
  13230. image: {
  13231. source: "./media/characters/jay/size-ray.svg"
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Micro",
  13238. height: math.unit(1, "inch")
  13239. },
  13240. {
  13241. name: "Normal",
  13242. height: math.unit(6 + 2 / 12, "feet"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Macro",
  13247. height: math.unit(1, "mile")
  13248. },
  13249. {
  13250. name: "Megamacro",
  13251. height: math.unit(100, "miles")
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13257. {
  13258. front: {
  13259. height: math.unit(2, "meters"),
  13260. weight: math.unit(500, "kg"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/coatl/front.svg",
  13264. extra: 3948 / 3500,
  13265. bottom: 0.082
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(4, "meters")
  13273. },
  13274. {
  13275. name: "Macro",
  13276. height: math.unit(100, "meters"),
  13277. default: true
  13278. },
  13279. {
  13280. name: "Macro+",
  13281. height: math.unit(300, "meters")
  13282. },
  13283. {
  13284. name: "Megamacro",
  13285. height: math.unit(3, "gigameters")
  13286. },
  13287. {
  13288. name: "Megamacro+",
  13289. height: math.unit(300, "terameters")
  13290. },
  13291. {
  13292. name: "Megamacro++",
  13293. height: math.unit(3, "lightyears")
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13299. {
  13300. front: {
  13301. height: math.unit(6, "feet"),
  13302. weight: math.unit(50, "kg"),
  13303. name: "front",
  13304. image: {
  13305. source: "./media/characters/shiroryu/front.svg",
  13306. extra: 1990 / 1935
  13307. }
  13308. },
  13309. },
  13310. [
  13311. {
  13312. name: "Mortal Mingling",
  13313. height: math.unit(3, "meters")
  13314. },
  13315. {
  13316. name: "Kaiju-ish",
  13317. height: math.unit(250, "meters")
  13318. },
  13319. {
  13320. name: "Somewhat Godly",
  13321. height: math.unit(400, "km"),
  13322. default: true
  13323. },
  13324. {
  13325. name: "Planetary",
  13326. height: math.unit(300, "megameters")
  13327. },
  13328. {
  13329. name: "Galaxy-dwarfing",
  13330. height: math.unit(450, "kiloparsecs")
  13331. },
  13332. {
  13333. name: "Universe Eater",
  13334. height: math.unit(150, "gigaparsecs")
  13335. },
  13336. {
  13337. name: "Almost Immeasurable",
  13338. height: math.unit(1.3e266, "yottaparsecs")
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(150, "lb"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/umeko/front.svg",
  13351. extra: 1,
  13352. bottom: 0.019
  13353. }
  13354. },
  13355. frontArmored: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(150, "lb"),
  13358. name: "Front (Armored)",
  13359. image: {
  13360. source: "./media/characters/umeko/front-armored.svg",
  13361. extra: 1,
  13362. bottom: 0.021
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(220, "feet"),
  13370. default: true
  13371. },
  13372. {
  13373. name: "Guardian Dragon",
  13374. height: math.unit(50, "miles")
  13375. },
  13376. {
  13377. name: "Cosmic",
  13378. height: math.unit(800000, "miles")
  13379. },
  13380. ]
  13381. ))
  13382. characterMakers.push(() => makeCharacter(
  13383. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13384. {
  13385. front: {
  13386. height: math.unit(6, "feet"),
  13387. weight: math.unit(150, "lb"),
  13388. name: "Front",
  13389. image: {
  13390. source: "./media/characters/cassidy/front.svg",
  13391. extra: 1,
  13392. bottom: 0.043
  13393. }
  13394. },
  13395. },
  13396. [
  13397. {
  13398. name: "Canon Height",
  13399. height: math.unit(120, "feet"),
  13400. default: true
  13401. },
  13402. {
  13403. name: "Macro+",
  13404. height: math.unit(400, "feet")
  13405. },
  13406. {
  13407. name: "Macro++",
  13408. height: math.unit(4000, "feet")
  13409. },
  13410. {
  13411. name: "Megamacro",
  13412. height: math.unit(3, "miles")
  13413. },
  13414. ]
  13415. ))
  13416. characterMakers.push(() => makeCharacter(
  13417. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13418. {
  13419. front: {
  13420. height: math.unit(6, "feet"),
  13421. weight: math.unit(150, "lb"),
  13422. name: "Front",
  13423. image: {
  13424. source: "./media/characters/isaac/front.svg",
  13425. extra: 896 / 815,
  13426. bottom: 0.11
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Human Size",
  13433. height: math.unit(8, "feet"),
  13434. default: true
  13435. },
  13436. {
  13437. name: "Macro",
  13438. height: math.unit(400, "feet")
  13439. },
  13440. {
  13441. name: "Megamacro",
  13442. height: math.unit(50, "miles")
  13443. },
  13444. {
  13445. name: "Canon Height",
  13446. height: math.unit(200, "AU")
  13447. },
  13448. ]
  13449. ))
  13450. characterMakers.push(() => makeCharacter(
  13451. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13452. {
  13453. front: {
  13454. height: math.unit(6, "feet"),
  13455. weight: math.unit(72, "kg"),
  13456. name: "Front",
  13457. image: {
  13458. source: "./media/characters/sleekit/front.svg",
  13459. extra: 4693 / 4487,
  13460. bottom: 0.012
  13461. }
  13462. },
  13463. },
  13464. [
  13465. {
  13466. name: "Minimum Height",
  13467. height: math.unit(10, "meters")
  13468. },
  13469. {
  13470. name: "Smaller",
  13471. height: math.unit(25, "meters")
  13472. },
  13473. {
  13474. name: "Larger",
  13475. height: math.unit(38, "meters"),
  13476. default: true
  13477. },
  13478. {
  13479. name: "Maximum height",
  13480. height: math.unit(100, "meters")
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13486. {
  13487. front: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/nillia/front.svg",
  13493. extra: 2195 / 2037,
  13494. bottom: 0.005
  13495. }
  13496. },
  13497. back: {
  13498. height: math.unit(6, "feet"),
  13499. weight: math.unit(150, "lb"),
  13500. name: "Back",
  13501. image: {
  13502. source: "./media/characters/nillia/back.svg",
  13503. extra: 2195 / 2037,
  13504. bottom: 0.005
  13505. }
  13506. },
  13507. },
  13508. [
  13509. {
  13510. name: "Canon Height",
  13511. height: math.unit(489, "feet"),
  13512. default: true
  13513. }
  13514. ]
  13515. ))
  13516. characterMakers.push(() => makeCharacter(
  13517. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13518. {
  13519. front: {
  13520. height: math.unit(6, "feet"),
  13521. weight: math.unit(150, "lb"),
  13522. name: "Front",
  13523. image: {
  13524. source: "./media/characters/mesmyriza/front.svg",
  13525. extra: 2067 / 1784,
  13526. bottom: 0.035
  13527. }
  13528. },
  13529. foot: {
  13530. height: math.unit(6 / (250 / 35), "feet"),
  13531. name: "Foot",
  13532. image: {
  13533. source: "./media/characters/mesmyriza/foot.svg"
  13534. }
  13535. },
  13536. },
  13537. [
  13538. {
  13539. name: "Macro",
  13540. height: math.unit(457, "meters"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Megamacro",
  13545. height: math.unit(8, "megameters")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(6, "feet"),
  13554. weight: math.unit(250, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/saudade/front.svg",
  13558. extra: 1172 / 1139,
  13559. bottom: 0.035
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Micro",
  13566. height: math.unit(3, "inches")
  13567. },
  13568. {
  13569. name: "Normal",
  13570. height: math.unit(6, "feet"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Macro",
  13575. height: math.unit(50, "feet")
  13576. },
  13577. {
  13578. name: "Megamacro",
  13579. height: math.unit(2800, "feet")
  13580. },
  13581. ]
  13582. ))
  13583. characterMakers.push(() => makeCharacter(
  13584. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13585. {
  13586. front: {
  13587. height: math.unit(5 + 4 / 12, "feet"),
  13588. weight: math.unit(100, "lb"),
  13589. name: "Front",
  13590. image: {
  13591. source: "./media/characters/keireer/front.svg",
  13592. extra: 716 / 666,
  13593. bottom: 0.05
  13594. }
  13595. },
  13596. },
  13597. [
  13598. {
  13599. name: "Normal",
  13600. height: math.unit(5 + 4 / 12, "feet"),
  13601. default: true
  13602. },
  13603. ]
  13604. ))
  13605. characterMakers.push(() => makeCharacter(
  13606. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13607. {
  13608. front: {
  13609. height: math.unit(6, "feet"),
  13610. weight: math.unit(90, "kg"),
  13611. name: "Front",
  13612. image: {
  13613. source: "./media/characters/mirja/front.svg",
  13614. extra: 1789 / 1683,
  13615. bottom: 0.05
  13616. }
  13617. },
  13618. frontDressed: {
  13619. height: math.unit(6, "feet"),
  13620. weight: math.unit(90, "lb"),
  13621. name: "Front (Dressed)",
  13622. image: {
  13623. source: "./media/characters/mirja/front-dressed.svg",
  13624. extra: 1789 / 1683,
  13625. bottom: 0.05
  13626. }
  13627. },
  13628. back: {
  13629. height: math.unit(6, "feet"),
  13630. weight: math.unit(90, "lb"),
  13631. name: "Back",
  13632. image: {
  13633. source: "./media/characters/mirja/back.svg",
  13634. extra: 953 / 917,
  13635. bottom: 0.017
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "\"Incognito\"",
  13642. height: math.unit(3, "meters")
  13643. },
  13644. {
  13645. name: "Strolling Size",
  13646. height: math.unit(15, "km")
  13647. },
  13648. {
  13649. name: "Larger Strolling Size",
  13650. height: math.unit(400, "km")
  13651. },
  13652. {
  13653. name: "Preferred Size",
  13654. height: math.unit(5000, "km")
  13655. },
  13656. {
  13657. name: "True Size",
  13658. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13659. default: true
  13660. },
  13661. ]
  13662. ))
  13663. characterMakers.push(() => makeCharacter(
  13664. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13665. {
  13666. front: {
  13667. height: math.unit(15, "feet"),
  13668. weight: math.unit(880, "kg"),
  13669. name: "Front",
  13670. image: {
  13671. source: "./media/characters/nightraver/front.svg",
  13672. extra: 2444 / 2160,
  13673. bottom: 0.027
  13674. }
  13675. },
  13676. back: {
  13677. height: math.unit(15, "feet"),
  13678. weight: math.unit(880, "kg"),
  13679. name: "Back",
  13680. image: {
  13681. source: "./media/characters/nightraver/back.svg",
  13682. extra: 2309 / 2180,
  13683. bottom: 0.005
  13684. }
  13685. },
  13686. sole: {
  13687. height: math.unit(2.878, "feet"),
  13688. name: "Sole",
  13689. image: {
  13690. source: "./media/characters/nightraver/sole.svg"
  13691. }
  13692. },
  13693. foot: {
  13694. height: math.unit(2.285, "feet"),
  13695. name: "Foot",
  13696. image: {
  13697. source: "./media/characters/nightraver/foot.svg"
  13698. }
  13699. },
  13700. maw: {
  13701. height: math.unit(2.67, "feet"),
  13702. name: "Maw",
  13703. image: {
  13704. source: "./media/characters/nightraver/maw.svg"
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Micro",
  13711. height: math.unit(1, "cm")
  13712. },
  13713. {
  13714. name: "Normal",
  13715. height: math.unit(15, "feet"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Macro",
  13720. height: math.unit(300, "feet")
  13721. },
  13722. {
  13723. name: "Megamacro",
  13724. height: math.unit(300, "miles")
  13725. },
  13726. {
  13727. name: "Gigamacro",
  13728. height: math.unit(10000, "miles")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13734. {
  13735. side: {
  13736. height: math.unit(2, "inches"),
  13737. weight: math.unit(5, "grams"),
  13738. name: "Side",
  13739. image: {
  13740. source: "./media/characters/arc/side.svg"
  13741. }
  13742. },
  13743. },
  13744. [
  13745. {
  13746. name: "Micro",
  13747. height: math.unit(2, "inches"),
  13748. default: true
  13749. },
  13750. ]
  13751. ))
  13752. characterMakers.push(() => makeCharacter(
  13753. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13754. {
  13755. front: {
  13756. height: math.unit(1.1938, "meters"),
  13757. weight: math.unit(54, "kg"),
  13758. name: "Front",
  13759. image: {
  13760. source: "./media/characters/nebula-shahar/front.svg",
  13761. extra: 1642 / 1436,
  13762. bottom: 0.06
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Megamicro",
  13769. height: math.unit(0.3, "mm")
  13770. },
  13771. {
  13772. name: "Micro",
  13773. height: math.unit(3, "cm")
  13774. },
  13775. {
  13776. name: "Normal",
  13777. height: math.unit(138, "cm"),
  13778. default: true
  13779. },
  13780. {
  13781. name: "Macro",
  13782. height: math.unit(30, "m")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(5.24, "feet"),
  13791. weight: math.unit(150, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/shayla/front.svg",
  13795. extra: 1512 / 1414,
  13796. bottom: 0.01
  13797. }
  13798. },
  13799. back: {
  13800. height: math.unit(5.24, "feet"),
  13801. weight: math.unit(150, "lb"),
  13802. name: "Back",
  13803. image: {
  13804. source: "./media/characters/shayla/back.svg",
  13805. extra: 1512 / 1414
  13806. }
  13807. },
  13808. hand: {
  13809. height: math.unit(0.7781496062992126, "feet"),
  13810. name: "Hand",
  13811. image: {
  13812. source: "./media/characters/shayla/hand.svg"
  13813. }
  13814. },
  13815. foot: {
  13816. height: math.unit(1.4206036745406823, "feet"),
  13817. name: "Foot",
  13818. image: {
  13819. source: "./media/characters/shayla/foot.svg"
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Micro",
  13826. height: math.unit(0.32, "feet")
  13827. },
  13828. {
  13829. name: "Normal",
  13830. height: math.unit(5.24, "feet"),
  13831. default: true
  13832. },
  13833. {
  13834. name: "Macro",
  13835. height: math.unit(492.12, "feet")
  13836. },
  13837. {
  13838. name: "Megamacro",
  13839. height: math.unit(186.41, "miles")
  13840. },
  13841. ]
  13842. ))
  13843. characterMakers.push(() => makeCharacter(
  13844. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13845. {
  13846. front: {
  13847. height: math.unit(2.2, "m"),
  13848. weight: math.unit(120, "kg"),
  13849. name: "Front",
  13850. image: {
  13851. source: "./media/characters/pia-jr/front.svg",
  13852. extra: 1000 / 970,
  13853. bottom: 0.035
  13854. }
  13855. },
  13856. hand: {
  13857. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13858. name: "Hand",
  13859. image: {
  13860. source: "./media/characters/pia-jr/hand.svg"
  13861. }
  13862. },
  13863. paw: {
  13864. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13865. name: "Paw",
  13866. image: {
  13867. source: "./media/characters/pia-jr/paw.svg"
  13868. }
  13869. },
  13870. },
  13871. [
  13872. {
  13873. name: "Micro",
  13874. height: math.unit(1.2, "cm")
  13875. },
  13876. {
  13877. name: "Normal",
  13878. height: math.unit(2.2, "m"),
  13879. default: true
  13880. },
  13881. {
  13882. name: "Macro",
  13883. height: math.unit(180, "m")
  13884. },
  13885. {
  13886. name: "Megamacro",
  13887. height: math.unit(420, "km")
  13888. },
  13889. ]
  13890. ))
  13891. characterMakers.push(() => makeCharacter(
  13892. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13893. {
  13894. front: {
  13895. height: math.unit(2, "m"),
  13896. weight: math.unit(115, "kg"),
  13897. name: "Front",
  13898. image: {
  13899. source: "./media/characters/pia-sr/front.svg",
  13900. extra: 760 / 730,
  13901. bottom: 0.015
  13902. }
  13903. },
  13904. back: {
  13905. height: math.unit(2, "m"),
  13906. weight: math.unit(115, "kg"),
  13907. name: "Back",
  13908. image: {
  13909. source: "./media/characters/pia-sr/back.svg",
  13910. extra: 760 / 730,
  13911. bottom: 0.01
  13912. }
  13913. },
  13914. hand: {
  13915. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13916. name: "Hand",
  13917. image: {
  13918. source: "./media/characters/pia-sr/hand.svg"
  13919. }
  13920. },
  13921. foot: {
  13922. height: math.unit(1.83, "feet"),
  13923. name: "Foot",
  13924. image: {
  13925. source: "./media/characters/pia-sr/foot.svg"
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Micro",
  13932. height: math.unit(88, "mm")
  13933. },
  13934. {
  13935. name: "Normal",
  13936. height: math.unit(2, "m"),
  13937. default: true
  13938. },
  13939. {
  13940. name: "Macro",
  13941. height: math.unit(200, "m")
  13942. },
  13943. {
  13944. name: "Megamacro",
  13945. height: math.unit(420, "km")
  13946. },
  13947. ]
  13948. ))
  13949. characterMakers.push(() => makeCharacter(
  13950. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13951. {
  13952. front: {
  13953. height: math.unit(8 + 2 / 12, "feet"),
  13954. weight: math.unit(300, "lb"),
  13955. name: "Front",
  13956. image: {
  13957. source: "./media/characters/kibibyte/front.svg",
  13958. extra: 2221 / 2098,
  13959. bottom: 0.04
  13960. }
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Normal",
  13966. height: math.unit(8 + 2 / 12, "feet"),
  13967. default: true
  13968. },
  13969. {
  13970. name: "Socialable Macro",
  13971. height: math.unit(50, "feet")
  13972. },
  13973. {
  13974. name: "Macro",
  13975. height: math.unit(300, "feet")
  13976. },
  13977. {
  13978. name: "Megamacro",
  13979. height: math.unit(500, "miles")
  13980. },
  13981. ]
  13982. ))
  13983. characterMakers.push(() => makeCharacter(
  13984. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13985. {
  13986. front: {
  13987. height: math.unit(6, "feet"),
  13988. weight: math.unit(150, "lb"),
  13989. name: "Front",
  13990. image: {
  13991. source: "./media/characters/felix/front.svg",
  13992. extra: 762 / 722,
  13993. bottom: 0.02
  13994. }
  13995. },
  13996. frontClothed: {
  13997. height: math.unit(6, "feet"),
  13998. weight: math.unit(150, "lb"),
  13999. name: "Front (Clothed)",
  14000. image: {
  14001. source: "./media/characters/felix/front-clothed.svg",
  14002. extra: 762 / 722,
  14003. bottom: 0.02
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(6 + 8 / 12, "feet"),
  14011. default: true
  14012. },
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(2600, "feet")
  14016. },
  14017. {
  14018. name: "Megamacro",
  14019. height: math.unit(450, "miles")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(6 + 1 / 12, "feet"),
  14028. weight: math.unit(250, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/tobo/front.svg",
  14032. extra: 608 / 586,
  14033. bottom: 0.023
  14034. }
  14035. },
  14036. back: {
  14037. height: math.unit(6 + 1 / 12, "feet"),
  14038. weight: math.unit(250, "lb"),
  14039. name: "Back",
  14040. image: {
  14041. source: "./media/characters/tobo/back.svg",
  14042. extra: 608 / 586
  14043. }
  14044. },
  14045. },
  14046. [
  14047. {
  14048. name: "Nano",
  14049. height: math.unit(2, "nm")
  14050. },
  14051. {
  14052. name: "Megamicro",
  14053. height: math.unit(0.1, "mm")
  14054. },
  14055. {
  14056. name: "Micro",
  14057. height: math.unit(1, "inch"),
  14058. default: true
  14059. },
  14060. {
  14061. name: "Human-sized",
  14062. height: math.unit(6 + 1 / 12, "feet")
  14063. },
  14064. {
  14065. name: "Macro",
  14066. height: math.unit(250, "feet")
  14067. },
  14068. {
  14069. name: "Megamacro",
  14070. height: math.unit(75, "miles")
  14071. },
  14072. {
  14073. name: "Texas-sized",
  14074. height: math.unit(750, "miles")
  14075. },
  14076. {
  14077. name: "Teramacro",
  14078. height: math.unit(50000, "miles")
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14084. {
  14085. front: {
  14086. height: math.unit(6, "feet"),
  14087. weight: math.unit(269, "lb"),
  14088. name: "Front",
  14089. image: {
  14090. source: "./media/characters/danny-kapowsky/front.svg",
  14091. extra: 766 / 736,
  14092. bottom: 0.044
  14093. }
  14094. },
  14095. back: {
  14096. height: math.unit(6, "feet"),
  14097. weight: math.unit(269, "lb"),
  14098. name: "Back",
  14099. image: {
  14100. source: "./media/characters/danny-kapowsky/back.svg",
  14101. extra: 797 / 760,
  14102. bottom: 0.025
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Macro",
  14109. height: math.unit(150, "feet"),
  14110. default: true
  14111. },
  14112. {
  14113. name: "Macro+",
  14114. height: math.unit(200, "feet")
  14115. },
  14116. {
  14117. name: "Macro++",
  14118. height: math.unit(300, "feet")
  14119. },
  14120. {
  14121. name: "Macro+++",
  14122. height: math.unit(400, "feet")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14128. {
  14129. side: {
  14130. height: math.unit(6, "feet"),
  14131. weight: math.unit(170, "lb"),
  14132. name: "Side",
  14133. image: {
  14134. source: "./media/characters/finn/side.svg",
  14135. extra: 1953 / 1807,
  14136. bottom: 0.057
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Megamacro",
  14143. height: math.unit(14445, "feet"),
  14144. default: true
  14145. },
  14146. ]
  14147. ))
  14148. characterMakers.push(() => makeCharacter(
  14149. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14150. {
  14151. front: {
  14152. height: math.unit(5 + 6 / 12, "feet"),
  14153. weight: math.unit(125, "lb"),
  14154. name: "Front",
  14155. image: {
  14156. source: "./media/characters/roy/front.svg",
  14157. extra: 1,
  14158. bottom: 0.11
  14159. }
  14160. },
  14161. },
  14162. [
  14163. {
  14164. name: "Micro",
  14165. height: math.unit(3, "inches"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(5 + 6 / 12, "feet")
  14171. },
  14172. {
  14173. name: "Lesser Macro",
  14174. height: math.unit(60, "feet")
  14175. },
  14176. {
  14177. name: "Greater Macro",
  14178. height: math.unit(120, "feet")
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14184. {
  14185. front: {
  14186. height: math.unit(6, "feet"),
  14187. weight: math.unit(100, "lb"),
  14188. name: "Front",
  14189. image: {
  14190. source: "./media/characters/aevsivs/front.svg",
  14191. extra: 1,
  14192. bottom: 0.03
  14193. }
  14194. },
  14195. back: {
  14196. height: math.unit(6, "feet"),
  14197. weight: math.unit(100, "lb"),
  14198. name: "Back",
  14199. image: {
  14200. source: "./media/characters/aevsivs/back.svg"
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Micro",
  14207. height: math.unit(2, "inches"),
  14208. default: true
  14209. },
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(5, "feet")
  14213. },
  14214. ]
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14218. {
  14219. front: {
  14220. height: math.unit(5 + 7 / 12, "feet"),
  14221. weight: math.unit(159, "lb"),
  14222. name: "Front",
  14223. image: {
  14224. source: "./media/characters/hildegard/front.svg",
  14225. extra: 289 / 269,
  14226. bottom: 7.63 / 297.8
  14227. }
  14228. },
  14229. back: {
  14230. height: math.unit(5 + 7 / 12, "feet"),
  14231. weight: math.unit(159, "lb"),
  14232. name: "Back",
  14233. image: {
  14234. source: "./media/characters/hildegard/back.svg",
  14235. extra: 280 / 260,
  14236. bottom: 2.3 / 282
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Normal",
  14243. height: math.unit(5 + 7 / 12, "feet"),
  14244. default: true
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14250. {
  14251. bernard: {
  14252. height: math.unit(2 + 7 / 12, "feet"),
  14253. weight: math.unit(66, "lb"),
  14254. name: "Bernard",
  14255. rename: true,
  14256. image: {
  14257. source: "./media/characters/bernard-wilder/bernard.svg",
  14258. extra: 192 / 128,
  14259. bottom: 0.05
  14260. }
  14261. },
  14262. wilder: {
  14263. height: math.unit(5 + 8 / 12, "feet"),
  14264. weight: math.unit(143, "lb"),
  14265. name: "Wilder",
  14266. rename: true,
  14267. image: {
  14268. source: "./media/characters/bernard-wilder/wilder.svg",
  14269. extra: 361 / 312,
  14270. bottom: 0.02
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Normal",
  14277. height: math.unit(2 + 7 / 12, "feet"),
  14278. default: true
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14284. {
  14285. anthro: {
  14286. height: math.unit(6 + 1 / 12, "feet"),
  14287. weight: math.unit(155, "lb"),
  14288. name: "Anthro",
  14289. image: {
  14290. source: "./media/characters/hearth/anthro.svg",
  14291. extra: 260 / 250,
  14292. bottom: 0.02
  14293. }
  14294. },
  14295. feral: {
  14296. height: math.unit(3.78, "feet"),
  14297. weight: math.unit(35, "kg"),
  14298. name: "Feral",
  14299. image: {
  14300. source: "./media/characters/hearth/feral.svg",
  14301. extra: 153 / 135,
  14302. bottom: 0.03
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Normal",
  14309. height: math.unit(6 + 1 / 12, "feet"),
  14310. default: true
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(6, "feet"),
  14319. weight: math.unit(182, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/ingrid/front.svg",
  14323. extra: 294 / 268,
  14324. bottom: 0.027
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(6, "feet"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14338. {
  14339. eevee: {
  14340. height: math.unit(2 + 10 / 12, "feet"),
  14341. weight: math.unit(86, "lb"),
  14342. name: "Malgam",
  14343. image: {
  14344. source: "./media/characters/malgam/eevee.svg",
  14345. extra: 218 / 180,
  14346. bottom: 0.2
  14347. }
  14348. },
  14349. sylveon: {
  14350. height: math.unit(4, "feet"),
  14351. weight: math.unit(101, "lb"),
  14352. name: "Future Malgam",
  14353. rename: true,
  14354. image: {
  14355. source: "./media/characters/malgam/sylveon.svg",
  14356. extra: 371 / 325,
  14357. bottom: 0.015
  14358. }
  14359. },
  14360. gigantamax: {
  14361. height: math.unit(50, "feet"),
  14362. name: "Gigantamax Malgam",
  14363. rename: true,
  14364. image: {
  14365. source: "./media/characters/malgam/gigantamax.svg"
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Normal",
  14372. height: math.unit(2 + 10 / 12, "feet"),
  14373. default: true
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14379. {
  14380. front: {
  14381. height: math.unit(5 + 11 / 12, "feet"),
  14382. weight: math.unit(188, "lb"),
  14383. name: "Front",
  14384. image: {
  14385. source: "./media/characters/fleur/front.svg",
  14386. extra: 309 / 283,
  14387. bottom: 0.007
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Normal",
  14394. height: math.unit(5 + 11 / 12, "feet"),
  14395. default: true
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(5 + 4 / 12, "feet"),
  14404. weight: math.unit(122, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/jude/front.svg",
  14408. extra: 288 / 273,
  14409. bottom: 0.03
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(5 + 4 / 12, "feet"),
  14417. default: true
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(5 + 11 / 12, "feet"),
  14426. weight: math.unit(190, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/seara/front.svg",
  14430. extra: 1,
  14431. bottom: 0.05
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Normal",
  14438. height: math.unit(5 + 11 / 12, "feet"),
  14439. default: true
  14440. },
  14441. ]
  14442. ))
  14443. characterMakers.push(() => makeCharacter(
  14444. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14445. {
  14446. front: {
  14447. height: math.unit(16 + 5 / 12, "feet"),
  14448. weight: math.unit(524, "lb"),
  14449. name: "Front",
  14450. image: {
  14451. source: "./media/characters/caspian/front.svg",
  14452. extra: 1,
  14453. bottom: 0.04
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(16 + 5 / 12, "feet"),
  14461. default: true
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(5 + 7 / 12, "feet"),
  14470. weight: math.unit(170, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/mika/front.svg",
  14474. extra: 1,
  14475. bottom: 0.016
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Normal",
  14482. height: math.unit(5 + 7 / 12, "feet"),
  14483. default: true
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14489. {
  14490. front: {
  14491. height: math.unit(6 + 2 / 12, "feet"),
  14492. weight: math.unit(268, "lb"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/sol/front.svg",
  14496. extra: 247 / 231,
  14497. bottom: 0.05
  14498. }
  14499. },
  14500. },
  14501. [
  14502. {
  14503. name: "Normal",
  14504. height: math.unit(6 + 2 / 12, "feet"),
  14505. default: true
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14511. {
  14512. buizel: {
  14513. height: math.unit(2 + 5 / 12, "feet"),
  14514. weight: math.unit(87, "lb"),
  14515. name: "Buizel",
  14516. image: {
  14517. source: "./media/characters/umiko/buizel.svg",
  14518. extra: 172 / 157,
  14519. bottom: 0.01
  14520. }
  14521. },
  14522. floatzel: {
  14523. height: math.unit(5 + 9 / 12, "feet"),
  14524. weight: math.unit(250, "lb"),
  14525. name: "Floatzel",
  14526. image: {
  14527. source: "./media/characters/umiko/floatzel.svg",
  14528. extra: 262 / 248
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(2 + 5 / 12, "feet"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14542. {
  14543. front: {
  14544. height: math.unit(6 + 2 / 12, "feet"),
  14545. weight: math.unit(146, "lb"),
  14546. name: "Front",
  14547. image: {
  14548. source: "./media/characters/iliac/front.svg",
  14549. extra: 389 / 365,
  14550. bottom: 0.035
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Normal",
  14557. height: math.unit(6 + 2 / 12, "feet"),
  14558. default: true
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14564. {
  14565. front: {
  14566. height: math.unit(6, "feet"),
  14567. weight: math.unit(170, "lb"),
  14568. name: "Front",
  14569. image: {
  14570. source: "./media/characters/topaz/front.svg",
  14571. extra: 317 / 303,
  14572. bottom: 0.055
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Normal",
  14579. height: math.unit(6, "feet"),
  14580. default: true
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(5 + 11 / 12, "feet"),
  14589. weight: math.unit(144, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/gabriel/front.svg",
  14593. extra: 285 / 262,
  14594. bottom: 0.004
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Normal",
  14601. height: math.unit(5 + 11 / 12, "feet"),
  14602. default: true
  14603. },
  14604. ]
  14605. ))
  14606. characterMakers.push(() => makeCharacter(
  14607. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14608. {
  14609. side: {
  14610. height: math.unit(6 + 5 / 12, "feet"),
  14611. weight: math.unit(300, "lb"),
  14612. name: "Side",
  14613. image: {
  14614. source: "./media/characters/tempest-suicune/side.svg",
  14615. extra: 195 / 154,
  14616. bottom: 0.04
  14617. }
  14618. },
  14619. },
  14620. [
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(6 + 5 / 12, "feet"),
  14624. default: true
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(7 + 2 / 12, "feet"),
  14633. weight: math.unit(322, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/vulcan/front.svg",
  14637. extra: 154 / 147,
  14638. bottom: 0.04
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Normal",
  14645. height: math.unit(7 + 2 / 12, "feet"),
  14646. default: true
  14647. },
  14648. ]
  14649. ))
  14650. characterMakers.push(() => makeCharacter(
  14651. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14652. {
  14653. front: {
  14654. height: math.unit(5 + 10 / 12, "feet"),
  14655. weight: math.unit(264, "lb"),
  14656. name: "Front",
  14657. image: {
  14658. source: "./media/characters/gault/front.svg",
  14659. extra: 161 / 140,
  14660. bottom: 0.028
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Normal",
  14667. height: math.unit(5 + 10 / 12, "feet"),
  14668. default: true
  14669. },
  14670. ]
  14671. ))
  14672. characterMakers.push(() => makeCharacter(
  14673. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14674. {
  14675. front: {
  14676. height: math.unit(6, "feet"),
  14677. weight: math.unit(150, "lb"),
  14678. name: "Front",
  14679. image: {
  14680. source: "./media/characters/shard/front.svg",
  14681. extra: 273 / 238,
  14682. bottom: 0.02
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Normal",
  14689. height: math.unit(3 + 6 / 12, "feet"),
  14690. default: true
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(5 + 11 / 12, "feet"),
  14699. weight: math.unit(146, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/ashe/front.svg",
  14703. extra: 400 / 373,
  14704. bottom: 0.01
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Normal",
  14711. height: math.unit(5 + 11 / 12, "feet"),
  14712. default: true
  14713. },
  14714. ]
  14715. ))
  14716. characterMakers.push(() => makeCharacter(
  14717. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14718. {
  14719. front: {
  14720. height: math.unit(5 + 5 / 12, "feet"),
  14721. weight: math.unit(135, "lb"),
  14722. name: "Front",
  14723. image: {
  14724. source: "./media/characters/beatrix/front.svg",
  14725. extra: 392 / 379,
  14726. bottom: 0.01
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(6, "feet"),
  14734. default: true
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14740. {
  14741. front: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/ignatius/front.svg",
  14747. extra: 245 / 222,
  14748. bottom: 0.01
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(5 + 5 / 12, "feet"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14762. {
  14763. front: {
  14764. height: math.unit(6 + 2 / 12, "feet"),
  14765. weight: math.unit(138, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/mei-li/front.svg",
  14769. extra: 237 / 229,
  14770. bottom: 0.03
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Normal",
  14777. height: math.unit(6 + 2 / 12, "feet"),
  14778. default: true
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(2 + 4 / 12, "feet"),
  14787. weight: math.unit(62, "lb"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/puru/front.svg",
  14791. extra: 206 / 149,
  14792. bottom: 0.06
  14793. }
  14794. },
  14795. },
  14796. [
  14797. {
  14798. name: "Normal",
  14799. height: math.unit(2 + 4 / 12, "feet"),
  14800. default: true
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14806. {
  14807. taur: {
  14808. height: math.unit(11, "feet"),
  14809. weight: math.unit(500, "lb"),
  14810. name: "Taur",
  14811. image: {
  14812. source: "./media/characters/kee/taur.svg",
  14813. extra: 1,
  14814. bottom: 0.04
  14815. }
  14816. },
  14817. },
  14818. [
  14819. {
  14820. name: "Normal",
  14821. height: math.unit(11, "feet"),
  14822. default: true
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14828. {
  14829. anthro: {
  14830. height: math.unit(7, "feet"),
  14831. weight: math.unit(190, "lb"),
  14832. name: "Anthro",
  14833. image: {
  14834. source: "./media/characters/cobalt-dracha/anthro.svg",
  14835. extra: 231 / 225,
  14836. bottom: 0.04
  14837. }
  14838. },
  14839. feral: {
  14840. height: math.unit(9 + 7 / 12, "feet"),
  14841. weight: math.unit(294, "lb"),
  14842. name: "Feral",
  14843. image: {
  14844. source: "./media/characters/cobalt-dracha/feral.svg",
  14845. extra: 692 / 633,
  14846. bottom: 0.05
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(7, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14860. {
  14861. fallen: {
  14862. height: math.unit(11 + 8 / 12, "feet"),
  14863. weight: math.unit(485, "lb"),
  14864. name: "Java (Fallen)",
  14865. rename: true,
  14866. image: {
  14867. source: "./media/characters/java/fallen.svg",
  14868. extra: 226 / 208,
  14869. bottom: 0.005
  14870. }
  14871. },
  14872. godkin: {
  14873. height: math.unit(10 + 6 / 12, "feet"),
  14874. weight: math.unit(328, "lb"),
  14875. name: "Java (Godkin)",
  14876. rename: true,
  14877. image: {
  14878. source: "./media/characters/java/godkin.svg",
  14879. extra: 270 / 262,
  14880. bottom: 0.02
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(11 + 8 / 12, "feet"),
  14888. default: true
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14894. {
  14895. front: {
  14896. height: math.unit(7 + 8 / 12, "feet"),
  14897. weight: math.unit(320, "lb"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/skoll/front.svg",
  14901. extra: 232 / 220,
  14902. bottom: 0.02
  14903. }
  14904. },
  14905. },
  14906. [
  14907. {
  14908. name: "Normal",
  14909. height: math.unit(7 + 8 / 12, "feet"),
  14910. default: true
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14916. {
  14917. front: {
  14918. height: math.unit(5 + 9 / 12, "feet"),
  14919. weight: math.unit(170, "lb"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/purna/front.svg",
  14923. extra: 239 / 229,
  14924. bottom: 0.01
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Normal",
  14931. height: math.unit(5 + 9 / 12, "feet"),
  14932. default: true
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14938. {
  14939. front: {
  14940. height: math.unit(5 + 9 / 12, "feet"),
  14941. weight: math.unit(142, "lb"),
  14942. name: "Front",
  14943. image: {
  14944. source: "./media/characters/kuva/front.svg",
  14945. extra: 281 / 271,
  14946. bottom: 0.006
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(5 + 9 / 12, "feet"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14960. {
  14961. anthro: {
  14962. height: math.unit(9 + 2 / 12, "feet"),
  14963. weight: math.unit(270, "lb"),
  14964. name: "Anthro",
  14965. image: {
  14966. source: "./media/characters/embra/anthro.svg",
  14967. extra: 200 / 187,
  14968. bottom: 0.02
  14969. }
  14970. },
  14971. feral: {
  14972. height: math.unit(18 + 8 / 12, "feet"),
  14973. weight: math.unit(576, "lb"),
  14974. name: "Feral",
  14975. image: {
  14976. source: "./media/characters/embra/feral.svg",
  14977. extra: 152 / 137,
  14978. bottom: 0.037
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(9 + 2 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14992. {
  14993. anthro: {
  14994. height: math.unit(10 + 9 / 12, "feet"),
  14995. weight: math.unit(224, "lb"),
  14996. name: "Anthro",
  14997. image: {
  14998. source: "./media/characters/grottos/anthro.svg",
  14999. extra: 350 / 332,
  15000. bottom: 0.045
  15001. }
  15002. },
  15003. feral: {
  15004. height: math.unit(20 + 7 / 12, "feet"),
  15005. weight: math.unit(629, "lb"),
  15006. name: "Feral",
  15007. image: {
  15008. source: "./media/characters/grottos/feral.svg",
  15009. extra: 207 / 190,
  15010. bottom: 0.05
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(10 + 9 / 12, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15024. {
  15025. anthro: {
  15026. height: math.unit(9 + 6 / 12, "feet"),
  15027. weight: math.unit(298, "lb"),
  15028. name: "Anthro",
  15029. image: {
  15030. source: "./media/characters/frifna/anthro.svg",
  15031. extra: 282 / 269,
  15032. bottom: 0.015
  15033. }
  15034. },
  15035. feral: {
  15036. height: math.unit(16 + 2 / 12, "feet"),
  15037. weight: math.unit(624, "lb"),
  15038. name: "Feral",
  15039. image: {
  15040. source: "./media/characters/frifna/feral.svg"
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Normal",
  15047. height: math.unit(9 + 6 / 12, "feet"),
  15048. default: true
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15054. {
  15055. front: {
  15056. height: math.unit(6 + 2 / 12, "feet"),
  15057. weight: math.unit(168, "lb"),
  15058. name: "Front",
  15059. image: {
  15060. source: "./media/characters/elise/front.svg",
  15061. extra: 276 / 271
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(6 + 2 / 12, "feet"),
  15069. default: true
  15070. },
  15071. ]
  15072. ))
  15073. characterMakers.push(() => makeCharacter(
  15074. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15075. {
  15076. front: {
  15077. height: math.unit(5 + 10 / 12, "feet"),
  15078. weight: math.unit(210, "lb"),
  15079. name: "Front",
  15080. image: {
  15081. source: "./media/characters/glade/front.svg",
  15082. extra: 258 / 247,
  15083. bottom: 0.008
  15084. }
  15085. },
  15086. },
  15087. [
  15088. {
  15089. name: "Normal",
  15090. height: math.unit(5 + 10 / 12, "feet"),
  15091. default: true
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15097. {
  15098. front: {
  15099. height: math.unit(5 + 10 / 12, "feet"),
  15100. weight: math.unit(129, "lb"),
  15101. name: "Front",
  15102. image: {
  15103. source: "./media/characters/rina/front.svg",
  15104. extra: 266 / 255,
  15105. bottom: 0.005
  15106. }
  15107. },
  15108. },
  15109. [
  15110. {
  15111. name: "Normal",
  15112. height: math.unit(5 + 10 / 12, "feet"),
  15113. default: true
  15114. },
  15115. ]
  15116. ))
  15117. characterMakers.push(() => makeCharacter(
  15118. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15119. {
  15120. front: {
  15121. height: math.unit(6 + 1 / 12, "feet"),
  15122. weight: math.unit(192, "lb"),
  15123. name: "Front",
  15124. image: {
  15125. source: "./media/characters/veronica/front.svg",
  15126. extra: 319 / 309,
  15127. bottom: 0.005
  15128. }
  15129. },
  15130. },
  15131. [
  15132. {
  15133. name: "Normal",
  15134. height: math.unit(6 + 1 / 12, "feet"),
  15135. default: true
  15136. },
  15137. ]
  15138. ))
  15139. characterMakers.push(() => makeCharacter(
  15140. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15141. {
  15142. front: {
  15143. height: math.unit(9 + 3 / 12, "feet"),
  15144. weight: math.unit(1100, "lb"),
  15145. name: "Front",
  15146. image: {
  15147. source: "./media/characters/braxton/front.svg",
  15148. extra: 1057 / 984,
  15149. bottom: 0.05
  15150. }
  15151. },
  15152. },
  15153. [
  15154. {
  15155. name: "Normal",
  15156. height: math.unit(9 + 3 / 12, "feet")
  15157. },
  15158. {
  15159. name: "Giant",
  15160. height: math.unit(300, "feet"),
  15161. default: true
  15162. },
  15163. {
  15164. name: "Macro",
  15165. height: math.unit(700, "feet")
  15166. },
  15167. {
  15168. name: "Megamacro",
  15169. height: math.unit(6000, "feet")
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(6 + 7 / 12, "feet"),
  15178. weight: math.unit(150, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/blue-feyonics/front.svg",
  15182. extra: 1403 / 1306,
  15183. bottom: 0.047
  15184. }
  15185. },
  15186. },
  15187. [
  15188. {
  15189. name: "Normal",
  15190. height: math.unit(6 + 7 / 12, "feet"),
  15191. default: true
  15192. },
  15193. ]
  15194. ))
  15195. characterMakers.push(() => makeCharacter(
  15196. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15197. {
  15198. front: {
  15199. height: math.unit(1.8, "meters"),
  15200. weight: math.unit(60, "kg"),
  15201. name: "Front",
  15202. image: {
  15203. source: "./media/characters/maxwell/front.svg",
  15204. extra: 2060 / 1873
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Micro",
  15211. height: math.unit(1, "mm")
  15212. },
  15213. {
  15214. name: "Normal",
  15215. height: math.unit(1.8, "meter"),
  15216. default: true
  15217. },
  15218. {
  15219. name: "Macro",
  15220. height: math.unit(30, "meters")
  15221. },
  15222. {
  15223. name: "Megamacro",
  15224. height: math.unit(10, "km")
  15225. },
  15226. ]
  15227. ))
  15228. characterMakers.push(() => makeCharacter(
  15229. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15230. {
  15231. front: {
  15232. height: math.unit(6, "feet"),
  15233. weight: math.unit(150, "lb"),
  15234. name: "Front",
  15235. image: {
  15236. source: "./media/characters/jack/front.svg",
  15237. extra: 1754 / 1640,
  15238. bottom: 0.01
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Normal",
  15245. height: math.unit(80000, "feet"),
  15246. default: true
  15247. },
  15248. {
  15249. name: "Max size",
  15250. height: math.unit(10, "lightyears")
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15256. {
  15257. upright: {
  15258. height: math.unit(7, "feet"),
  15259. weight: math.unit(170, "lb"),
  15260. name: "Upright",
  15261. image: {
  15262. source: "./media/characters/cafat/upright.svg",
  15263. bottom: 0.01
  15264. }
  15265. },
  15266. uprightFull: {
  15267. height: math.unit(7, "feet"),
  15268. weight: math.unit(170, "lb"),
  15269. name: "Upright (Full)",
  15270. image: {
  15271. source: "./media/characters/cafat/upright-full.svg",
  15272. bottom: 0.01
  15273. }
  15274. },
  15275. side: {
  15276. height: math.unit(5, "feet"),
  15277. weight: math.unit(150, "lb"),
  15278. name: "Side",
  15279. image: {
  15280. source: "./media/characters/cafat/side.svg"
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Small",
  15287. height: math.unit(7, "feet"),
  15288. default: true
  15289. },
  15290. {
  15291. name: "Large",
  15292. height: math.unit(15.5, "feet")
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15298. {
  15299. front: {
  15300. height: math.unit(6, "feet"),
  15301. weight: math.unit(150, "lb"),
  15302. name: "Front",
  15303. image: {
  15304. source: "./media/characters/verin-raharra/front.svg",
  15305. extra: 5019 / 4835,
  15306. bottom: 0.023
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Normal",
  15313. height: math.unit(7 + 5 / 12, "feet"),
  15314. default: true
  15315. },
  15316. {
  15317. name: "Upsized",
  15318. height: math.unit(20, "feet")
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(7, "feet"),
  15327. weight: math.unit(230, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/nakata/front.svg",
  15331. extra: 1.005,
  15332. bottom: 0.01
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(7, "feet"),
  15340. default: true
  15341. },
  15342. {
  15343. name: "Big",
  15344. height: math.unit(14, "feet")
  15345. },
  15346. {
  15347. name: "Macro",
  15348. height: math.unit(400, "feet")
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(4.91, "feet"),
  15357. weight: math.unit(100, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/lily/front.svg",
  15361. extra: 1585 / 1415,
  15362. bottom: 0.02
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(4.91, "feet"),
  15370. default: true
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15376. {
  15377. laying: {
  15378. height: math.unit(4 + 4 / 12, "feet"),
  15379. weight: math.unit(600, "lb"),
  15380. name: "Laying",
  15381. image: {
  15382. source: "./media/characters/sheila/laying.svg",
  15383. extra: 1333 / 1265,
  15384. bottom: 0.16
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Normal",
  15391. height: math.unit(4 + 4 / 12, "feet"),
  15392. default: true
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(190, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/sax/front.svg",
  15405. extra: 1187 / 973,
  15406. bottom: 0.042
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Micro",
  15413. height: math.unit(4, "inches"),
  15414. default: true
  15415. },
  15416. ]
  15417. ))
  15418. characterMakers.push(() => makeCharacter(
  15419. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15420. {
  15421. front: {
  15422. height: math.unit(6, "feet"),
  15423. weight: math.unit(150, "lb"),
  15424. name: "Front",
  15425. image: {
  15426. source: "./media/characters/pandora/front.svg",
  15427. extra: 2720 / 2556,
  15428. bottom: 0.015
  15429. }
  15430. },
  15431. back: {
  15432. height: math.unit(6, "feet"),
  15433. weight: math.unit(150, "lb"),
  15434. name: "Back",
  15435. image: {
  15436. source: "./media/characters/pandora/back.svg",
  15437. extra: 2720 / 2556,
  15438. bottom: 0.01
  15439. }
  15440. },
  15441. beans: {
  15442. height: math.unit(6 / 8, "feet"),
  15443. name: "Beans",
  15444. image: {
  15445. source: "./media/characters/pandora/beans.svg"
  15446. }
  15447. },
  15448. skirt: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Skirt",
  15452. image: {
  15453. source: "./media/characters/pandora/skirt.svg",
  15454. extra: 1622 / 1525,
  15455. bottom: 0.015
  15456. }
  15457. },
  15458. hoodie: {
  15459. height: math.unit(6, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Hoodie",
  15462. image: {
  15463. source: "./media/characters/pandora/hoodie.svg",
  15464. extra: 1622 / 1525,
  15465. bottom: 0.015
  15466. }
  15467. },
  15468. casual: {
  15469. height: math.unit(6, "feet"),
  15470. weight: math.unit(150, "lb"),
  15471. name: "Casual",
  15472. image: {
  15473. source: "./media/characters/pandora/casual.svg",
  15474. extra: 1622 / 1525,
  15475. bottom: 0.015
  15476. }
  15477. },
  15478. },
  15479. [
  15480. {
  15481. name: "Normal",
  15482. height: math.unit(6, "feet")
  15483. },
  15484. {
  15485. name: "Big Steppy",
  15486. height: math.unit(1, "km"),
  15487. default: true
  15488. },
  15489. ]
  15490. ))
  15491. characterMakers.push(() => makeCharacter(
  15492. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15493. {
  15494. side: {
  15495. height: math.unit(10, "feet"),
  15496. weight: math.unit(800, "kg"),
  15497. name: "Side",
  15498. image: {
  15499. source: "./media/characters/venio-darcony/side.svg",
  15500. extra: 1373 / 1003,
  15501. bottom: 0.037
  15502. }
  15503. },
  15504. front: {
  15505. height: math.unit(19, "feet"),
  15506. weight: math.unit(800, "kg"),
  15507. name: "Front",
  15508. image: {
  15509. source: "./media/characters/venio-darcony/front.svg"
  15510. }
  15511. },
  15512. back: {
  15513. height: math.unit(19, "feet"),
  15514. weight: math.unit(800, "kg"),
  15515. name: "Back",
  15516. image: {
  15517. source: "./media/characters/venio-darcony/back.svg"
  15518. }
  15519. },
  15520. sideNsfw: {
  15521. height: math.unit(10, "feet"),
  15522. weight: math.unit(800, "kg"),
  15523. name: "Side (NSFW)",
  15524. image: {
  15525. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15526. extra: 1373 / 1003,
  15527. bottom: 0.037
  15528. }
  15529. },
  15530. frontNsfw: {
  15531. height: math.unit(19, "feet"),
  15532. weight: math.unit(800, "kg"),
  15533. name: "Front (NSFW)",
  15534. image: {
  15535. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15536. }
  15537. },
  15538. backNsfw: {
  15539. height: math.unit(19, "feet"),
  15540. weight: math.unit(800, "kg"),
  15541. name: "Back (NSFW)",
  15542. image: {
  15543. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15544. }
  15545. },
  15546. sideArmored: {
  15547. height: math.unit(10, "feet"),
  15548. weight: math.unit(800, "kg"),
  15549. name: "Side (Armored)",
  15550. image: {
  15551. source: "./media/characters/venio-darcony/side-armored.svg",
  15552. extra: 1373 / 1003,
  15553. bottom: 0.037
  15554. }
  15555. },
  15556. frontArmored: {
  15557. height: math.unit(19, "feet"),
  15558. weight: math.unit(900, "kg"),
  15559. name: "Front (Armored)",
  15560. image: {
  15561. source: "./media/characters/venio-darcony/front-armored.svg"
  15562. }
  15563. },
  15564. backArmored: {
  15565. height: math.unit(19, "feet"),
  15566. weight: math.unit(900, "kg"),
  15567. name: "Back (Armored)",
  15568. image: {
  15569. source: "./media/characters/venio-darcony/back-armored.svg"
  15570. }
  15571. },
  15572. sword: {
  15573. height: math.unit(10, "feet"),
  15574. weight: math.unit(50, "lb"),
  15575. name: "Sword",
  15576. image: {
  15577. source: "./media/characters/venio-darcony/sword.svg"
  15578. }
  15579. },
  15580. },
  15581. [
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(10, "feet")
  15585. },
  15586. {
  15587. name: "Macro",
  15588. height: math.unit(130, "feet"),
  15589. default: true
  15590. },
  15591. {
  15592. name: "Macro+",
  15593. height: math.unit(240, "feet")
  15594. },
  15595. ]
  15596. ))
  15597. characterMakers.push(() => makeCharacter(
  15598. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15599. {
  15600. front: {
  15601. height: math.unit(6, "feet"),
  15602. weight: math.unit(150, "lb"),
  15603. name: "Front",
  15604. image: {
  15605. source: "./media/characters/veski/front.svg",
  15606. extra: 1299 / 1225,
  15607. bottom: 0.04
  15608. }
  15609. },
  15610. back: {
  15611. height: math.unit(6, "feet"),
  15612. weight: math.unit(150, "lb"),
  15613. name: "Back",
  15614. image: {
  15615. source: "./media/characters/veski/back.svg",
  15616. extra: 1299 / 1225,
  15617. bottom: 0.008
  15618. }
  15619. },
  15620. maw: {
  15621. height: math.unit(1.5 * 1.21, "feet"),
  15622. name: "Maw",
  15623. image: {
  15624. source: "./media/characters/veski/maw.svg"
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Macro",
  15631. height: math.unit(2, "km"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(5 + 7 / 12, "feet"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/isabelle/front.svg",
  15644. extra: 2130 / 1976,
  15645. bottom: 0.05
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Supermicro",
  15652. height: math.unit(10, "micrometers")
  15653. },
  15654. {
  15655. name: "Micro",
  15656. height: math.unit(1, "inch")
  15657. },
  15658. {
  15659. name: "Tiny",
  15660. height: math.unit(5, "inches")
  15661. },
  15662. {
  15663. name: "Standard",
  15664. height: math.unit(5 + 7 / 12, "inches")
  15665. },
  15666. {
  15667. name: "Macro",
  15668. height: math.unit(80, "meters"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Megamacro",
  15673. height: math.unit(250, "meters")
  15674. },
  15675. {
  15676. name: "Gigamacro",
  15677. height: math.unit(5, "km")
  15678. },
  15679. {
  15680. name: "Cosmic",
  15681. height: math.unit(2.5e6, "miles")
  15682. },
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15687. {
  15688. front: {
  15689. height: math.unit(6, "feet"),
  15690. weight: math.unit(150, "lb"),
  15691. name: "Front",
  15692. image: {
  15693. source: "./media/characters/hanzo/front.svg",
  15694. extra: 374 / 344,
  15695. bottom: 0.02
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(8, "feet"),
  15703. default: true
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(7, "feet"),
  15712. weight: math.unit(130, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/anna/front.svg",
  15716. extra: 169 / 145,
  15717. bottom: 0.06
  15718. }
  15719. },
  15720. full: {
  15721. height: math.unit(4.96, "feet"),
  15722. weight: math.unit(220, "lb"),
  15723. name: "Full",
  15724. image: {
  15725. source: "./media/characters/anna/full.svg",
  15726. extra: 138 / 114,
  15727. bottom: 0.15
  15728. }
  15729. },
  15730. tongue: {
  15731. height: math.unit(2.53, "feet"),
  15732. name: "Tongue",
  15733. image: {
  15734. source: "./media/characters/anna/tongue.svg"
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(7, "feet"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15748. {
  15749. front: {
  15750. height: math.unit(7, "feet"),
  15751. weight: math.unit(150, "lb"),
  15752. name: "Front",
  15753. image: {
  15754. source: "./media/characters/ian-corvid/front.svg",
  15755. extra: 150 / 142,
  15756. bottom: 0.02
  15757. }
  15758. },
  15759. back: {
  15760. height: math.unit(7, "feet"),
  15761. weight: math.unit(150, "lb"),
  15762. name: "Back",
  15763. image: {
  15764. source: "./media/characters/ian-corvid/back.svg",
  15765. extra: 150 / 143,
  15766. bottom: 0.01
  15767. }
  15768. },
  15769. stomping: {
  15770. height: math.unit(7, "feet"),
  15771. weight: math.unit(150, "lb"),
  15772. name: "Stomping",
  15773. image: {
  15774. source: "./media/characters/ian-corvid/stomping.svg",
  15775. extra: 76 / 72
  15776. }
  15777. },
  15778. sitting: {
  15779. height: math.unit(7 / 1.8, "feet"),
  15780. weight: math.unit(150, "lb"),
  15781. name: "Sitting",
  15782. image: {
  15783. source: "./media/characters/ian-corvid/sitting.svg",
  15784. extra: 1400 / 1269,
  15785. bottom: 0.15
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Tiny Microw",
  15792. height: math.unit(1, "inch")
  15793. },
  15794. {
  15795. name: "Microw",
  15796. height: math.unit(6, "inches")
  15797. },
  15798. {
  15799. name: "Crow",
  15800. height: math.unit(7 + 1 / 12, "feet"),
  15801. default: true
  15802. },
  15803. {
  15804. name: "Macrow",
  15805. height: math.unit(176, "feet")
  15806. },
  15807. ]
  15808. ))
  15809. characterMakers.push(() => makeCharacter(
  15810. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15811. {
  15812. front: {
  15813. height: math.unit(5 + 7 / 12, "feet"),
  15814. weight: math.unit(147, "lb"),
  15815. name: "Front",
  15816. image: {
  15817. source: "./media/characters/natalie-kellon/front.svg",
  15818. extra: 1214 / 1141,
  15819. bottom: 0.02
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Micro",
  15826. height: math.unit(1 / 16, "inch")
  15827. },
  15828. {
  15829. name: "Tiny",
  15830. height: math.unit(4, "inches")
  15831. },
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(5 + 7 / 12, "feet"),
  15835. default: true
  15836. },
  15837. {
  15838. name: "Amazon",
  15839. height: math.unit(12, "feet")
  15840. },
  15841. {
  15842. name: "Giantess",
  15843. height: math.unit(160, "meters")
  15844. },
  15845. {
  15846. name: "Titaness",
  15847. height: math.unit(800, "meters")
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(6, "feet"),
  15856. weight: math.unit(150, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/alluria/front.svg",
  15860. extra: 806 / 738,
  15861. bottom: 0.01
  15862. }
  15863. },
  15864. side: {
  15865. height: math.unit(6, "feet"),
  15866. weight: math.unit(150, "lb"),
  15867. name: "Side",
  15868. image: {
  15869. source: "./media/characters/alluria/side.svg",
  15870. extra: 800 / 750,
  15871. }
  15872. },
  15873. back: {
  15874. height: math.unit(6, "feet"),
  15875. weight: math.unit(150, "lb"),
  15876. name: "Back",
  15877. image: {
  15878. source: "./media/characters/alluria/back.svg",
  15879. extra: 806 / 738,
  15880. }
  15881. },
  15882. frontMaid: {
  15883. height: math.unit(6, "feet"),
  15884. weight: math.unit(150, "lb"),
  15885. name: "Front (Maid)",
  15886. image: {
  15887. source: "./media/characters/alluria/front-maid.svg",
  15888. extra: 806 / 738,
  15889. bottom: 0.01
  15890. }
  15891. },
  15892. sideMaid: {
  15893. height: math.unit(6, "feet"),
  15894. weight: math.unit(150, "lb"),
  15895. name: "Side (Maid)",
  15896. image: {
  15897. source: "./media/characters/alluria/side-maid.svg",
  15898. extra: 800 / 750,
  15899. bottom: 0.005
  15900. }
  15901. },
  15902. backMaid: {
  15903. height: math.unit(6, "feet"),
  15904. weight: math.unit(150, "lb"),
  15905. name: "Back (Maid)",
  15906. image: {
  15907. source: "./media/characters/alluria/back-maid.svg",
  15908. extra: 806 / 738,
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Micro",
  15915. height: math.unit(6, "inches"),
  15916. default: true
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(150, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/kyle/front.svg",
  15929. extra: 1069 / 962,
  15930. bottom: 77.228 / 1727.45
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Macro",
  15937. height: math.unit(150, "feet"),
  15938. default: true
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15944. {
  15945. front: {
  15946. height: math.unit(6, "feet"),
  15947. weight: math.unit(300, "lb"),
  15948. name: "Front",
  15949. image: {
  15950. source: "./media/characters/duncan/front.svg",
  15951. extra: 1650 / 1482,
  15952. bottom: 0.05
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Macro",
  15959. height: math.unit(100, "feet"),
  15960. default: true
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15966. {
  15967. front: {
  15968. height: math.unit(5 + 4 / 12, "feet"),
  15969. weight: math.unit(220, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/memory/front.svg",
  15973. extra: 3641 / 3545,
  15974. bottom: 0.03
  15975. }
  15976. },
  15977. back: {
  15978. height: math.unit(5 + 4 / 12, "feet"),
  15979. weight: math.unit(220, "lb"),
  15980. name: "Back",
  15981. image: {
  15982. source: "./media/characters/memory/back.svg",
  15983. extra: 3641 / 3545,
  15984. bottom: 0.025
  15985. }
  15986. },
  15987. frontSkirt: {
  15988. height: math.unit(5 + 4 / 12, "feet"),
  15989. weight: math.unit(220, "lb"),
  15990. name: "Front (Skirt)",
  15991. image: {
  15992. source: "./media/characters/memory/front-skirt.svg",
  15993. extra: 3641 / 3545,
  15994. bottom: 0.03
  15995. }
  15996. },
  15997. frontDress: {
  15998. height: math.unit(5 + 4 / 12, "feet"),
  15999. weight: math.unit(220, "lb"),
  16000. name: "Front (Dress)",
  16001. image: {
  16002. source: "./media/characters/memory/front-dress.svg",
  16003. extra: 3641 / 3545,
  16004. bottom: 0.03
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Micro",
  16011. height: math.unit(6, "inches"),
  16012. default: true
  16013. },
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(5 + 4 / 12, "feet")
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16022. {
  16023. front: {
  16024. height: math.unit(4 + 11 / 12, "feet"),
  16025. weight: math.unit(100, "lb"),
  16026. name: "Front",
  16027. image: {
  16028. source: "./media/characters/luno/front.svg",
  16029. extra: 1535 / 1487,
  16030. bottom: 0.03
  16031. }
  16032. },
  16033. },
  16034. [
  16035. {
  16036. name: "Micro",
  16037. height: math.unit(3, "inches")
  16038. },
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(4 + 11 / 12, "feet"),
  16042. default: true
  16043. },
  16044. {
  16045. name: "Macro",
  16046. height: math.unit(300, "feet")
  16047. },
  16048. {
  16049. name: "Megamacro",
  16050. height: math.unit(700, "miles")
  16051. },
  16052. ]
  16053. ))
  16054. characterMakers.push(() => makeCharacter(
  16055. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16056. {
  16057. front: {
  16058. height: math.unit(6 + 2 / 12, "feet"),
  16059. weight: math.unit(170, "lb"),
  16060. name: "Front",
  16061. image: {
  16062. source: "./media/characters/jamesy/front.svg",
  16063. extra: 440 / 382,
  16064. bottom: 0.005
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Micro",
  16071. height: math.unit(3, "inches")
  16072. },
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(6 + 2 / 12, "feet"),
  16076. default: true
  16077. },
  16078. {
  16079. name: "Macro",
  16080. height: math.unit(300, "feet")
  16081. },
  16082. {
  16083. name: "Megamacro",
  16084. height: math.unit(700, "miles")
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16090. {
  16091. front: {
  16092. height: math.unit(6, "feet"),
  16093. weight: math.unit(160, "lb"),
  16094. name: "Front",
  16095. image: {
  16096. source: "./media/characters/mark/front.svg",
  16097. extra: 3300 / 3100,
  16098. bottom: 136.42 / 3440.47
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Macro",
  16105. height: math.unit(120, "meters")
  16106. },
  16107. {
  16108. name: "Bigger Macro",
  16109. height: math.unit(350, "meters")
  16110. },
  16111. {
  16112. name: "Megamacro",
  16113. height: math.unit(8, "km"),
  16114. default: true
  16115. },
  16116. {
  16117. name: "Continental",
  16118. height: math.unit(4550, "km")
  16119. },
  16120. {
  16121. name: "Planetary",
  16122. height: math.unit(65000, "km")
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16128. {
  16129. front: {
  16130. height: math.unit(6, "feet"),
  16131. weight: math.unit(400, "lb"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/mac/front.svg",
  16135. extra: 1048 / 987.7,
  16136. bottom: 60 / 1107.6,
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Macro",
  16143. height: math.unit(500, "feet"),
  16144. default: true
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(5 + 2 / 12, "feet"),
  16153. weight: math.unit(190, "lb"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/bari/front.svg",
  16157. extra: 3156 / 2880,
  16158. bottom: 0.03
  16159. }
  16160. },
  16161. back: {
  16162. height: math.unit(5 + 2 / 12, "feet"),
  16163. weight: math.unit(190, "lb"),
  16164. name: "Back",
  16165. image: {
  16166. source: "./media/characters/bari/back.svg",
  16167. extra: 3260 / 2834,
  16168. bottom: 0.025
  16169. }
  16170. },
  16171. frontPlush: {
  16172. height: math.unit(5 + 2 / 12, "feet"),
  16173. weight: math.unit(190, "lb"),
  16174. name: "Front (Plush)",
  16175. image: {
  16176. source: "./media/characters/bari/front-plush.svg",
  16177. extra: 1112 / 1061,
  16178. bottom: 0.002
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Micro",
  16185. height: math.unit(3, "inches")
  16186. },
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(5 + 2 / 12, "feet"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Macro",
  16194. height: math.unit(20, "feet")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6 + 1 / 12, "feet"),
  16203. weight: math.unit(275, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/hunter-misha-raven/front.svg"
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Mortal",
  16213. height: math.unit(6 + 1 / 12, "feet")
  16214. },
  16215. {
  16216. name: "Divine",
  16217. height: math.unit(1.12134e34, "parsecs"),
  16218. default: true
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16224. {
  16225. front: {
  16226. height: math.unit(6 + 3 / 12, "feet"),
  16227. weight: math.unit(220, "lb"),
  16228. name: "Front",
  16229. image: {
  16230. source: "./media/characters/max-calore/front.svg",
  16231. extra: 1700 / 1648,
  16232. bottom: 0.01
  16233. }
  16234. },
  16235. back: {
  16236. height: math.unit(6 + 3 / 12, "feet"),
  16237. weight: math.unit(220, "lb"),
  16238. name: "Back",
  16239. image: {
  16240. source: "./media/characters/max-calore/back.svg",
  16241. extra: 1700 / 1648,
  16242. bottom: 0.01
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(6 + 3 / 12, "feet"),
  16250. default: true
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16256. {
  16257. side: {
  16258. height: math.unit(2 + 8 / 12, "feet"),
  16259. weight: math.unit(99, "lb"),
  16260. name: "Side",
  16261. image: {
  16262. source: "./media/characters/aspen/side.svg",
  16263. extra: 152 / 138,
  16264. bottom: 0.032
  16265. }
  16266. },
  16267. },
  16268. [
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(2 + 8 / 12, "feet"),
  16272. default: true
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16278. {
  16279. side: {
  16280. height: math.unit(3 + 2 / 12, "feet"),
  16281. weight: math.unit(224, "lb"),
  16282. name: "Side",
  16283. image: {
  16284. source: "./media/characters/sheila-feral-wolf/side.svg",
  16285. extra: 179 / 166,
  16286. bottom: 0.03
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(3 + 2 / 12, "feet"),
  16294. default: true
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16300. {
  16301. side: {
  16302. height: math.unit(1 + 9 / 12, "feet"),
  16303. weight: math.unit(38, "lb"),
  16304. name: "Side",
  16305. image: {
  16306. source: "./media/characters/michelle/side.svg",
  16307. extra: 147 / 136.7,
  16308. bottom: 0.03
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Normal",
  16315. height: math.unit(1 + 9 / 12, "feet"),
  16316. default: true
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(1 + 1 / 12, "feet"),
  16325. weight: math.unit(18, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/nino/front.svg"
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(1 + 1 / 12, "feet"),
  16336. default: true
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(1, "feet"),
  16345. weight: math.unit(16, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/viola/front.svg"
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(1, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(6 + 5 / 12, "feet"),
  16365. weight: math.unit(580, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/atlas/front.svg",
  16369. extra: 298.5 / 290,
  16370. bottom: 0.015
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(6 + 5 / 12, "feet"),
  16378. default: true
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16384. {
  16385. side: {
  16386. height: math.unit(1 + 10 / 12, "feet"),
  16387. weight: math.unit(25, "lb"),
  16388. name: "Side",
  16389. image: {
  16390. source: "./media/characters/davy/side.svg",
  16391. extra: 200 / 170,
  16392. bottom: 0.01
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(1 + 10 / 12, "feet"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16406. {
  16407. side: {
  16408. height: math.unit(4 + 8 / 12, "feet"),
  16409. weight: math.unit(166, "lb"),
  16410. name: "Side",
  16411. image: {
  16412. source: "./media/characters/fiona/side.svg",
  16413. extra: 232 / 220,
  16414. bottom: 0.03
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(4 + 8 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16428. {
  16429. front: {
  16430. height: math.unit(2, "feet"),
  16431. weight: math.unit(62, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/lyla/front.svg",
  16435. bottom: 0.1
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Normal",
  16442. height: math.unit(2, "feet"),
  16443. default: true
  16444. },
  16445. ]
  16446. ))
  16447. characterMakers.push(() => makeCharacter(
  16448. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16449. {
  16450. side: {
  16451. height: math.unit(1.8, "feet"),
  16452. weight: math.unit(44, "lb"),
  16453. name: "Side",
  16454. image: {
  16455. source: "./media/characters/perseus/side.svg",
  16456. bottom: 0.21
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(1.8, "feet"),
  16464. default: true
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16470. {
  16471. side: {
  16472. height: math.unit(4 + 2 / 12, "feet"),
  16473. weight: math.unit(20, "lb"),
  16474. name: "Side",
  16475. image: {
  16476. source: "./media/characters/remus/side.svg"
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(4 + 2 / 12, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(4 + 11 / 12, "feet"),
  16493. weight: math.unit(114, "lb"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/raf/front.svg",
  16497. bottom: 20.5 / 1863
  16498. }
  16499. },
  16500. side: {
  16501. height: math.unit(4 + 11 / 12, "feet"),
  16502. weight: math.unit(114, "lb"),
  16503. name: "Side",
  16504. image: {
  16505. source: "./media/characters/raf/side.svg",
  16506. bottom: 22 / 1822
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Micro",
  16513. height: math.unit(2, "inches")
  16514. },
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(4 + 11 / 12, "feet"),
  16518. default: true
  16519. },
  16520. {
  16521. name: "Macro",
  16522. height: math.unit(70, "feet")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(1.5, "meters"),
  16531. weight: math.unit(68, "kg"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/liam-einarr/front.svg",
  16535. extra: 2822 / 2666
  16536. }
  16537. },
  16538. back: {
  16539. height: math.unit(1.5, "meters"),
  16540. weight: math.unit(68, "kg"),
  16541. name: "Back",
  16542. image: {
  16543. source: "./media/characters/liam-einarr/back.svg",
  16544. extra: 2822 / 2666,
  16545. bottom: 0.015
  16546. }
  16547. },
  16548. },
  16549. [
  16550. {
  16551. name: "Normal",
  16552. height: math.unit(1.5, "meters"),
  16553. default: true
  16554. },
  16555. {
  16556. name: "Macro",
  16557. height: math.unit(150, "meters")
  16558. },
  16559. {
  16560. name: "Megamacro",
  16561. height: math.unit(35, "km")
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16567. {
  16568. front: {
  16569. height: math.unit(6, "feet"),
  16570. weight: math.unit(75, "kg"),
  16571. name: "Front",
  16572. image: {
  16573. source: "./media/characters/linda/front.svg",
  16574. extra: 930 / 874,
  16575. bottom: 0.004
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(6, "feet"),
  16583. default: true
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(6 + 8 / 12, "feet"),
  16592. weight: math.unit(220, "lb"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/caylex/front.svg",
  16596. extra: 821 / 772,
  16597. bottom: 0.07
  16598. }
  16599. },
  16600. back: {
  16601. height: math.unit(6 + 8 / 12, "feet"),
  16602. weight: math.unit(220, "lb"),
  16603. name: "Back",
  16604. image: {
  16605. source: "./media/characters/caylex/back.svg",
  16606. extra: 821 / 772,
  16607. bottom: 0.022
  16608. }
  16609. },
  16610. hand: {
  16611. height: math.unit(1.25, "feet"),
  16612. name: "Hand",
  16613. image: {
  16614. source: "./media/characters/caylex/hand.svg"
  16615. }
  16616. },
  16617. foot: {
  16618. height: math.unit(1.6, "feet"),
  16619. name: "Foot",
  16620. image: {
  16621. source: "./media/characters/caylex/foot.svg"
  16622. }
  16623. },
  16624. armored: {
  16625. height: math.unit(6 + 8 / 12, "feet"),
  16626. weight: math.unit(250, "lb"),
  16627. name: "Armored",
  16628. image: {
  16629. source: "./media/characters/caylex/armored.svg",
  16630. extra: 1420 / 1310,
  16631. bottom: 0.045
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(6 + 8 / 12, "feet"),
  16639. default: true
  16640. },
  16641. {
  16642. name: "Normal+",
  16643. height: math.unit(12, "feet")
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(7 + 6 / 12, "feet"),
  16652. weight: math.unit(288, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/alana/front.svg",
  16656. extra: 679 / 653,
  16657. bottom: 22.5 / 701
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(7 + 6 / 12, "feet")
  16665. },
  16666. {
  16667. name: "Large",
  16668. height: math.unit(50, "feet")
  16669. },
  16670. {
  16671. name: "Macro",
  16672. height: math.unit(100, "feet"),
  16673. default: true
  16674. },
  16675. {
  16676. name: "Macro+",
  16677. height: math.unit(200, "feet")
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(6 + 1 / 12, "feet"),
  16686. weight: math.unit(210, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/hasani/front.svg",
  16690. extra: 244 / 232,
  16691. bottom: 0.01
  16692. }
  16693. },
  16694. back: {
  16695. height: math.unit(6 + 1 / 12, "feet"),
  16696. weight: math.unit(210, "lb"),
  16697. name: "Back",
  16698. image: {
  16699. source: "./media/characters/hasani/back.svg",
  16700. extra: 244 / 232,
  16701. bottom: 0.01
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(6 + 1 / 12, "feet")
  16709. },
  16710. {
  16711. name: "Macro",
  16712. height: math.unit(175, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(1.82, "meters"),
  16722. weight: math.unit(140, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/nita/front.svg",
  16726. extra: 2473 / 2363,
  16727. bottom: 0.01
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(1.82, "m")
  16735. },
  16736. {
  16737. name: "Macro",
  16738. height: math.unit(300, "m")
  16739. },
  16740. {
  16741. name: "Mistake Canon",
  16742. height: math.unit(0.5, "miles"),
  16743. default: true
  16744. },
  16745. {
  16746. name: "Big Mistake",
  16747. height: math.unit(13, "miles")
  16748. },
  16749. {
  16750. name: "Playing God",
  16751. height: math.unit(2450, "miles")
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(4, "feet"),
  16760. weight: math.unit(120, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/shiriko/front.svg",
  16764. extra: 195 / 188
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(4, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(6, "feet"),
  16781. name: "front",
  16782. image: {
  16783. source: "./media/characters/deja/front.svg",
  16784. extra: 926 / 840,
  16785. bottom: 0.07
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Planck Length",
  16792. height: math.unit(1.6e-35, "meters")
  16793. },
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(30.48, "meters"),
  16797. default: true
  16798. },
  16799. {
  16800. name: "Universal",
  16801. height: math.unit(8.8e26, "meters")
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16807. {
  16808. side: {
  16809. height: math.unit(8, "feet"),
  16810. weight: math.unit(6300, "lb"),
  16811. name: "Side",
  16812. image: {
  16813. source: "./media/characters/anima/side.svg",
  16814. bottom: 0.035
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(8, "feet"),
  16822. default: true
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16828. {
  16829. front: {
  16830. height: math.unit(8, "feet"),
  16831. weight: math.unit(350, "lb"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/bianca/front.svg",
  16835. extra: 234 / 225,
  16836. bottom: 0.03
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(8, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(6, "feet"),
  16853. weight: math.unit(150, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/adinia/front.svg",
  16857. extra: 1845 / 1672,
  16858. bottom: 0.02
  16859. }
  16860. },
  16861. back: {
  16862. height: math.unit(6, "feet"),
  16863. weight: math.unit(150, "lb"),
  16864. name: "Back",
  16865. image: {
  16866. source: "./media/characters/adinia/back.svg",
  16867. extra: 1845 / 1672,
  16868. bottom: 0.002
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(11 + 5 / 12, "feet"),
  16876. default: true
  16877. },
  16878. ]
  16879. ))
  16880. characterMakers.push(() => makeCharacter(
  16881. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16882. {
  16883. front: {
  16884. height: math.unit(3, "meters"),
  16885. weight: math.unit(200, "kg"),
  16886. name: "Front",
  16887. image: {
  16888. source: "./media/characters/lykasa/front.svg",
  16889. extra: 1076 / 976,
  16890. bottom: 0.06
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(3, "meters")
  16898. },
  16899. {
  16900. name: "Kaiju",
  16901. height: math.unit(120, "meters"),
  16902. default: true
  16903. },
  16904. {
  16905. name: "Mega Kaiju",
  16906. height: math.unit(240, "km")
  16907. },
  16908. {
  16909. name: "Giga Kaiju",
  16910. height: math.unit(400, "megameters")
  16911. },
  16912. {
  16913. name: "Tera Kaiju",
  16914. height: math.unit(800, "gigameters")
  16915. },
  16916. {
  16917. name: "Kaiju Dragon Goddess",
  16918. height: math.unit(26, "zettaparsecs")
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16924. {
  16925. side: {
  16926. height: math.unit(283 / 124 * 6, "feet"),
  16927. weight: math.unit(35000, "lb"),
  16928. name: "Side",
  16929. image: {
  16930. source: "./media/characters/malfaren/side.svg",
  16931. extra: 2500 / 1010,
  16932. bottom: 0.01
  16933. }
  16934. },
  16935. front: {
  16936. height: math.unit(22.36, "feet"),
  16937. weight: math.unit(35000, "lb"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/malfaren/front.svg",
  16941. extra: 1631 / 1476,
  16942. bottom: 0.01
  16943. }
  16944. },
  16945. maw: {
  16946. height: math.unit(6.9, "feet"),
  16947. name: "Maw",
  16948. image: {
  16949. source: "./media/characters/malfaren/maw.svg"
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Big",
  16956. height: math.unit(283 / 162 * 6, "feet"),
  16957. },
  16958. {
  16959. name: "Bigger",
  16960. height: math.unit(283 / 124 * 6, "feet")
  16961. },
  16962. {
  16963. name: "Massive",
  16964. height: math.unit(283 / 92 * 6, "feet"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "👀💦",
  16969. height: math.unit(283 / 73 * 6, "feet"),
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(1.7, "m"),
  16978. weight: math.unit(70, "kg"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/kernel/front.svg",
  16982. extra: 222 / 210,
  16983. bottom: 0.007
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Nano",
  16990. height: math.unit(17, "micrometers")
  16991. },
  16992. {
  16993. name: "Micro",
  16994. height: math.unit(1.7, "mm")
  16995. },
  16996. {
  16997. name: "Small",
  16998. height: math.unit(1.7, "cm")
  16999. },
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(1.7, "m"),
  17003. default: true
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17009. {
  17010. front: {
  17011. height: math.unit(1.75, "meters"),
  17012. weight: math.unit(65, "kg"),
  17013. name: "Front",
  17014. image: {
  17015. source: "./media/characters/jayne-folest/front.svg",
  17016. extra: 2115 / 2007,
  17017. bottom: 0.02
  17018. }
  17019. },
  17020. back: {
  17021. height: math.unit(1.75, "meters"),
  17022. weight: math.unit(65, "kg"),
  17023. name: "Back",
  17024. image: {
  17025. source: "./media/characters/jayne-folest/back.svg",
  17026. extra: 2115 / 2007,
  17027. bottom: 0.005
  17028. }
  17029. },
  17030. frontClothed: {
  17031. height: math.unit(1.75, "meters"),
  17032. weight: math.unit(65, "kg"),
  17033. name: "Front (Clothed)",
  17034. image: {
  17035. source: "./media/characters/jayne-folest/front-clothed.svg",
  17036. extra: 2115 / 2007,
  17037. bottom: 0.035
  17038. }
  17039. },
  17040. hand: {
  17041. height: math.unit(1 / 1.260, "feet"),
  17042. name: "Hand",
  17043. image: {
  17044. source: "./media/characters/jayne-folest/hand.svg"
  17045. }
  17046. },
  17047. foot: {
  17048. height: math.unit(1 / 0.918, "feet"),
  17049. name: "Foot",
  17050. image: {
  17051. source: "./media/characters/jayne-folest/foot.svg"
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Micro",
  17058. height: math.unit(4, "cm")
  17059. },
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(1.75, "meters")
  17063. },
  17064. {
  17065. name: "Macro",
  17066. height: math.unit(47.5, "meters"),
  17067. default: true
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17073. {
  17074. front: {
  17075. height: math.unit(180, "cm"),
  17076. weight: math.unit(70, "kg"),
  17077. name: "Front",
  17078. image: {
  17079. source: "./media/characters/algier/front.svg",
  17080. extra: 596 / 572,
  17081. bottom: 0.04
  17082. }
  17083. },
  17084. back: {
  17085. height: math.unit(180, "cm"),
  17086. weight: math.unit(70, "kg"),
  17087. name: "Back",
  17088. image: {
  17089. source: "./media/characters/algier/back.svg",
  17090. extra: 596 / 572,
  17091. bottom: 0.025
  17092. }
  17093. },
  17094. frontdressed: {
  17095. height: math.unit(180, "cm"),
  17096. weight: math.unit(150, "kg"),
  17097. name: "Front-dressed",
  17098. image: {
  17099. source: "./media/characters/algier/front-dressed.svg",
  17100. extra: 596 / 572,
  17101. bottom: 0.038
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Micro",
  17108. height: math.unit(5, "cm")
  17109. },
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(180, "cm"),
  17113. default: true
  17114. },
  17115. {
  17116. name: "Macro",
  17117. height: math.unit(64, "m")
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17123. {
  17124. upright: {
  17125. height: math.unit(7, "feet"),
  17126. weight: math.unit(300, "lb"),
  17127. name: "Upright",
  17128. image: {
  17129. source: "./media/characters/pretzel/upright.svg",
  17130. extra: 534 / 522,
  17131. bottom: 0.065
  17132. }
  17133. },
  17134. sprawling: {
  17135. height: math.unit(3.75, "feet"),
  17136. weight: math.unit(300, "lb"),
  17137. name: "Sprawling",
  17138. image: {
  17139. source: "./media/characters/pretzel/sprawling.svg",
  17140. extra: 314 / 281,
  17141. bottom: 0.1
  17142. }
  17143. },
  17144. tongue: {
  17145. height: math.unit(2, "feet"),
  17146. name: "Tongue",
  17147. image: {
  17148. source: "./media/characters/pretzel/tongue.svg"
  17149. }
  17150. },
  17151. },
  17152. [
  17153. {
  17154. name: "Normal",
  17155. height: math.unit(7, "feet"),
  17156. default: true
  17157. },
  17158. {
  17159. name: "Oversized",
  17160. height: math.unit(15, "feet")
  17161. },
  17162. {
  17163. name: "Huge",
  17164. height: math.unit(30, "feet")
  17165. },
  17166. {
  17167. name: "Macro",
  17168. height: math.unit(250, "feet")
  17169. },
  17170. ]
  17171. ))
  17172. characterMakers.push(() => makeCharacter(
  17173. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17174. {
  17175. sideFront: {
  17176. height: math.unit(5 + 2 / 12, "feet"),
  17177. weight: math.unit(120, "lb"),
  17178. name: "Front Side",
  17179. image: {
  17180. source: "./media/characters/roxi/side-front.svg",
  17181. extra: 2924 / 2717,
  17182. bottom: 0.08
  17183. }
  17184. },
  17185. sideBack: {
  17186. height: math.unit(5 + 2 / 12, "feet"),
  17187. weight: math.unit(120, "lb"),
  17188. name: "Back Side",
  17189. image: {
  17190. source: "./media/characters/roxi/side-back.svg",
  17191. extra: 2904 / 2693,
  17192. bottom: 0.06
  17193. }
  17194. },
  17195. front: {
  17196. height: math.unit(5 + 2 / 12, "feet"),
  17197. weight: math.unit(120, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/roxi/front.svg",
  17201. extra: 2028 / 1907,
  17202. bottom: 0.01
  17203. }
  17204. },
  17205. frontAlt: {
  17206. height: math.unit(5 + 2 / 12, "feet"),
  17207. weight: math.unit(120, "lb"),
  17208. name: "Front (Alt)",
  17209. image: {
  17210. source: "./media/characters/roxi/front-alt.svg",
  17211. extra: 1828 / 1798,
  17212. bottom: 0.01
  17213. }
  17214. },
  17215. sitting: {
  17216. height: math.unit(2.8, "feet"),
  17217. weight: math.unit(120, "lb"),
  17218. name: "Sitting",
  17219. image: {
  17220. source: "./media/characters/roxi/sitting.svg",
  17221. extra: 2660 / 2462,
  17222. bottom: 0.1
  17223. }
  17224. },
  17225. },
  17226. [
  17227. {
  17228. name: "Normal",
  17229. height: math.unit(5 + 2 / 12, "feet"),
  17230. default: true
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17236. {
  17237. side: {
  17238. height: math.unit(55, "feet"),
  17239. weight: math.unit(153, "tons"),
  17240. name: "Side",
  17241. image: {
  17242. source: "./media/characters/shadow/side.svg",
  17243. extra: 701 / 628,
  17244. bottom: 0.02
  17245. }
  17246. },
  17247. flying: {
  17248. height: math.unit(145, "feet"),
  17249. weight: math.unit(153, "tons"),
  17250. name: "Flying",
  17251. image: {
  17252. source: "./media/characters/shadow/flying.svg"
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(55, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(6, "feet"),
  17269. weight: math.unit(200, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/marcie/front.svg",
  17273. extra: 960 / 876,
  17274. bottom: 58 / 1017.87
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Macro",
  17281. height: math.unit(1, "mile"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17288. {
  17289. front: {
  17290. height: math.unit(7, "feet"),
  17291. weight: math.unit(200, "lb"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/kachina/front.svg",
  17295. extra: 1290.68 / 1119,
  17296. bottom: 36.5 / 1327.18
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Normal",
  17303. height: math.unit(7, "feet"),
  17304. default: true
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17310. {
  17311. looking: {
  17312. height: math.unit(2, "meters"),
  17313. weight: math.unit(300, "kg"),
  17314. name: "Looking",
  17315. image: {
  17316. source: "./media/characters/kash/looking.svg",
  17317. extra: 474 / 344,
  17318. bottom: 0.03
  17319. }
  17320. },
  17321. side: {
  17322. height: math.unit(2, "meters"),
  17323. weight: math.unit(300, "kg"),
  17324. name: "Side",
  17325. image: {
  17326. source: "./media/characters/kash/side.svg",
  17327. extra: 302 / 251,
  17328. bottom: 0.03
  17329. }
  17330. },
  17331. front: {
  17332. height: math.unit(2, "meters"),
  17333. weight: math.unit(300, "kg"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/kash/front.svg",
  17337. extra: 495 / 360,
  17338. bottom: 0.015
  17339. }
  17340. },
  17341. },
  17342. [
  17343. {
  17344. name: "Normal",
  17345. height: math.unit(2, "meters"),
  17346. default: true
  17347. },
  17348. {
  17349. name: "Big",
  17350. height: math.unit(3, "meters")
  17351. },
  17352. {
  17353. name: "Large",
  17354. height: math.unit(5, "meters")
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17360. {
  17361. feeding: {
  17362. height: math.unit(6.7, "feet"),
  17363. weight: math.unit(350, "lb"),
  17364. name: "Feeding",
  17365. image: {
  17366. source: "./media/characters/lalim/feeding.svg",
  17367. }
  17368. },
  17369. },
  17370. [
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(6.7, "feet"),
  17374. default: true
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17380. {
  17381. front: {
  17382. height: math.unit(9.5, "feet"),
  17383. weight: math.unit(600, "lb"),
  17384. name: "Front",
  17385. image: {
  17386. source: "./media/characters/de'vout/front.svg",
  17387. extra: 1443 / 1328,
  17388. bottom: 0.025
  17389. }
  17390. },
  17391. back: {
  17392. height: math.unit(9.5, "feet"),
  17393. weight: math.unit(600, "lb"),
  17394. name: "Back",
  17395. image: {
  17396. source: "./media/characters/de'vout/back.svg",
  17397. extra: 1443 / 1328
  17398. }
  17399. },
  17400. frontDressed: {
  17401. height: math.unit(9.5, "feet"),
  17402. weight: math.unit(600, "lb"),
  17403. name: "Front (Dressed",
  17404. image: {
  17405. source: "./media/characters/de'vout/front-dressed.svg",
  17406. extra: 1443 / 1328,
  17407. bottom: 0.025
  17408. }
  17409. },
  17410. backDressed: {
  17411. height: math.unit(9.5, "feet"),
  17412. weight: math.unit(600, "lb"),
  17413. name: "Back (Dressed",
  17414. image: {
  17415. source: "./media/characters/de'vout/back-dressed.svg",
  17416. extra: 1443 / 1328
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(9.5, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(8, "feet"),
  17433. weight: math.unit(225, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/talana/front.svg",
  17437. extra: 1410 / 1300,
  17438. bottom: 0.015
  17439. }
  17440. },
  17441. frontDressed: {
  17442. height: math.unit(8, "feet"),
  17443. weight: math.unit(225, "lb"),
  17444. name: "Front (Dressed",
  17445. image: {
  17446. source: "./media/characters/talana/front-dressed.svg",
  17447. extra: 1410 / 1300,
  17448. bottom: 0.015
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Normal",
  17455. height: math.unit(8, "feet"),
  17456. default: true
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17462. {
  17463. side: {
  17464. height: math.unit(7.2, "feet"),
  17465. weight: math.unit(150, "lb"),
  17466. name: "Side",
  17467. image: {
  17468. source: "./media/characters/xeauvok/side.svg",
  17469. extra: 1975 / 1523,
  17470. bottom: 0.07
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(7.2, "feet"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17484. {
  17485. side: {
  17486. height: math.unit(10, "feet"),
  17487. weight: math.unit(900, "kg"),
  17488. name: "Side",
  17489. image: {
  17490. source: "./media/characters/zara/side.svg",
  17491. extra: 504 / 498
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(10, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17505. {
  17506. side: {
  17507. height: math.unit(6, "feet"),
  17508. weight: math.unit(150, "lb"),
  17509. name: "Side",
  17510. image: {
  17511. source: "./media/characters/richard-dragon/side.svg",
  17512. extra: 845 / 340,
  17513. bottom: 0.017
  17514. }
  17515. },
  17516. maw: {
  17517. height: math.unit(2.97, "feet"),
  17518. name: "Maw",
  17519. image: {
  17520. source: "./media/characters/richard-dragon/maw.svg"
  17521. }
  17522. },
  17523. },
  17524. [
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17529. {
  17530. front: {
  17531. height: math.unit(4, "feet"),
  17532. weight: math.unit(100, "lb"),
  17533. name: "Front",
  17534. image: {
  17535. source: "./media/characters/richard-smeargle/front.svg",
  17536. extra: 2952 / 2820,
  17537. bottom: 0.028
  17538. }
  17539. },
  17540. },
  17541. [
  17542. {
  17543. name: "Normal",
  17544. height: math.unit(4, "feet"),
  17545. default: true
  17546. },
  17547. {
  17548. name: "Dynamax",
  17549. height: math.unit(20, "meters")
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(6, "feet"),
  17558. weight: math.unit(110, "lb"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/klay/front.svg",
  17562. extra: 962 / 883,
  17563. bottom: 0.04
  17564. }
  17565. },
  17566. back: {
  17567. height: math.unit(6, "feet"),
  17568. weight: math.unit(110, "lb"),
  17569. name: "Back",
  17570. image: {
  17571. source: "./media/characters/klay/back.svg",
  17572. extra: 962 / 883
  17573. }
  17574. },
  17575. beans: {
  17576. height: math.unit(1.15, "feet"),
  17577. name: "Beans",
  17578. image: {
  17579. source: "./media/characters/klay/beans.svg"
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Micro",
  17586. height: math.unit(6, "inches")
  17587. },
  17588. {
  17589. name: "Mini",
  17590. height: math.unit(3, "feet")
  17591. },
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(6, "feet"),
  17595. default: true
  17596. },
  17597. {
  17598. name: "Big",
  17599. height: math.unit(25, "feet")
  17600. },
  17601. {
  17602. name: "Macro",
  17603. height: math.unit(100, "feet")
  17604. },
  17605. {
  17606. name: "Megamacro",
  17607. height: math.unit(400, "feet")
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17613. {
  17614. front: {
  17615. height: math.unit(6, "feet"),
  17616. weight: math.unit(160, "lb"),
  17617. name: "Front",
  17618. image: {
  17619. source: "./media/characters/marcus/front.svg",
  17620. extra: 734 / 676,
  17621. bottom: 0.03
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Little",
  17628. height: math.unit(6, "feet")
  17629. },
  17630. {
  17631. name: "Normal",
  17632. height: math.unit(110, "feet"),
  17633. default: true
  17634. },
  17635. {
  17636. name: "Macro",
  17637. height: math.unit(250, "feet")
  17638. },
  17639. {
  17640. name: "Megamacro",
  17641. height: math.unit(1000, "feet")
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17647. {
  17648. front: {
  17649. height: math.unit(7, "feet"),
  17650. weight: math.unit(275, "lb"),
  17651. name: "Front",
  17652. image: {
  17653. source: "./media/characters/claude-delroute/front.svg",
  17654. extra: 230 / 214,
  17655. bottom: 0.007
  17656. }
  17657. },
  17658. side: {
  17659. height: math.unit(7, "feet"),
  17660. weight: math.unit(275, "lb"),
  17661. name: "Side",
  17662. image: {
  17663. source: "./media/characters/claude-delroute/side.svg",
  17664. extra: 222 / 214,
  17665. bottom: 0.01
  17666. }
  17667. },
  17668. back: {
  17669. height: math.unit(7, "feet"),
  17670. weight: math.unit(275, "lb"),
  17671. name: "Back",
  17672. image: {
  17673. source: "./media/characters/claude-delroute/back.svg",
  17674. extra: 230 / 214,
  17675. bottom: 0.015
  17676. }
  17677. },
  17678. maw: {
  17679. height: math.unit(0.6407, "meters"),
  17680. name: "Maw",
  17681. image: {
  17682. source: "./media/characters/claude-delroute/maw.svg"
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(7, "feet"),
  17690. default: true
  17691. },
  17692. {
  17693. name: "Lorge",
  17694. height: math.unit(20, "feet")
  17695. },
  17696. ]
  17697. ))
  17698. characterMakers.push(() => makeCharacter(
  17699. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17700. {
  17701. front: {
  17702. height: math.unit(8 + 4 / 12, "feet"),
  17703. weight: math.unit(600, "lb"),
  17704. name: "Front",
  17705. image: {
  17706. source: "./media/characters/dragonien/front.svg",
  17707. extra: 100 / 94,
  17708. bottom: 3.3 / 103.3445
  17709. }
  17710. },
  17711. back: {
  17712. height: math.unit(8 + 4 / 12, "feet"),
  17713. weight: math.unit(600, "lb"),
  17714. name: "Back",
  17715. image: {
  17716. source: "./media/characters/dragonien/back.svg",
  17717. extra: 776 / 746,
  17718. bottom: 6.4 / 782.0616
  17719. }
  17720. },
  17721. foot: {
  17722. height: math.unit(1.54, "feet"),
  17723. name: "Foot",
  17724. image: {
  17725. source: "./media/characters/dragonien/foot.svg",
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(8 + 4 / 12, "feet"),
  17733. default: true
  17734. },
  17735. {
  17736. name: "Macro",
  17737. height: math.unit(200, "feet")
  17738. },
  17739. {
  17740. name: "Megamacro",
  17741. height: math.unit(1, "mile")
  17742. },
  17743. {
  17744. name: "Gigamacro",
  17745. height: math.unit(1000, "miles")
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17751. {
  17752. front: {
  17753. height: math.unit(5 + 2 / 12, "feet"),
  17754. weight: math.unit(110, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/desta/front.svg",
  17758. extra: 767 / 726,
  17759. bottom: 11.7 / 779
  17760. }
  17761. },
  17762. back: {
  17763. height: math.unit(5 + 2 / 12, "feet"),
  17764. weight: math.unit(110, "lb"),
  17765. name: "Back",
  17766. image: {
  17767. source: "./media/characters/desta/back.svg",
  17768. extra: 777 / 728,
  17769. bottom: 6 / 784
  17770. }
  17771. },
  17772. frontAlt: {
  17773. height: math.unit(5 + 2 / 12, "feet"),
  17774. weight: math.unit(110, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/desta/front-alt.svg",
  17778. extra: 1482 / 1417
  17779. }
  17780. },
  17781. side: {
  17782. height: math.unit(5 + 2 / 12, "feet"),
  17783. weight: math.unit(110, "lb"),
  17784. name: "Side",
  17785. image: {
  17786. source: "./media/characters/desta/side.svg",
  17787. extra: 2579 / 2491,
  17788. bottom: 0.053
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Micro",
  17795. height: math.unit(6, "inches")
  17796. },
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(5 + 2 / 12, "feet"),
  17800. default: true
  17801. },
  17802. {
  17803. name: "Macro",
  17804. height: math.unit(62, "feet")
  17805. },
  17806. {
  17807. name: "Megamacro",
  17808. height: math.unit(1800, "feet")
  17809. },
  17810. ]
  17811. ))
  17812. characterMakers.push(() => makeCharacter(
  17813. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17814. {
  17815. front: {
  17816. height: math.unit(10, "feet"),
  17817. weight: math.unit(700, "lb"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/storm-alystar/front.svg",
  17821. extra: 2112 / 1898,
  17822. bottom: 0.034
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Micro",
  17829. height: math.unit(3.5, "inches")
  17830. },
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(10, "feet"),
  17834. default: true
  17835. },
  17836. {
  17837. name: "Macro",
  17838. height: math.unit(400, "feet")
  17839. },
  17840. {
  17841. name: "Deific",
  17842. height: math.unit(60, "miles")
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(2.35, "meters"),
  17851. weight: math.unit(119, "kg"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/ilia/front.svg",
  17855. extra: 1285 / 1255,
  17856. bottom: 0.06
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(2.35, "meters")
  17864. },
  17865. {
  17866. name: "Macro",
  17867. height: math.unit(140, "meters"),
  17868. default: true
  17869. },
  17870. {
  17871. name: "Megamacro",
  17872. height: math.unit(100, "miles")
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(6 + 5 / 12, "feet"),
  17881. weight: math.unit(190, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/kingdead/front.svg",
  17885. extra: 1228 / 1177
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Micro",
  17892. height: math.unit(7, "inches")
  17893. },
  17894. {
  17895. name: "Normal",
  17896. height: math.unit(6 + 5 / 12, "feet")
  17897. },
  17898. {
  17899. name: "Macro",
  17900. height: math.unit(150, "feet"),
  17901. default: true
  17902. },
  17903. {
  17904. name: "Megamacro",
  17905. height: math.unit(200, "miles")
  17906. },
  17907. ]
  17908. ))
  17909. characterMakers.push(() => makeCharacter(
  17910. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17911. {
  17912. front: {
  17913. height: math.unit(8, "feet"),
  17914. weight: math.unit(600, "lb"),
  17915. name: "Front",
  17916. image: {
  17917. source: "./media/characters/kyrehx/front.svg",
  17918. extra: 1195 / 1095,
  17919. bottom: 0.034
  17920. }
  17921. },
  17922. },
  17923. [
  17924. {
  17925. name: "Micro",
  17926. height: math.unit(2, "inches")
  17927. },
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(8, "feet"),
  17931. default: true
  17932. },
  17933. {
  17934. name: "Macro",
  17935. height: math.unit(255, "feet")
  17936. },
  17937. ]
  17938. ))
  17939. characterMakers.push(() => makeCharacter(
  17940. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17941. {
  17942. front: {
  17943. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17944. weight: math.unit(184, "lb"),
  17945. name: "Front",
  17946. image: {
  17947. source: "./media/characters/xang/front.svg",
  17948. extra: 845 / 755
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17956. default: true
  17957. },
  17958. {
  17959. name: "Macro",
  17960. height: math.unit(0.935 * 146, "feet")
  17961. },
  17962. {
  17963. name: "Megamacro",
  17964. height: math.unit(0.935 * 3, "miles")
  17965. },
  17966. ]
  17967. ))
  17968. characterMakers.push(() => makeCharacter(
  17969. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17970. {
  17971. frontDressed: {
  17972. height: math.unit(5 + 7 / 12, "feet"),
  17973. weight: math.unit(140, "lb"),
  17974. name: "Front (Dressed)",
  17975. image: {
  17976. source: "./media/characters/doc-weardno/front-dressed.svg",
  17977. extra: 263 / 234
  17978. }
  17979. },
  17980. backDressed: {
  17981. height: math.unit(5 + 7 / 12, "feet"),
  17982. weight: math.unit(140, "lb"),
  17983. name: "Back (Dressed)",
  17984. image: {
  17985. source: "./media/characters/doc-weardno/back-dressed.svg",
  17986. extra: 266 / 238
  17987. }
  17988. },
  17989. front: {
  17990. height: math.unit(5 + 7 / 12, "feet"),
  17991. weight: math.unit(140, "lb"),
  17992. name: "Front",
  17993. image: {
  17994. source: "./media/characters/doc-weardno/front.svg",
  17995. extra: 254 / 233
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Micro",
  18002. height: math.unit(3, "inches")
  18003. },
  18004. {
  18005. name: "Normal",
  18006. height: math.unit(5 + 7 / 12, "feet"),
  18007. default: true
  18008. },
  18009. {
  18010. name: "Macro",
  18011. height: math.unit(25, "feet")
  18012. },
  18013. {
  18014. name: "Megamacro",
  18015. height: math.unit(2, "miles")
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18021. {
  18022. front: {
  18023. height: math.unit(6 + 2 / 12, "feet"),
  18024. weight: math.unit(153, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/seth-whilst/front.svg",
  18028. bottom: 0.07
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Micro",
  18035. height: math.unit(5, "inches")
  18036. },
  18037. {
  18038. name: "Normal",
  18039. height: math.unit(6 + 2 / 12, "feet"),
  18040. default: true
  18041. },
  18042. ]
  18043. ))
  18044. characterMakers.push(() => makeCharacter(
  18045. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18046. {
  18047. front: {
  18048. height: math.unit(3, "inches"),
  18049. weight: math.unit(8, "grams"),
  18050. name: "Front",
  18051. image: {
  18052. source: "./media/characters/pocket-jabari/front.svg",
  18053. extra: 1024 / 974,
  18054. bottom: 0.039
  18055. }
  18056. },
  18057. },
  18058. [
  18059. {
  18060. name: "Minimicro",
  18061. height: math.unit(8, "mm")
  18062. },
  18063. {
  18064. name: "Micro",
  18065. height: math.unit(3, "inches"),
  18066. default: true
  18067. },
  18068. {
  18069. name: "Normal",
  18070. height: math.unit(3, "feet")
  18071. },
  18072. ]
  18073. ))
  18074. characterMakers.push(() => makeCharacter(
  18075. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18076. {
  18077. front: {
  18078. height: math.unit(15, "feet"),
  18079. weight: math.unit(3280, "lb"),
  18080. name: "Front",
  18081. image: {
  18082. source: "./media/characters/sapphy/front.svg",
  18083. extra: 671 / 577,
  18084. bottom: 0.085
  18085. }
  18086. },
  18087. back: {
  18088. height: math.unit(15, "feet"),
  18089. weight: math.unit(3280, "lb"),
  18090. name: "Back",
  18091. image: {
  18092. source: "./media/characters/sapphy/back.svg",
  18093. extra: 631 / 607,
  18094. bottom: 0.045
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Normal",
  18101. height: math.unit(15, "feet")
  18102. },
  18103. {
  18104. name: "Casual Macro",
  18105. height: math.unit(120, "feet")
  18106. },
  18107. {
  18108. name: "Macro",
  18109. height: math.unit(2150, "feet"),
  18110. default: true
  18111. },
  18112. {
  18113. name: "Megamacro",
  18114. height: math.unit(8, "miles")
  18115. },
  18116. {
  18117. name: "Galaxy Mom",
  18118. height: math.unit(6, "megalightyears")
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18124. {
  18125. front: {
  18126. height: math.unit(6, "feet"),
  18127. weight: math.unit(170, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/kiro/front.svg",
  18131. extra: 1064 / 1012,
  18132. bottom: 0.052
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Micro",
  18139. height: math.unit(6, "inches")
  18140. },
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(6, "feet"),
  18144. default: true
  18145. },
  18146. {
  18147. name: "Macro",
  18148. height: math.unit(72, "feet")
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18154. {
  18155. front: {
  18156. height: math.unit(5 + 9 / 12, "feet"),
  18157. weight: math.unit(175, "lb"),
  18158. name: "Front",
  18159. image: {
  18160. source: "./media/characters/irishfox/front.svg",
  18161. extra: 1912 / 1680,
  18162. bottom: 0.02
  18163. }
  18164. },
  18165. },
  18166. [
  18167. {
  18168. name: "Nano",
  18169. height: math.unit(1, "mm")
  18170. },
  18171. {
  18172. name: "Micro",
  18173. height: math.unit(2, "inches")
  18174. },
  18175. {
  18176. name: "Normal",
  18177. height: math.unit(5 + 9 / 12, "feet"),
  18178. default: true
  18179. },
  18180. {
  18181. name: "Macro",
  18182. height: math.unit(45, "feet")
  18183. },
  18184. ]
  18185. ))
  18186. characterMakers.push(() => makeCharacter(
  18187. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18188. {
  18189. front: {
  18190. height: math.unit(6 + 1 / 12, "feet"),
  18191. weight: math.unit(150, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/aronai-sieyes/front.svg",
  18195. extra: 1556 / 1480,
  18196. bottom: 0.015
  18197. }
  18198. },
  18199. side: {
  18200. height: math.unit(6 + 1 / 12, "feet"),
  18201. weight: math.unit(150, "lb"),
  18202. name: "Side",
  18203. image: {
  18204. source: "./media/characters/aronai-sieyes/side.svg",
  18205. extra: 1433 / 1390,
  18206. bottom: 0.0393
  18207. }
  18208. },
  18209. back: {
  18210. height: math.unit(6 + 1 / 12, "feet"),
  18211. weight: math.unit(150, "lb"),
  18212. name: "Back",
  18213. image: {
  18214. source: "./media/characters/aronai-sieyes/back.svg",
  18215. extra: 1544 / 1494,
  18216. bottom: 0.02
  18217. }
  18218. },
  18219. frontClothed: {
  18220. height: math.unit(6 + 1 / 12, "feet"),
  18221. weight: math.unit(150, "lb"),
  18222. name: "Front (Clothed)",
  18223. image: {
  18224. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18225. extra: 1582 / 1527
  18226. }
  18227. },
  18228. feral: {
  18229. height: math.unit(18, "feet"),
  18230. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18231. name: "Feral",
  18232. image: {
  18233. source: "./media/characters/aronai-sieyes/feral.svg",
  18234. extra: 1530 / 1240,
  18235. bottom: 0.035
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Micro",
  18242. height: math.unit(2, "inches")
  18243. },
  18244. {
  18245. name: "Normal",
  18246. height: math.unit(6 + 1 / 12, "feet"),
  18247. default: true
  18248. }
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18253. {
  18254. front: {
  18255. height: math.unit(12, "feet"),
  18256. weight: math.unit(410, "kg"),
  18257. name: "Front",
  18258. image: {
  18259. source: "./media/characters/xuna/front.svg",
  18260. extra: 2184 / 1980
  18261. }
  18262. },
  18263. side: {
  18264. height: math.unit(12, "feet"),
  18265. weight: math.unit(410, "kg"),
  18266. name: "Side",
  18267. image: {
  18268. source: "./media/characters/xuna/side.svg",
  18269. extra: 2184 / 1980
  18270. }
  18271. },
  18272. back: {
  18273. height: math.unit(12, "feet"),
  18274. weight: math.unit(410, "kg"),
  18275. name: "Back",
  18276. image: {
  18277. source: "./media/characters/xuna/back.svg",
  18278. extra: 2184 / 1980
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Nano glow",
  18285. height: math.unit(10, "nm")
  18286. },
  18287. {
  18288. name: "Micro floof",
  18289. height: math.unit(0.3, "m")
  18290. },
  18291. {
  18292. name: "Huggable softy boi",
  18293. height: math.unit(3.6576, "m"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Admirable floof",
  18298. height: math.unit(80, "meters")
  18299. },
  18300. {
  18301. name: "Gentle macro",
  18302. height: math.unit(300, "meters")
  18303. },
  18304. {
  18305. name: "Very careful floof",
  18306. height: math.unit(3200, "meters")
  18307. },
  18308. {
  18309. name: "The mega floof",
  18310. height: math.unit(36000, "meters")
  18311. },
  18312. {
  18313. name: "Giga-fur-Wicker",
  18314. height: math.unit(4800000, "meters")
  18315. },
  18316. {
  18317. name: "Licky world",
  18318. height: math.unit(20000000, "meters")
  18319. },
  18320. {
  18321. name: "Floofy cyan sun",
  18322. height: math.unit(1500000000, "meters")
  18323. },
  18324. {
  18325. name: "Milky Wicker",
  18326. height: math.unit(1000000000000000000000, "meters")
  18327. },
  18328. {
  18329. name: "The observing Wicker",
  18330. height: math.unit(999999999999999999999999999, "meters")
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(5 + 9 / 12, "feet"),
  18339. weight: math.unit(150, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/arokha-sieyes/front.svg",
  18343. extra: 1425 / 1284,
  18344. bottom: 0.05
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(5 + 9 / 12, "feet")
  18352. },
  18353. {
  18354. name: "Macro",
  18355. height: math.unit(30, "meters"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(6, "feet"),
  18365. weight: math.unit(180, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/arokh-sieyes/front.svg",
  18369. extra: 1830 / 1769,
  18370. bottom: 0.01
  18371. }
  18372. },
  18373. },
  18374. [
  18375. {
  18376. name: "Normal",
  18377. height: math.unit(6, "feet")
  18378. },
  18379. {
  18380. name: "Macro",
  18381. height: math.unit(30, "meters"),
  18382. default: true
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18388. {
  18389. side: {
  18390. height: math.unit(13 + 1 / 12, "feet"),
  18391. weight: math.unit(8.5, "tonnes"),
  18392. name: "Side",
  18393. image: {
  18394. source: "./media/characters/goldeneye/side.svg",
  18395. extra: 1182 / 778,
  18396. bottom: 0.067
  18397. }
  18398. },
  18399. paw: {
  18400. height: math.unit(3.4, "feet"),
  18401. name: "Paw",
  18402. image: {
  18403. source: "./media/characters/goldeneye/paw.svg"
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Normal",
  18410. height: math.unit(13 + 1 / 12, "feet"),
  18411. default: true
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18417. {
  18418. front: {
  18419. height: math.unit(6 + 1 / 12, "feet"),
  18420. weight: math.unit(210, "lb"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/leonardo-lycheborne/front.svg",
  18424. extra: 390 / 365,
  18425. bottom: 0.032
  18426. }
  18427. },
  18428. side: {
  18429. height: math.unit(6 + 1 / 12, "feet"),
  18430. weight: math.unit(210, "lb"),
  18431. name: "Side",
  18432. image: {
  18433. source: "./media/characters/leonardo-lycheborne/side.svg",
  18434. extra: 390 / 365,
  18435. bottom: 0.005
  18436. }
  18437. },
  18438. back: {
  18439. height: math.unit(6 + 1 / 12, "feet"),
  18440. weight: math.unit(210, "lb"),
  18441. name: "Back",
  18442. image: {
  18443. source: "./media/characters/leonardo-lycheborne/back.svg",
  18444. extra: 392 / 366,
  18445. bottom: 0.01
  18446. }
  18447. },
  18448. hand: {
  18449. height: math.unit(1.08, "feet"),
  18450. name: "Hand",
  18451. image: {
  18452. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18453. }
  18454. },
  18455. foot: {
  18456. height: math.unit(1.32, "feet"),
  18457. name: "Foot",
  18458. image: {
  18459. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18460. }
  18461. },
  18462. were: {
  18463. height: math.unit(20, "feet"),
  18464. weight: math.unit(7800, "lb"),
  18465. name: "Were",
  18466. image: {
  18467. source: "./media/characters/leonardo-lycheborne/were.svg",
  18468. extra: 308 / 294,
  18469. bottom: 0.048
  18470. }
  18471. },
  18472. feral: {
  18473. height: math.unit(7.5, "feet"),
  18474. weight: math.unit(600, "lb"),
  18475. name: "Feral",
  18476. image: {
  18477. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18478. extra: 210 / 186,
  18479. bottom: 0.108
  18480. }
  18481. },
  18482. taur: {
  18483. height: math.unit(11, "feet"),
  18484. weight: math.unit(3300, "lb"),
  18485. name: "Taur",
  18486. image: {
  18487. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18488. extra: 320 / 303,
  18489. bottom: 0.025
  18490. }
  18491. },
  18492. barghest: {
  18493. height: math.unit(11, "feet"),
  18494. weight: math.unit(1300, "lb"),
  18495. name: "Barghest",
  18496. image: {
  18497. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18498. extra: 323 / 302,
  18499. bottom: 0.027
  18500. }
  18501. },
  18502. dick: {
  18503. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18504. name: "Dick",
  18505. image: {
  18506. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18507. }
  18508. },
  18509. dickWere: {
  18510. height: math.unit((20) / 3.8, "feet"),
  18511. name: "Dick (Were)",
  18512. image: {
  18513. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Normal",
  18520. height: math.unit(6 + 1 / 12, "feet"),
  18521. default: true
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18527. {
  18528. front: {
  18529. height: math.unit(10, "feet"),
  18530. weight: math.unit(350, "lb"),
  18531. name: "Front",
  18532. image: {
  18533. source: "./media/characters/jet/front.svg",
  18534. extra: 2050 / 1980,
  18535. bottom: 0.013
  18536. }
  18537. },
  18538. back: {
  18539. height: math.unit(10, "feet"),
  18540. weight: math.unit(350, "lb"),
  18541. name: "Back",
  18542. image: {
  18543. source: "./media/characters/jet/back.svg",
  18544. extra: 2050 / 1980,
  18545. bottom: 0.013
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Micro",
  18552. height: math.unit(6, "inches")
  18553. },
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(10, "feet"),
  18557. default: true
  18558. },
  18559. {
  18560. name: "Macro",
  18561. height: math.unit(100, "feet")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(15, "feet"),
  18570. weight: math.unit(2800, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/tanarath/front.svg",
  18574. extra: 2392 / 2220,
  18575. bottom: 0.03
  18576. }
  18577. },
  18578. back: {
  18579. height: math.unit(15, "feet"),
  18580. weight: math.unit(2800, "lb"),
  18581. name: "Back",
  18582. image: {
  18583. source: "./media/characters/tanarath/back.svg",
  18584. extra: 2392 / 2220,
  18585. bottom: 0.03
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(15, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(7 + 1 / 12, "feet"),
  18602. weight: math.unit(175, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/patty-cattybatty/front.svg",
  18606. extra: 908 / 874,
  18607. bottom: 0.025
  18608. }
  18609. },
  18610. },
  18611. [
  18612. {
  18613. name: "Micro",
  18614. height: math.unit(1, "inch")
  18615. },
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(7 + 1 / 12, "feet")
  18619. },
  18620. {
  18621. name: "Mini Macro",
  18622. height: math.unit(155, "feet")
  18623. },
  18624. {
  18625. name: "Macro",
  18626. height: math.unit(1077, "feet")
  18627. },
  18628. {
  18629. name: "Mega Macro",
  18630. height: math.unit(47650, "feet"),
  18631. default: true
  18632. },
  18633. {
  18634. name: "Giga Macro",
  18635. height: math.unit(440, "miles")
  18636. },
  18637. {
  18638. name: "Tera Macro",
  18639. height: math.unit(8700, "miles")
  18640. },
  18641. {
  18642. name: "Planetary Macro",
  18643. height: math.unit(32700, "miles")
  18644. },
  18645. {
  18646. name: "Solar Macro",
  18647. height: math.unit(550000, "miles")
  18648. },
  18649. {
  18650. name: "Celestial Macro",
  18651. height: math.unit(2.5, "AU")
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(4 + 5 / 12, "feet"),
  18660. weight: math.unit(90, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/cappu/front.svg",
  18664. extra: 1247 / 1152,
  18665. bottom: 0.012
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(4 + 5 / 12, "feet"),
  18673. default: true
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18679. {
  18680. frontDressed: {
  18681. height: math.unit(70, "cm"),
  18682. weight: math.unit(6, "kg"),
  18683. name: "Front (Dressed)",
  18684. image: {
  18685. source: "./media/characters/sebi/front-dressed.svg",
  18686. extra: 713.5 / 686.5,
  18687. bottom: 0.003
  18688. }
  18689. },
  18690. front: {
  18691. height: math.unit(70, "cm"),
  18692. weight: math.unit(5, "kg"),
  18693. name: "Front",
  18694. image: {
  18695. source: "./media/characters/sebi/front.svg",
  18696. extra: 713.5 / 686.5,
  18697. bottom: 0.003
  18698. }
  18699. }
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(70, "cm"),
  18705. default: true
  18706. },
  18707. {
  18708. name: "Macro",
  18709. height: math.unit(8, "meters")
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(6, "feet"),
  18718. weight: math.unit(150, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/typhek/front.svg",
  18722. extra: 1948 / 1929,
  18723. bottom: 0.025
  18724. }
  18725. },
  18726. side: {
  18727. height: math.unit(6, "feet"),
  18728. weight: math.unit(150, "lb"),
  18729. name: "Side",
  18730. image: {
  18731. source: "./media/characters/typhek/side.svg",
  18732. extra: 2034 / 2010,
  18733. bottom: 0.003
  18734. }
  18735. },
  18736. back: {
  18737. height: math.unit(6, "feet"),
  18738. weight: math.unit(150, "lb"),
  18739. name: "Back",
  18740. image: {
  18741. source: "./media/characters/typhek/back.svg",
  18742. extra: 2005 / 1978,
  18743. bottom: 0.004
  18744. }
  18745. },
  18746. palm: {
  18747. height: math.unit(1.2, "feet"),
  18748. name: "Palm",
  18749. image: {
  18750. source: "./media/characters/typhek/palm.svg"
  18751. }
  18752. },
  18753. fist: {
  18754. height: math.unit(1.1, "feet"),
  18755. name: "Fist",
  18756. image: {
  18757. source: "./media/characters/typhek/fist.svg"
  18758. }
  18759. },
  18760. foot: {
  18761. height: math.unit(1.57, "feet"),
  18762. name: "Foot",
  18763. image: {
  18764. source: "./media/characters/typhek/foot.svg"
  18765. }
  18766. },
  18767. sole: {
  18768. height: math.unit(2.05, "feet"),
  18769. name: "Sole",
  18770. image: {
  18771. source: "./media/characters/typhek/sole.svg"
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Macro",
  18778. height: math.unit(40, "stories"),
  18779. default: true
  18780. },
  18781. {
  18782. name: "Megamacro",
  18783. height: math.unit(1, "mile")
  18784. },
  18785. {
  18786. name: "Gigamacro",
  18787. height: math.unit(4000, "solarradii")
  18788. },
  18789. {
  18790. name: "Universal",
  18791. height: math.unit(1.1, "universes")
  18792. }
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18797. {
  18798. side: {
  18799. height: math.unit(5 + 7 / 12, "feet"),
  18800. weight: math.unit(150, "lb"),
  18801. name: "Side",
  18802. image: {
  18803. source: "./media/characters/kassy/side.svg",
  18804. extra: 1280 / 1225,
  18805. bottom: 0.002
  18806. }
  18807. },
  18808. front: {
  18809. height: math.unit(5 + 7 / 12, "feet"),
  18810. weight: math.unit(150, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/kassy/front.svg",
  18814. extra: 1280 / 1225,
  18815. bottom: 0.025
  18816. }
  18817. },
  18818. back: {
  18819. height: math.unit(5 + 7 / 12, "feet"),
  18820. weight: math.unit(150, "lb"),
  18821. name: "Back",
  18822. image: {
  18823. source: "./media/characters/kassy/back.svg",
  18824. extra: 1280 / 1225,
  18825. bottom: 0.002
  18826. }
  18827. },
  18828. foot: {
  18829. height: math.unit(1.266, "feet"),
  18830. name: "Foot",
  18831. image: {
  18832. source: "./media/characters/kassy/foot.svg"
  18833. }
  18834. },
  18835. },
  18836. [
  18837. {
  18838. name: "Normal",
  18839. height: math.unit(5 + 7 / 12, "feet")
  18840. },
  18841. {
  18842. name: "Macro",
  18843. height: math.unit(137, "feet"),
  18844. default: true
  18845. },
  18846. {
  18847. name: "Megamacro",
  18848. height: math.unit(1, "mile")
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18854. {
  18855. front: {
  18856. height: math.unit(6 + 1 / 12, "feet"),
  18857. weight: math.unit(200, "lb"),
  18858. name: "Front",
  18859. image: {
  18860. source: "./media/characters/neil/front.svg",
  18861. extra: 1326 / 1250,
  18862. bottom: 0.023
  18863. }
  18864. },
  18865. },
  18866. [
  18867. {
  18868. name: "Normal",
  18869. height: math.unit(6 + 1 / 12, "feet"),
  18870. default: true
  18871. },
  18872. {
  18873. name: "Macro",
  18874. height: math.unit(200, "feet")
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18880. {
  18881. front: {
  18882. height: math.unit(5 + 9 / 12, "feet"),
  18883. weight: math.unit(190, "lb"),
  18884. name: "Front",
  18885. image: {
  18886. source: "./media/characters/atticus/front.svg",
  18887. extra: 2934 / 2785,
  18888. bottom: 0.025
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(5 + 9 / 12, "feet"),
  18896. default: true
  18897. },
  18898. {
  18899. name: "Macro",
  18900. height: math.unit(180, "feet")
  18901. },
  18902. ]
  18903. ))
  18904. characterMakers.push(() => makeCharacter(
  18905. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18906. {
  18907. side: {
  18908. height: math.unit(9, "feet"),
  18909. weight: math.unit(650, "lb"),
  18910. name: "Side",
  18911. image: {
  18912. source: "./media/characters/milo/side.svg",
  18913. extra: 2644 / 2310,
  18914. bottom: 0.032
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(9, "feet"),
  18922. default: true
  18923. },
  18924. {
  18925. name: "Macro",
  18926. height: math.unit(300, "feet")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18932. {
  18933. side: {
  18934. height: math.unit(8, "meters"),
  18935. weight: math.unit(90000, "kg"),
  18936. name: "Side",
  18937. image: {
  18938. source: "./media/characters/ijzer/side.svg",
  18939. extra: 2756 / 1600,
  18940. bottom: 0.01
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Small",
  18947. height: math.unit(3, "meters")
  18948. },
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(8, "meters"),
  18952. default: true
  18953. },
  18954. {
  18955. name: "Normal+",
  18956. height: math.unit(10, "meters")
  18957. },
  18958. {
  18959. name: "Bigger",
  18960. height: math.unit(24, "meters")
  18961. },
  18962. {
  18963. name: "Huge",
  18964. height: math.unit(80, "meters")
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(6 + 2 / 12, "feet"),
  18973. weight: math.unit(153, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/luca-cervicum/front.svg",
  18977. extra: 370 / 327,
  18978. bottom: 0.015
  18979. }
  18980. },
  18981. back: {
  18982. height: math.unit(6 + 2 / 12, "feet"),
  18983. weight: math.unit(153, "lb"),
  18984. name: "Back",
  18985. image: {
  18986. source: "./media/characters/luca-cervicum/back.svg",
  18987. extra: 367 / 333,
  18988. bottom: 0.005
  18989. }
  18990. },
  18991. frontGear: {
  18992. height: math.unit(6 + 2 / 12, "feet"),
  18993. weight: math.unit(173, "lb"),
  18994. name: "Front (Gear)",
  18995. image: {
  18996. source: "./media/characters/luca-cervicum/front-gear.svg",
  18997. extra: 377 / 333,
  18998. bottom: 0.006
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(6 + 2 / 12, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(6 + 1 / 12, "feet"),
  19015. weight: math.unit(304, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/oliver/front.svg",
  19019. extra: 157 / 143,
  19020. bottom: 0.08
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(6 + 1 / 12, "feet"),
  19028. default: true
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19034. {
  19035. front: {
  19036. height: math.unit(5 + 7 / 12, "feet"),
  19037. weight: math.unit(140, "lb"),
  19038. name: "Front",
  19039. image: {
  19040. source: "./media/characters/shane/front.svg",
  19041. extra: 304 / 289,
  19042. bottom: 0.005
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(5 + 7 / 12, "feet"),
  19050. default: true
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(5 + 9 / 12, "feet"),
  19059. weight: math.unit(178, "lb"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/shin/front.svg",
  19063. extra: 159 / 151,
  19064. bottom: 0.015
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(5 + 9 / 12, "feet"),
  19072. default: true
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19078. {
  19079. front: {
  19080. height: math.unit(5 + 10 / 12, "feet"),
  19081. weight: math.unit(168, "lb"),
  19082. name: "Front",
  19083. image: {
  19084. source: "./media/characters/xerxes/front.svg",
  19085. extra: 282 / 260,
  19086. bottom: 0.045
  19087. }
  19088. },
  19089. },
  19090. [
  19091. {
  19092. name: "Normal",
  19093. height: math.unit(5 + 10 / 12, "feet"),
  19094. default: true
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19100. {
  19101. front: {
  19102. height: math.unit(6 + 7 / 12, "feet"),
  19103. weight: math.unit(208, "lb"),
  19104. name: "Front",
  19105. image: {
  19106. source: "./media/characters/chaska/front.svg",
  19107. extra: 332 / 319,
  19108. bottom: 0.015
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(6 + 7 / 12, "feet"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(5 + 8 / 12, "feet"),
  19125. weight: math.unit(208, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/enuk/front.svg",
  19129. extra: 437 / 406,
  19130. bottom: 0.02
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(5 + 8 / 12, "feet"),
  19138. default: true
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19144. {
  19145. front: {
  19146. height: math.unit(5 + 10 / 12, "feet"),
  19147. weight: math.unit(252, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/bruun/front.svg",
  19151. extra: 197 / 187,
  19152. bottom: 0.012
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(5 + 10 / 12, "feet"),
  19160. default: true
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(6 + 10 / 12, "feet"),
  19169. weight: math.unit(255, "lb"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/alexeev/front.svg",
  19173. extra: 213 / 200,
  19174. bottom: 0.05
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Normal",
  19181. height: math.unit(6 + 10 / 12, "feet"),
  19182. default: true
  19183. },
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19188. {
  19189. front: {
  19190. height: math.unit(2 + 8 / 12, "feet"),
  19191. weight: math.unit(22, "lb"),
  19192. name: "Front",
  19193. image: {
  19194. source: "./media/characters/evelyn/front.svg",
  19195. extra: 208 / 180
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Normal",
  19202. height: math.unit(2 + 8 / 12, "feet"),
  19203. default: true
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19209. {
  19210. front: {
  19211. height: math.unit(5 + 9 / 12, "feet"),
  19212. weight: math.unit(139, "lb"),
  19213. name: "Front",
  19214. image: {
  19215. source: "./media/characters/inca/front.svg",
  19216. extra: 294 / 291,
  19217. bottom: 0.03
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(5 + 9 / 12, "feet"),
  19225. default: true
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19231. {
  19232. front: {
  19233. height: math.unit(5 + 1 / 12, "feet"),
  19234. weight: math.unit(84, "lb"),
  19235. name: "Front",
  19236. image: {
  19237. source: "./media/characters/magdalene/front.svg",
  19238. extra: 293 / 273
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(5 + 1 / 12, "feet"),
  19246. default: true
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19252. {
  19253. front: {
  19254. height: math.unit(6 + 3 / 12, "feet"),
  19255. weight: math.unit(185, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/mera/front.svg",
  19259. extra: 291 / 277,
  19260. bottom: 0.03
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(6 + 3 / 12, "feet"),
  19268. default: true
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19274. {
  19275. front: {
  19276. height: math.unit(6 + 7 / 12, "feet"),
  19277. weight: math.unit(160, "lb"),
  19278. name: "Front",
  19279. image: {
  19280. source: "./media/characters/ceres/front.svg",
  19281. extra: 1023 / 950,
  19282. bottom: 0.027
  19283. }
  19284. },
  19285. back: {
  19286. height: math.unit(6 + 7 / 12, "feet"),
  19287. weight: math.unit(160, "lb"),
  19288. name: "Back",
  19289. image: {
  19290. source: "./media/characters/ceres/back.svg",
  19291. extra: 1023 / 950
  19292. }
  19293. },
  19294. },
  19295. [
  19296. {
  19297. name: "Normal",
  19298. height: math.unit(6 + 7 / 12, "feet"),
  19299. default: true
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19305. {
  19306. front: {
  19307. height: math.unit(5 + 10 / 12, "feet"),
  19308. weight: math.unit(150, "lb"),
  19309. name: "Front",
  19310. image: {
  19311. source: "./media/characters/kris/front.svg",
  19312. extra: 885 / 803,
  19313. bottom: 0.03
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(5 + 10 / 12, "feet"),
  19321. default: true
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19327. {
  19328. front: {
  19329. height: math.unit(7, "feet"),
  19330. weight: math.unit(120, "kg"),
  19331. name: "Front",
  19332. image: {
  19333. source: "./media/characters/taluthus/front.svg",
  19334. extra: 903 / 833,
  19335. bottom: 0.015
  19336. }
  19337. },
  19338. },
  19339. [
  19340. {
  19341. name: "Normal",
  19342. height: math.unit(7, "feet"),
  19343. default: true
  19344. },
  19345. {
  19346. name: "Macro",
  19347. height: math.unit(300, "feet")
  19348. },
  19349. ]
  19350. ))
  19351. characterMakers.push(() => makeCharacter(
  19352. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19353. {
  19354. front: {
  19355. height: math.unit(5 + 9 / 12, "feet"),
  19356. weight: math.unit(145, "lb"),
  19357. name: "Front",
  19358. image: {
  19359. source: "./media/characters/dawn/front.svg",
  19360. extra: 2094 / 2016,
  19361. bottom: 0.025
  19362. }
  19363. },
  19364. back: {
  19365. height: math.unit(5 + 9 / 12, "feet"),
  19366. weight: math.unit(160, "lb"),
  19367. name: "Back",
  19368. image: {
  19369. source: "./media/characters/dawn/back.svg",
  19370. extra: 2112 / 2080,
  19371. bottom: 0.005
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Normal",
  19378. height: math.unit(6 + 7 / 12, "feet"),
  19379. default: true
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19385. {
  19386. anthro: {
  19387. height: math.unit(8 + 3 / 12, "feet"),
  19388. weight: math.unit(450, "lb"),
  19389. name: "Anthro",
  19390. image: {
  19391. source: "./media/characters/arador/anthro.svg",
  19392. extra: 1835 / 1718,
  19393. bottom: 0.025
  19394. }
  19395. },
  19396. feral: {
  19397. height: math.unit(4, "feet"),
  19398. weight: math.unit(200, "lb"),
  19399. name: "Feral",
  19400. image: {
  19401. source: "./media/characters/arador/feral.svg",
  19402. extra: 1683 / 1514,
  19403. bottom: 0.07
  19404. }
  19405. },
  19406. },
  19407. [
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(8 + 3 / 12, "feet")
  19411. },
  19412. {
  19413. name: "Macro",
  19414. height: math.unit(82.5, "feet"),
  19415. default: true
  19416. },
  19417. ]
  19418. ))
  19419. characterMakers.push(() => makeCharacter(
  19420. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19421. {
  19422. front: {
  19423. height: math.unit(5 + 10 / 12, "feet"),
  19424. weight: math.unit(125, "lb"),
  19425. name: "Front",
  19426. image: {
  19427. source: "./media/characters/dharsi/front.svg",
  19428. extra: 716 / 630,
  19429. bottom: 0.035
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Nano",
  19436. height: math.unit(100, "nm")
  19437. },
  19438. {
  19439. name: "Micro",
  19440. height: math.unit(2, "inches")
  19441. },
  19442. {
  19443. name: "Normal",
  19444. height: math.unit(5 + 10 / 12, "feet"),
  19445. default: true
  19446. },
  19447. {
  19448. name: "Macro",
  19449. height: math.unit(1000, "feet")
  19450. },
  19451. {
  19452. name: "Megamacro",
  19453. height: math.unit(10, "miles")
  19454. },
  19455. {
  19456. name: "Gigamacro",
  19457. height: math.unit(3000, "miles")
  19458. },
  19459. {
  19460. name: "Teramacro",
  19461. height: math.unit(500000, "miles")
  19462. },
  19463. {
  19464. name: "Teramacro+",
  19465. height: math.unit(30, "galaxies")
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19471. {
  19472. front: {
  19473. height: math.unit(6, "feet"),
  19474. weight: math.unit(150, "lb"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/deathy/front.svg",
  19478. extra: 1552 / 1463,
  19479. bottom: 0.025
  19480. }
  19481. },
  19482. side: {
  19483. height: math.unit(6, "feet"),
  19484. weight: math.unit(150, "lb"),
  19485. name: "Side",
  19486. image: {
  19487. source: "./media/characters/deathy/side.svg",
  19488. extra: 1604 / 1455,
  19489. bottom: 0.025
  19490. }
  19491. },
  19492. back: {
  19493. height: math.unit(6, "feet"),
  19494. weight: math.unit(150, "lb"),
  19495. name: "Back",
  19496. image: {
  19497. source: "./media/characters/deathy/back.svg",
  19498. extra: 1580 / 1463,
  19499. bottom: 0.005
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Micro",
  19506. height: math.unit(5, "millimeters")
  19507. },
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(6 + 5 / 12, "feet"),
  19511. default: true
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19517. {
  19518. front: {
  19519. height: math.unit(16, "feet"),
  19520. weight: math.unit(4000, "lb"),
  19521. name: "Front",
  19522. image: {
  19523. source: "./media/characters/juniper/front.svg",
  19524. bottom: 0.04
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(16, "feet"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19538. {
  19539. front: {
  19540. height: math.unit(6, "feet"),
  19541. weight: math.unit(150, "lb"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/hipster/front.svg",
  19545. extra: 1312 / 1209,
  19546. bottom: 0.025
  19547. }
  19548. },
  19549. back: {
  19550. height: math.unit(6, "feet"),
  19551. weight: math.unit(150, "lb"),
  19552. name: "Back",
  19553. image: {
  19554. source: "./media/characters/hipster/back.svg",
  19555. extra: 1281 / 1196,
  19556. bottom: 0.01
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Micro",
  19563. height: math.unit(1, "mm")
  19564. },
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(4, "inches"),
  19568. default: true
  19569. },
  19570. {
  19571. name: "Macro",
  19572. height: math.unit(500, "feet")
  19573. },
  19574. {
  19575. name: "Megamacro",
  19576. height: math.unit(1000, "miles")
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(6, "feet"),
  19585. weight: math.unit(150, "lb"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/tendirmuldr/front.svg",
  19589. extra: 1878 / 1772,
  19590. bottom: 0.015
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Megamacro",
  19597. height: math.unit(1500, "miles"),
  19598. default: true
  19599. },
  19600. ]
  19601. ))
  19602. characterMakers.push(() => makeCharacter(
  19603. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19604. {
  19605. front: {
  19606. height: math.unit(14, "feet"),
  19607. weight: math.unit(12000, "lb"),
  19608. name: "Front",
  19609. image: {
  19610. source: "./media/characters/mort/front.svg",
  19611. extra: 365 / 318,
  19612. bottom: 0.01
  19613. }
  19614. },
  19615. side: {
  19616. height: math.unit(14, "feet"),
  19617. weight: math.unit(12000, "lb"),
  19618. name: "Side",
  19619. image: {
  19620. source: "./media/characters/mort/side.svg",
  19621. extra: 365 / 318,
  19622. bottom: 0.052
  19623. },
  19624. default: true
  19625. },
  19626. back: {
  19627. height: math.unit(14, "feet"),
  19628. weight: math.unit(12000, "lb"),
  19629. name: "Back",
  19630. image: {
  19631. source: "./media/characters/mort/back.svg",
  19632. extra: 371 / 332,
  19633. bottom: 0.18
  19634. }
  19635. },
  19636. },
  19637. [
  19638. {
  19639. name: "Normal",
  19640. height: math.unit(14, "feet"),
  19641. default: true
  19642. },
  19643. ]
  19644. ))
  19645. characterMakers.push(() => makeCharacter(
  19646. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19647. {
  19648. front: {
  19649. height: math.unit(8, "feet"),
  19650. weight: math.unit(1, "ton"),
  19651. name: "Front",
  19652. image: {
  19653. source: "./media/characters/lycoa/front.svg",
  19654. extra: 1875 / 1789,
  19655. bottom: 0.022
  19656. }
  19657. },
  19658. back: {
  19659. height: math.unit(8, "feet"),
  19660. weight: math.unit(1, "ton"),
  19661. name: "Back",
  19662. image: {
  19663. source: "./media/characters/lycoa/back.svg",
  19664. extra: 1835 / 1781,
  19665. bottom: 0.03
  19666. }
  19667. },
  19668. head: {
  19669. height: math.unit(2.1, "feet"),
  19670. name: "Head",
  19671. image: {
  19672. source: "./media/characters/lycoa/head.svg"
  19673. }
  19674. },
  19675. tailmaw: {
  19676. height: math.unit(1.9, "feet"),
  19677. name: "Tailmaw",
  19678. image: {
  19679. source: "./media/characters/lycoa/tailmaw.svg"
  19680. }
  19681. },
  19682. tentacles: {
  19683. height: math.unit(2.1, "feet"),
  19684. name: "Tentacles",
  19685. image: {
  19686. source: "./media/characters/lycoa/tentacles.svg"
  19687. }
  19688. },
  19689. dick: {
  19690. height: math.unit(1.73, "feet"),
  19691. name: "Dick",
  19692. image: {
  19693. source: "./media/characters/lycoa/dick.svg"
  19694. }
  19695. },
  19696. },
  19697. [
  19698. {
  19699. name: "Normal",
  19700. height: math.unit(8, "feet"),
  19701. default: true
  19702. },
  19703. {
  19704. name: "Macro",
  19705. height: math.unit(30, "feet")
  19706. },
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19711. {
  19712. front: {
  19713. height: math.unit(4 + 2 / 12, "feet"),
  19714. weight: math.unit(70, "lb"),
  19715. name: "Front",
  19716. image: {
  19717. source: "./media/characters/naldara/front.svg",
  19718. extra: 841 / 720,
  19719. bottom: 0.04
  19720. }
  19721. },
  19722. naga: {
  19723. height: math.unit(23, "feet"),
  19724. weight: math.unit(15000, "kg"),
  19725. name: "Naga",
  19726. image: {
  19727. source: "./media/characters/naldara/naga.svg",
  19728. extra: 3290 / 2959,
  19729. bottom: 124 / 3432
  19730. }
  19731. },
  19732. },
  19733. [
  19734. {
  19735. name: "Normal",
  19736. height: math.unit(4 + 2 / 12, "feet"),
  19737. default: true
  19738. },
  19739. ]
  19740. ))
  19741. characterMakers.push(() => makeCharacter(
  19742. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19743. {
  19744. front: {
  19745. height: math.unit(13 + 7 / 12, "feet"),
  19746. weight: math.unit(1500, "lb"),
  19747. name: "Front",
  19748. image: {
  19749. source: "./media/characters/briar/front.svg",
  19750. extra: 626 / 596,
  19751. bottom: 0.08
  19752. }
  19753. },
  19754. },
  19755. [
  19756. {
  19757. name: "Normal",
  19758. height: math.unit(13 + 7 / 12, "feet"),
  19759. default: true
  19760. },
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19765. {
  19766. side: {
  19767. height: math.unit(10, "feet"),
  19768. weight: math.unit(500, "lb"),
  19769. name: "Side",
  19770. image: {
  19771. source: "./media/characters/vanguard/side.svg",
  19772. extra: 502 / 425,
  19773. bottom: 0.087
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(10, "feet"),
  19781. default: true
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(7.5, "feet"),
  19790. weight: math.unit(2, "lb"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/artemis/front.svg",
  19794. extra: 1192 / 1075,
  19795. bottom: 0.07
  19796. }
  19797. },
  19798. frontNsfw: {
  19799. height: math.unit(7.5, "feet"),
  19800. weight: math.unit(2, "lb"),
  19801. name: "Front (NSFW)",
  19802. image: {
  19803. source: "./media/characters/artemis/front-nsfw.svg",
  19804. extra: 1192 / 1075,
  19805. bottom: 0.07
  19806. }
  19807. },
  19808. frontNsfwer: {
  19809. height: math.unit(7.5, "feet"),
  19810. weight: math.unit(2, "lb"),
  19811. name: "Front (NSFW-er)",
  19812. image: {
  19813. source: "./media/characters/artemis/front-nsfwer.svg",
  19814. extra: 1192 / 1075,
  19815. bottom: 0.07
  19816. }
  19817. },
  19818. side: {
  19819. height: math.unit(7.5, "feet"),
  19820. weight: math.unit(2, "lb"),
  19821. name: "Side",
  19822. image: {
  19823. source: "./media/characters/artemis/side.svg",
  19824. extra: 1192 / 1075,
  19825. bottom: 0.07
  19826. }
  19827. },
  19828. sideNsfw: {
  19829. height: math.unit(7.5, "feet"),
  19830. weight: math.unit(2, "lb"),
  19831. name: "Side (NSFW)",
  19832. image: {
  19833. source: "./media/characters/artemis/side-nsfw.svg",
  19834. extra: 1192 / 1075,
  19835. bottom: 0.07
  19836. }
  19837. },
  19838. sideNsfwer: {
  19839. height: math.unit(7.5, "feet"),
  19840. weight: math.unit(2, "lb"),
  19841. name: "Side (NSFW-er)",
  19842. image: {
  19843. source: "./media/characters/artemis/side-nsfwer.svg",
  19844. extra: 1192 / 1075,
  19845. bottom: 0.07
  19846. }
  19847. },
  19848. maw: {
  19849. height: math.unit(1.1, "feet"),
  19850. name: "Maw",
  19851. image: {
  19852. source: "./media/characters/artemis/maw.svg"
  19853. }
  19854. },
  19855. stomach: {
  19856. height: math.unit(0.95, "feet"),
  19857. name: "Stomach",
  19858. image: {
  19859. source: "./media/characters/artemis/stomach.svg"
  19860. }
  19861. },
  19862. dickCanine: {
  19863. height: math.unit(1, "feet"),
  19864. name: "Dick (Canine)",
  19865. image: {
  19866. source: "./media/characters/artemis/dick-canine.svg"
  19867. }
  19868. },
  19869. dickEquine: {
  19870. height: math.unit(0.85, "feet"),
  19871. name: "Dick (Equine)",
  19872. image: {
  19873. source: "./media/characters/artemis/dick-equine.svg"
  19874. }
  19875. },
  19876. dickExotic: {
  19877. height: math.unit(0.85, "feet"),
  19878. name: "Dick (Exotic)",
  19879. image: {
  19880. source: "./media/characters/artemis/dick-exotic.svg"
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Normal",
  19887. height: math.unit(7.5, "feet"),
  19888. default: true
  19889. },
  19890. {
  19891. name: "Enlarged",
  19892. height: math.unit(12, "feet")
  19893. },
  19894. ]
  19895. ))
  19896. characterMakers.push(() => makeCharacter(
  19897. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19898. {
  19899. front: {
  19900. height: math.unit(5 + 3 / 12, "feet"),
  19901. weight: math.unit(160, "lb"),
  19902. name: "Front",
  19903. image: {
  19904. source: "./media/characters/kira/front.svg",
  19905. extra: 906 / 786,
  19906. bottom: 0.01
  19907. }
  19908. },
  19909. back: {
  19910. height: math.unit(5 + 3 / 12, "feet"),
  19911. weight: math.unit(160, "lb"),
  19912. name: "Back",
  19913. image: {
  19914. source: "./media/characters/kira/back.svg",
  19915. extra: 882 / 757,
  19916. bottom: 0.005
  19917. }
  19918. },
  19919. frontDressed: {
  19920. height: math.unit(5 + 3 / 12, "feet"),
  19921. weight: math.unit(160, "lb"),
  19922. name: "Front (Dressed)",
  19923. image: {
  19924. source: "./media/characters/kira/front-dressed.svg",
  19925. extra: 906 / 786,
  19926. bottom: 0.01
  19927. }
  19928. },
  19929. beans: {
  19930. height: math.unit(0.92, "feet"),
  19931. name: "Beans",
  19932. image: {
  19933. source: "./media/characters/kira/beans.svg"
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(5 + 3 / 12, "feet"),
  19941. default: true
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19947. {
  19948. front: {
  19949. height: math.unit(5 + 4 / 12, "feet"),
  19950. weight: math.unit(145, "lb"),
  19951. name: "Front",
  19952. image: {
  19953. source: "./media/characters/scramble/front.svg",
  19954. extra: 763 / 727,
  19955. bottom: 0.05
  19956. }
  19957. },
  19958. back: {
  19959. height: math.unit(5 + 4 / 12, "feet"),
  19960. weight: math.unit(145, "lb"),
  19961. name: "Back",
  19962. image: {
  19963. source: "./media/characters/scramble/back.svg",
  19964. extra: 826 / 737,
  19965. bottom: 0.002
  19966. }
  19967. },
  19968. },
  19969. [
  19970. {
  19971. name: "Normal",
  19972. height: math.unit(5 + 4 / 12, "feet"),
  19973. default: true
  19974. },
  19975. ]
  19976. ))
  19977. characterMakers.push(() => makeCharacter(
  19978. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19979. {
  19980. side: {
  19981. height: math.unit(6 + 2 / 12, "feet"),
  19982. weight: math.unit(190, "lb"),
  19983. name: "Side",
  19984. image: {
  19985. source: "./media/characters/biscuit/side.svg",
  19986. extra: 858 / 791,
  19987. bottom: 0.044
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(6 + 2 / 12, "feet"),
  19995. default: true
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(5 + 2 / 12, "feet"),
  20004. weight: math.unit(120, "lb"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/poffin/front.svg",
  20008. extra: 786 / 680,
  20009. bottom: 0.005
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(5 + 2 / 12, "feet"),
  20017. default: true
  20018. },
  20019. ]
  20020. ))
  20021. characterMakers.push(() => makeCharacter(
  20022. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20023. {
  20024. front: {
  20025. height: math.unit(6 + 3 / 12, "feet"),
  20026. weight: math.unit(519, "lb"),
  20027. name: "Front",
  20028. image: {
  20029. source: "./media/characters/dhari/front.svg",
  20030. extra: 1048 / 946,
  20031. bottom: 0.015
  20032. }
  20033. },
  20034. back: {
  20035. height: math.unit(6 + 3 / 12, "feet"),
  20036. weight: math.unit(519, "lb"),
  20037. name: "Back",
  20038. image: {
  20039. source: "./media/characters/dhari/back.svg",
  20040. extra: 1048 / 931,
  20041. bottom: 0.005
  20042. }
  20043. },
  20044. frontDressed: {
  20045. height: math.unit(6 + 3 / 12, "feet"),
  20046. weight: math.unit(519, "lb"),
  20047. name: "Front (Dressed)",
  20048. image: {
  20049. source: "./media/characters/dhari/front-dressed.svg",
  20050. extra: 1713 / 1546,
  20051. bottom: 0.02
  20052. }
  20053. },
  20054. backDressed: {
  20055. height: math.unit(6 + 3 / 12, "feet"),
  20056. weight: math.unit(519, "lb"),
  20057. name: "Back (Dressed)",
  20058. image: {
  20059. source: "./media/characters/dhari/back-dressed.svg",
  20060. extra: 1699 / 1537,
  20061. bottom: 0.01
  20062. }
  20063. },
  20064. maw: {
  20065. height: math.unit(0.95, "feet"),
  20066. name: "Maw",
  20067. image: {
  20068. source: "./media/characters/dhari/maw.svg"
  20069. }
  20070. },
  20071. wereFront: {
  20072. height: math.unit(12 + 8 / 12, "feet"),
  20073. weight: math.unit(4000, "lb"),
  20074. name: "Front (Were)",
  20075. image: {
  20076. source: "./media/characters/dhari/were-front.svg",
  20077. extra: 1065 / 969,
  20078. bottom: 0.015
  20079. }
  20080. },
  20081. wereBack: {
  20082. height: math.unit(12 + 8 / 12, "feet"),
  20083. weight: math.unit(4000, "lb"),
  20084. name: "Back (Were)",
  20085. image: {
  20086. source: "./media/characters/dhari/were-back.svg",
  20087. extra: 1065 / 969,
  20088. bottom: 0.012
  20089. }
  20090. },
  20091. wereMaw: {
  20092. height: math.unit(0.625, "meters"),
  20093. name: "Maw (Were)",
  20094. image: {
  20095. source: "./media/characters/dhari/were-maw.svg"
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(6 + 3 / 12, "feet"),
  20103. default: true
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20109. {
  20110. anthro: {
  20111. height: math.unit(5 + 7 / 12, "feet"),
  20112. weight: math.unit(175, "lb"),
  20113. name: "Anthro",
  20114. image: {
  20115. source: "./media/characters/rena-dyne/anthro.svg",
  20116. extra: 1849 / 1785,
  20117. bottom: 0.005
  20118. }
  20119. },
  20120. taur: {
  20121. height: math.unit(15 + 6 / 12, "feet"),
  20122. weight: math.unit(8000, "lb"),
  20123. name: "Taur",
  20124. image: {
  20125. source: "./media/characters/rena-dyne/taur.svg",
  20126. extra: 2315 / 2234,
  20127. bottom: 0.033
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(5 + 7 / 12, "feet"),
  20135. default: true
  20136. },
  20137. ]
  20138. ))
  20139. characterMakers.push(() => makeCharacter(
  20140. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20141. {
  20142. front: {
  20143. height: math.unit(8, "feet"),
  20144. weight: math.unit(600, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/weremeep/front.svg",
  20148. extra: 967 / 862,
  20149. bottom: 0.01
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(8, "feet"),
  20157. default: true
  20158. },
  20159. {
  20160. name: "Lorg",
  20161. height: math.unit(12, "feet")
  20162. },
  20163. {
  20164. name: "Oh Lawd She Comin'",
  20165. height: math.unit(20, "feet")
  20166. },
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20171. {
  20172. front: {
  20173. height: math.unit(4, "feet"),
  20174. weight: math.unit(90, "lb"),
  20175. name: "Front",
  20176. image: {
  20177. source: "./media/characters/reza/front.svg",
  20178. extra: 1183 / 1111,
  20179. bottom: 0.017
  20180. }
  20181. },
  20182. back: {
  20183. height: math.unit(4, "feet"),
  20184. weight: math.unit(90, "lb"),
  20185. name: "Back",
  20186. image: {
  20187. source: "./media/characters/reza/back.svg",
  20188. extra: 1183 / 1111,
  20189. bottom: 0.01
  20190. }
  20191. },
  20192. drake: {
  20193. height: math.unit(30, "feet"),
  20194. weight: math.unit(246960, "lb"),
  20195. name: "Drake",
  20196. image: {
  20197. source: "./media/characters/reza/drake.svg",
  20198. extra: 2350 / 2024,
  20199. bottom: 60.7 / 2403
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(4, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20213. {
  20214. side: {
  20215. height: math.unit(15, "feet"),
  20216. weight: math.unit(14, "tons"),
  20217. name: "Side",
  20218. image: {
  20219. source: "./media/characters/athea/side.svg",
  20220. extra: 960 / 540,
  20221. bottom: 0.003
  20222. }
  20223. },
  20224. sitting: {
  20225. height: math.unit(6 * 2.85, "feet"),
  20226. weight: math.unit(14, "tons"),
  20227. name: "Sitting",
  20228. image: {
  20229. source: "./media/characters/athea/sitting.svg",
  20230. extra: 621 / 581,
  20231. bottom: 0.075
  20232. }
  20233. },
  20234. maw: {
  20235. height: math.unit(7.59498031496063, "feet"),
  20236. name: "Maw",
  20237. image: {
  20238. source: "./media/characters/athea/maw.svg"
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Lap Cat",
  20245. height: math.unit(2.5, "feet")
  20246. },
  20247. {
  20248. name: "Minimacro",
  20249. height: math.unit(15, "feet"),
  20250. default: true
  20251. },
  20252. {
  20253. name: "Macro",
  20254. height: math.unit(120, "feet")
  20255. },
  20256. {
  20257. name: "Macro+",
  20258. height: math.unit(640, "feet")
  20259. },
  20260. {
  20261. name: "Colossus",
  20262. height: math.unit(2.2, "miles")
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20268. {
  20269. front: {
  20270. height: math.unit(8 + 8 / 12, "feet"),
  20271. weight: math.unit(130, "kg"),
  20272. name: "Front",
  20273. image: {
  20274. source: "./media/characters/seroko/front.svg",
  20275. extra: 1385 / 1280,
  20276. bottom: 0.025
  20277. }
  20278. },
  20279. back: {
  20280. height: math.unit(8 + 8 / 12, "feet"),
  20281. weight: math.unit(130, "kg"),
  20282. name: "Back",
  20283. image: {
  20284. source: "./media/characters/seroko/back.svg",
  20285. extra: 1369 / 1238,
  20286. bottom: 0.018
  20287. }
  20288. },
  20289. frontDressed: {
  20290. height: math.unit(8 + 8 / 12, "feet"),
  20291. weight: math.unit(130, "kg"),
  20292. name: "Front (Dressed)",
  20293. image: {
  20294. source: "./media/characters/seroko/front-dressed.svg",
  20295. extra: 1366 / 1275,
  20296. bottom: 0.03
  20297. }
  20298. },
  20299. },
  20300. [
  20301. {
  20302. name: "Normal",
  20303. height: math.unit(8 + 8 / 12, "feet"),
  20304. default: true
  20305. },
  20306. ]
  20307. ))
  20308. characterMakers.push(() => makeCharacter(
  20309. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20310. {
  20311. front: {
  20312. height: math.unit(5.5, "feet"),
  20313. weight: math.unit(160, "lb"),
  20314. name: "Front",
  20315. image: {
  20316. source: "./media/characters/quatzi/front.svg",
  20317. extra: 2346 / 2242,
  20318. bottom: 0.015
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(5.5, "feet"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Big",
  20330. height: math.unit(7.7, "feet")
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20336. {
  20337. front: {
  20338. height: math.unit(5 + 11 / 12, "feet"),
  20339. weight: math.unit(180, "lb"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/sen/front.svg",
  20343. extra: 1321 / 1254,
  20344. bottom: 0.015
  20345. }
  20346. },
  20347. side: {
  20348. height: math.unit(5 + 11 / 12, "feet"),
  20349. weight: math.unit(180, "lb"),
  20350. name: "Side",
  20351. image: {
  20352. source: "./media/characters/sen/side.svg",
  20353. extra: 1321 / 1254,
  20354. bottom: 0.007
  20355. }
  20356. },
  20357. back: {
  20358. height: math.unit(5 + 11 / 12, "feet"),
  20359. weight: math.unit(180, "lb"),
  20360. name: "Back",
  20361. image: {
  20362. source: "./media/characters/sen/back.svg",
  20363. extra: 1321 / 1254
  20364. }
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(5 + 11 / 12, "feet"),
  20371. default: true
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20377. {
  20378. front: {
  20379. height: math.unit(166.6, "cm"),
  20380. weight: math.unit(66.6, "kg"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/fruity/front.svg",
  20384. extra: 1510 / 1386,
  20385. bottom: 0.04
  20386. }
  20387. },
  20388. back: {
  20389. height: math.unit(166.6, "cm"),
  20390. weight: math.unit(66.6, "lb"),
  20391. name: "Back",
  20392. image: {
  20393. source: "./media/characters/fruity/back.svg",
  20394. extra: 1563 / 1435,
  20395. bottom: 0.005
  20396. }
  20397. },
  20398. },
  20399. [
  20400. {
  20401. name: "Normal",
  20402. height: math.unit(166.6, "cm"),
  20403. default: true
  20404. },
  20405. {
  20406. name: "Demonic",
  20407. height: math.unit(166.6, "feet")
  20408. },
  20409. ]
  20410. ))
  20411. characterMakers.push(() => makeCharacter(
  20412. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20413. {
  20414. side: {
  20415. height: math.unit(10, "feet"),
  20416. weight: math.unit(500, "lb"),
  20417. name: "Side",
  20418. image: {
  20419. source: "./media/characters/zost/side.svg",
  20420. extra: 966 / 880,
  20421. bottom: 0.075
  20422. }
  20423. },
  20424. mawFront: {
  20425. height: math.unit(1.08, "meters"),
  20426. name: "Maw (Front)",
  20427. image: {
  20428. source: "./media/characters/zost/maw-front.svg"
  20429. }
  20430. },
  20431. mawSide: {
  20432. height: math.unit(2.66, "feet"),
  20433. name: "Maw (Side)",
  20434. image: {
  20435. source: "./media/characters/zost/maw-side.svg"
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(10, "feet"),
  20443. default: true
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20449. {
  20450. front: {
  20451. height: math.unit(5 + 4 / 12, "feet"),
  20452. weight: math.unit(120, "lb"),
  20453. name: "Front",
  20454. image: {
  20455. source: "./media/characters/luci/front.svg",
  20456. extra: 1985 / 1884,
  20457. bottom: 0.04
  20458. }
  20459. },
  20460. back: {
  20461. height: math.unit(5 + 4 / 12, "feet"),
  20462. weight: math.unit(120, "lb"),
  20463. name: "Back",
  20464. image: {
  20465. source: "./media/characters/luci/back.svg",
  20466. extra: 1892 / 1791,
  20467. bottom: 0.002
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(5 + 4 / 12, "feet"),
  20475. default: true
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(1500, "feet"),
  20484. weight: math.unit(3.8e6, "tons"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/2th/front.svg",
  20488. extra: 3489 / 3350,
  20489. bottom: 0.1
  20490. }
  20491. },
  20492. foot: {
  20493. height: math.unit(461, "feet"),
  20494. name: "Foot",
  20495. image: {
  20496. source: "./media/characters/2th/foot.svg"
  20497. }
  20498. },
  20499. },
  20500. [
  20501. {
  20502. name: "\"Micro\"",
  20503. height: math.unit(15 + 7 / 12, "feet")
  20504. },
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(1500, "feet"),
  20508. default: true
  20509. },
  20510. {
  20511. name: "Macro",
  20512. height: math.unit(5000, "feet")
  20513. },
  20514. {
  20515. name: "Megamacro",
  20516. height: math.unit(15, "miles")
  20517. },
  20518. {
  20519. name: "Gigamacro",
  20520. height: math.unit(4000, "miles")
  20521. },
  20522. {
  20523. name: "Galactic",
  20524. height: math.unit(50, "AU")
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(5 + 6 / 12, "feet"),
  20533. weight: math.unit(220, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/amethyst/front.svg",
  20537. extra: 2078 / 2040,
  20538. bottom: 0.045
  20539. }
  20540. },
  20541. back: {
  20542. height: math.unit(5 + 6 / 12, "feet"),
  20543. weight: math.unit(220, "lb"),
  20544. name: "Back",
  20545. image: {
  20546. source: "./media/characters/amethyst/back.svg",
  20547. extra: 2021 / 1989,
  20548. bottom: 0.02
  20549. }
  20550. },
  20551. },
  20552. [
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(5 + 6 / 12, "feet"),
  20556. default: true
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20562. {
  20563. front: {
  20564. height: math.unit(4 + 11 / 12, "feet"),
  20565. weight: math.unit(120, "lb"),
  20566. name: "Front",
  20567. image: {
  20568. source: "./media/characters/yumi-akiyama/front.svg",
  20569. extra: 1327 / 1235,
  20570. bottom: 0.02
  20571. }
  20572. },
  20573. back: {
  20574. height: math.unit(4 + 11 / 12, "feet"),
  20575. weight: math.unit(120, "lb"),
  20576. name: "Back",
  20577. image: {
  20578. source: "./media/characters/yumi-akiyama/back.svg",
  20579. extra: 1287 / 1245,
  20580. bottom: 0.002
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Galactic",
  20587. height: math.unit(50, "galaxies"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Universal",
  20592. height: math.unit(100, "universes")
  20593. },
  20594. ]
  20595. ))
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20598. {
  20599. front: {
  20600. height: math.unit(8, "feet"),
  20601. weight: math.unit(500, "lb"),
  20602. name: "Front",
  20603. image: {
  20604. source: "./media/characters/rifter-yrmori/front.svg",
  20605. extra: 1180 / 1125,
  20606. bottom: 0.02
  20607. }
  20608. },
  20609. back: {
  20610. height: math.unit(8, "feet"),
  20611. weight: math.unit(500, "lb"),
  20612. name: "Back",
  20613. image: {
  20614. source: "./media/characters/rifter-yrmori/back.svg",
  20615. extra: 1190 / 1145,
  20616. bottom: 0.001
  20617. }
  20618. },
  20619. wings: {
  20620. height: math.unit(7.75, "feet"),
  20621. weight: math.unit(500, "lb"),
  20622. name: "Wings",
  20623. image: {
  20624. source: "./media/characters/rifter-yrmori/wings.svg",
  20625. extra: 1357 / 1285
  20626. }
  20627. },
  20628. maw: {
  20629. height: math.unit(0.8, "feet"),
  20630. name: "Maw",
  20631. image: {
  20632. source: "./media/characters/rifter-yrmori/maw.svg"
  20633. }
  20634. },
  20635. mawfront: {
  20636. height: math.unit(1.45, "feet"),
  20637. name: "Maw (Front)",
  20638. image: {
  20639. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20640. }
  20641. },
  20642. },
  20643. [
  20644. {
  20645. name: "Normal",
  20646. height: math.unit(8, "feet"),
  20647. default: true
  20648. },
  20649. {
  20650. name: "Macro",
  20651. height: math.unit(42, "meters")
  20652. },
  20653. ]
  20654. ))
  20655. characterMakers.push(() => makeCharacter(
  20656. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20657. {
  20658. were: {
  20659. height: math.unit(25 + 6 / 12, "feet"),
  20660. weight: math.unit(10000, "lb"),
  20661. name: "Were",
  20662. image: {
  20663. source: "./media/characters/tahajin/were.svg",
  20664. extra: 801 / 770,
  20665. bottom: 0.042
  20666. }
  20667. },
  20668. aquatic: {
  20669. height: math.unit(6 + 4 / 12, "feet"),
  20670. weight: math.unit(160, "lb"),
  20671. name: "Aquatic",
  20672. image: {
  20673. source: "./media/characters/tahajin/aquatic.svg",
  20674. extra: 572 / 542,
  20675. bottom: 0.04
  20676. }
  20677. },
  20678. chow: {
  20679. height: math.unit(8 + 11 / 12, "feet"),
  20680. weight: math.unit(450, "lb"),
  20681. name: "Chow",
  20682. image: {
  20683. source: "./media/characters/tahajin/chow.svg",
  20684. extra: 660 / 640,
  20685. bottom: 0.015
  20686. }
  20687. },
  20688. demiNaga: {
  20689. height: math.unit(6 + 8 / 12, "feet"),
  20690. weight: math.unit(300, "lb"),
  20691. name: "Demi Naga",
  20692. image: {
  20693. source: "./media/characters/tahajin/demi-naga.svg",
  20694. extra: 643 / 615,
  20695. bottom: 0.1
  20696. }
  20697. },
  20698. data: {
  20699. height: math.unit(5, "inches"),
  20700. weight: math.unit(0.1, "lb"),
  20701. name: "Data",
  20702. image: {
  20703. source: "./media/characters/tahajin/data.svg"
  20704. }
  20705. },
  20706. fluu: {
  20707. height: math.unit(5 + 7 / 12, "feet"),
  20708. weight: math.unit(140, "lb"),
  20709. name: "Fluu",
  20710. image: {
  20711. source: "./media/characters/tahajin/fluu.svg",
  20712. extra: 628 / 592,
  20713. bottom: 0.02
  20714. }
  20715. },
  20716. starWarrior: {
  20717. height: math.unit(4 + 5 / 12, "feet"),
  20718. weight: math.unit(50, "lb"),
  20719. name: "Star Warrior",
  20720. image: {
  20721. source: "./media/characters/tahajin/star-warrior.svg"
  20722. }
  20723. },
  20724. },
  20725. [
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(25 + 6 / 12, "feet"),
  20729. default: true
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(8, "feet"),
  20738. weight: math.unit(350, "lb"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/gabira/front.svg",
  20742. extra: 608 / 580,
  20743. bottom: 0.03
  20744. }
  20745. },
  20746. back: {
  20747. height: math.unit(8, "feet"),
  20748. weight: math.unit(350, "lb"),
  20749. name: "Back",
  20750. image: {
  20751. source: "./media/characters/gabira/back.svg",
  20752. extra: 608 / 580,
  20753. bottom: 0.03
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(8, "feet"),
  20761. default: true
  20762. },
  20763. ]
  20764. ))
  20765. characterMakers.push(() => makeCharacter(
  20766. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20767. {
  20768. front: {
  20769. height: math.unit(5 + 3 / 12, "feet"),
  20770. weight: math.unit(137, "lb"),
  20771. name: "Front",
  20772. image: {
  20773. source: "./media/characters/sasha-katraine/front.svg",
  20774. bottom: 0.045
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Micro",
  20781. height: math.unit(5, "inches")
  20782. },
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(5 + 3 / 12, "feet"),
  20786. default: true
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20792. {
  20793. side: {
  20794. height: math.unit(4, "inches"),
  20795. weight: math.unit(200, "grams"),
  20796. name: "Side",
  20797. image: {
  20798. source: "./media/characters/der/side.svg",
  20799. extra: 719 / 400,
  20800. bottom: 30.6 / 749.9187
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Micro",
  20807. height: math.unit(4, "inches"),
  20808. default: true
  20809. },
  20810. ]
  20811. ))
  20812. characterMakers.push(() => makeCharacter(
  20813. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20814. {
  20815. side: {
  20816. height: math.unit(30, "meters"),
  20817. weight: math.unit(700, "tonnes"),
  20818. name: "Side",
  20819. image: {
  20820. source: "./media/characters/fixerdragon/side.svg",
  20821. extra: (1293.0514 - 116.03) / 1106.86,
  20822. bottom: 116.03 / 1293.0514
  20823. }
  20824. },
  20825. },
  20826. [
  20827. {
  20828. name: "Planck",
  20829. height: math.unit(1.6e-35, "meters")
  20830. },
  20831. {
  20832. name: "Micro",
  20833. height: math.unit(0.4, "meters")
  20834. },
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(30, "meters"),
  20838. default: true
  20839. },
  20840. {
  20841. name: "Megamacro",
  20842. height: math.unit(1.2, "megameters")
  20843. },
  20844. {
  20845. name: "Teramacro",
  20846. height: math.unit(130, "terameters")
  20847. },
  20848. {
  20849. name: "Yottamacro",
  20850. height: math.unit(6200, "yottameters")
  20851. },
  20852. ]
  20853. ));
  20854. characterMakers.push(() => makeCharacter(
  20855. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20856. {
  20857. front: {
  20858. height: math.unit(8, "feet"),
  20859. weight: math.unit(250, "lb"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/kite/front.svg",
  20863. extra: 2796 / 2659,
  20864. bottom: 0.002
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(8, "feet"),
  20872. default: true
  20873. },
  20874. {
  20875. name: "Macro",
  20876. height: math.unit(360, "feet")
  20877. },
  20878. {
  20879. name: "Megamacro",
  20880. height: math.unit(1500, "feet")
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20886. {
  20887. front: {
  20888. height: math.unit(5 + 10 / 12, "feet"),
  20889. weight: math.unit(150, "lb"),
  20890. name: "Front",
  20891. image: {
  20892. source: "./media/characters/poojawa-vynar/front.svg",
  20893. extra: (1506.1547 - 55) / 1356.6,
  20894. bottom: 55 / 1506.1547
  20895. }
  20896. },
  20897. frontTailless: {
  20898. height: math.unit(5 + 10 / 12, "feet"),
  20899. weight: math.unit(150, "lb"),
  20900. name: "Front (Tailless)",
  20901. image: {
  20902. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20903. extra: (1506.1547 - 55) / 1356.6,
  20904. bottom: 55 / 1506.1547
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(5 + 10 / 12, "feet"),
  20912. default: true
  20913. },
  20914. ]
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20918. {
  20919. front: {
  20920. height: math.unit(293, "meters"),
  20921. weight: math.unit(70400, "tons"),
  20922. name: "Front",
  20923. image: {
  20924. source: "./media/characters/violette/front.svg",
  20925. extra: 1227 / 1180,
  20926. bottom: 0.005
  20927. }
  20928. },
  20929. back: {
  20930. height: math.unit(293, "meters"),
  20931. weight: math.unit(70400, "tons"),
  20932. name: "Back",
  20933. image: {
  20934. source: "./media/characters/violette/back.svg",
  20935. extra: 1227 / 1180,
  20936. bottom: 0.005
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Macro",
  20943. height: math.unit(293, "meters"),
  20944. default: true
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(1050, "feet"),
  20953. weight: math.unit(200000, "tons"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/alessandra/front.svg",
  20957. extra: 960 / 912,
  20958. bottom: 0.06
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Macro",
  20965. height: math.unit(1050, "feet")
  20966. },
  20967. {
  20968. name: "Macro+",
  20969. height: math.unit(900, "meters"),
  20970. default: true
  20971. },
  20972. ]
  20973. ))
  20974. characterMakers.push(() => makeCharacter(
  20975. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20976. {
  20977. front: {
  20978. height: math.unit(5, "feet"),
  20979. weight: math.unit(187, "lb"),
  20980. name: "Front",
  20981. image: {
  20982. source: "./media/characters/person/front.svg",
  20983. extra: 3087 / 2945,
  20984. bottom: 91 / 3181
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Micro",
  20991. height: math.unit(3, "inches")
  20992. },
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(5, "feet"),
  20996. default: true
  20997. },
  20998. {
  20999. name: "Macro",
  21000. height: math.unit(90, "feet")
  21001. },
  21002. {
  21003. name: "Max Size",
  21004. height: math.unit(280, "feet")
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(4.5, "meters"),
  21013. weight: math.unit(3200, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/ty/front.svg",
  21017. extra: 1038 / 960,
  21018. bottom: 31.156 / 1068
  21019. }
  21020. },
  21021. back: {
  21022. height: math.unit(4.5, "meters"),
  21023. weight: math.unit(3200, "lb"),
  21024. name: "Back",
  21025. image: {
  21026. source: "./media/characters/ty/back.svg",
  21027. extra: 1044 / 966,
  21028. bottom: 7.48 / 1049
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(4.5, "meters"),
  21036. default: true
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(5 + 4 / 12, "feet"),
  21045. weight: math.unit(115, "lb"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/rocky/front.svg",
  21049. extra: 1012 / 975,
  21050. bottom: 54 / 1066
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(5 + 4 / 12, "feet"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21064. {
  21065. upright: {
  21066. height: math.unit(6, "meters"),
  21067. weight: math.unit(4000, "kg"),
  21068. name: "Upright",
  21069. image: {
  21070. source: "./media/characters/ruin/upright.svg",
  21071. extra: 668 / 661,
  21072. bottom: 42 / 799.8396
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(6, "meters"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21086. {
  21087. front: {
  21088. height: math.unit(5, "feet"),
  21089. weight: math.unit(106, "lb"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/robin/front.svg",
  21093. extra: 862 / 799,
  21094. bottom: 42.4 / 914.8856
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(5, "feet"),
  21102. default: true
  21103. },
  21104. ]
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21108. {
  21109. side: {
  21110. height: math.unit(3, "feet"),
  21111. weight: math.unit(225, "lb"),
  21112. name: "Side",
  21113. image: {
  21114. source: "./media/characters/saian/side.svg",
  21115. extra: 566 / 356,
  21116. bottom: 79.7 / 643
  21117. }
  21118. },
  21119. maw: {
  21120. height: math.unit(2.85, "feet"),
  21121. name: "Maw",
  21122. image: {
  21123. source: "./media/characters/saian/maw.svg"
  21124. }
  21125. },
  21126. },
  21127. [
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(3, "feet"),
  21131. default: true
  21132. },
  21133. ]
  21134. ))
  21135. characterMakers.push(() => makeCharacter(
  21136. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21137. {
  21138. side: {
  21139. height: math.unit(8, "feet"),
  21140. weight: math.unit(300, "lb"),
  21141. name: "Side",
  21142. image: {
  21143. source: "./media/characters/equus-silvermane/side.svg",
  21144. extra: 2176 / 2050,
  21145. bottom: 65.7 / 2245
  21146. }
  21147. },
  21148. front: {
  21149. height: math.unit(8, "feet"),
  21150. weight: math.unit(300, "lb"),
  21151. name: "Front",
  21152. image: {
  21153. source: "./media/characters/equus-silvermane/front.svg",
  21154. extra: 4633 / 4400,
  21155. bottom: 71.3 / 4706.915
  21156. }
  21157. },
  21158. sideStepping: {
  21159. height: math.unit(8, "feet"),
  21160. weight: math.unit(300, "lb"),
  21161. name: "Side (Stepping)",
  21162. image: {
  21163. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21164. extra: 1968 / 1860,
  21165. bottom: 16.4 / 1989
  21166. }
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(8, "feet")
  21173. },
  21174. {
  21175. name: "Minimacro",
  21176. height: math.unit(75, "feet"),
  21177. default: true
  21178. },
  21179. {
  21180. name: "Macro",
  21181. height: math.unit(150, "feet")
  21182. },
  21183. {
  21184. name: "Macro+",
  21185. height: math.unit(1000, "feet")
  21186. },
  21187. {
  21188. name: "Megamacro",
  21189. height: math.unit(1, "mile")
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21195. {
  21196. side: {
  21197. height: math.unit(20, "feet"),
  21198. weight: math.unit(30000, "kg"),
  21199. name: "Side",
  21200. image: {
  21201. source: "./media/characters/windar/side.svg",
  21202. extra: 1491 / 1248,
  21203. bottom: 82.56 / 1568
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(20, "feet"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21217. {
  21218. side: {
  21219. height: math.unit(15.66, "feet"),
  21220. weight: math.unit(150, "lb"),
  21221. name: "Side",
  21222. image: {
  21223. source: "./media/characters/melody/side.svg",
  21224. extra: 1097 / 944,
  21225. bottom: 11.8 / 1109
  21226. }
  21227. },
  21228. sideOutfit: {
  21229. height: math.unit(15.66, "feet"),
  21230. weight: math.unit(150, "lb"),
  21231. name: "Side (Outfit)",
  21232. image: {
  21233. source: "./media/characters/melody/side-outfit.svg",
  21234. extra: 1097 / 944,
  21235. bottom: 11.8 / 1109
  21236. }
  21237. },
  21238. },
  21239. [
  21240. {
  21241. name: "Normal",
  21242. height: math.unit(15.66, "feet"),
  21243. default: true
  21244. },
  21245. ]
  21246. ))
  21247. characterMakers.push(() => makeCharacter(
  21248. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21249. {
  21250. front: {
  21251. height: math.unit(8, "feet"),
  21252. weight: math.unit(325, "lb"),
  21253. name: "Front",
  21254. image: {
  21255. source: "./media/characters/windera/front.svg",
  21256. extra: 3180 / 2845,
  21257. bottom: 178 / 3365
  21258. }
  21259. },
  21260. },
  21261. [
  21262. {
  21263. name: "Normal",
  21264. height: math.unit(8, "feet"),
  21265. default: true
  21266. },
  21267. ]
  21268. ))
  21269. characterMakers.push(() => makeCharacter(
  21270. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21271. {
  21272. front: {
  21273. height: math.unit(28.75, "feet"),
  21274. weight: math.unit(2000, "kg"),
  21275. name: "Front",
  21276. image: {
  21277. source: "./media/characters/sonear/front.svg",
  21278. extra: 1041.1 / 964.9,
  21279. bottom: 53.7 / 1096.6
  21280. }
  21281. },
  21282. },
  21283. [
  21284. {
  21285. name: "Normal",
  21286. height: math.unit(28.75, "feet"),
  21287. default: true
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21293. {
  21294. side: {
  21295. height: math.unit(25.5, "feet"),
  21296. weight: math.unit(23000, "kg"),
  21297. name: "Side",
  21298. image: {
  21299. source: "./media/characters/kanara/side.svg"
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(25.5, "feet"),
  21307. default: true
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21313. {
  21314. side: {
  21315. height: math.unit(10, "feet"),
  21316. weight: math.unit(1000, "kg"),
  21317. name: "Side",
  21318. image: {
  21319. source: "./media/characters/ereus/side.svg",
  21320. extra: 1157 / 959,
  21321. bottom: 153 / 1312.5
  21322. }
  21323. },
  21324. },
  21325. [
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(10, "feet"),
  21329. default: true
  21330. },
  21331. ]
  21332. ))
  21333. characterMakers.push(() => makeCharacter(
  21334. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21335. {
  21336. side: {
  21337. height: math.unit(4.5, "feet"),
  21338. weight: math.unit(500, "lb"),
  21339. name: "Side",
  21340. image: {
  21341. source: "./media/characters/e-ter/side.svg",
  21342. extra: 1550 / 1248,
  21343. bottom: 146 / 1694
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Normal",
  21350. height: math.unit(4.5, "feet"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21357. {
  21358. side: {
  21359. height: math.unit(9.7, "feet"),
  21360. weight: math.unit(4000, "kg"),
  21361. name: "Side",
  21362. image: {
  21363. source: "./media/characters/yamie/side.svg"
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(9.7, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(50, "feet"),
  21380. weight: math.unit(50000, "kg"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/anders/front.svg",
  21384. extra: 570 / 539,
  21385. bottom: 14.7 / 586.7
  21386. }
  21387. },
  21388. },
  21389. [
  21390. {
  21391. name: "Large",
  21392. height: math.unit(50, "feet")
  21393. },
  21394. {
  21395. name: "Macro",
  21396. height: math.unit(2000, "feet"),
  21397. default: true
  21398. },
  21399. {
  21400. name: "Megamacro",
  21401. height: math.unit(12, "miles")
  21402. },
  21403. ]
  21404. ))
  21405. characterMakers.push(() => makeCharacter(
  21406. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21407. {
  21408. front: {
  21409. height: math.unit(7 + 2 / 12, "feet"),
  21410. weight: math.unit(300, "lb"),
  21411. name: "Front",
  21412. image: {
  21413. source: "./media/characters/reban/front.svg",
  21414. extra: 516 / 487,
  21415. bottom: 42.82 / 558.356
  21416. }
  21417. },
  21418. dick: {
  21419. height: math.unit(7 / 5, "feet"),
  21420. name: "Dick",
  21421. image: {
  21422. source: "./media/characters/reban/dick.svg"
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Natural Height",
  21429. height: math.unit(7 + 2 / 12, "feet")
  21430. },
  21431. {
  21432. name: "Macro",
  21433. height: math.unit(500, "feet"),
  21434. default: true
  21435. },
  21436. {
  21437. name: "Canon Height",
  21438. height: math.unit(50, "AU")
  21439. },
  21440. ]
  21441. ))
  21442. characterMakers.push(() => makeCharacter(
  21443. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21444. {
  21445. front: {
  21446. height: math.unit(6, "feet"),
  21447. weight: math.unit(150, "lb"),
  21448. name: "Front",
  21449. image: {
  21450. source: "./media/characters/terrance-keayes/front.svg",
  21451. extra: 1.005,
  21452. bottom: 151 / 1615
  21453. }
  21454. },
  21455. side: {
  21456. height: math.unit(6, "feet"),
  21457. weight: math.unit(150, "lb"),
  21458. name: "Side",
  21459. image: {
  21460. source: "./media/characters/terrance-keayes/side.svg",
  21461. extra: 1.005,
  21462. bottom: 129.4 / 1544
  21463. }
  21464. },
  21465. back: {
  21466. height: math.unit(6, "feet"),
  21467. weight: math.unit(150, "lb"),
  21468. name: "Back",
  21469. image: {
  21470. source: "./media/characters/terrance-keayes/back.svg",
  21471. extra: 1.005,
  21472. bottom: 58.4 / 1557.3
  21473. }
  21474. },
  21475. dick: {
  21476. height: math.unit(6 * 0.208, "feet"),
  21477. name: "Dick",
  21478. image: {
  21479. source: "./media/characters/terrance-keayes/dick.svg"
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Canon Height",
  21486. height: math.unit(35, "miles"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(6, "feet"),
  21496. weight: math.unit(150, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/ofelia/front.svg",
  21500. extra: 546 / 541,
  21501. bottom: 39 / 583
  21502. }
  21503. },
  21504. back: {
  21505. height: math.unit(6, "feet"),
  21506. weight: math.unit(150, "lb"),
  21507. name: "Back",
  21508. image: {
  21509. source: "./media/characters/ofelia/back.svg",
  21510. extra: 564 / 559.5,
  21511. bottom: 8.69 / 573.02
  21512. }
  21513. },
  21514. maw: {
  21515. height: math.unit(1, "feet"),
  21516. name: "Maw",
  21517. image: {
  21518. source: "./media/characters/ofelia/maw.svg"
  21519. }
  21520. },
  21521. foot: {
  21522. height: math.unit(1.949, "feet"),
  21523. name: "Foot",
  21524. image: {
  21525. source: "./media/characters/ofelia/foot.svg"
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Canon Height",
  21532. height: math.unit(2000, "miles"),
  21533. default: true
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21539. {
  21540. front: {
  21541. height: math.unit(6, "feet"),
  21542. weight: math.unit(150, "lb"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/samuel/front.svg",
  21546. extra: 265 / 258,
  21547. bottom: 2 / 266.1566
  21548. }
  21549. },
  21550. },
  21551. [
  21552. {
  21553. name: "Macro",
  21554. height: math.unit(100, "feet"),
  21555. default: true
  21556. },
  21557. {
  21558. name: "Full Size",
  21559. height: math.unit(1000, "miles")
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(6, "feet"),
  21568. weight: math.unit(300, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/beishir-kiel/front.svg",
  21572. extra: 569 / 547,
  21573. bottom: 41.9 / 609
  21574. }
  21575. },
  21576. maw: {
  21577. height: math.unit(6 * 0.202, "feet"),
  21578. name: "Maw",
  21579. image: {
  21580. source: "./media/characters/beishir-kiel/maw.svg"
  21581. }
  21582. },
  21583. },
  21584. [
  21585. {
  21586. name: "Macro",
  21587. height: math.unit(300, "feet"),
  21588. default: true
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21594. {
  21595. front: {
  21596. height: math.unit(5 + 8 / 12, "feet"),
  21597. weight: math.unit(120, "lb"),
  21598. name: "Front",
  21599. image: {
  21600. source: "./media/characters/logan-grey/front.svg",
  21601. extra: 2539 / 2393,
  21602. bottom: 97.6 / 2636.37
  21603. }
  21604. },
  21605. frontAlt: {
  21606. height: math.unit(5 + 8 / 12, "feet"),
  21607. weight: math.unit(120, "lb"),
  21608. name: "Front (Alt)",
  21609. image: {
  21610. source: "./media/characters/logan-grey/front-alt.svg",
  21611. extra: 958 / 893,
  21612. bottom: 15 / 970.768
  21613. }
  21614. },
  21615. back: {
  21616. height: math.unit(5 + 8 / 12, "feet"),
  21617. weight: math.unit(120, "lb"),
  21618. name: "Back",
  21619. image: {
  21620. source: "./media/characters/logan-grey/back.svg",
  21621. extra: 958 / 893,
  21622. bottom: 2.1881 / 970.9788
  21623. }
  21624. },
  21625. dick: {
  21626. height: math.unit(1.437, "feet"),
  21627. name: "Dick",
  21628. image: {
  21629. source: "./media/characters/logan-grey/dick.svg"
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Normal",
  21636. height: math.unit(5 + 8 / 12, "feet")
  21637. },
  21638. {
  21639. name: "The 500 Foot Femboy",
  21640. height: math.unit(500, "feet"),
  21641. default: true
  21642. },
  21643. {
  21644. name: "Megmacro",
  21645. height: math.unit(20, "miles")
  21646. },
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21651. {
  21652. front: {
  21653. height: math.unit(8 + 2 / 12, "feet"),
  21654. weight: math.unit(275, "lb"),
  21655. name: "Front",
  21656. image: {
  21657. source: "./media/characters/draganta/front.svg",
  21658. extra: 1177 / 1135,
  21659. bottom: 33.46 / 1212.1
  21660. }
  21661. },
  21662. },
  21663. [
  21664. {
  21665. name: "Normal",
  21666. height: math.unit(8 + 6 / 12, "feet"),
  21667. default: true
  21668. },
  21669. {
  21670. name: "Macro",
  21671. height: math.unit(150, "feet")
  21672. },
  21673. {
  21674. name: "Megamacro",
  21675. height: math.unit(1000, "miles")
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21681. {
  21682. front: {
  21683. height: math.unit(1.72, "m"),
  21684. weight: math.unit(80, "lb"),
  21685. name: "Front",
  21686. image: {
  21687. source: "./media/characters/voski/front.svg",
  21688. extra: 2076.22 / 2022.4,
  21689. bottom: 102.7 / 2177.3866
  21690. }
  21691. },
  21692. frontNsfw: {
  21693. height: math.unit(1.72, "m"),
  21694. weight: math.unit(80, "lb"),
  21695. name: "Front (NSFW)",
  21696. image: {
  21697. source: "./media/characters/voski/front-nsfw.svg",
  21698. extra: 2076.22 / 2022.4,
  21699. bottom: 102.7 / 2177.3866
  21700. }
  21701. },
  21702. back: {
  21703. height: math.unit(1.72, "m"),
  21704. weight: math.unit(80, "lb"),
  21705. name: "Back",
  21706. image: {
  21707. source: "./media/characters/voski/back.svg",
  21708. extra: 2104 / 2051,
  21709. bottom: 10.45 / 2113.63
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(1.72, "m")
  21717. },
  21718. {
  21719. name: "Macro",
  21720. height: math.unit(55, "m"),
  21721. default: true
  21722. },
  21723. {
  21724. name: "Macro+",
  21725. height: math.unit(300, "m")
  21726. },
  21727. {
  21728. name: "Macro++",
  21729. height: math.unit(700, "m")
  21730. },
  21731. {
  21732. name: "Macro+++",
  21733. height: math.unit(4500, "m")
  21734. },
  21735. {
  21736. name: "Macro++++",
  21737. height: math.unit(45, "km")
  21738. },
  21739. {
  21740. name: "Macro+++++",
  21741. height: math.unit(1220, "km")
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(2.3, "m"),
  21750. weight: math.unit(304, "kg"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/icowom-lee/front.svg",
  21754. extra: 985 / 955,
  21755. bottom: 25.4 / 1012
  21756. }
  21757. },
  21758. fronttentacles: {
  21759. height: math.unit(2.3, "m"),
  21760. weight: math.unit(304, "kg"),
  21761. name: "Front-tentacles",
  21762. image: {
  21763. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21764. extra: 985 / 955,
  21765. bottom: 25.4 / 1012
  21766. }
  21767. },
  21768. back: {
  21769. height: math.unit(2.3, "m"),
  21770. weight: math.unit(304, "kg"),
  21771. name: "Back",
  21772. image: {
  21773. source: "./media/characters/icowom-lee/back.svg",
  21774. extra: 975 / 954,
  21775. bottom: 9.5 / 985
  21776. }
  21777. },
  21778. backtentacles: {
  21779. height: math.unit(2.3, "m"),
  21780. weight: math.unit(304, "kg"),
  21781. name: "Back-tentacles",
  21782. image: {
  21783. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21784. extra: 975 / 954,
  21785. bottom: 9.5 / 985
  21786. }
  21787. },
  21788. frontDressed: {
  21789. height: math.unit(2.3, "m"),
  21790. weight: math.unit(304, "kg"),
  21791. name: "Front (Dressed)",
  21792. image: {
  21793. source: "./media/characters/icowom-lee/front-dressed.svg",
  21794. extra: 3076 / 2933,
  21795. bottom: 51.4 / 3125.1889
  21796. }
  21797. },
  21798. rump: {
  21799. height: math.unit(0.776, "meters"),
  21800. name: "Rump",
  21801. image: {
  21802. source: "./media/characters/icowom-lee/rump.svg"
  21803. }
  21804. },
  21805. genitals: {
  21806. height: math.unit(0.78, "meters"),
  21807. name: "Genitals",
  21808. image: {
  21809. source: "./media/characters/icowom-lee/genitals.svg"
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(2.3, "meters"),
  21817. default: true
  21818. },
  21819. {
  21820. name: "Macro",
  21821. height: math.unit(94, "meters"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(22, "meters"),
  21831. weight: math.unit(21000, "kg"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/shock-diamond/front.svg",
  21835. extra: 2204 / 2053,
  21836. bottom: 65 / 2239.47
  21837. }
  21838. },
  21839. frontNude: {
  21840. height: math.unit(22, "meters"),
  21841. weight: math.unit(21000, "kg"),
  21842. name: "Front (Nude)",
  21843. image: {
  21844. source: "./media/characters/shock-diamond/front-nude.svg",
  21845. extra: 2514 / 2285,
  21846. bottom: 13 / 2527.56
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(3, "meters")
  21854. },
  21855. {
  21856. name: "Macro",
  21857. height: math.unit(22, "meters"),
  21858. default: true
  21859. },
  21860. ]
  21861. ))
  21862. characterMakers.push(() => makeCharacter(
  21863. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21864. {
  21865. front: {
  21866. height: math.unit(5 + 4 / 12, "feet"),
  21867. weight: math.unit(120, "lb"),
  21868. name: "Front",
  21869. image: {
  21870. source: "./media/characters/rory/front.svg",
  21871. extra: 589 / 556,
  21872. bottom: 45.7 / 635.76
  21873. }
  21874. },
  21875. frontNude: {
  21876. height: math.unit(5 + 4 / 12, "feet"),
  21877. weight: math.unit(120, "lb"),
  21878. name: "Front (Nude)",
  21879. image: {
  21880. source: "./media/characters/rory/front-nude.svg",
  21881. extra: 589 / 556,
  21882. bottom: 45.7 / 635.76
  21883. }
  21884. },
  21885. side: {
  21886. height: math.unit(5 + 4 / 12, "feet"),
  21887. weight: math.unit(120, "lb"),
  21888. name: "Side",
  21889. image: {
  21890. source: "./media/characters/rory/side.svg",
  21891. extra: 597 / 564,
  21892. bottom: 55 / 653
  21893. }
  21894. },
  21895. back: {
  21896. height: math.unit(5 + 4 / 12, "feet"),
  21897. weight: math.unit(120, "lb"),
  21898. name: "Back",
  21899. image: {
  21900. source: "./media/characters/rory/back.svg",
  21901. extra: 620 / 585,
  21902. bottom: 8.86 / 630.43
  21903. }
  21904. },
  21905. dick: {
  21906. height: math.unit(0.86, "feet"),
  21907. name: "Dick",
  21908. image: {
  21909. source: "./media/characters/rory/dick.svg"
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(5 + 4 / 12, "feet"),
  21917. default: true
  21918. },
  21919. {
  21920. name: "Macro",
  21921. height: math.unit(100, "feet")
  21922. },
  21923. {
  21924. name: "Macro+",
  21925. height: math.unit(140, "feet")
  21926. },
  21927. {
  21928. name: "Macro++",
  21929. height: math.unit(300, "feet")
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21935. {
  21936. front: {
  21937. height: math.unit(5 + 9 / 12, "feet"),
  21938. weight: math.unit(190, "lb"),
  21939. name: "Front",
  21940. image: {
  21941. source: "./media/characters/sprisk/front.svg",
  21942. extra: 1225 / 1180,
  21943. bottom: 42.7 / 1266.4
  21944. }
  21945. },
  21946. frontNsfw: {
  21947. height: math.unit(5 + 9 / 12, "feet"),
  21948. weight: math.unit(190, "lb"),
  21949. name: "Front (NSFW)",
  21950. image: {
  21951. source: "./media/characters/sprisk/front-nsfw.svg",
  21952. extra: 1225 / 1180,
  21953. bottom: 42.7 / 1266.4
  21954. }
  21955. },
  21956. back: {
  21957. height: math.unit(5 + 9 / 12, "feet"),
  21958. weight: math.unit(190, "lb"),
  21959. name: "Back",
  21960. image: {
  21961. source: "./media/characters/sprisk/back.svg",
  21962. extra: 1247 / 1200,
  21963. bottom: 5.6 / 1253.04
  21964. }
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Tiny",
  21970. height: math.unit(2, "inches")
  21971. },
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(5 + 9 / 12, "feet"),
  21975. default: true
  21976. },
  21977. {
  21978. name: "Mini Macro",
  21979. height: math.unit(18, "feet")
  21980. },
  21981. {
  21982. name: "Macro",
  21983. height: math.unit(100, "feet")
  21984. },
  21985. {
  21986. name: "MACRO",
  21987. height: math.unit(50, "miles")
  21988. },
  21989. {
  21990. name: "M A C R O",
  21991. height: math.unit(300, "miles")
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21997. {
  21998. side: {
  21999. height: math.unit(15.6, "meters"),
  22000. weight: math.unit(700000, "kg"),
  22001. name: "Side",
  22002. image: {
  22003. source: "./media/characters/bunsen/side.svg",
  22004. extra: 1644 / 358
  22005. }
  22006. },
  22007. foot: {
  22008. height: math.unit(1.611 * 1644 / 358, "meter"),
  22009. name: "Foot",
  22010. image: {
  22011. source: "./media/characters/bunsen/foot.svg"
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Small",
  22018. height: math.unit(10, "feet")
  22019. },
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(15.6, "meters"),
  22023. default: true
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(4 + 11 / 12, "feet"),
  22032. weight: math.unit(140, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/sesh/front.svg",
  22036. extra: 3420 / 3231,
  22037. bottom: 72 / 3949.5
  22038. }
  22039. },
  22040. },
  22041. [
  22042. {
  22043. name: "Normal",
  22044. height: math.unit(4 + 11 / 12, "feet")
  22045. },
  22046. {
  22047. name: "Grown",
  22048. height: math.unit(15, "feet"),
  22049. default: true
  22050. },
  22051. {
  22052. name: "Macro",
  22053. height: math.unit(1500, "feet")
  22054. },
  22055. {
  22056. name: "Megamacro",
  22057. height: math.unit(30, "miles")
  22058. },
  22059. {
  22060. name: "Continental",
  22061. height: math.unit(3000, "miles")
  22062. },
  22063. {
  22064. name: "Gravity Mass",
  22065. height: math.unit(300000, "miles")
  22066. },
  22067. {
  22068. name: "Planet Buster",
  22069. height: math.unit(30000000, "miles")
  22070. },
  22071. {
  22072. name: "Big",
  22073. height: math.unit(3000000000, "miles")
  22074. },
  22075. ]
  22076. ))
  22077. characterMakers.push(() => makeCharacter(
  22078. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22079. {
  22080. front: {
  22081. height: math.unit(9, "feet"),
  22082. weight: math.unit(350, "lb"),
  22083. name: "Front",
  22084. image: {
  22085. source: "./media/characters/pepper/front.svg",
  22086. extra: 1448 / 1312,
  22087. bottom: 9.4 / 1457.88
  22088. }
  22089. },
  22090. back: {
  22091. height: math.unit(9, "feet"),
  22092. weight: math.unit(350, "lb"),
  22093. name: "Back",
  22094. image: {
  22095. source: "./media/characters/pepper/back.svg",
  22096. extra: 1423 / 1300,
  22097. bottom: 4.6 / 1429
  22098. }
  22099. },
  22100. maw: {
  22101. height: math.unit(0.932, "feet"),
  22102. name: "Maw",
  22103. image: {
  22104. source: "./media/characters/pepper/maw.svg"
  22105. }
  22106. },
  22107. },
  22108. [
  22109. {
  22110. name: "Normal",
  22111. height: math.unit(9, "feet"),
  22112. default: true
  22113. },
  22114. ]
  22115. ))
  22116. characterMakers.push(() => makeCharacter(
  22117. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22118. {
  22119. front: {
  22120. height: math.unit(6, "feet"),
  22121. weight: math.unit(150, "lb"),
  22122. name: "Front",
  22123. image: {
  22124. source: "./media/characters/maelstrom/front.svg",
  22125. extra: 2100 / 1883,
  22126. bottom: 94 / 2196.7
  22127. }
  22128. },
  22129. },
  22130. [
  22131. {
  22132. name: "Less Kaiju",
  22133. height: math.unit(200, "feet")
  22134. },
  22135. {
  22136. name: "Kaiju",
  22137. height: math.unit(400, "feet"),
  22138. default: true
  22139. },
  22140. {
  22141. name: "Kaiju-er",
  22142. height: math.unit(600, "feet")
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(6 + 5 / 12, "feet"),
  22151. weight: math.unit(180, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/lexir/front.svg",
  22155. extra: 180 / 172,
  22156. bottom: 12 / 192
  22157. }
  22158. },
  22159. back: {
  22160. height: math.unit(6 + 5 / 12, "feet"),
  22161. weight: math.unit(180, "lb"),
  22162. name: "Back",
  22163. image: {
  22164. source: "./media/characters/lexir/back.svg",
  22165. extra: 183.84 / 175.5,
  22166. bottom: 3.1 / 187
  22167. }
  22168. },
  22169. },
  22170. [
  22171. {
  22172. name: "Very Smal",
  22173. height: math.unit(1, "nm")
  22174. },
  22175. {
  22176. name: "Normal",
  22177. height: math.unit(6 + 5 / 12, "feet"),
  22178. default: true
  22179. },
  22180. {
  22181. name: "Macro",
  22182. height: math.unit(1, "mile")
  22183. },
  22184. {
  22185. name: "Megamacro",
  22186. height: math.unit(50, "miles")
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(1.5, "meters"),
  22195. weight: math.unit(100, "lb"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/maksio/front.svg",
  22199. extra: 1549 / 1531,
  22200. bottom: 123.7 / 1674.5429
  22201. }
  22202. },
  22203. back: {
  22204. height: math.unit(1.5, "meters"),
  22205. weight: math.unit(100, "lb"),
  22206. name: "Back",
  22207. image: {
  22208. source: "./media/characters/maksio/back.svg",
  22209. extra: 1541 / 1509,
  22210. bottom: 97 / 1639
  22211. }
  22212. },
  22213. hand: {
  22214. height: math.unit(0.621, "feet"),
  22215. name: "Hand",
  22216. image: {
  22217. source: "./media/characters/maksio/hand.svg"
  22218. }
  22219. },
  22220. foot: {
  22221. height: math.unit(1.611, "feet"),
  22222. name: "Foot",
  22223. image: {
  22224. source: "./media/characters/maksio/foot.svg"
  22225. }
  22226. },
  22227. },
  22228. [
  22229. {
  22230. name: "Shrunken",
  22231. height: math.unit(10, "cm")
  22232. },
  22233. {
  22234. name: "Normal",
  22235. height: math.unit(150, "cm"),
  22236. default: true
  22237. },
  22238. ]
  22239. ))
  22240. characterMakers.push(() => makeCharacter(
  22241. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22242. {
  22243. front: {
  22244. height: math.unit(100, "feet"),
  22245. name: "Front",
  22246. image: {
  22247. source: "./media/characters/erza-bear/front.svg",
  22248. extra: 2449 / 2390,
  22249. bottom: 46 / 2494
  22250. }
  22251. },
  22252. back: {
  22253. height: math.unit(100, "feet"),
  22254. name: "Back",
  22255. image: {
  22256. source: "./media/characters/erza-bear/back.svg",
  22257. extra: 2489 / 2430,
  22258. bottom: 85.4 / 2480
  22259. }
  22260. },
  22261. tail: {
  22262. height: math.unit(42, "feet"),
  22263. name: "Tail",
  22264. image: {
  22265. source: "./media/characters/erza-bear/tail.svg"
  22266. }
  22267. },
  22268. tongue: {
  22269. height: math.unit(8, "feet"),
  22270. name: "Tongue",
  22271. image: {
  22272. source: "./media/characters/erza-bear/tongue.svg"
  22273. }
  22274. },
  22275. dick: {
  22276. height: math.unit(10.5, "feet"),
  22277. name: "Dick",
  22278. image: {
  22279. source: "./media/characters/erza-bear/dick.svg"
  22280. }
  22281. },
  22282. dickVertical: {
  22283. height: math.unit(16.9, "feet"),
  22284. name: "Dick (Vertical)",
  22285. image: {
  22286. source: "./media/characters/erza-bear/dick-vertical.svg"
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(100, "feet"),
  22294. default: true
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(172, "cm"),
  22303. weight: math.unit(73, "kg"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/violet-flor/front.svg",
  22307. extra: 1530 / 1442,
  22308. bottom: 61.9 / 1588.8
  22309. }
  22310. },
  22311. back: {
  22312. height: math.unit(180, "cm"),
  22313. weight: math.unit(73, "kg"),
  22314. name: "Back",
  22315. image: {
  22316. source: "./media/characters/violet-flor/back.svg",
  22317. extra: 1692 / 1630,
  22318. bottom: 20 / 1712
  22319. }
  22320. },
  22321. },
  22322. [
  22323. {
  22324. name: "Normal",
  22325. height: math.unit(172, "cm"),
  22326. default: true
  22327. },
  22328. ]
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22332. {
  22333. front: {
  22334. height: math.unit(6, "feet"),
  22335. weight: math.unit(220, "lb"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/lynn-rhea/front.svg",
  22339. extra: 310 / 273
  22340. }
  22341. },
  22342. back: {
  22343. height: math.unit(6, "feet"),
  22344. weight: math.unit(220, "lb"),
  22345. name: "Back",
  22346. image: {
  22347. source: "./media/characters/lynn-rhea/back.svg",
  22348. extra: 310 / 273
  22349. }
  22350. },
  22351. dicks: {
  22352. height: math.unit(0.9, "feet"),
  22353. name: "Dicks",
  22354. image: {
  22355. source: "./media/characters/lynn-rhea/dicks.svg"
  22356. }
  22357. },
  22358. slit: {
  22359. height: math.unit(0.4, "feet"),
  22360. name: "Slit",
  22361. image: {
  22362. source: "./media/characters/lynn-rhea/slit.svg"
  22363. }
  22364. },
  22365. },
  22366. [
  22367. {
  22368. name: "Micro",
  22369. height: math.unit(1, "inch")
  22370. },
  22371. {
  22372. name: "Macro",
  22373. height: math.unit(60, "feet"),
  22374. default: true
  22375. },
  22376. {
  22377. name: "Megamacro",
  22378. height: math.unit(2, "miles")
  22379. },
  22380. {
  22381. name: "Gigamacro",
  22382. height: math.unit(3, "earths")
  22383. },
  22384. {
  22385. name: "Galactic",
  22386. height: math.unit(0.8, "galaxies")
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22392. {
  22393. front: {
  22394. height: math.unit(1600, "feet"),
  22395. weight: math.unit(85758785169, "kg"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/valathos/front.svg",
  22399. extra: 1451 / 1339
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Macro",
  22406. height: math.unit(1600, "feet"),
  22407. default: true
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22413. {
  22414. front: {
  22415. height: math.unit(7 + 5 / 12, "feet"),
  22416. weight: math.unit(300, "lb"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/azula/front.svg",
  22420. extra: 3208 / 2880,
  22421. bottom: 80.2 / 3277
  22422. }
  22423. },
  22424. back: {
  22425. height: math.unit(7 + 5 / 12, "feet"),
  22426. weight: math.unit(300, "lb"),
  22427. name: "Back",
  22428. image: {
  22429. source: "./media/characters/azula/back.svg",
  22430. extra: 3169 / 2822,
  22431. bottom: 150.6 / 3321
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(7 + 5 / 12, "feet"),
  22439. default: true
  22440. },
  22441. {
  22442. name: "Big",
  22443. height: math.unit(20, "feet")
  22444. },
  22445. ]
  22446. ))
  22447. characterMakers.push(() => makeCharacter(
  22448. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22449. {
  22450. front: {
  22451. height: math.unit(5 + 1 / 12, "feet"),
  22452. weight: math.unit(110, "lb"),
  22453. name: "Front",
  22454. image: {
  22455. source: "./media/characters/rupert/front.svg",
  22456. extra: 1549 / 1495,
  22457. bottom: 54.2 / 1604.4
  22458. }
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Normal",
  22464. height: math.unit(5 + 1 / 12, "feet"),
  22465. default: true
  22466. },
  22467. ]
  22468. ))
  22469. characterMakers.push(() => makeCharacter(
  22470. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22471. {
  22472. front: {
  22473. height: math.unit(8 + 4 / 12, "feet"),
  22474. weight: math.unit(350, "lb"),
  22475. name: "Front",
  22476. image: {
  22477. source: "./media/characters/sheera-castellar/front.svg",
  22478. extra: 1957 / 1894,
  22479. bottom: 26.97 / 1975.017
  22480. }
  22481. },
  22482. side: {
  22483. height: math.unit(8 + 4 / 12, "feet"),
  22484. weight: math.unit(350, "lb"),
  22485. name: "Side",
  22486. image: {
  22487. source: "./media/characters/sheera-castellar/side.svg",
  22488. extra: 1957 / 1894
  22489. }
  22490. },
  22491. back: {
  22492. height: math.unit(8 + 4 / 12, "feet"),
  22493. weight: math.unit(350, "lb"),
  22494. name: "Back",
  22495. image: {
  22496. source: "./media/characters/sheera-castellar/back.svg",
  22497. extra: 1957 / 1894
  22498. }
  22499. },
  22500. angled: {
  22501. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22502. weight: math.unit(350, "lb"),
  22503. name: "Angled",
  22504. image: {
  22505. source: "./media/characters/sheera-castellar/angled.svg",
  22506. extra: 1807 / 1707,
  22507. bottom: 68 / 1875
  22508. }
  22509. },
  22510. genitals: {
  22511. height: math.unit(2.2, "feet"),
  22512. name: "Genitals",
  22513. image: {
  22514. source: "./media/characters/sheera-castellar/genitals.svg"
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Normal",
  22521. height: math.unit(8 + 4 / 12, "feet")
  22522. },
  22523. {
  22524. name: "Macro",
  22525. height: math.unit(150, "feet"),
  22526. default: true
  22527. },
  22528. {
  22529. name: "Macro+",
  22530. height: math.unit(800, "feet")
  22531. },
  22532. ]
  22533. ))
  22534. characterMakers.push(() => makeCharacter(
  22535. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22536. {
  22537. front: {
  22538. height: math.unit(6, "feet"),
  22539. weight: math.unit(150, "lb"),
  22540. name: "Front",
  22541. image: {
  22542. source: "./media/characters/jaipur/front.svg",
  22543. extra: 3860 / 3731,
  22544. bottom: 287 / 4140
  22545. }
  22546. },
  22547. back: {
  22548. height: math.unit(6, "feet"),
  22549. weight: math.unit(150, "lb"),
  22550. name: "Back",
  22551. image: {
  22552. source: "./media/characters/jaipur/back.svg",
  22553. extra: 4060 / 3930,
  22554. bottom: 151 / 4200
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Normal",
  22561. height: math.unit(1.85, "meters"),
  22562. default: true
  22563. },
  22564. {
  22565. name: "Macro",
  22566. height: math.unit(150, "meters")
  22567. },
  22568. {
  22569. name: "Macro+",
  22570. height: math.unit(0.5, "miles")
  22571. },
  22572. {
  22573. name: "Macro++",
  22574. height: math.unit(2.5, "miles")
  22575. },
  22576. {
  22577. name: "Macro+++",
  22578. height: math.unit(12, "miles")
  22579. },
  22580. {
  22581. name: "Macro++++",
  22582. height: math.unit(120, "miles")
  22583. },
  22584. {
  22585. name: "Macro+++++",
  22586. height: math.unit(1200, "miles")
  22587. },
  22588. ]
  22589. ))
  22590. characterMakers.push(() => makeCharacter(
  22591. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22592. {
  22593. front: {
  22594. height: math.unit(6, "feet"),
  22595. weight: math.unit(150, "lb"),
  22596. name: "Front",
  22597. image: {
  22598. source: "./media/characters/sheila-wolf/front.svg",
  22599. extra: 1931 / 1808,
  22600. bottom: 29.5 / 1960
  22601. }
  22602. },
  22603. dick: {
  22604. height: math.unit(1.464, "feet"),
  22605. name: "Dick",
  22606. image: {
  22607. source: "./media/characters/sheila-wolf/dick.svg"
  22608. }
  22609. },
  22610. muzzle: {
  22611. height: math.unit(0.513, "feet"),
  22612. name: "Muzzle",
  22613. image: {
  22614. source: "./media/characters/sheila-wolf/muzzle.svg"
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Macro",
  22621. height: math.unit(70, "feet"),
  22622. default: true
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(32, "meters"),
  22631. weight: math.unit(300000, "kg"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/almor/front.svg",
  22635. extra: 1408 / 1322,
  22636. bottom: 94.6 / 1506.5
  22637. }
  22638. },
  22639. },
  22640. [
  22641. {
  22642. name: "Macro",
  22643. height: math.unit(32, "meters"),
  22644. default: true
  22645. },
  22646. ]
  22647. ))
  22648. characterMakers.push(() => makeCharacter(
  22649. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22650. {
  22651. front: {
  22652. height: math.unit(7, "feet"),
  22653. weight: math.unit(200, "lb"),
  22654. name: "Front",
  22655. image: {
  22656. source: "./media/characters/silver/front.svg",
  22657. extra: 472.1 / 450.5,
  22658. bottom: 26.5 / 499.424
  22659. }
  22660. },
  22661. },
  22662. [
  22663. {
  22664. name: "Normal",
  22665. height: math.unit(7, "feet"),
  22666. default: true
  22667. },
  22668. {
  22669. name: "Macro",
  22670. height: math.unit(800, "feet")
  22671. },
  22672. {
  22673. name: "Megamacro",
  22674. height: math.unit(250, "miles")
  22675. },
  22676. ]
  22677. ))
  22678. characterMakers.push(() => makeCharacter(
  22679. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22680. {
  22681. front: {
  22682. height: math.unit(6, "feet"),
  22683. weight: math.unit(150, "lb"),
  22684. name: "Front",
  22685. image: {
  22686. source: "./media/characters/pliskin/front.svg",
  22687. extra: 1469 / 1359,
  22688. bottom: 70 / 1540
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Micro",
  22695. height: math.unit(3, "inches")
  22696. },
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(5 + 11 / 12, "feet"),
  22700. default: true
  22701. },
  22702. {
  22703. name: "Macro",
  22704. height: math.unit(120, "feet")
  22705. },
  22706. ]
  22707. ))
  22708. characterMakers.push(() => makeCharacter(
  22709. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22710. {
  22711. front: {
  22712. height: math.unit(6, "feet"),
  22713. weight: math.unit(150, "lb"),
  22714. name: "Front",
  22715. image: {
  22716. source: "./media/characters/sammy/front.svg",
  22717. extra: 1193 / 1089,
  22718. bottom: 30.5 / 1226
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Macro",
  22725. height: math.unit(1700, "feet"),
  22726. default: true
  22727. },
  22728. {
  22729. name: "Examacro",
  22730. height: math.unit(2.5e9, "lightyears")
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(21, "meters"),
  22739. weight: math.unit(12, "tonnes"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/kuru/front.svg",
  22743. extra: 4301 / 3785,
  22744. bottom: 371.3 / 4691
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Macro",
  22751. height: math.unit(21, "meters"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(23, "meters"),
  22761. weight: math.unit(12.2, "tonnes"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/rakka/front.svg",
  22765. extra: 4670 / 4169,
  22766. bottom: 301 / 4968.7
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Macro",
  22773. height: math.unit(23, "meters"),
  22774. default: true
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22780. {
  22781. front: {
  22782. height: math.unit(6, "feet"),
  22783. weight: math.unit(150, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/rhys-feline/front.svg",
  22787. extra: 2488 / 2308,
  22788. bottom: 35.67 / 2519.19
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Really Small",
  22795. height: math.unit(1, "nm")
  22796. },
  22797. {
  22798. name: "Micro",
  22799. height: math.unit(4, "inches")
  22800. },
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(4 + 10 / 12, "feet"),
  22804. default: true
  22805. },
  22806. {
  22807. name: "Macro",
  22808. height: math.unit(100, "feet")
  22809. },
  22810. {
  22811. name: "Megamacto",
  22812. height: math.unit(50, "miles")
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22818. {
  22819. side: {
  22820. height: math.unit(30, "feet"),
  22821. weight: math.unit(35000, "kg"),
  22822. name: "Side",
  22823. image: {
  22824. source: "./media/characters/alydar/side.svg",
  22825. extra: 234 / 222,
  22826. bottom: 6.5 / 241
  22827. }
  22828. },
  22829. front: {
  22830. height: math.unit(30, "feet"),
  22831. weight: math.unit(35000, "kg"),
  22832. name: "Front",
  22833. image: {
  22834. source: "./media/characters/alydar/front.svg",
  22835. extra: 223.37 / 210.2,
  22836. bottom: 22.3 / 246.76
  22837. }
  22838. },
  22839. top: {
  22840. height: math.unit(64.54, "feet"),
  22841. weight: math.unit(35000, "kg"),
  22842. name: "Top",
  22843. image: {
  22844. source: "./media/characters/alydar/top.svg"
  22845. }
  22846. },
  22847. anthro: {
  22848. height: math.unit(30, "feet"),
  22849. weight: math.unit(9000, "kg"),
  22850. name: "Anthro",
  22851. image: {
  22852. source: "./media/characters/alydar/anthro.svg",
  22853. extra: 432 / 421,
  22854. bottom: 7.18 / 440
  22855. }
  22856. },
  22857. maw: {
  22858. height: math.unit(11.693, "feet"),
  22859. name: "Maw",
  22860. image: {
  22861. source: "./media/characters/alydar/maw.svg"
  22862. }
  22863. },
  22864. head: {
  22865. height: math.unit(11.693, "feet"),
  22866. name: "Head",
  22867. image: {
  22868. source: "./media/characters/alydar/head.svg"
  22869. }
  22870. },
  22871. headAlt: {
  22872. height: math.unit(12.861, "feet"),
  22873. name: "Head (Alt)",
  22874. image: {
  22875. source: "./media/characters/alydar/head-alt.svg"
  22876. }
  22877. },
  22878. wing: {
  22879. height: math.unit(20.712, "feet"),
  22880. name: "Wing",
  22881. image: {
  22882. source: "./media/characters/alydar/wing.svg"
  22883. }
  22884. },
  22885. wingFeather: {
  22886. height: math.unit(9.662, "feet"),
  22887. name: "Wing Feather",
  22888. image: {
  22889. source: "./media/characters/alydar/wing-feather.svg"
  22890. }
  22891. },
  22892. countourFeather: {
  22893. height: math.unit(4.154, "feet"),
  22894. name: "Contour Feather",
  22895. image: {
  22896. source: "./media/characters/alydar/contour-feather.svg"
  22897. }
  22898. },
  22899. },
  22900. [
  22901. {
  22902. name: "Diplomatic",
  22903. height: math.unit(13, "feet"),
  22904. default: true
  22905. },
  22906. {
  22907. name: "Small",
  22908. height: math.unit(30, "feet")
  22909. },
  22910. {
  22911. name: "Normal",
  22912. height: math.unit(95, "feet"),
  22913. default: true
  22914. },
  22915. {
  22916. name: "Large",
  22917. height: math.unit(285, "feet")
  22918. },
  22919. {
  22920. name: "Incomprehensible",
  22921. height: math.unit(450, "megameters")
  22922. },
  22923. ]
  22924. ))
  22925. characterMakers.push(() => makeCharacter(
  22926. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22927. {
  22928. side: {
  22929. height: math.unit(11, "feet"),
  22930. weight: math.unit(1750, "kg"),
  22931. name: "Side",
  22932. image: {
  22933. source: "./media/characters/selicia/side.svg",
  22934. extra: 440 / 396,
  22935. bottom: 24.8 / 465.979
  22936. }
  22937. },
  22938. maw: {
  22939. height: math.unit(4.665, "feet"),
  22940. name: "Maw",
  22941. image: {
  22942. source: "./media/characters/selicia/maw.svg"
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(11, "feet"),
  22950. default: true
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22956. {
  22957. side: {
  22958. height: math.unit(2 + 6 / 12, "feet"),
  22959. weight: math.unit(30, "lb"),
  22960. name: "Side",
  22961. image: {
  22962. source: "./media/characters/layla/side.svg",
  22963. extra: 244 / 188,
  22964. bottom: 18.2 / 262.1
  22965. }
  22966. },
  22967. back: {
  22968. height: math.unit(2 + 6 / 12, "feet"),
  22969. weight: math.unit(30, "lb"),
  22970. name: "Back",
  22971. image: {
  22972. source: "./media/characters/layla/back.svg",
  22973. extra: 308 / 241.5,
  22974. bottom: 8.9 / 316.8
  22975. }
  22976. },
  22977. cumming: {
  22978. height: math.unit(2 + 6 / 12, "feet"),
  22979. weight: math.unit(30, "lb"),
  22980. name: "Cumming",
  22981. image: {
  22982. source: "./media/characters/layla/cumming.svg",
  22983. extra: 342 / 279,
  22984. bottom: 595 / 938
  22985. }
  22986. },
  22987. dickFlaccid: {
  22988. height: math.unit(2.595, "feet"),
  22989. name: "Flaccid Genitals",
  22990. image: {
  22991. source: "./media/characters/layla/dick-flaccid.svg"
  22992. }
  22993. },
  22994. dickErect: {
  22995. height: math.unit(2.359, "feet"),
  22996. name: "Erect Genitals",
  22997. image: {
  22998. source: "./media/characters/layla/dick-erect.svg"
  22999. }
  23000. },
  23001. },
  23002. [
  23003. {
  23004. name: "Micro",
  23005. height: math.unit(1, "inch")
  23006. },
  23007. {
  23008. name: "Small",
  23009. height: math.unit(1, "foot")
  23010. },
  23011. {
  23012. name: "Normal",
  23013. height: math.unit(2 + 6 / 12, "feet"),
  23014. default: true
  23015. },
  23016. {
  23017. name: "Macro",
  23018. height: math.unit(200, "feet")
  23019. },
  23020. {
  23021. name: "Megamacro",
  23022. height: math.unit(1000, "miles")
  23023. },
  23024. {
  23025. name: "Planetary",
  23026. height: math.unit(8000, "miles")
  23027. },
  23028. {
  23029. name: "True Layla",
  23030. height: math.unit(200000 * 7, "multiverses")
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23036. {
  23037. back: {
  23038. height: math.unit(10.5, "feet"),
  23039. weight: math.unit(800, "lb"),
  23040. name: "Back",
  23041. image: {
  23042. source: "./media/characters/knox/back.svg",
  23043. extra: 1486 / 1089,
  23044. bottom: 107 / 1601.4
  23045. }
  23046. },
  23047. side: {
  23048. height: math.unit(10.5, "feet"),
  23049. weight: math.unit(800, "lb"),
  23050. name: "Side",
  23051. image: {
  23052. source: "./media/characters/knox/side.svg",
  23053. extra: 244 / 218,
  23054. bottom: 14 / 260
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Compact",
  23061. height: math.unit(10.5, "feet"),
  23062. default: true
  23063. },
  23064. {
  23065. name: "Dynamax",
  23066. height: math.unit(210, "feet")
  23067. },
  23068. {
  23069. name: "Full Macro",
  23070. height: math.unit(850, "feet")
  23071. },
  23072. ]
  23073. ))
  23074. characterMakers.push(() => makeCharacter(
  23075. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23076. {
  23077. front: {
  23078. height: math.unit(6, "feet"),
  23079. weight: math.unit(152, "lb"),
  23080. name: "Front",
  23081. image: {
  23082. source: "./media/characters/shin-pikachu/front.svg",
  23083. extra: 1574 / 1480,
  23084. bottom: 53.3 / 1626
  23085. }
  23086. },
  23087. hand: {
  23088. height: math.unit(1.055, "feet"),
  23089. name: "Hand",
  23090. image: {
  23091. source: "./media/characters/shin-pikachu/hand.svg"
  23092. }
  23093. },
  23094. foot: {
  23095. height: math.unit(1.1, "feet"),
  23096. name: "Foot",
  23097. image: {
  23098. source: "./media/characters/shin-pikachu/foot.svg"
  23099. }
  23100. },
  23101. collar: {
  23102. height: math.unit(0.386, "feet"),
  23103. name: "Collar",
  23104. image: {
  23105. source: "./media/characters/shin-pikachu/collar.svg"
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Smallest",
  23112. height: math.unit(0.5, "inches")
  23113. },
  23114. {
  23115. name: "Micro",
  23116. height: math.unit(6, "inches")
  23117. },
  23118. {
  23119. name: "Normal",
  23120. height: math.unit(6, "feet"),
  23121. default: true
  23122. },
  23123. {
  23124. name: "Macro",
  23125. height: math.unit(150, "feet")
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23131. {
  23132. front: {
  23133. height: math.unit(28, "feet"),
  23134. weight: math.unit(10500, "lb"),
  23135. name: "Front",
  23136. image: {
  23137. source: "./media/characters/kayda/front.svg",
  23138. extra: 1536 / 1428,
  23139. bottom: 68.7 / 1603
  23140. }
  23141. },
  23142. back: {
  23143. height: math.unit(28, "feet"),
  23144. weight: math.unit(10500, "lb"),
  23145. name: "Back",
  23146. image: {
  23147. source: "./media/characters/kayda/back.svg",
  23148. extra: 1557 / 1464,
  23149. bottom: 39.5 / 1597.49
  23150. }
  23151. },
  23152. dick: {
  23153. height: math.unit(3.858, "feet"),
  23154. name: "Dick",
  23155. image: {
  23156. source: "./media/characters/kayda/dick.svg"
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Macro",
  23163. height: math.unit(28, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(10 + 11 / 12, "feet"),
  23173. weight: math.unit(1400, "lb"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/brian/front.svg",
  23177. extra: 737 / 692,
  23178. bottom: 55.4 / 785
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(10 + 11 / 12, "feet"),
  23186. default: true
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(5 + 8 / 12, "feet"),
  23195. weight: math.unit(140, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/khemri/front.svg",
  23199. extra: 4780 / 4059,
  23200. bottom: 80.1 / 4859.25
  23201. }
  23202. },
  23203. },
  23204. [
  23205. {
  23206. name: "Micro",
  23207. height: math.unit(6, "inches")
  23208. },
  23209. {
  23210. name: "Normal",
  23211. height: math.unit(5 + 8 / 12, "feet"),
  23212. default: true
  23213. },
  23214. ]
  23215. ))
  23216. characterMakers.push(() => makeCharacter(
  23217. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23218. {
  23219. front: {
  23220. height: math.unit(13, "feet"),
  23221. weight: math.unit(1700, "lb"),
  23222. name: "Front",
  23223. image: {
  23224. source: "./media/characters/felix-braveheart/front.svg",
  23225. extra: 1222 / 1157,
  23226. bottom: 53.2 / 1280
  23227. }
  23228. },
  23229. back: {
  23230. height: math.unit(13, "feet"),
  23231. weight: math.unit(1700, "lb"),
  23232. name: "Back",
  23233. image: {
  23234. source: "./media/characters/felix-braveheart/back.svg",
  23235. extra: 1277 / 1203,
  23236. bottom: 50.2 / 1327
  23237. }
  23238. },
  23239. feral: {
  23240. height: math.unit(6, "feet"),
  23241. weight: math.unit(400, "lb"),
  23242. name: "Feral",
  23243. image: {
  23244. source: "./media/characters/felix-braveheart/feral.svg",
  23245. extra: 682 / 625,
  23246. bottom: 6.9 / 688
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Normal",
  23253. height: math.unit(13, "feet"),
  23254. default: true
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23260. {
  23261. side: {
  23262. height: math.unit(5 + 11 / 12, "feet"),
  23263. weight: math.unit(1400, "lb"),
  23264. name: "Side",
  23265. image: {
  23266. source: "./media/characters/shadow-blade/side.svg",
  23267. extra: 1726 / 1267,
  23268. bottom: 58.4 / 1785
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(5 + 11 / 12, "feet"),
  23276. default: true
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(1 + 6 / 12, "feet"),
  23285. weight: math.unit(25, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/karla-halldor/front.svg",
  23289. extra: 1459 / 1383,
  23290. bottom: 12 / 1472
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(1 + 6 / 12, "feet"),
  23298. default: true
  23299. },
  23300. ]
  23301. ))
  23302. characterMakers.push(() => makeCharacter(
  23303. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23304. {
  23305. front: {
  23306. height: math.unit(6 + 2 / 12, "feet"),
  23307. weight: math.unit(160, "lb"),
  23308. name: "Front",
  23309. image: {
  23310. source: "./media/characters/ariam/front.svg",
  23311. extra: 714 / 617,
  23312. bottom: 23.4 / 737,
  23313. }
  23314. },
  23315. squatting: {
  23316. height: math.unit(4.1, "feet"),
  23317. weight: math.unit(160, "lb"),
  23318. name: "Squatting",
  23319. image: {
  23320. source: "./media/characters/ariam/squatting.svg",
  23321. extra: 2617 / 2112,
  23322. bottom: 61.2 / 2681,
  23323. }
  23324. },
  23325. },
  23326. [
  23327. {
  23328. name: "Normal",
  23329. height: math.unit(6 + 2 / 12, "feet"),
  23330. default: true
  23331. },
  23332. {
  23333. name: "Normal+",
  23334. height: math.unit(4, "meters")
  23335. },
  23336. {
  23337. name: "Macro",
  23338. height: math.unit(50, "meters")
  23339. },
  23340. {
  23341. name: "Macro+",
  23342. height: math.unit(100, "meters")
  23343. },
  23344. {
  23345. name: "Megamacro",
  23346. height: math.unit(20, "km")
  23347. },
  23348. ]
  23349. ))
  23350. characterMakers.push(() => makeCharacter(
  23351. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23352. {
  23353. front: {
  23354. height: math.unit(1.67, "meters"),
  23355. weight: math.unit(140, "lb"),
  23356. name: "Front",
  23357. image: {
  23358. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23359. extra: 438 / 410,
  23360. bottom: 0.75 / 439
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Shrunken",
  23367. height: math.unit(7.6, "cm")
  23368. },
  23369. {
  23370. name: "Human Scale",
  23371. height: math.unit(1.67, "meters")
  23372. },
  23373. {
  23374. name: "Wolxi Scale",
  23375. height: math.unit(36.7, "meters"),
  23376. default: true
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23382. {
  23383. front: {
  23384. height: math.unit(1.73, "meters"),
  23385. weight: math.unit(240, "lb"),
  23386. name: "Front",
  23387. image: {
  23388. source: "./media/characters/izue-two-mothers/front.svg",
  23389. extra: 469 / 437,
  23390. bottom: 1.24 / 470.6
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Shrunken",
  23397. height: math.unit(7.86, "cm")
  23398. },
  23399. {
  23400. name: "Human Scale",
  23401. height: math.unit(1.73, "meters")
  23402. },
  23403. {
  23404. name: "Wolxi Scale",
  23405. height: math.unit(38, "meters"),
  23406. default: true
  23407. },
  23408. ]
  23409. ))
  23410. characterMakers.push(() => makeCharacter(
  23411. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23412. {
  23413. front: {
  23414. height: math.unit(1.55, "meters"),
  23415. weight: math.unit(120, "lb"),
  23416. name: "Front",
  23417. image: {
  23418. source: "./media/characters/teeku-love-shack/front.svg",
  23419. extra: 387 / 362,
  23420. bottom: 1.51 / 388
  23421. }
  23422. },
  23423. },
  23424. [
  23425. {
  23426. name: "Shrunken",
  23427. height: math.unit(7, "cm")
  23428. },
  23429. {
  23430. name: "Human Scale",
  23431. height: math.unit(1.55, "meters")
  23432. },
  23433. {
  23434. name: "Wolxi Scale",
  23435. height: math.unit(34.1, "meters"),
  23436. default: true
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23442. {
  23443. front: {
  23444. height: math.unit(1.83, "meters"),
  23445. weight: math.unit(135, "lb"),
  23446. name: "Front",
  23447. image: {
  23448. source: "./media/characters/dejma-the-red/front.svg",
  23449. extra: 480 / 458,
  23450. bottom: 1.8 / 482
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Shrunken",
  23457. height: math.unit(8.3, "cm")
  23458. },
  23459. {
  23460. name: "Human Scale",
  23461. height: math.unit(1.83, "meters")
  23462. },
  23463. {
  23464. name: "Wolxi Scale",
  23465. height: math.unit(40, "meters"),
  23466. default: true
  23467. },
  23468. ]
  23469. ))
  23470. characterMakers.push(() => makeCharacter(
  23471. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23472. {
  23473. front: {
  23474. height: math.unit(1.78, "meters"),
  23475. weight: math.unit(65, "kg"),
  23476. name: "Front",
  23477. image: {
  23478. source: "./media/characters/aki/front.svg",
  23479. extra: 452 / 415
  23480. }
  23481. },
  23482. frontNsfw: {
  23483. height: math.unit(1.78, "meters"),
  23484. weight: math.unit(65, "kg"),
  23485. name: "Front (NSFW)",
  23486. image: {
  23487. source: "./media/characters/aki/front-nsfw.svg",
  23488. extra: 452 / 415
  23489. }
  23490. },
  23491. back: {
  23492. height: math.unit(1.78, "meters"),
  23493. weight: math.unit(65, "kg"),
  23494. name: "Back",
  23495. image: {
  23496. source: "./media/characters/aki/back.svg",
  23497. extra: 452 / 415
  23498. }
  23499. },
  23500. rump: {
  23501. height: math.unit(2.05, "feet"),
  23502. name: "Rump",
  23503. image: {
  23504. source: "./media/characters/aki/rump.svg"
  23505. }
  23506. },
  23507. dick: {
  23508. height: math.unit(0.95, "feet"),
  23509. name: "Dick",
  23510. image: {
  23511. source: "./media/characters/aki/dick.svg"
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Micro",
  23518. height: math.unit(15, "cm")
  23519. },
  23520. {
  23521. name: "Normal",
  23522. height: math.unit(178, "cm"),
  23523. default: true
  23524. },
  23525. {
  23526. name: "Macro",
  23527. height: math.unit(214, "m")
  23528. },
  23529. {
  23530. name: "Macro+",
  23531. height: math.unit(534, "m")
  23532. },
  23533. ]
  23534. ))
  23535. characterMakers.push(() => makeCharacter(
  23536. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23537. {
  23538. front: {
  23539. height: math.unit(5 + 5 / 12, "feet"),
  23540. weight: math.unit(120, "lb"),
  23541. name: "Front",
  23542. image: {
  23543. source: "./media/characters/ari/front.svg",
  23544. extra: 714.5 / 682,
  23545. bottom: 8 / 722.5
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Normal",
  23552. height: math.unit(5 + 5 / 12, "feet")
  23553. },
  23554. {
  23555. name: "Macro",
  23556. height: math.unit(100, "feet"),
  23557. default: true
  23558. },
  23559. {
  23560. name: "Megamacro",
  23561. height: math.unit(100, "miles")
  23562. },
  23563. {
  23564. name: "Gigamacro",
  23565. height: math.unit(80000, "miles")
  23566. },
  23567. ]
  23568. ))
  23569. characterMakers.push(() => makeCharacter(
  23570. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23571. {
  23572. side: {
  23573. height: math.unit(9, "feet"),
  23574. weight: math.unit(400, "kg"),
  23575. name: "Side",
  23576. image: {
  23577. source: "./media/characters/bolt/side.svg",
  23578. extra: 1126 / 896,
  23579. bottom: 60 / 1187.3,
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Micro",
  23586. height: math.unit(5, "inches")
  23587. },
  23588. {
  23589. name: "Normal",
  23590. height: math.unit(9, "feet"),
  23591. default: true
  23592. },
  23593. {
  23594. name: "Macro",
  23595. height: math.unit(700, "feet")
  23596. },
  23597. {
  23598. name: "Max Size",
  23599. height: math.unit(1.52e22, "yottameters")
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(4.53, "meters"),
  23608. weight: math.unit(3, "tons"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/draekon-sylviar/front.svg",
  23612. extra: 1228 / 1068,
  23613. bottom: 41 / 1270
  23614. }
  23615. },
  23616. tail: {
  23617. height: math.unit(1.772, "meter"),
  23618. name: "Tail",
  23619. image: {
  23620. source: "./media/characters/draekon-sylviar/tail.svg"
  23621. }
  23622. },
  23623. head: {
  23624. height: math.unit(1.331, "meter"),
  23625. name: "Head",
  23626. image: {
  23627. source: "./media/characters/draekon-sylviar/head.svg"
  23628. }
  23629. },
  23630. hand: {
  23631. height: math.unit(0.564, "meter"),
  23632. name: "Hand",
  23633. image: {
  23634. source: "./media/characters/draekon-sylviar/hand.svg"
  23635. }
  23636. },
  23637. foot: {
  23638. height: math.unit(0.621, "meter"),
  23639. name: "Foot",
  23640. image: {
  23641. source: "./media/characters/draekon-sylviar/foot.svg",
  23642. bottom: 32 / 324
  23643. }
  23644. },
  23645. dick: {
  23646. height: math.unit(61, "cm"),
  23647. name: "Dick",
  23648. image: {
  23649. source: "./media/characters/draekon-sylviar/dick.svg"
  23650. }
  23651. },
  23652. dickseparated: {
  23653. height: math.unit(61, "cm"),
  23654. name: "Dick-separated",
  23655. image: {
  23656. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Small",
  23663. height: math.unit(4.53 / 2, "meters"),
  23664. default: true
  23665. },
  23666. {
  23667. name: "Normal",
  23668. height: math.unit(4.53, "meters"),
  23669. default: true
  23670. },
  23671. {
  23672. name: "Large",
  23673. height: math.unit(4.53 * 2, "meters"),
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23679. {
  23680. front: {
  23681. height: math.unit(6 + 2 / 12, "feet"),
  23682. weight: math.unit(180, "lb"),
  23683. name: "Front",
  23684. image: {
  23685. source: "./media/characters/brawler/front.svg",
  23686. extra: 3301 / 3027,
  23687. bottom: 138 / 3439
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Normal",
  23694. height: math.unit(6 + 2 / 12, "feet"),
  23695. default: true
  23696. },
  23697. ]
  23698. ))
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23701. {
  23702. front: {
  23703. height: math.unit(11, "feet"),
  23704. weight: math.unit(1000, "lb"),
  23705. name: "Front",
  23706. image: {
  23707. source: "./media/characters/alex/front.svg",
  23708. bottom: 44.5 / 620
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Micro",
  23715. height: math.unit(5, "inches")
  23716. },
  23717. {
  23718. name: "Normal",
  23719. height: math.unit(11, "feet"),
  23720. default: true
  23721. },
  23722. {
  23723. name: "Macro",
  23724. height: math.unit(9.5e9, "feet")
  23725. },
  23726. {
  23727. name: "Max Size",
  23728. height: math.unit(1.4e283, "yottameters")
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23734. {
  23735. female: {
  23736. height: math.unit(29.9, "m"),
  23737. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23738. name: "Female",
  23739. image: {
  23740. source: "./media/characters/zenari/female.svg",
  23741. extra: 3281.6 / 3217,
  23742. bottom: 72.2 / 3353
  23743. }
  23744. },
  23745. male: {
  23746. height: math.unit(27.7, "m"),
  23747. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23748. name: "Male",
  23749. image: {
  23750. source: "./media/characters/zenari/male.svg",
  23751. extra: 3008 / 2991,
  23752. bottom: 54.6 / 3069
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Macro",
  23759. height: math.unit(29.7, "meters"),
  23760. default: true
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23766. {
  23767. female: {
  23768. height: math.unit(23.8, "m"),
  23769. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23770. name: "Female",
  23771. image: {
  23772. source: "./media/characters/mactarian/female.svg",
  23773. extra: 2662 / 2569,
  23774. bottom: 73 / 2736
  23775. }
  23776. },
  23777. male: {
  23778. height: math.unit(23.8, "m"),
  23779. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23780. name: "Male",
  23781. image: {
  23782. source: "./media/characters/mactarian/male.svg",
  23783. extra: 2673 / 2600,
  23784. bottom: 76 / 2750
  23785. }
  23786. },
  23787. },
  23788. [
  23789. {
  23790. name: "Macro",
  23791. height: math.unit(23.8, "meters"),
  23792. default: true
  23793. },
  23794. ]
  23795. ))
  23796. characterMakers.push(() => makeCharacter(
  23797. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23798. {
  23799. female: {
  23800. height: math.unit(19.3, "m"),
  23801. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23802. name: "Female",
  23803. image: {
  23804. source: "./media/characters/umok/female.svg",
  23805. extra: 2186 / 2078,
  23806. bottom: 87 / 2277
  23807. }
  23808. },
  23809. male: {
  23810. height: math.unit(19.5, "m"),
  23811. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23812. name: "Male",
  23813. image: {
  23814. source: "./media/characters/umok/male.svg",
  23815. extra: 2233 / 2140,
  23816. bottom: 24.4 / 2258
  23817. }
  23818. },
  23819. },
  23820. [
  23821. {
  23822. name: "Macro",
  23823. height: math.unit(19.3, "meters"),
  23824. default: true
  23825. },
  23826. ]
  23827. ))
  23828. characterMakers.push(() => makeCharacter(
  23829. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23830. {
  23831. female: {
  23832. height: math.unit(26.15, "m"),
  23833. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23834. name: "Female",
  23835. image: {
  23836. source: "./media/characters/joraxian/female.svg",
  23837. extra: 2912 / 2824,
  23838. bottom: 36 / 2956
  23839. }
  23840. },
  23841. male: {
  23842. height: math.unit(25.4, "m"),
  23843. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23844. name: "Male",
  23845. image: {
  23846. source: "./media/characters/joraxian/male.svg",
  23847. extra: 2877 / 2721,
  23848. bottom: 82 / 2967
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(26.15, "meters"),
  23856. default: true
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23862. {
  23863. female: {
  23864. height: math.unit(21.6, "m"),
  23865. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23866. name: "Female",
  23867. image: {
  23868. source: "./media/characters/sthara/female.svg",
  23869. extra: 2516 / 2347,
  23870. bottom: 21.5 / 2537
  23871. }
  23872. },
  23873. male: {
  23874. height: math.unit(24, "m"),
  23875. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23876. name: "Male",
  23877. image: {
  23878. source: "./media/characters/sthara/male.svg",
  23879. extra: 2732 / 2607,
  23880. bottom: 23 / 2732
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Macro",
  23887. height: math.unit(21.6, "meters"),
  23888. default: true
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23894. {
  23895. front: {
  23896. height: math.unit(6 + 4 / 12, "feet"),
  23897. weight: math.unit(175, "lb"),
  23898. name: "Front",
  23899. image: {
  23900. source: "./media/characters/luka-bryzant/front.svg",
  23901. extra: 311 / 289,
  23902. bottom: 4 / 315
  23903. }
  23904. },
  23905. back: {
  23906. height: math.unit(6 + 4 / 12, "feet"),
  23907. weight: math.unit(175, "lb"),
  23908. name: "Back",
  23909. image: {
  23910. source: "./media/characters/luka-bryzant/back.svg",
  23911. extra: 311 / 289,
  23912. bottom: 3.8 / 313.7
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Micro",
  23919. height: math.unit(10, "inches")
  23920. },
  23921. {
  23922. name: "Normal",
  23923. height: math.unit(6 + 4 / 12, "feet"),
  23924. default: true
  23925. },
  23926. {
  23927. name: "Large",
  23928. height: math.unit(12, "feet")
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23934. {
  23935. front: {
  23936. height: math.unit(5 + 7 / 12, "feet"),
  23937. weight: math.unit(185, "lb"),
  23938. name: "Front",
  23939. image: {
  23940. source: "./media/characters/aman-aquila/front.svg",
  23941. extra: 1013 / 976,
  23942. bottom: 45.6 / 1057
  23943. }
  23944. },
  23945. side: {
  23946. height: math.unit(5 + 7 / 12, "feet"),
  23947. weight: math.unit(185, "lb"),
  23948. name: "Side",
  23949. image: {
  23950. source: "./media/characters/aman-aquila/side.svg",
  23951. extra: 1054 / 1011,
  23952. bottom: 15 / 1070
  23953. }
  23954. },
  23955. back: {
  23956. height: math.unit(5 + 7 / 12, "feet"),
  23957. weight: math.unit(185, "lb"),
  23958. name: "Back",
  23959. image: {
  23960. source: "./media/characters/aman-aquila/back.svg",
  23961. extra: 1026 / 970,
  23962. bottom: 12 / 1039
  23963. }
  23964. },
  23965. head: {
  23966. height: math.unit(1.211, "feet"),
  23967. name: "Head",
  23968. image: {
  23969. source: "./media/characters/aman-aquila/head.svg",
  23970. }
  23971. },
  23972. },
  23973. [
  23974. {
  23975. name: "Minimicro",
  23976. height: math.unit(0.057, "inches")
  23977. },
  23978. {
  23979. name: "Micro",
  23980. height: math.unit(7, "inches")
  23981. },
  23982. {
  23983. name: "Mini",
  23984. height: math.unit(3 + 7 / 12, "feet")
  23985. },
  23986. {
  23987. name: "Normal",
  23988. height: math.unit(5 + 7 / 12, "feet"),
  23989. default: true
  23990. },
  23991. {
  23992. name: "Macro",
  23993. height: math.unit(157 + 7 / 12, "feet")
  23994. },
  23995. {
  23996. name: "Megamacro",
  23997. height: math.unit(1557 + 7 / 12, "feet")
  23998. },
  23999. {
  24000. name: "Gigamacro",
  24001. height: math.unit(15557 + 7 / 12, "feet")
  24002. },
  24003. ]
  24004. ))
  24005. characterMakers.push(() => makeCharacter(
  24006. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24007. {
  24008. front: {
  24009. height: math.unit(3 + 2 / 12, "inches"),
  24010. weight: math.unit(0.3, "ounces"),
  24011. name: "Front",
  24012. image: {
  24013. source: "./media/characters/hiphae/front.svg",
  24014. extra: 1931 / 1683,
  24015. bottom: 24 / 1955
  24016. }
  24017. },
  24018. },
  24019. [
  24020. {
  24021. name: "Normal",
  24022. height: math.unit(3 + 1 / 2, "inches"),
  24023. default: true
  24024. },
  24025. ]
  24026. ))
  24027. characterMakers.push(() => makeCharacter(
  24028. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24029. {
  24030. front: {
  24031. height: math.unit(5 + 10 / 12, "feet"),
  24032. weight: math.unit(165, "lb"),
  24033. name: "Front",
  24034. image: {
  24035. source: "./media/characters/nicky/front.svg",
  24036. extra: 3144 / 2886,
  24037. bottom: 45.6 / 3192
  24038. }
  24039. },
  24040. back: {
  24041. height: math.unit(5 + 10 / 12, "feet"),
  24042. weight: math.unit(165, "lb"),
  24043. name: "Back",
  24044. image: {
  24045. source: "./media/characters/nicky/back.svg",
  24046. extra: 3055 / 2804,
  24047. bottom: 28.4 / 3087
  24048. }
  24049. },
  24050. frontclothed: {
  24051. height: math.unit(5 + 10 / 12, "feet"),
  24052. weight: math.unit(165, "lb"),
  24053. name: "Front-clothed",
  24054. image: {
  24055. source: "./media/characters/nicky/front-clothed.svg",
  24056. extra: 3184.9 / 2926.9,
  24057. bottom: 86.5 / 3239.9
  24058. }
  24059. },
  24060. foot: {
  24061. height: math.unit(1.16, "feet"),
  24062. name: "Foot",
  24063. image: {
  24064. source: "./media/characters/nicky/foot.svg"
  24065. }
  24066. },
  24067. feet: {
  24068. height: math.unit(1.34, "feet"),
  24069. name: "Feet",
  24070. image: {
  24071. source: "./media/characters/nicky/feet.svg"
  24072. }
  24073. },
  24074. maw: {
  24075. height: math.unit(0.9, "feet"),
  24076. name: "Maw",
  24077. image: {
  24078. source: "./media/characters/nicky/maw.svg"
  24079. }
  24080. },
  24081. },
  24082. [
  24083. {
  24084. name: "Normal",
  24085. height: math.unit(5 + 10 / 12, "feet"),
  24086. default: true
  24087. },
  24088. {
  24089. name: "Macro",
  24090. height: math.unit(60, "feet")
  24091. },
  24092. {
  24093. name: "Megamacro",
  24094. height: math.unit(1, "mile")
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24100. {
  24101. side: {
  24102. height: math.unit(10, "feet"),
  24103. weight: math.unit(600, "lb"),
  24104. name: "Side",
  24105. image: {
  24106. source: "./media/characters/blair/side.svg",
  24107. bottom: 16.6 / 475,
  24108. extra: 458 / 431
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Micro",
  24115. height: math.unit(8, "inches")
  24116. },
  24117. {
  24118. name: "Normal",
  24119. height: math.unit(10, "feet"),
  24120. default: true
  24121. },
  24122. {
  24123. name: "Macro",
  24124. height: math.unit(180, "feet")
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24130. {
  24131. front: {
  24132. height: math.unit(5 + 4 / 12, "feet"),
  24133. weight: math.unit(125, "lb"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/fisher/front.svg",
  24137. extra: 444 / 390,
  24138. bottom: 2 / 444.8
  24139. }
  24140. },
  24141. },
  24142. [
  24143. {
  24144. name: "Micro",
  24145. height: math.unit(4, "inches")
  24146. },
  24147. {
  24148. name: "Normal",
  24149. height: math.unit(5 + 4 / 12, "feet"),
  24150. default: true
  24151. },
  24152. {
  24153. name: "Macro",
  24154. height: math.unit(100, "feet")
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(6.71, "feet"),
  24163. weight: math.unit(200, "lb"),
  24164. capacity: math.unit(1000000, "people"),
  24165. name: "Front",
  24166. image: {
  24167. source: "./media/characters/gliss/front.svg",
  24168. extra: 2347 / 2231,
  24169. bottom: 113 / 2462
  24170. }
  24171. },
  24172. hammerspaceSize: {
  24173. height: math.unit(6.71 * 717, "feet"),
  24174. weight: math.unit(200, "lb"),
  24175. capacity: math.unit(1000000, "people"),
  24176. name: "Hammerspace Size",
  24177. image: {
  24178. source: "./media/characters/gliss/front.svg",
  24179. extra: 2347 / 2231,
  24180. bottom: 113 / 2462
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Normal",
  24187. height: math.unit(6.71, "feet"),
  24188. default: true
  24189. },
  24190. ]
  24191. ))
  24192. characterMakers.push(() => makeCharacter(
  24193. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24194. {
  24195. side: {
  24196. height: math.unit(1.44, "m"),
  24197. weight: math.unit(80, "kg"),
  24198. name: "Side",
  24199. image: {
  24200. source: "./media/characters/dune-anderson/side.svg",
  24201. bottom: 49 / 1426
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Wolf-sized",
  24208. height: math.unit(1.44, "meters")
  24209. },
  24210. {
  24211. name: "Normal",
  24212. height: math.unit(5.05, "meters"),
  24213. default: true
  24214. },
  24215. {
  24216. name: "Big",
  24217. height: math.unit(14.4, "meters")
  24218. },
  24219. {
  24220. name: "Huge",
  24221. height: math.unit(144, "meters")
  24222. },
  24223. ]
  24224. ))
  24225. characterMakers.push(() => makeCharacter(
  24226. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24227. {
  24228. front: {
  24229. height: math.unit(7, "feet"),
  24230. weight: math.unit(425, "lb"),
  24231. name: "Front",
  24232. image: {
  24233. source: "./media/characters/hind/front.svg",
  24234. extra: 2091 / 1860,
  24235. bottom: 129 / 2220
  24236. }
  24237. },
  24238. back: {
  24239. height: math.unit(7, "feet"),
  24240. weight: math.unit(425, "lb"),
  24241. name: "Back",
  24242. image: {
  24243. source: "./media/characters/hind/back.svg",
  24244. extra: 2091 / 1860,
  24245. bottom: 24.6 / 2309
  24246. }
  24247. },
  24248. tail: {
  24249. height: math.unit(2.8, "feet"),
  24250. name: "Tail",
  24251. image: {
  24252. source: "./media/characters/hind/tail.svg"
  24253. }
  24254. },
  24255. head: {
  24256. height: math.unit(2.55, "feet"),
  24257. name: "Head",
  24258. image: {
  24259. source: "./media/characters/hind/head.svg"
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "XS",
  24266. height: math.unit(0.7, "feet")
  24267. },
  24268. {
  24269. name: "Normal",
  24270. height: math.unit(7, "feet"),
  24271. default: true
  24272. },
  24273. {
  24274. name: "XL",
  24275. height: math.unit(70, "feet")
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24281. {
  24282. front: {
  24283. height: math.unit(6, "feet"),
  24284. weight: math.unit(150, "lb"),
  24285. name: "Front",
  24286. image: {
  24287. source: "./media/characters/dylan-skaven/front.svg",
  24288. extra: 2318 / 2063,
  24289. bottom: 93.4 / 2410
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Nano",
  24296. height: math.unit(1, "mm")
  24297. },
  24298. {
  24299. name: "Micro",
  24300. height: math.unit(1, "cm")
  24301. },
  24302. {
  24303. name: "Normal",
  24304. height: math.unit(2.1, "meters"),
  24305. default: true
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(7 + 5 / 12, "feet"),
  24314. weight: math.unit(357, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/solex-draconov/front.svg",
  24318. extra: 1993 / 1865,
  24319. bottom: 117 / 2111
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Natural Height",
  24326. height: math.unit(7 + 5 / 12, "feet"),
  24327. default: true
  24328. },
  24329. {
  24330. name: "Macro",
  24331. height: math.unit(350, "feet")
  24332. },
  24333. {
  24334. name: "Macro+",
  24335. height: math.unit(1000, "feet")
  24336. },
  24337. {
  24338. name: "Megamacro",
  24339. height: math.unit(20, "km")
  24340. },
  24341. {
  24342. name: "Megamacro+",
  24343. height: math.unit(1000, "km")
  24344. },
  24345. {
  24346. name: "Gigamacro",
  24347. height: math.unit(2.5, "Gm")
  24348. },
  24349. {
  24350. name: "Teramacro",
  24351. height: math.unit(15, "Tm")
  24352. },
  24353. {
  24354. name: "Galactic",
  24355. height: math.unit(30, "Zm")
  24356. },
  24357. {
  24358. name: "Universal",
  24359. height: math.unit(21000, "Ym")
  24360. },
  24361. {
  24362. name: "Omniversal",
  24363. height: math.unit(9.861e50, "Ym")
  24364. },
  24365. {
  24366. name: "Existential",
  24367. height: math.unit(1e300, "meters")
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24373. {
  24374. side: {
  24375. height: math.unit(25, "feet"),
  24376. weight: math.unit(90000, "lb"),
  24377. name: "Side",
  24378. image: {
  24379. source: "./media/characters/mandarax/side.svg",
  24380. extra: 614 / 332,
  24381. bottom: 55 / 630
  24382. }
  24383. },
  24384. head: {
  24385. height: math.unit(11.4, "feet"),
  24386. name: "Head",
  24387. image: {
  24388. source: "./media/characters/mandarax/head.svg"
  24389. }
  24390. },
  24391. belly: {
  24392. height: math.unit(33, "feet"),
  24393. name: "Belly",
  24394. capacity: math.unit(500, "people"),
  24395. image: {
  24396. source: "./media/characters/mandarax/belly.svg"
  24397. }
  24398. },
  24399. dick: {
  24400. height: math.unit(8.46, "feet"),
  24401. name: "Dick",
  24402. image: {
  24403. source: "./media/characters/mandarax/dick.svg"
  24404. }
  24405. },
  24406. top: {
  24407. height: math.unit(28, "meters"),
  24408. name: "Top",
  24409. image: {
  24410. source: "./media/characters/mandarax/top.svg"
  24411. }
  24412. },
  24413. },
  24414. [
  24415. {
  24416. name: "Normal",
  24417. height: math.unit(25, "feet"),
  24418. default: true
  24419. },
  24420. ]
  24421. ))
  24422. characterMakers.push(() => makeCharacter(
  24423. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24424. {
  24425. front: {
  24426. height: math.unit(5, "feet"),
  24427. weight: math.unit(90, "lb"),
  24428. name: "Front",
  24429. image: {
  24430. source: "./media/characters/pixil/front.svg",
  24431. extra: 2000 / 1618,
  24432. bottom: 12.3 / 2011
  24433. }
  24434. },
  24435. },
  24436. [
  24437. {
  24438. name: "Normal",
  24439. height: math.unit(5, "feet"),
  24440. default: true
  24441. },
  24442. {
  24443. name: "Megamacro",
  24444. height: math.unit(10, "miles"),
  24445. },
  24446. ]
  24447. ))
  24448. characterMakers.push(() => makeCharacter(
  24449. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24450. {
  24451. front: {
  24452. height: math.unit(7 + 2 / 12, "feet"),
  24453. weight: math.unit(200, "lb"),
  24454. name: "Front",
  24455. image: {
  24456. source: "./media/characters/angel/front.svg",
  24457. extra: 1830 / 1737,
  24458. bottom: 22.6 / 1854,
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(7 + 2 / 12, "feet"),
  24466. default: true
  24467. },
  24468. {
  24469. name: "Macro",
  24470. height: math.unit(1000, "feet")
  24471. },
  24472. {
  24473. name: "Megamacro",
  24474. height: math.unit(2, "miles")
  24475. },
  24476. {
  24477. name: "Gigamacro",
  24478. height: math.unit(20, "earths")
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(5, "feet"),
  24487. weight: math.unit(180, "lb"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/mekana/front.svg",
  24491. extra: 1671 / 1605,
  24492. bottom: 3.5 / 1691
  24493. }
  24494. },
  24495. side: {
  24496. height: math.unit(5, "feet"),
  24497. weight: math.unit(180, "lb"),
  24498. name: "Side",
  24499. image: {
  24500. source: "./media/characters/mekana/side.svg",
  24501. extra: 1671 / 1605,
  24502. bottom: 3.5 / 1691
  24503. }
  24504. },
  24505. back: {
  24506. height: math.unit(5, "feet"),
  24507. weight: math.unit(180, "lb"),
  24508. name: "Back",
  24509. image: {
  24510. source: "./media/characters/mekana/back.svg",
  24511. extra: 1671 / 1605,
  24512. bottom: 3.5 / 1691
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Normal",
  24519. height: math.unit(5, "feet"),
  24520. default: true
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(4 + 6 / 12, "feet"),
  24529. weight: math.unit(80, "lb"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/pixie/front.svg",
  24533. extra: 1924 / 1825,
  24534. bottom: 22.4 / 1946
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Normal",
  24541. height: math.unit(4 + 6 / 12, "feet"),
  24542. default: true
  24543. },
  24544. {
  24545. name: "Macro",
  24546. height: math.unit(40, "feet")
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24552. {
  24553. front: {
  24554. height: math.unit(2.1, "meters"),
  24555. weight: math.unit(200, "lb"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/the-lascivious/front.svg",
  24559. extra: 1 / 0.893,
  24560. bottom: 3.5 / 573.7
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Human Scale",
  24567. height: math.unit(2.1, "meters")
  24568. },
  24569. {
  24570. name: "Wolxi Scale",
  24571. height: math.unit(46.2, "m"),
  24572. default: true
  24573. },
  24574. {
  24575. name: "Boinker of Buildings",
  24576. height: math.unit(10, "km")
  24577. },
  24578. {
  24579. name: "Shagger of Skyscrapers",
  24580. height: math.unit(40, "km")
  24581. },
  24582. {
  24583. name: "Banger of Boroughs",
  24584. height: math.unit(4000, "km")
  24585. },
  24586. {
  24587. name: "Screwer of States",
  24588. height: math.unit(100000, "km")
  24589. },
  24590. {
  24591. name: "Pounder of Planets",
  24592. height: math.unit(2000000, "km")
  24593. },
  24594. ]
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24598. {
  24599. front: {
  24600. height: math.unit(6, "feet"),
  24601. weight: math.unit(150, "lb"),
  24602. name: "Front",
  24603. image: {
  24604. source: "./media/characters/aj/front.svg",
  24605. extra: 2039 / 1562,
  24606. bottom: 40 / 2079
  24607. }
  24608. },
  24609. },
  24610. [
  24611. {
  24612. name: "Normal",
  24613. height: math.unit(11 + 6 / 12, "feet"),
  24614. default: true
  24615. },
  24616. {
  24617. name: "Megamacro",
  24618. height: math.unit(60, "megameters")
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24624. {
  24625. side: {
  24626. height: math.unit(31 + 8 / 12, "feet"),
  24627. weight: math.unit(75000, "kg"),
  24628. name: "Side",
  24629. image: {
  24630. source: "./media/characters/koros/side.svg",
  24631. extra: 1442 / 1297,
  24632. bottom: 122.7 / 1562
  24633. }
  24634. },
  24635. dicksKingsCrown: {
  24636. height: math.unit(6, "feet"),
  24637. name: "Dicks (King's Crown)",
  24638. image: {
  24639. source: "./media/characters/koros/dicks-kings-crown.svg"
  24640. }
  24641. },
  24642. dicksTailSet: {
  24643. height: math.unit(3, "feet"),
  24644. name: "Dicks (Tail Set)",
  24645. image: {
  24646. source: "./media/characters/koros/dicks-tail-set.svg"
  24647. }
  24648. },
  24649. dickCumming: {
  24650. height: math.unit(7.98, "feet"),
  24651. name: "Dick (Cumming)",
  24652. image: {
  24653. source: "./media/characters/koros/dick-cumming.svg"
  24654. }
  24655. },
  24656. dicksBack: {
  24657. height: math.unit(5.9, "feet"),
  24658. name: "Dicks (Back)",
  24659. image: {
  24660. source: "./media/characters/koros/dicks-back.svg"
  24661. }
  24662. },
  24663. dicksFront: {
  24664. height: math.unit(3.72, "feet"),
  24665. name: "Dicks (Front)",
  24666. image: {
  24667. source: "./media/characters/koros/dicks-front.svg"
  24668. }
  24669. },
  24670. dicksPeeking: {
  24671. height: math.unit(3.0, "feet"),
  24672. name: "Dicks (Peeking)",
  24673. image: {
  24674. source: "./media/characters/koros/dicks-peeking.svg"
  24675. }
  24676. },
  24677. eye: {
  24678. height: math.unit(1.7, "feet"),
  24679. name: "Eye",
  24680. image: {
  24681. source: "./media/characters/koros/eye.svg"
  24682. }
  24683. },
  24684. headFront: {
  24685. height: math.unit(11.69, "feet"),
  24686. name: "Head (Front)",
  24687. image: {
  24688. source: "./media/characters/koros/head-front.svg"
  24689. }
  24690. },
  24691. headSide: {
  24692. height: math.unit(14, "feet"),
  24693. name: "Head (Side)",
  24694. image: {
  24695. source: "./media/characters/koros/head-side.svg"
  24696. }
  24697. },
  24698. leg: {
  24699. height: math.unit(17, "feet"),
  24700. name: "Leg",
  24701. image: {
  24702. source: "./media/characters/koros/leg.svg"
  24703. }
  24704. },
  24705. mawSide: {
  24706. height: math.unit(12.8, "feet"),
  24707. name: "Maw (Side)",
  24708. image: {
  24709. source: "./media/characters/koros/maw-side.svg"
  24710. }
  24711. },
  24712. mawSpitting: {
  24713. height: math.unit(17, "feet"),
  24714. name: "Maw (Spitting)",
  24715. image: {
  24716. source: "./media/characters/koros/maw-spitting.svg"
  24717. }
  24718. },
  24719. slit: {
  24720. height: math.unit(2.8, "feet"),
  24721. name: "Slit",
  24722. image: {
  24723. source: "./media/characters/koros/slit.svg"
  24724. }
  24725. },
  24726. stomach: {
  24727. height: math.unit(6.8, "feet"),
  24728. capacity: math.unit(20, "people"),
  24729. name: "Stomach",
  24730. image: {
  24731. source: "./media/characters/koros/stomach.svg"
  24732. }
  24733. },
  24734. wingspanBottom: {
  24735. height: math.unit(114, "feet"),
  24736. name: "Wingspan (Bottom)",
  24737. image: {
  24738. source: "./media/characters/koros/wingspan-bottom.svg"
  24739. }
  24740. },
  24741. wingspanTop: {
  24742. height: math.unit(104, "feet"),
  24743. name: "Wingspan (Top)",
  24744. image: {
  24745. source: "./media/characters/koros/wingspan-top.svg"
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(31 + 8 / 12, "feet"),
  24753. default: true
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24759. {
  24760. front: {
  24761. height: math.unit(18 + 5 / 12, "feet"),
  24762. weight: math.unit(3750, "kg"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/vexx/front.svg",
  24766. extra: 426 / 396,
  24767. bottom: 31.5 / 458
  24768. }
  24769. },
  24770. maw: {
  24771. height: math.unit(6, "feet"),
  24772. name: "Maw",
  24773. image: {
  24774. source: "./media/characters/vexx/maw.svg"
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(18 + 5 / 12, "feet"),
  24782. default: true
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(17 + 6 / 12, "feet"),
  24791. weight: math.unit(150, "lb"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/baadra/front.svg",
  24795. extra: 3137 / 2890,
  24796. bottom: 168.4 / 3305
  24797. }
  24798. },
  24799. back: {
  24800. height: math.unit(17 + 6 / 12, "feet"),
  24801. weight: math.unit(150, "lb"),
  24802. name: "Back",
  24803. image: {
  24804. source: "./media/characters/baadra/back.svg",
  24805. extra: 3142 / 2890,
  24806. bottom: 220 / 3371
  24807. }
  24808. },
  24809. head: {
  24810. height: math.unit(5.45, "feet"),
  24811. name: "Head",
  24812. image: {
  24813. source: "./media/characters/baadra/head.svg"
  24814. }
  24815. },
  24816. headAngry: {
  24817. height: math.unit(4.95, "feet"),
  24818. name: "Head (Angry)",
  24819. image: {
  24820. source: "./media/characters/baadra/head-angry.svg"
  24821. }
  24822. },
  24823. headOpen: {
  24824. height: math.unit(6, "feet"),
  24825. name: "Head (Open)",
  24826. image: {
  24827. source: "./media/characters/baadra/head-open.svg"
  24828. }
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Normal",
  24834. height: math.unit(17 + 6 / 12, "feet"),
  24835. default: true
  24836. },
  24837. ]
  24838. ))
  24839. characterMakers.push(() => makeCharacter(
  24840. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24841. {
  24842. front: {
  24843. height: math.unit(7 + 3 / 12, "feet"),
  24844. weight: math.unit(180, "lb"),
  24845. name: "Front",
  24846. image: {
  24847. source: "./media/characters/juri/front.svg",
  24848. extra: 1401 / 1237,
  24849. bottom: 18.5 / 1418
  24850. }
  24851. },
  24852. side: {
  24853. height: math.unit(7 + 3 / 12, "feet"),
  24854. weight: math.unit(180, "lb"),
  24855. name: "Side",
  24856. image: {
  24857. source: "./media/characters/juri/side.svg",
  24858. extra: 1424 / 1242,
  24859. bottom: 18.5 / 1447
  24860. }
  24861. },
  24862. sitting: {
  24863. height: math.unit(6, "feet"),
  24864. weight: math.unit(180, "lb"),
  24865. name: "Sitting",
  24866. image: {
  24867. source: "./media/characters/juri/sitting.svg",
  24868. extra: 1270 / 1143,
  24869. bottom: 100 / 1343
  24870. }
  24871. },
  24872. back: {
  24873. height: math.unit(7 + 3 / 12, "feet"),
  24874. weight: math.unit(180, "lb"),
  24875. name: "Back",
  24876. image: {
  24877. source: "./media/characters/juri/back.svg",
  24878. extra: 1377 / 1240,
  24879. bottom: 23.7 / 1405
  24880. }
  24881. },
  24882. maw: {
  24883. height: math.unit(2.8, "feet"),
  24884. name: "Maw",
  24885. image: {
  24886. source: "./media/characters/juri/maw.svg"
  24887. }
  24888. },
  24889. stomach: {
  24890. height: math.unit(0.89, "feet"),
  24891. capacity: math.unit(4, "liters"),
  24892. name: "Stomach",
  24893. image: {
  24894. source: "./media/characters/juri/stomach.svg"
  24895. }
  24896. },
  24897. },
  24898. [
  24899. {
  24900. name: "Normal",
  24901. height: math.unit(7 + 3 / 12, "feet"),
  24902. default: true
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24908. {
  24909. fox: {
  24910. height: math.unit(5 + 6 / 12, "feet"),
  24911. weight: math.unit(140, "lb"),
  24912. name: "Fox",
  24913. image: {
  24914. source: "./media/characters/maxene-sita/fox.svg",
  24915. extra: 146 / 138,
  24916. bottom: 2.1 / 148.19
  24917. }
  24918. },
  24919. foxLaying: {
  24920. height: math.unit(1.70, "feet"),
  24921. weight: math.unit(140, "lb"),
  24922. name: "Fox (Laying)",
  24923. image: {
  24924. source: "./media/characters/maxene-sita/fox-laying.svg",
  24925. extra: 910 / 572,
  24926. bottom: 71 / 981
  24927. }
  24928. },
  24929. kitsune: {
  24930. height: math.unit(10, "feet"),
  24931. weight: math.unit(800, "lb"),
  24932. name: "Kitsune",
  24933. image: {
  24934. source: "./media/characters/maxene-sita/kitsune.svg",
  24935. extra: 185 / 176,
  24936. bottom: 4.7 / 189.9
  24937. }
  24938. },
  24939. hellhound: {
  24940. height: math.unit(10, "feet"),
  24941. weight: math.unit(700, "lb"),
  24942. name: "Hellhound",
  24943. image: {
  24944. source: "./media/characters/maxene-sita/hellhound.svg",
  24945. extra: 1600 / 1545,
  24946. bottom: 81 / 1681
  24947. }
  24948. },
  24949. },
  24950. [
  24951. {
  24952. name: "Normal",
  24953. height: math.unit(5 + 6 / 12, "feet"),
  24954. default: true
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24960. {
  24961. front: {
  24962. height: math.unit(3 + 4 / 12, "feet"),
  24963. weight: math.unit(70, "lb"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/maia/front.svg",
  24967. extra: 227 / 219.5,
  24968. bottom: 40 / 267
  24969. }
  24970. },
  24971. back: {
  24972. height: math.unit(3 + 4 / 12, "feet"),
  24973. weight: math.unit(70, "lb"),
  24974. name: "Back",
  24975. image: {
  24976. source: "./media/characters/maia/back.svg",
  24977. extra: 237 / 225
  24978. }
  24979. },
  24980. },
  24981. [
  24982. {
  24983. name: "Normal",
  24984. height: math.unit(3 + 4 / 12, "feet"),
  24985. default: true
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24991. {
  24992. front: {
  24993. height: math.unit(5 + 10 / 12, "feet"),
  24994. weight: math.unit(197, "lb"),
  24995. name: "Front",
  24996. image: {
  24997. source: "./media/characters/jabaro/front.svg",
  24998. extra: 225 / 216,
  24999. bottom: 5.06 / 230
  25000. }
  25001. },
  25002. back: {
  25003. height: math.unit(5 + 10 / 12, "feet"),
  25004. weight: math.unit(197, "lb"),
  25005. name: "Back",
  25006. image: {
  25007. source: "./media/characters/jabaro/back.svg",
  25008. extra: 225 / 219,
  25009. bottom: 1.9 / 227
  25010. }
  25011. },
  25012. },
  25013. [
  25014. {
  25015. name: "Normal",
  25016. height: math.unit(5 + 10 / 12, "feet"),
  25017. default: true
  25018. },
  25019. ]
  25020. ))
  25021. characterMakers.push(() => makeCharacter(
  25022. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25023. {
  25024. front: {
  25025. height: math.unit(5 + 8 / 12, "feet"),
  25026. weight: math.unit(139, "lb"),
  25027. name: "Front",
  25028. image: {
  25029. source: "./media/characters/risa/front.svg",
  25030. extra: 270 / 260,
  25031. bottom: 11.2 / 282
  25032. }
  25033. },
  25034. back: {
  25035. height: math.unit(5 + 8 / 12, "feet"),
  25036. weight: math.unit(139, "lb"),
  25037. name: "Back",
  25038. image: {
  25039. source: "./media/characters/risa/back.svg",
  25040. extra: 264 / 255,
  25041. bottom: 4 / 268
  25042. }
  25043. },
  25044. },
  25045. [
  25046. {
  25047. name: "Normal",
  25048. height: math.unit(5 + 8 / 12, "feet"),
  25049. default: true
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25055. {
  25056. front: {
  25057. height: math.unit(2 + 11 / 12, "feet"),
  25058. weight: math.unit(30, "lb"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/weatley/front.svg",
  25062. bottom: 10.7 / 414,
  25063. extra: 403.5 / 362
  25064. }
  25065. },
  25066. back: {
  25067. height: math.unit(2 + 11 / 12, "feet"),
  25068. weight: math.unit(30, "lb"),
  25069. name: "Back",
  25070. image: {
  25071. source: "./media/characters/weatley/back.svg",
  25072. bottom: 10.7 / 414,
  25073. extra: 403.5 / 362
  25074. }
  25075. },
  25076. },
  25077. [
  25078. {
  25079. name: "Normal",
  25080. height: math.unit(2 + 11 / 12, "feet"),
  25081. default: true
  25082. },
  25083. ]
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25087. {
  25088. front: {
  25089. height: math.unit(5 + 2 / 12, "feet"),
  25090. weight: math.unit(50, "kg"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/mercury-crescent/front.svg",
  25094. extra: 1088 / 1033,
  25095. bottom: 18.9 / 1109
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Normal",
  25102. height: math.unit(5 + 2 / 12, "feet"),
  25103. default: true
  25104. },
  25105. ]
  25106. ))
  25107. characterMakers.push(() => makeCharacter(
  25108. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25109. {
  25110. front: {
  25111. height: math.unit(2, "feet"),
  25112. weight: math.unit(15, "kg"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/diamond-jones/front.svg",
  25116. bottom: 16 / 568
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(2, "feet"),
  25124. default: true
  25125. },
  25126. ]
  25127. ))
  25128. characterMakers.push(() => makeCharacter(
  25129. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25130. {
  25131. front: {
  25132. height: math.unit(3, "feet"),
  25133. weight: math.unit(30, "kg"),
  25134. name: "Front",
  25135. image: {
  25136. source: "./media/characters/sweet-bit/front.svg",
  25137. extra: 675 / 567,
  25138. bottom: 27.7 / 703
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Normal",
  25145. height: math.unit(3, "feet"),
  25146. default: true
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25152. {
  25153. side: {
  25154. height: math.unit(9.178, "feet"),
  25155. weight: math.unit(500, "lb"),
  25156. name: "Side",
  25157. image: {
  25158. source: "./media/characters/umbrazen/side.svg",
  25159. extra: 1730 / 1473,
  25160. bottom: 34.6 / 1765
  25161. }
  25162. },
  25163. },
  25164. [
  25165. {
  25166. name: "Normal",
  25167. height: math.unit(9.178, "feet"),
  25168. default: true
  25169. },
  25170. ]
  25171. ))
  25172. characterMakers.push(() => makeCharacter(
  25173. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25174. {
  25175. front: {
  25176. height: math.unit(10, "feet"),
  25177. weight: math.unit(750, "lb"),
  25178. name: "Front",
  25179. image: {
  25180. source: "./media/characters/arlist/front.svg",
  25181. extra: 961 / 778,
  25182. bottom: 6.2 / 986
  25183. }
  25184. },
  25185. },
  25186. [
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(10, "feet"),
  25190. default: true
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(5 + 1 / 12, "feet"),
  25199. weight: math.unit(110, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/aradel/front.svg",
  25203. extra: 324 / 303,
  25204. bottom: 3.6 / 329.4
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Normal",
  25211. height: math.unit(5 + 1 / 12, "feet"),
  25212. default: true
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25218. {
  25219. front: {
  25220. height: math.unit(3 + 8 / 12, "feet"),
  25221. weight: math.unit(50, "lb"),
  25222. name: "Front",
  25223. image: {
  25224. source: "./media/characters/serryn/front.svg",
  25225. extra: 1792 / 1656,
  25226. bottom: 43.5 / 1840
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(3 + 8 / 12, "feet"),
  25234. default: true
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Xavier Thyme" },
  25240. {
  25241. front: {
  25242. height: math.unit(7 + 10 / 12, "feet"),
  25243. weight: math.unit(255, "lb"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/xavier-thyme/front.svg",
  25247. extra: 3733 / 3642,
  25248. bottom: 131 / 3869
  25249. }
  25250. },
  25251. frontRaven: {
  25252. height: math.unit(7 + 10 / 12, "feet"),
  25253. weight: math.unit(255, "lb"),
  25254. name: "Front (Raven)",
  25255. image: {
  25256. source: "./media/characters/xavier-thyme/front-raven.svg",
  25257. extra: 4385 / 3642,
  25258. bottom: 131 / 4517
  25259. }
  25260. },
  25261. },
  25262. [
  25263. {
  25264. name: "Normal",
  25265. height: math.unit(7 + 10 / 12, "feet"),
  25266. default: true
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25272. {
  25273. front: {
  25274. height: math.unit(1.6, "m"),
  25275. weight: math.unit(50, "kg"),
  25276. name: "Front",
  25277. image: {
  25278. source: "./media/characters/kiki/front.svg",
  25279. extra: 4682 / 3610,
  25280. bottom: 115 / 4777
  25281. }
  25282. },
  25283. },
  25284. [
  25285. {
  25286. name: "Normal",
  25287. height: math.unit(1.6, "meters"),
  25288. default: true
  25289. },
  25290. ]
  25291. ))
  25292. characterMakers.push(() => makeCharacter(
  25293. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25294. {
  25295. front: {
  25296. height: math.unit(50, "m"),
  25297. weight: math.unit(500, "tonnes"),
  25298. name: "Front",
  25299. image: {
  25300. source: "./media/characters/ryoko/front.svg",
  25301. extra: 4632 / 3926,
  25302. bottom: 193 / 4823
  25303. }
  25304. },
  25305. },
  25306. [
  25307. {
  25308. name: "Normal",
  25309. height: math.unit(50, "meters"),
  25310. default: true
  25311. },
  25312. ]
  25313. ))
  25314. characterMakers.push(() => makeCharacter(
  25315. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25316. {
  25317. front: {
  25318. height: math.unit(30, "m"),
  25319. weight: math.unit(22, "tonnes"),
  25320. name: "Front",
  25321. image: {
  25322. source: "./media/characters/elio/front.svg",
  25323. extra: 4582 / 3720,
  25324. bottom: 236 / 4828
  25325. }
  25326. },
  25327. },
  25328. [
  25329. {
  25330. name: "Normal",
  25331. height: math.unit(30, "meters"),
  25332. default: true
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25338. {
  25339. front: {
  25340. height: math.unit(6 + 3 / 12, "feet"),
  25341. weight: math.unit(120, "lb"),
  25342. name: "Front",
  25343. image: {
  25344. source: "./media/characters/azura/front.svg",
  25345. extra: 1149 / 1135,
  25346. bottom: 45 / 1194
  25347. }
  25348. },
  25349. frontClothed: {
  25350. height: math.unit(6 + 3 / 12, "feet"),
  25351. weight: math.unit(120, "lb"),
  25352. name: "Front (Clothed)",
  25353. image: {
  25354. source: "./media/characters/azura/front-clothed.svg",
  25355. extra: 1149 / 1135,
  25356. bottom: 45 / 1194
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Normal",
  25363. height: math.unit(6 + 3 / 12, "feet"),
  25364. default: true
  25365. },
  25366. {
  25367. name: "Macro",
  25368. height: math.unit(20 + 6 / 12, "feet")
  25369. },
  25370. {
  25371. name: "Megamacro",
  25372. height: math.unit(12, "miles")
  25373. },
  25374. {
  25375. name: "Gigamacro",
  25376. height: math.unit(10000, "miles")
  25377. },
  25378. {
  25379. name: "Teramacro",
  25380. height: math.unit(900000, "miles")
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(12, "feet"),
  25389. weight: math.unit(1, "ton"),
  25390. capacity: math.unit(660000, "gallons"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/zeus/front.svg",
  25394. extra: 5005 / 4717,
  25395. bottom: 363 / 5388
  25396. }
  25397. },
  25398. },
  25399. [
  25400. {
  25401. name: "Normal",
  25402. height: math.unit(12, "feet")
  25403. },
  25404. {
  25405. name: "Preferred Size",
  25406. height: math.unit(0.5, "miles"),
  25407. default: true
  25408. },
  25409. {
  25410. name: "Giga Horse",
  25411. height: math.unit(300, "miles")
  25412. },
  25413. {
  25414. name: "Riding Planets",
  25415. height: math.unit(30, "megameters")
  25416. },
  25417. {
  25418. name: "Cosmic Giant",
  25419. height: math.unit(3, "zettameters")
  25420. },
  25421. {
  25422. name: "Breeding God",
  25423. height: math.unit(9.92e22, "yottameters")
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25429. {
  25430. side: {
  25431. height: math.unit(9, "feet"),
  25432. weight: math.unit(1500, "kg"),
  25433. name: "Side",
  25434. image: {
  25435. source: "./media/characters/fang/side.svg",
  25436. extra: 924 / 866,
  25437. bottom: 47.5 / 972.3
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(9, "feet"),
  25445. default: true
  25446. },
  25447. {
  25448. name: "Macro",
  25449. height: math.unit(75 + 6 / 12, "feet")
  25450. },
  25451. {
  25452. name: "Teramacro",
  25453. height: math.unit(50000, "miles")
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(10, "feet"),
  25462. weight: math.unit(2, "tons"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/rekhit/front.svg",
  25466. extra: 2796 / 2590,
  25467. bottom: 225 / 3022
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Normal",
  25474. height: math.unit(10, "feet"),
  25475. default: true
  25476. },
  25477. {
  25478. name: "Macro",
  25479. height: math.unit(500, "feet")
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Dahlia Verrick" },
  25485. {
  25486. front: {
  25487. height: math.unit(7 + 6.451 / 12, "feet"),
  25488. weight: math.unit(310, "lb"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/dahlia-verrick/front.svg",
  25492. extra: 1488 / 1365,
  25493. bottom: 6.2 / 1495
  25494. }
  25495. },
  25496. back: {
  25497. height: math.unit(7 + 6.451 / 12, "feet"),
  25498. weight: math.unit(310, "lb"),
  25499. name: "Back",
  25500. image: {
  25501. source: "./media/characters/dahlia-verrick/back.svg",
  25502. extra: 1472 / 1351,
  25503. bottom: 5.28 / 1477
  25504. }
  25505. },
  25506. frontBusiness: {
  25507. height: math.unit(7 + 6.451 / 12, "feet"),
  25508. weight: math.unit(200, "lb"),
  25509. name: "Front (Business)",
  25510. image: {
  25511. source: "./media/characters/dahlia-verrick/front-business.svg",
  25512. extra: 1478 / 1381,
  25513. bottom: 5.5 / 1484
  25514. }
  25515. },
  25516. frontCasual: {
  25517. height: math.unit(7 + 6.451 / 12, "feet"),
  25518. weight: math.unit(200, "lb"),
  25519. name: "Front (Casual)",
  25520. image: {
  25521. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25522. extra: 1478 / 1381,
  25523. bottom: 5.5 / 1484
  25524. }
  25525. },
  25526. },
  25527. [
  25528. {
  25529. name: "Travel-Sized",
  25530. height: math.unit(7.45, "inches")
  25531. },
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(7 + 6.451 / 12, "feet"),
  25535. default: true
  25536. },
  25537. {
  25538. name: "Hitting the Town",
  25539. height: math.unit(37 + 8 / 12, "feet")
  25540. },
  25541. {
  25542. name: "Stomp in the Suburbs",
  25543. height: math.unit(964 + 9.728 / 12, "feet")
  25544. },
  25545. {
  25546. name: "Sit on the City",
  25547. height: math.unit(61747 + 10.592 / 12, "feet")
  25548. },
  25549. {
  25550. name: "Glomp the Globe",
  25551. height: math.unit(252919327 + 4.832 / 12, "feet")
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25557. {
  25558. front: {
  25559. height: math.unit(6 + 4 / 12, "feet"),
  25560. weight: math.unit(320, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/balina-mahigan/front.svg",
  25564. extra: 447 / 428,
  25565. bottom: 18 / 466
  25566. }
  25567. },
  25568. back: {
  25569. height: math.unit(6 + 4 / 12, "feet"),
  25570. weight: math.unit(320, "lb"),
  25571. name: "Back",
  25572. image: {
  25573. source: "./media/characters/balina-mahigan/back.svg",
  25574. extra: 445 / 428,
  25575. bottom: 4.07 / 448
  25576. }
  25577. },
  25578. arm: {
  25579. height: math.unit(1.88, "feet"),
  25580. name: "Arm",
  25581. image: {
  25582. source: "./media/characters/balina-mahigan/arm.svg"
  25583. }
  25584. },
  25585. backPort: {
  25586. height: math.unit(0.685, "feet"),
  25587. name: "Back Port",
  25588. image: {
  25589. source: "./media/characters/balina-mahigan/back-port.svg"
  25590. }
  25591. },
  25592. hoofpaw: {
  25593. height: math.unit(1.41, "feet"),
  25594. name: "Hoofpaw",
  25595. image: {
  25596. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25597. }
  25598. },
  25599. leftHandBack: {
  25600. height: math.unit(0.938, "feet"),
  25601. name: "Left Hand (Back)",
  25602. image: {
  25603. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25604. }
  25605. },
  25606. leftHandFront: {
  25607. height: math.unit(0.938, "feet"),
  25608. name: "Left Hand (Front)",
  25609. image: {
  25610. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25611. }
  25612. },
  25613. rightHandBack: {
  25614. height: math.unit(0.95, "feet"),
  25615. name: "Right Hand (Back)",
  25616. image: {
  25617. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25618. }
  25619. },
  25620. rightHandFront: {
  25621. height: math.unit(0.95, "feet"),
  25622. name: "Right Hand (Front)",
  25623. image: {
  25624. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25625. }
  25626. },
  25627. },
  25628. [
  25629. {
  25630. name: "Normal",
  25631. height: math.unit(6 + 4 / 12, "feet"),
  25632. default: true
  25633. },
  25634. ]
  25635. ))
  25636. characterMakers.push(() => makeCharacter(
  25637. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25638. {
  25639. front: {
  25640. height: math.unit(6, "feet"),
  25641. weight: math.unit(320, "lb"),
  25642. name: "Front",
  25643. image: {
  25644. source: "./media/characters/balina-mejeri/front.svg",
  25645. extra: 517 / 488,
  25646. bottom: 44.2 / 561
  25647. }
  25648. },
  25649. },
  25650. [
  25651. {
  25652. name: "Normal",
  25653. height: math.unit(6 + 4 / 12, "feet")
  25654. },
  25655. {
  25656. name: "Business",
  25657. height: math.unit(155, "feet"),
  25658. default: true
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25664. {
  25665. kneeling: {
  25666. height: math.unit(6 + 4 / 12, "feet"),
  25667. weight: math.unit(300 * 20, "lb"),
  25668. name: "Kneeling",
  25669. image: {
  25670. source: "./media/characters/balbarian/kneeling.svg",
  25671. extra: 922 / 862,
  25672. bottom: 42.4 / 965
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(6 + 4 / 12, "feet")
  25680. },
  25681. {
  25682. name: "Treasured",
  25683. height: math.unit(18 + 9 / 12, "feet"),
  25684. default: true
  25685. },
  25686. {
  25687. name: "Macro",
  25688. height: math.unit(900, "feet")
  25689. },
  25690. ]
  25691. ))
  25692. characterMakers.push(() => makeCharacter(
  25693. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25694. {
  25695. front: {
  25696. height: math.unit(6 + 4 / 12, "feet"),
  25697. weight: math.unit(325, "lb"),
  25698. name: "Front",
  25699. image: {
  25700. source: "./media/characters/balina-amarini/front.svg",
  25701. extra: 415 / 403,
  25702. bottom: 19 / 433.4
  25703. }
  25704. },
  25705. back: {
  25706. height: math.unit(6 + 4 / 12, "feet"),
  25707. weight: math.unit(325, "lb"),
  25708. name: "Back",
  25709. image: {
  25710. source: "./media/characters/balina-amarini/back.svg",
  25711. extra: 415 / 403,
  25712. bottom: 13.5 / 432
  25713. }
  25714. },
  25715. overdrive: {
  25716. height: math.unit(6 + 4 / 12, "feet"),
  25717. weight: math.unit(400, "lb"),
  25718. name: "Overdrive",
  25719. image: {
  25720. source: "./media/characters/balina-amarini/overdrive.svg",
  25721. extra: 269 / 259,
  25722. bottom: 12 / 282
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Boom",
  25729. height: math.unit(9 + 10 / 12, "feet"),
  25730. default: true
  25731. },
  25732. {
  25733. name: "Macro",
  25734. height: math.unit(280, "feet")
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25740. {
  25741. goddess: {
  25742. height: math.unit(600, "feet"),
  25743. weight: math.unit(2000000, "tons"),
  25744. name: "Goddess",
  25745. image: {
  25746. source: "./media/characters/lady-kubwa/goddess.svg",
  25747. extra: 1240.5 / 1223,
  25748. bottom: 22 / 1263
  25749. }
  25750. },
  25751. goddesser: {
  25752. height: math.unit(900, "feet"),
  25753. weight: math.unit(20000000, "lb"),
  25754. name: "Goddess-er",
  25755. image: {
  25756. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25757. extra: 899 / 888,
  25758. bottom: 12.6 / 912
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Macro",
  25765. height: math.unit(600, "feet"),
  25766. default: true
  25767. },
  25768. {
  25769. name: "Megamacro",
  25770. height: math.unit(250, "miles")
  25771. },
  25772. ]
  25773. ))
  25774. characterMakers.push(() => makeCharacter(
  25775. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25776. {
  25777. front: {
  25778. height: math.unit(7 + 7 / 12, "feet"),
  25779. weight: math.unit(250, "lb"),
  25780. name: "Front",
  25781. image: {
  25782. source: "./media/characters/tala-grovehorn/front.svg",
  25783. extra: 2636 / 2525,
  25784. bottom: 147 / 2781
  25785. }
  25786. },
  25787. back: {
  25788. height: math.unit(7 + 7 / 12, "feet"),
  25789. weight: math.unit(250, "lb"),
  25790. name: "Back",
  25791. image: {
  25792. source: "./media/characters/tala-grovehorn/back.svg",
  25793. extra: 2635 / 2539,
  25794. bottom: 100 / 2732.8
  25795. }
  25796. },
  25797. mouth: {
  25798. height: math.unit(1.15, "feet"),
  25799. name: "Mouth",
  25800. image: {
  25801. source: "./media/characters/tala-grovehorn/mouth.svg"
  25802. }
  25803. },
  25804. dick: {
  25805. height: math.unit(2.36, "feet"),
  25806. name: "Dick",
  25807. image: {
  25808. source: "./media/characters/tala-grovehorn/dick.svg"
  25809. }
  25810. },
  25811. slit: {
  25812. height: math.unit(0.61, "feet"),
  25813. name: "Slit",
  25814. image: {
  25815. source: "./media/characters/tala-grovehorn/slit.svg"
  25816. }
  25817. },
  25818. },
  25819. [
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25824. {
  25825. front: {
  25826. height: math.unit(7 + 7 / 12, "feet"),
  25827. weight: math.unit(225, "lb"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/epona/front.svg",
  25831. extra: 2445 / 2290,
  25832. bottom: 251 / 2696
  25833. }
  25834. },
  25835. back: {
  25836. height: math.unit(7 + 7 / 12, "feet"),
  25837. weight: math.unit(225, "lb"),
  25838. name: "Back",
  25839. image: {
  25840. source: "./media/characters/epona/back.svg",
  25841. extra: 2546 / 2408,
  25842. bottom: 44 / 2589
  25843. }
  25844. },
  25845. genitals: {
  25846. height: math.unit(1.5, "feet"),
  25847. name: "Genitals",
  25848. image: {
  25849. source: "./media/characters/epona/genitals.svg"
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Normal",
  25856. height: math.unit(7 + 7 / 12, "feet")
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25862. {
  25863. front: {
  25864. height: math.unit(7, "feet"),
  25865. weight: math.unit(518, "lb"),
  25866. name: "Front",
  25867. image: {
  25868. source: "./media/characters/avia-bloodbourn/front.svg",
  25869. extra: 1466 / 1350,
  25870. bottom: 65 / 1527
  25871. }
  25872. },
  25873. },
  25874. [
  25875. ]
  25876. ))
  25877. characterMakers.push(() => makeCharacter(
  25878. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25879. {
  25880. front: {
  25881. height: math.unit(9.35, "feet"),
  25882. weight: math.unit(600, "lb"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/amera/front.svg",
  25886. extra: 891 / 818,
  25887. bottom: 30 / 922.7
  25888. }
  25889. },
  25890. back: {
  25891. height: math.unit(9.35, "feet"),
  25892. weight: math.unit(600, "lb"),
  25893. name: "Back",
  25894. image: {
  25895. source: "./media/characters/amera/back.svg",
  25896. extra: 876 / 824,
  25897. bottom: 6.8 / 884
  25898. }
  25899. },
  25900. dick: {
  25901. height: math.unit(2.14, "feet"),
  25902. name: "Dick",
  25903. image: {
  25904. source: "./media/characters/amera/dick.svg"
  25905. }
  25906. },
  25907. },
  25908. [
  25909. {
  25910. name: "Normal",
  25911. height: math.unit(9.35, "feet"),
  25912. default: true
  25913. },
  25914. ]
  25915. ))
  25916. characterMakers.push(() => makeCharacter(
  25917. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25918. {
  25919. kneeling: {
  25920. height: math.unit(3 + 4 / 12, "feet"),
  25921. weight: math.unit(90, "lb"),
  25922. name: "Kneeling",
  25923. image: {
  25924. source: "./media/characters/rosewen/kneeling.svg",
  25925. extra: 1835 / 1571,
  25926. bottom: 27.7 / 1862
  25927. }
  25928. },
  25929. },
  25930. [
  25931. {
  25932. name: "Normal",
  25933. height: math.unit(3 + 4 / 12, "feet"),
  25934. default: true
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25940. {
  25941. front: {
  25942. height: math.unit(5 + 10 / 12, "feet"),
  25943. weight: math.unit(200, "lb"),
  25944. name: "Front",
  25945. image: {
  25946. source: "./media/characters/sabah/front.svg",
  25947. extra: 849 / 763,
  25948. bottom: 33.9 / 881
  25949. }
  25950. },
  25951. },
  25952. [
  25953. {
  25954. name: "Normal",
  25955. height: math.unit(5 + 10 / 12, "feet"),
  25956. default: true
  25957. },
  25958. ]
  25959. ))
  25960. characterMakers.push(() => makeCharacter(
  25961. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25962. {
  25963. front: {
  25964. height: math.unit(3 + 5 / 12, "feet"),
  25965. weight: math.unit(40, "kg"),
  25966. name: "Front",
  25967. image: {
  25968. source: "./media/characters/purple-flame/front.svg",
  25969. extra: 1577 / 1412,
  25970. bottom: 97 / 1694
  25971. }
  25972. },
  25973. frontDressed: {
  25974. height: math.unit(3 + 5 / 12, "feet"),
  25975. weight: math.unit(40, "kg"),
  25976. name: "Front (Dressed)",
  25977. image: {
  25978. source: "./media/characters/purple-flame/front-dressed.svg",
  25979. extra: 1577 / 1412,
  25980. bottom: 97 / 1694
  25981. }
  25982. },
  25983. headphones: {
  25984. height: math.unit(0.85, "feet"),
  25985. name: "Headphones",
  25986. image: {
  25987. source: "./media/characters/purple-flame/headphones.svg"
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Really Small",
  25994. height: math.unit(5, "cm")
  25995. },
  25996. {
  25997. name: "Micro",
  25998. height: math.unit(1 + 5 / 12, "feet")
  25999. },
  26000. {
  26001. name: "Normal",
  26002. height: math.unit(3 + 5 / 12, "feet"),
  26003. default: true
  26004. },
  26005. {
  26006. name: "Minimacro",
  26007. height: math.unit(125, "feet")
  26008. },
  26009. {
  26010. name: "Macro",
  26011. height: math.unit(0.5, "miles")
  26012. },
  26013. {
  26014. name: "Megamacro",
  26015. height: math.unit(50, "miles")
  26016. },
  26017. {
  26018. name: "Gigantic",
  26019. height: math.unit(750, "miles")
  26020. },
  26021. {
  26022. name: "Planetary",
  26023. height: math.unit(15000, "miles")
  26024. },
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26029. {
  26030. front: {
  26031. height: math.unit(14, "feet"),
  26032. weight: math.unit(959, "lb"),
  26033. name: "Front",
  26034. image: {
  26035. source: "./media/characters/arsenal/front.svg",
  26036. extra: 2357 / 2157,
  26037. bottom: 93 / 2458
  26038. }
  26039. },
  26040. },
  26041. [
  26042. {
  26043. name: "Normal",
  26044. height: math.unit(14, "feet"),
  26045. default: true
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(6, "feet"),
  26054. weight: math.unit(150, "lb"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/adira/front.svg",
  26058. extra: 1078 / 1029,
  26059. bottom: 87 / 1166
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Micro",
  26066. height: math.unit(4, "inches"),
  26067. default: true
  26068. },
  26069. {
  26070. name: "Macro",
  26071. height: math.unit(50, "feet")
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26077. {
  26078. front: {
  26079. height: math.unit(16, "feet"),
  26080. weight: math.unit(1000, "lb"),
  26081. name: "Front",
  26082. image: {
  26083. source: "./media/characters/grim/front.svg",
  26084. extra: 622 / 614,
  26085. bottom: 18.1 / 642
  26086. }
  26087. },
  26088. back: {
  26089. height: math.unit(16, "feet"),
  26090. weight: math.unit(1000, "lb"),
  26091. name: "Back",
  26092. image: {
  26093. source: "./media/characters/grim/back.svg",
  26094. extra: 610.6 / 602,
  26095. bottom: 40.8 / 652
  26096. }
  26097. },
  26098. hunched: {
  26099. height: math.unit(9.75, "feet"),
  26100. weight: math.unit(1000, "lb"),
  26101. name: "Hunched",
  26102. image: {
  26103. source: "./media/characters/grim/hunched.svg",
  26104. extra: 304 / 297,
  26105. bottom: 35.4 / 394
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(16, "feet"),
  26113. default: true
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26119. {
  26120. front: {
  26121. height: math.unit(2.3, "meters"),
  26122. weight: math.unit(300, "lb"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/sinja/front-sfw.svg",
  26126. extra: 1393 / 1294,
  26127. bottom: 70 / 1463
  26128. }
  26129. },
  26130. frontNsfw: {
  26131. height: math.unit(2.3, "meters"),
  26132. weight: math.unit(300, "lb"),
  26133. name: "Front (NSFW)",
  26134. image: {
  26135. source: "./media/characters/sinja/front-nsfw.svg",
  26136. extra: 1393 / 1294,
  26137. bottom: 70 / 1463
  26138. }
  26139. },
  26140. back: {
  26141. height: math.unit(2.3, "meters"),
  26142. weight: math.unit(300, "lb"),
  26143. name: "Back",
  26144. image: {
  26145. source: "./media/characters/sinja/back.svg",
  26146. extra: 1393 / 1294,
  26147. bottom: 70 / 1463
  26148. }
  26149. },
  26150. head: {
  26151. height: math.unit(1.771, "feet"),
  26152. name: "Head",
  26153. image: {
  26154. source: "./media/characters/sinja/head.svg"
  26155. }
  26156. },
  26157. slit: {
  26158. height: math.unit(0.8, "feet"),
  26159. name: "Slit",
  26160. image: {
  26161. source: "./media/characters/sinja/slit.svg"
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(2.3, "meters")
  26169. },
  26170. {
  26171. name: "Macro",
  26172. height: math.unit(91, "meters"),
  26173. default: true
  26174. },
  26175. {
  26176. name: "Megamacro",
  26177. height: math.unit(91440, "meters")
  26178. },
  26179. {
  26180. name: "Gigamacro",
  26181. height: math.unit(60960000, "meters")
  26182. },
  26183. {
  26184. name: "Teramacro",
  26185. height: math.unit(9144000000, "meters")
  26186. },
  26187. ]
  26188. ))
  26189. characterMakers.push(() => makeCharacter(
  26190. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26191. {
  26192. front: {
  26193. height: math.unit(1.7, "meters"),
  26194. weight: math.unit(130, "lb"),
  26195. name: "Front",
  26196. image: {
  26197. source: "./media/characters/kyu/front.svg",
  26198. extra: 415 / 395,
  26199. bottom: 5 / 420
  26200. }
  26201. },
  26202. head: {
  26203. height: math.unit(1.75, "feet"),
  26204. name: "Head",
  26205. image: {
  26206. source: "./media/characters/kyu/head.svg"
  26207. }
  26208. },
  26209. foot: {
  26210. height: math.unit(0.81, "feet"),
  26211. name: "Foot",
  26212. image: {
  26213. source: "./media/characters/kyu/foot.svg"
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Normal",
  26220. height: math.unit(1.7, "meters")
  26221. },
  26222. {
  26223. name: "Macro",
  26224. height: math.unit(131, "feet"),
  26225. default: true
  26226. },
  26227. {
  26228. name: "Megamacro",
  26229. height: math.unit(91440, "meters")
  26230. },
  26231. {
  26232. name: "Gigamacro",
  26233. height: math.unit(60960000, "meters")
  26234. },
  26235. {
  26236. name: "Teramacro",
  26237. height: math.unit(9144000000, "meters")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(7 + 1 / 12, "feet"),
  26246. weight: math.unit(250, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/joey/front.svg",
  26250. extra: 1791 / 1537,
  26251. bottom: 28 / 1816
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Micro",
  26258. height: math.unit(3, "inches")
  26259. },
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(7 + 1 / 12, "feet"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(165, "cm"),
  26272. weight: math.unit(140, "lb"),
  26273. name: "Front",
  26274. image: {
  26275. source: "./media/characters/sam-evans/front.svg",
  26276. extra: 3417 / 3230,
  26277. bottom: 41.3 / 3417
  26278. }
  26279. },
  26280. frontSixTails: {
  26281. height: math.unit(165, "cm"),
  26282. weight: math.unit(140, "lb"),
  26283. name: "Front-six-tails",
  26284. image: {
  26285. source: "./media/characters/sam-evans/front-six-tails.svg",
  26286. extra: 3417 / 3230,
  26287. bottom: 41.3 / 3417
  26288. }
  26289. },
  26290. back: {
  26291. height: math.unit(165, "cm"),
  26292. weight: math.unit(140, "lb"),
  26293. name: "Back",
  26294. image: {
  26295. source: "./media/characters/sam-evans/back.svg",
  26296. extra: 3227 / 3032,
  26297. bottom: 6.8 / 3234
  26298. }
  26299. },
  26300. face: {
  26301. height: math.unit(0.68, "feet"),
  26302. name: "Face",
  26303. image: {
  26304. source: "./media/characters/sam-evans/face.svg"
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Normal",
  26311. height: math.unit(165, "cm"),
  26312. default: true
  26313. },
  26314. {
  26315. name: "Macro",
  26316. height: math.unit(100, "meters")
  26317. },
  26318. {
  26319. name: "Macro+",
  26320. height: math.unit(800, "meters")
  26321. },
  26322. {
  26323. name: "Macro++",
  26324. height: math.unit(3, "km")
  26325. },
  26326. {
  26327. name: "Macro+++",
  26328. height: math.unit(30, "km")
  26329. },
  26330. ]
  26331. ))
  26332. characterMakers.push(() => makeCharacter(
  26333. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26334. {
  26335. front: {
  26336. height: math.unit(10, "feet"),
  26337. weight: math.unit(750, "lb"),
  26338. name: "Front",
  26339. image: {
  26340. source: "./media/characters/juliet-a/front.svg",
  26341. extra: 1766 / 1720,
  26342. bottom: 43 / 1809
  26343. }
  26344. },
  26345. back: {
  26346. height: math.unit(10, "feet"),
  26347. weight: math.unit(750, "lb"),
  26348. name: "Back",
  26349. image: {
  26350. source: "./media/characters/juliet-a/back.svg",
  26351. extra: 1781 / 1734,
  26352. bottom: 35 / 1810,
  26353. }
  26354. },
  26355. },
  26356. [
  26357. {
  26358. name: "Normal",
  26359. height: math.unit(10, "feet"),
  26360. default: true
  26361. },
  26362. {
  26363. name: "Dragon Form",
  26364. height: math.unit(250, "feet")
  26365. },
  26366. {
  26367. name: "Macro",
  26368. height: math.unit(1000, "feet")
  26369. },
  26370. {
  26371. name: "Megamacro",
  26372. height: math.unit(10000, "feet")
  26373. }
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26378. {
  26379. regular: {
  26380. height: math.unit(7 + 3 / 12, "feet"),
  26381. weight: math.unit(260, "lb"),
  26382. name: "Regular",
  26383. image: {
  26384. source: "./media/characters/wild/regular.svg",
  26385. extra: 97.45 / 92,
  26386. bottom: 6.8 / 104.3
  26387. }
  26388. },
  26389. biggums: {
  26390. height: math.unit(8 + 6 / 12, "feet"),
  26391. weight: math.unit(425, "lb"),
  26392. name: "Biggums",
  26393. image: {
  26394. source: "./media/characters/wild/biggums.svg",
  26395. extra: 97.45 / 92,
  26396. bottom: 7.5 / 132.34
  26397. }
  26398. },
  26399. mawRegular: {
  26400. height: math.unit(1.24, "feet"),
  26401. name: "Maw (Regular)",
  26402. image: {
  26403. source: "./media/characters/wild/maw.svg"
  26404. }
  26405. },
  26406. mawBiggums: {
  26407. height: math.unit(1.47, "feet"),
  26408. name: "Maw (Biggums)",
  26409. image: {
  26410. source: "./media/characters/wild/maw.svg"
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Normal",
  26417. height: math.unit(7 + 3 / 12, "feet"),
  26418. default: true
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26424. {
  26425. front: {
  26426. height: math.unit(2.5, "meters"),
  26427. weight: math.unit(200, "kg"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/vidar/front.svg",
  26431. extra: 2994 / 2795,
  26432. bottom: 56 / 3061
  26433. }
  26434. },
  26435. back: {
  26436. height: math.unit(2.5, "meters"),
  26437. weight: math.unit(200, "kg"),
  26438. name: "Back",
  26439. image: {
  26440. source: "./media/characters/vidar/back.svg",
  26441. extra: 3131 / 2928,
  26442. bottom: 13.5 / 3141.5
  26443. }
  26444. },
  26445. feral: {
  26446. height: math.unit(2.5, "meters"),
  26447. weight: math.unit(2000, "kg"),
  26448. name: "Feral",
  26449. image: {
  26450. source: "./media/characters/vidar/feral.svg",
  26451. extra: 2790 / 1765,
  26452. bottom: 6 / 2796
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Normal",
  26459. height: math.unit(2.5, "meters"),
  26460. default: true
  26461. },
  26462. {
  26463. name: "Macro",
  26464. height: math.unit(100, "meters")
  26465. },
  26466. ]
  26467. ))
  26468. characterMakers.push(() => makeCharacter(
  26469. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26470. {
  26471. front: {
  26472. height: math.unit(5 + 9 / 12, "feet"),
  26473. weight: math.unit(120, "lb"),
  26474. name: "Front",
  26475. image: {
  26476. source: "./media/characters/ash/front.svg",
  26477. extra: 2189 / 1961,
  26478. bottom: 5.2 / 2194
  26479. }
  26480. },
  26481. },
  26482. [
  26483. {
  26484. name: "Normal",
  26485. height: math.unit(5 + 9 / 12, "feet"),
  26486. default: true
  26487. },
  26488. ]
  26489. ))
  26490. characterMakers.push(() => makeCharacter(
  26491. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26492. {
  26493. front: {
  26494. height: math.unit(9, "feet"),
  26495. weight: math.unit(10000, "lb"),
  26496. name: "Front",
  26497. image: {
  26498. source: "./media/characters/gygabite/front.svg",
  26499. bottom: 31.7 / 537.8,
  26500. extra: 505 / 370
  26501. }
  26502. },
  26503. },
  26504. [
  26505. {
  26506. name: "Normal",
  26507. height: math.unit(9, "feet"),
  26508. default: true
  26509. },
  26510. ]
  26511. ))
  26512. characterMakers.push(() => makeCharacter(
  26513. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26514. {
  26515. front: {
  26516. height: math.unit(12, "feet"),
  26517. weight: math.unit(35000, "lb"),
  26518. name: "Front",
  26519. image: {
  26520. source: "./media/characters/p0tat0/front.svg",
  26521. extra: 1065 / 921,
  26522. bottom: 55.7 / 1121.25
  26523. }
  26524. },
  26525. },
  26526. [
  26527. {
  26528. name: "Normal",
  26529. height: math.unit(12, "feet"),
  26530. default: true
  26531. },
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26536. {
  26537. side: {
  26538. height: math.unit(6.5, "feet"),
  26539. weight: math.unit(800, "lb"),
  26540. name: "Side",
  26541. image: {
  26542. source: "./media/characters/dusk/side.svg",
  26543. extra: 615 / 373,
  26544. bottom: 53 / 664
  26545. }
  26546. },
  26547. sitting: {
  26548. height: math.unit(7, "feet"),
  26549. weight: math.unit(800, "lb"),
  26550. name: "Sitting",
  26551. image: {
  26552. source: "./media/characters/dusk/sitting.svg",
  26553. extra: 753 / 425,
  26554. bottom: 33 / 774
  26555. }
  26556. },
  26557. head: {
  26558. height: math.unit(6.1, "feet"),
  26559. name: "Head",
  26560. image: {
  26561. source: "./media/characters/dusk/head.svg"
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(7, "feet"),
  26569. default: true
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(15, "feet"),
  26578. weight: math.unit(7000, "lb"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/jay-direwolf/front.svg",
  26582. extra: 1810 / 1732,
  26583. bottom: 66 / 1892
  26584. }
  26585. },
  26586. },
  26587. [
  26588. {
  26589. name: "Normal",
  26590. height: math.unit(15, "feet"),
  26591. default: true
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26597. {
  26598. front: {
  26599. height: math.unit(4 + 9 / 12, "feet"),
  26600. weight: math.unit(130, "lb"),
  26601. name: "Front",
  26602. image: {
  26603. source: "./media/characters/anchovie/front.svg",
  26604. extra: 382 / 350,
  26605. bottom: 25 / 409
  26606. }
  26607. },
  26608. back: {
  26609. height: math.unit(4 + 9 / 12, "feet"),
  26610. weight: math.unit(130, "lb"),
  26611. name: "Back",
  26612. image: {
  26613. source: "./media/characters/anchovie/back.svg",
  26614. extra: 385 / 352,
  26615. bottom: 16.6 / 402
  26616. }
  26617. },
  26618. frontDressed: {
  26619. height: math.unit(4 + 9 / 12, "feet"),
  26620. weight: math.unit(130, "lb"),
  26621. name: "Front (Dressed)",
  26622. image: {
  26623. source: "./media/characters/anchovie/front-dressed.svg",
  26624. extra: 382 / 350,
  26625. bottom: 25 / 409
  26626. }
  26627. },
  26628. backDressed: {
  26629. height: math.unit(4 + 9 / 12, "feet"),
  26630. weight: math.unit(130, "lb"),
  26631. name: "Back (Dressed)",
  26632. image: {
  26633. source: "./media/characters/anchovie/back-dressed.svg",
  26634. extra: 385 / 352,
  26635. bottom: 16.6 / 402
  26636. }
  26637. },
  26638. },
  26639. [
  26640. {
  26641. name: "Micro",
  26642. height: math.unit(6.4, "inches")
  26643. },
  26644. {
  26645. name: "Normal",
  26646. height: math.unit(4 + 9 / 12, "feet"),
  26647. default: true
  26648. },
  26649. ]
  26650. ))
  26651. characterMakers.push(() => makeCharacter(
  26652. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26653. {
  26654. front: {
  26655. height: math.unit(2, "meters"),
  26656. weight: math.unit(180, "lb"),
  26657. name: "Front",
  26658. image: {
  26659. source: "./media/characters/acidrenamon/front.svg",
  26660. extra: 987 / 890,
  26661. bottom: 22.8 / 1009
  26662. }
  26663. },
  26664. back: {
  26665. height: math.unit(2, "meters"),
  26666. weight: math.unit(180, "lb"),
  26667. name: "Back",
  26668. image: {
  26669. source: "./media/characters/acidrenamon/back.svg",
  26670. extra: 983 / 891,
  26671. bottom: 8.4 / 992
  26672. }
  26673. },
  26674. head: {
  26675. height: math.unit(1.92, "feet"),
  26676. name: "Head",
  26677. image: {
  26678. source: "./media/characters/acidrenamon/head.svg"
  26679. }
  26680. },
  26681. rump: {
  26682. height: math.unit(1.72, "feet"),
  26683. name: "Rump",
  26684. image: {
  26685. source: "./media/characters/acidrenamon/rump.svg"
  26686. }
  26687. },
  26688. tail: {
  26689. height: math.unit(4.2, "feet"),
  26690. name: "Tail",
  26691. image: {
  26692. source: "./media/characters/acidrenamon/tail.svg"
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(2, "meters"),
  26700. default: true
  26701. },
  26702. {
  26703. name: "Minimacro",
  26704. height: math.unit(7, "meters")
  26705. },
  26706. {
  26707. name: "Macro",
  26708. height: math.unit(200, "meters")
  26709. },
  26710. {
  26711. name: "Gigamacro",
  26712. height: math.unit(0.2, "earths")
  26713. },
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26718. {
  26719. front: {
  26720. height: math.unit(6, "feet"),
  26721. weight: math.unit(150, "lb"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/kenzie-lee/front.svg",
  26725. extra: 1525 / 1465,
  26726. bottom: 45 / 1570
  26727. }
  26728. },
  26729. side: {
  26730. height: math.unit(6, "feet"),
  26731. weight: math.unit(150, "lb"),
  26732. name: "Side",
  26733. image: {
  26734. source: "./media/characters/kenzie-lee/side.svg",
  26735. extra: 5505 / 5383,
  26736. bottom: 60 / 5573
  26737. }
  26738. },
  26739. },
  26740. [
  26741. {
  26742. name: "Normal",
  26743. height: math.unit(152, "feet"),
  26744. default: true
  26745. },
  26746. {
  26747. name: "Megamacro",
  26748. height: math.unit(7, "miles")
  26749. },
  26750. {
  26751. name: "Gigamacro",
  26752. height: math.unit(8000, "miles")
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26758. {
  26759. side: {
  26760. height: math.unit(6, "feet"),
  26761. weight: math.unit(150, "lb"),
  26762. name: "Side",
  26763. image: {
  26764. source: "./media/characters/withers/side.svg",
  26765. extra: 1830 / 1728,
  26766. bottom: 96 / 1927
  26767. }
  26768. },
  26769. front: {
  26770. height: math.unit(6, "feet"),
  26771. weight: math.unit(150, "lb"),
  26772. name: "Front",
  26773. image: {
  26774. source: "./media/characters/withers/front.svg",
  26775. extra: 1514 / 1438,
  26776. bottom: 118 / 1632
  26777. }
  26778. },
  26779. },
  26780. [
  26781. {
  26782. name: "Macro",
  26783. height: math.unit(168, "feet"),
  26784. default: true
  26785. },
  26786. {
  26787. name: "Megamacro",
  26788. height: math.unit(15, "miles")
  26789. }
  26790. ]
  26791. ))
  26792. characterMakers.push(() => makeCharacter(
  26793. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26794. {
  26795. front: {
  26796. height: math.unit(6 + 7 / 12, "feet"),
  26797. weight: math.unit(250, "lb"),
  26798. name: "Front",
  26799. image: {
  26800. source: "./media/characters/nemoskii/front.svg",
  26801. extra: 2270 / 1734,
  26802. bottom: 86 / 2354
  26803. }
  26804. },
  26805. back: {
  26806. height: math.unit(6 + 7 / 12, "feet"),
  26807. weight: math.unit(250, "lb"),
  26808. name: "Back",
  26809. image: {
  26810. source: "./media/characters/nemoskii/back.svg",
  26811. extra: 1845 / 1788,
  26812. bottom: 10.5 / 1852
  26813. }
  26814. },
  26815. head: {
  26816. height: math.unit(1.31, "feet"),
  26817. name: "Head",
  26818. image: {
  26819. source: "./media/characters/nemoskii/head.svg"
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(6 + 7 / 12, "feet"),
  26827. default: true
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(1, "mile"),
  26836. weight: math.unit(265261.9, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/shui/front.svg",
  26840. extra: 1633 / 1564,
  26841. bottom: 91.5 / 1726
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Macro",
  26848. height: math.unit(1, "mile"),
  26849. default: true
  26850. },
  26851. ]
  26852. ))
  26853. characterMakers.push(() => makeCharacter(
  26854. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26855. {
  26856. front: {
  26857. height: math.unit(12 + 6 / 12, "feet"),
  26858. weight: math.unit(1342, "lb"),
  26859. name: "Front",
  26860. image: {
  26861. source: "./media/characters/arokh-takakura/front.svg",
  26862. extra: 1089 / 1043,
  26863. bottom: 77.4 / 1176.7
  26864. }
  26865. },
  26866. back: {
  26867. height: math.unit(12 + 6 / 12, "feet"),
  26868. weight: math.unit(1342, "lb"),
  26869. name: "Back",
  26870. image: {
  26871. source: "./media/characters/arokh-takakura/back.svg",
  26872. extra: 1046 / 1019,
  26873. bottom: 102 / 1150
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Big",
  26880. height: math.unit(12 + 6 / 12, "feet"),
  26881. default: true
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26887. {
  26888. front: {
  26889. height: math.unit(5 + 6 / 12, "feet"),
  26890. weight: math.unit(150, "lb"),
  26891. name: "Front",
  26892. image: {
  26893. source: "./media/characters/theo/front.svg",
  26894. extra: 1184 / 1131,
  26895. bottom: 7.4 / 1191
  26896. }
  26897. },
  26898. },
  26899. [
  26900. {
  26901. name: "Micro",
  26902. height: math.unit(5, "inches")
  26903. },
  26904. {
  26905. name: "Normal",
  26906. height: math.unit(5 + 6 / 12, "feet"),
  26907. default: true
  26908. },
  26909. ]
  26910. ))
  26911. characterMakers.push(() => makeCharacter(
  26912. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26913. {
  26914. front: {
  26915. height: math.unit(5 + 9 / 12, "feet"),
  26916. weight: math.unit(130, "lb"),
  26917. name: "Front",
  26918. image: {
  26919. source: "./media/characters/cecelia-swift/front.svg",
  26920. extra: 502 / 484,
  26921. bottom: 23 / 523
  26922. }
  26923. },
  26924. back: {
  26925. height: math.unit(5 + 9 / 12, "feet"),
  26926. weight: math.unit(130, "lb"),
  26927. name: "Back",
  26928. image: {
  26929. source: "./media/characters/cecelia-swift/back.svg",
  26930. extra: 499 / 485,
  26931. bottom: 12 / 511
  26932. }
  26933. },
  26934. head: {
  26935. height: math.unit(0.90, "feet"),
  26936. name: "Head",
  26937. image: {
  26938. source: "./media/characters/cecelia-swift/head.svg"
  26939. }
  26940. },
  26941. rump: {
  26942. height: math.unit(1.75, "feet"),
  26943. name: "Rump",
  26944. image: {
  26945. source: "./media/characters/cecelia-swift/rump.svg"
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(5 + 9 / 12, "feet"),
  26953. default: true
  26954. },
  26955. {
  26956. name: "Big",
  26957. height: math.unit(50, "feet")
  26958. },
  26959. {
  26960. name: "Macro",
  26961. height: math.unit(100, "feet")
  26962. },
  26963. {
  26964. name: "Macro+",
  26965. height: math.unit(500, "feet")
  26966. },
  26967. {
  26968. name: "Macro++",
  26969. height: math.unit(1000, "feet")
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(6, "feet"),
  26978. weight: math.unit(150, "lb"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/kaunan/front.svg",
  26982. extra: 2890 / 2523,
  26983. bottom: 49 / 2939
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Macro",
  26990. height: math.unit(150, "feet"),
  26991. default: true
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(175, "cm"),
  27000. weight: math.unit(60, "kg"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/fei/front.svg",
  27004. extra: 2581 / 2400,
  27005. bottom: 82.2 / 2663
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Mortal",
  27012. height: math.unit(175, "cm")
  27013. },
  27014. {
  27015. name: "Normal",
  27016. height: math.unit(3500, "m"),
  27017. default: true
  27018. },
  27019. {
  27020. name: "Stroll",
  27021. height: math.unit(17.5, "km")
  27022. },
  27023. {
  27024. name: "Showoff",
  27025. height: math.unit(175, "km")
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(7, "feet"),
  27034. weight: math.unit(1000, "kg"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/edrax/front.svg",
  27038. extra: 2838 / 2550,
  27039. bottom: 130 / 2968
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Small",
  27046. height: math.unit(7, "feet")
  27047. },
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(1500, "meters")
  27051. },
  27052. {
  27053. name: "Mega",
  27054. height: math.unit(12000000, "km"),
  27055. default: true
  27056. },
  27057. {
  27058. name: "Megamacro",
  27059. height: math.unit(10600000, "lightyears")
  27060. },
  27061. {
  27062. name: "Hypermacro",
  27063. height: math.unit(256, "yottameters")
  27064. },
  27065. ]
  27066. ))
  27067. characterMakers.push(() => makeCharacter(
  27068. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27069. {
  27070. front: {
  27071. height: math.unit(10, "feet"),
  27072. weight: math.unit(750, "lb"),
  27073. name: "Front",
  27074. image: {
  27075. source: "./media/characters/clove/front.svg",
  27076. extra: 2031 / 1860,
  27077. bottom: 47.8 / 2080
  27078. }
  27079. },
  27080. back: {
  27081. height: math.unit(10, "feet"),
  27082. weight: math.unit(750, "lb"),
  27083. name: "Back",
  27084. image: {
  27085. source: "./media/characters/clove/back.svg",
  27086. extra: 2025 / 1859,
  27087. bottom: 46 / 2071
  27088. }
  27089. },
  27090. },
  27091. [
  27092. {
  27093. name: "Normal",
  27094. height: math.unit(10, "feet")
  27095. },
  27096. ]
  27097. ))
  27098. characterMakers.push(() => makeCharacter(
  27099. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27100. {
  27101. front: {
  27102. height: math.unit(4, "feet"),
  27103. weight: math.unit(50, "lb"),
  27104. name: "Front",
  27105. image: {
  27106. source: "./media/characters/alex-rabbit/front.svg",
  27107. extra: 507 / 458,
  27108. bottom: 18.5 / 527
  27109. }
  27110. },
  27111. back: {
  27112. height: math.unit(4, "feet"),
  27113. weight: math.unit(50, "lb"),
  27114. name: "Back",
  27115. image: {
  27116. source: "./media/characters/alex-rabbit/back.svg",
  27117. extra: 502 / 460,
  27118. bottom: 18.9 / 521
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(4, "feet"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(1 + 3 / 12, "feet"),
  27135. weight: math.unit(80, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/zander-rose/front.svg",
  27139. extra: 916 / 797,
  27140. bottom: 17 / 933
  27141. }
  27142. },
  27143. back: {
  27144. height: math.unit(1 + 3 / 12, "feet"),
  27145. weight: math.unit(80, "lb"),
  27146. name: "Back",
  27147. image: {
  27148. source: "./media/characters/zander-rose/back.svg",
  27149. extra: 903 / 779,
  27150. bottom: 31 / 934
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(1 + 3 / 12, "feet"),
  27158. default: true
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27164. {
  27165. anthro: {
  27166. height: math.unit(6, "feet"),
  27167. weight: math.unit(150, "lb"),
  27168. name: "Anthro",
  27169. image: {
  27170. source: "./media/characters/razz/anthro.svg",
  27171. extra: 1437 / 1343,
  27172. bottom: 48 / 1485
  27173. }
  27174. },
  27175. feral: {
  27176. height: math.unit(6, "feet"),
  27177. weight: math.unit(150, "lb"),
  27178. name: "Feral",
  27179. image: {
  27180. source: "./media/characters/razz/feral.svg",
  27181. extra: 2569 / 1385,
  27182. bottom: 95 / 2664
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(6, "feet"),
  27190. default: true
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(9 + 4 / 12, "feet"),
  27199. weight: math.unit(500, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/morrigan/front.svg",
  27203. extra: 2707 / 2579,
  27204. bottom: 156 / 2863
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(9 + 4 / 12, "feet"),
  27212. default: true
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27218. {
  27219. front: {
  27220. height: math.unit(5, "stories"),
  27221. weight: math.unit(4000, "lb"),
  27222. name: "Front",
  27223. image: {
  27224. source: "./media/characters/jenene/front.svg",
  27225. extra: 1780 / 1710,
  27226. bottom: 57 / 1837
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Normal",
  27233. height: math.unit(5, "stories"),
  27234. default: true
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(6, "feet"),
  27243. weight: math.unit(150, "lb"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/vix-archaser/front.svg",
  27247. extra: 2767 / 2562,
  27248. bottom: 36 / 2803
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Micro",
  27255. height: math.unit(1, "foot")
  27256. },
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(6 + 5 / 12, "feet")
  27260. },
  27261. {
  27262. name: "Minimacro",
  27263. height: math.unit(500, "feet")
  27264. },
  27265. {
  27266. name: "Macro",
  27267. height: math.unit(4, "miles")
  27268. },
  27269. {
  27270. name: "Megamacro",
  27271. height: math.unit(250, "miles"),
  27272. default: true
  27273. },
  27274. {
  27275. name: "Gigamacro",
  27276. height: math.unit(1, "universe")
  27277. },
  27278. {
  27279. name: "Endgame",
  27280. height: math.unit(100, "multiverses")
  27281. }
  27282. ]
  27283. ))
  27284. characterMakers.push(() => makeCharacter(
  27285. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27286. {
  27287. taurSfw: {
  27288. height: math.unit(10, "meters"),
  27289. weight: math.unit(17500, "kg"),
  27290. name: "Taur",
  27291. image: {
  27292. source: "./media/characters/faey/taur-sfw.svg",
  27293. extra: 1200 / 968,
  27294. bottom: 41 / 1241
  27295. }
  27296. },
  27297. chestmaw: {
  27298. height: math.unit(2.01, "meters"),
  27299. name: "Chestmaw",
  27300. image: {
  27301. source: "./media/characters/faey/chestmaw.svg"
  27302. }
  27303. },
  27304. foot: {
  27305. height: math.unit(2.43, "meters"),
  27306. name: "Foot",
  27307. image: {
  27308. source: "./media/characters/faey/foot.svg"
  27309. }
  27310. },
  27311. jaws: {
  27312. height: math.unit(1.66, "meters"),
  27313. name: "Jaws",
  27314. image: {
  27315. source: "./media/characters/faey/jaws.svg"
  27316. }
  27317. },
  27318. tongues: {
  27319. height: math.unit(2.01, "meters"),
  27320. name: "Tongues",
  27321. image: {
  27322. source: "./media/characters/faey/tongues.svg"
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Small",
  27329. height: math.unit(10, "meters"),
  27330. default: true
  27331. },
  27332. {
  27333. name: "Big",
  27334. height: math.unit(500000, "km")
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27340. {
  27341. front: {
  27342. height: math.unit(7, "feet"),
  27343. weight: math.unit(275, "lb"),
  27344. name: "Front",
  27345. image: {
  27346. source: "./media/characters/roku/front.svg",
  27347. extra: 903 / 878,
  27348. bottom: 37 / 940
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Normal",
  27355. height: math.unit(7, "feet"),
  27356. default: true
  27357. },
  27358. {
  27359. name: "Macro",
  27360. height: math.unit(500, "feet")
  27361. },
  27362. {
  27363. name: "Megamacro",
  27364. height: math.unit(200, "miles")
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(6 + 2 / 12, "feet"),
  27373. weight: math.unit(150, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/lira/front.svg",
  27377. extra: 1727 / 1605,
  27378. bottom: 26 / 1753
  27379. }
  27380. },
  27381. back: {
  27382. height: math.unit(6 + 2 / 12, "feet"),
  27383. weight: math.unit(150, "lb"),
  27384. name: "Back",
  27385. image: {
  27386. source: "./media/characters/lira/back.svg",
  27387. extra: 1713 / 159,
  27388. bottom: 20 / 1733
  27389. }
  27390. },
  27391. hand: {
  27392. height: math.unit(0.75, "feet"),
  27393. name: "Hand",
  27394. image: {
  27395. source: "./media/characters/lira/hand.svg"
  27396. }
  27397. },
  27398. maw: {
  27399. height: math.unit(0.65, "feet"),
  27400. name: "Maw",
  27401. image: {
  27402. source: "./media/characters/lira/maw.svg"
  27403. }
  27404. },
  27405. pawDigi: {
  27406. height: math.unit(1.6, "feet"),
  27407. name: "Paw Digi",
  27408. image: {
  27409. source: "./media/characters/lira/paw-digi.svg"
  27410. }
  27411. },
  27412. pawPlanti: {
  27413. height: math.unit(1.4, "feet"),
  27414. name: "Paw Planti",
  27415. image: {
  27416. source: "./media/characters/lira/paw-planti.svg"
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(6 + 2 / 12, "feet"),
  27424. default: true
  27425. },
  27426. {
  27427. name: "Macro",
  27428. height: math.unit(100, "feet")
  27429. },
  27430. {
  27431. name: "Macro²",
  27432. height: math.unit(1600, "feet")
  27433. },
  27434. {
  27435. name: "Planetary",
  27436. height: math.unit(20, "earths")
  27437. },
  27438. ]
  27439. ))
  27440. characterMakers.push(() => makeCharacter(
  27441. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27442. {
  27443. front: {
  27444. height: math.unit(6, "feet"),
  27445. weight: math.unit(150, "lb"),
  27446. name: "Front",
  27447. image: {
  27448. source: "./media/characters/hadjet/front.svg",
  27449. extra: 1480 / 1346,
  27450. bottom: 26 / 1506
  27451. }
  27452. },
  27453. frontNsfw: {
  27454. height: math.unit(6, "feet"),
  27455. weight: math.unit(150, "lb"),
  27456. name: "Front (NSFW)",
  27457. image: {
  27458. source: "./media/characters/hadjet/front-nsfw.svg",
  27459. extra: 1440 / 1358,
  27460. bottom: 52 / 1492
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Macro",
  27467. height: math.unit(10, "stories"),
  27468. default: true
  27469. },
  27470. {
  27471. name: "Megamacro",
  27472. height: math.unit(1.5, "miles")
  27473. },
  27474. {
  27475. name: "Megamacro+",
  27476. height: math.unit(5, "miles")
  27477. },
  27478. ]
  27479. ))
  27480. characterMakers.push(() => makeCharacter(
  27481. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27482. {
  27483. side: {
  27484. height: math.unit(106, "feet"),
  27485. weight: math.unit(500, "tonnes"),
  27486. name: "Side",
  27487. image: {
  27488. source: "./media/characters/kodran/side.svg",
  27489. extra: 553 / 480,
  27490. bottom: 33 / 586
  27491. }
  27492. },
  27493. front: {
  27494. height: math.unit(132, "feet"),
  27495. weight: math.unit(500, "tonnes"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/kodran/front.svg",
  27499. extra: 667 / 643,
  27500. bottom: 42 / 709
  27501. }
  27502. },
  27503. flying: {
  27504. height: math.unit(350, "feet"),
  27505. weight: math.unit(500, "tonnes"),
  27506. name: "Flying",
  27507. image: {
  27508. source: "./media/characters/kodran/flying.svg"
  27509. }
  27510. },
  27511. foot: {
  27512. height: math.unit(33, "feet"),
  27513. name: "Foot",
  27514. image: {
  27515. source: "./media/characters/kodran/foot.svg"
  27516. }
  27517. },
  27518. footFront: {
  27519. height: math.unit(19, "feet"),
  27520. name: "Foot (Front)",
  27521. image: {
  27522. source: "./media/characters/kodran/foot-front.svg",
  27523. extra: 261 / 261,
  27524. bottom: 91 / 352
  27525. }
  27526. },
  27527. headFront: {
  27528. height: math.unit(53, "feet"),
  27529. name: "Head (Front)",
  27530. image: {
  27531. source: "./media/characters/kodran/head-front.svg"
  27532. }
  27533. },
  27534. headSide: {
  27535. height: math.unit(65, "feet"),
  27536. name: "Head (Side)",
  27537. image: {
  27538. source: "./media/characters/kodran/head-side.svg"
  27539. }
  27540. },
  27541. throat: {
  27542. height: math.unit(79, "feet"),
  27543. name: "Throat",
  27544. image: {
  27545. source: "./media/characters/kodran/throat.svg"
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Large",
  27552. height: math.unit(106, "feet"),
  27553. default: true
  27554. },
  27555. ]
  27556. ))
  27557. characterMakers.push(() => makeCharacter(
  27558. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27559. {
  27560. side: {
  27561. height: math.unit(11, "feet"),
  27562. weight: math.unit(150, "lb"),
  27563. name: "Side",
  27564. image: {
  27565. source: "./media/characters/pyxaron/side.svg",
  27566. extra: 305 / 195,
  27567. bottom: 17 / 322
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Normal",
  27574. height: math.unit(11, "feet")
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27580. {
  27581. front: {
  27582. height: math.unit(6, "feet"),
  27583. weight: math.unit(150, "lb"),
  27584. name: "Front",
  27585. image: {
  27586. source: "./media/characters/meep/front.svg",
  27587. extra: 88 / 80,
  27588. bottom: 6 / 94
  27589. }
  27590. },
  27591. },
  27592. [
  27593. {
  27594. name: "Fun Sized",
  27595. height: math.unit(2, "inches"),
  27596. default: true
  27597. },
  27598. {
  27599. name: "Friend Sized",
  27600. height: math.unit(8, "inches")
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27606. {
  27607. front: {
  27608. height: math.unit(15, "feet"),
  27609. weight: math.unit(2500, "lb"),
  27610. name: "Front",
  27611. image: {
  27612. source: "./media/characters/holly-rabbit/front.svg",
  27613. extra: 1433 / 1233,
  27614. bottom: 125 / 1558
  27615. }
  27616. },
  27617. dick: {
  27618. height: math.unit(4.6, "feet"),
  27619. name: "Dick",
  27620. image: {
  27621. source: "./media/characters/holly-rabbit/dick.svg"
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(15, "feet"),
  27629. default: true
  27630. },
  27631. {
  27632. name: "Macro",
  27633. height: math.unit(250, "feet")
  27634. },
  27635. {
  27636. name: "Macro+",
  27637. height: math.unit(2500, "feet")
  27638. },
  27639. ]
  27640. ))
  27641. characterMakers.push(() => makeCharacter(
  27642. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27643. {
  27644. front: {
  27645. height: math.unit(3.02, "meters"),
  27646. weight: math.unit(500, "kg"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/drena/front.svg",
  27650. extra: 282 / 243,
  27651. bottom: 8 / 290
  27652. }
  27653. },
  27654. side: {
  27655. height: math.unit(3.02, "meters"),
  27656. weight: math.unit(500, "kg"),
  27657. name: "Side",
  27658. image: {
  27659. source: "./media/characters/drena/side.svg",
  27660. extra: 280 / 245,
  27661. bottom: 10 / 290
  27662. }
  27663. },
  27664. back: {
  27665. height: math.unit(3.02, "meters"),
  27666. weight: math.unit(500, "kg"),
  27667. name: "Back",
  27668. image: {
  27669. source: "./media/characters/drena/back.svg",
  27670. extra: 278 / 243,
  27671. bottom: 2 / 280
  27672. }
  27673. },
  27674. foot: {
  27675. height: math.unit(0.75, "meters"),
  27676. name: "Foot",
  27677. image: {
  27678. source: "./media/characters/drena/foot.svg"
  27679. }
  27680. },
  27681. maw: {
  27682. height: math.unit(0.82, "meters"),
  27683. name: "Maw",
  27684. image: {
  27685. source: "./media/characters/drena/maw.svg"
  27686. }
  27687. },
  27688. rump: {
  27689. height: math.unit(0.93, "meters"),
  27690. name: "Rump",
  27691. image: {
  27692. source: "./media/characters/drena/rump.svg"
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(3.02, "meters"),
  27700. default: true
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(6 + 4 / 12, "feet"),
  27709. weight: math.unit(250, "lb"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/remmyzilla/front.svg",
  27713. extra: 4033 / 3588,
  27714. bottom: 123 / 4156
  27715. }
  27716. },
  27717. back: {
  27718. height: math.unit(6 + 4 / 12, "feet"),
  27719. weight: math.unit(250, "lb"),
  27720. name: "Back",
  27721. image: {
  27722. source: "./media/characters/remmyzilla/back.svg",
  27723. extra: 2687 / 2555,
  27724. bottom: 48 / 2735
  27725. }
  27726. },
  27727. frontFancy: {
  27728. height: math.unit(6 + 4 / 12, "feet"),
  27729. weight: math.unit(250, "lb"),
  27730. name: "Front (Fancy)",
  27731. image: {
  27732. source: "./media/characters/remmyzilla/front-fancy.svg",
  27733. extra: 4119 / 3419,
  27734. bottom: 237 / 4356
  27735. }
  27736. },
  27737. paw: {
  27738. height: math.unit(1.73, "feet"),
  27739. name: "Paw",
  27740. image: {
  27741. source: "./media/characters/remmyzilla/paw.svg"
  27742. }
  27743. },
  27744. maw: {
  27745. height: math.unit(1.73, "feet"),
  27746. name: "Maw",
  27747. image: {
  27748. source: "./media/characters/remmyzilla/maw.svg"
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(6 + 4 / 12, "feet")
  27756. },
  27757. {
  27758. name: "Minimacro",
  27759. height: math.unit(12 + 8 / 12, "feet")
  27760. },
  27761. {
  27762. name: "Normal",
  27763. height: math.unit(640, "feet"),
  27764. default: true
  27765. },
  27766. {
  27767. name: "Megamacro",
  27768. height: math.unit(6400, "feet")
  27769. },
  27770. {
  27771. name: "Gigamacro",
  27772. height: math.unit(64000, "miles")
  27773. },
  27774. ]
  27775. ))
  27776. characterMakers.push(() => makeCharacter(
  27777. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27778. {
  27779. front: {
  27780. height: math.unit(2.5, "meters"),
  27781. weight: math.unit(300, "lb"),
  27782. name: "Front",
  27783. image: {
  27784. source: "./media/characters/lawrence/front.svg",
  27785. extra: 357 / 335,
  27786. bottom: 30 / 387
  27787. }
  27788. },
  27789. back: {
  27790. height: math.unit(2.5, "meters"),
  27791. weight: math.unit(300, "lb"),
  27792. name: "Back",
  27793. image: {
  27794. source: "./media/characters/lawrence/back.svg",
  27795. extra: 357 / 338,
  27796. bottom: 16 / 373
  27797. }
  27798. },
  27799. head: {
  27800. height: math.unit(0.9, "meter"),
  27801. name: "Head",
  27802. image: {
  27803. source: "./media/characters/lawrence/head.svg"
  27804. }
  27805. },
  27806. maw: {
  27807. height: math.unit(0.7, "meter"),
  27808. name: "Maw",
  27809. image: {
  27810. source: "./media/characters/lawrence/maw.svg"
  27811. }
  27812. },
  27813. footBottom: {
  27814. height: math.unit(0.5, "meter"),
  27815. name: "Foot (Bottom)",
  27816. image: {
  27817. source: "./media/characters/lawrence/foot-bottom.svg"
  27818. }
  27819. },
  27820. footTop: {
  27821. height: math.unit(0.5, "meter"),
  27822. name: "Foot (Top)",
  27823. image: {
  27824. source: "./media/characters/lawrence/foot-top.svg"
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(2.5, "meters"),
  27832. default: true
  27833. },
  27834. {
  27835. name: "Macro",
  27836. height: math.unit(95, "meters")
  27837. },
  27838. {
  27839. name: "Megamacro",
  27840. height: math.unit(150, "km")
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27846. {
  27847. front: {
  27848. height: math.unit(4.2, "meters"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/sydney/front.svg",
  27852. extra: 1323 / 1277,
  27853. bottom: 111 / 1434
  27854. }
  27855. },
  27856. },
  27857. [
  27858. {
  27859. name: "Normal",
  27860. height: math.unit(4.2, "meters")
  27861. },
  27862. ]
  27863. ))
  27864. characterMakers.push(() => makeCharacter(
  27865. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27866. {
  27867. back: {
  27868. height: math.unit(201, "feet"),
  27869. name: "Back",
  27870. image: {
  27871. source: "./media/characters/jessica/back.svg",
  27872. extra: 273 / 259,
  27873. bottom: 7 / 280
  27874. }
  27875. },
  27876. },
  27877. [
  27878. {
  27879. name: "Normal",
  27880. height: math.unit(201, "feet"),
  27881. default: true
  27882. },
  27883. {
  27884. name: "Megamacro",
  27885. height: math.unit(8, "miles")
  27886. },
  27887. ]
  27888. ))
  27889. characterMakers.push(() => makeCharacter(
  27890. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27891. {
  27892. side: {
  27893. height: math.unit(320, "cm"),
  27894. name: "Side",
  27895. image: {
  27896. source: "./media/characters/victoria/side.svg",
  27897. extra: 778 / 346,
  27898. bottom: 56 / 834
  27899. }
  27900. },
  27901. maw: {
  27902. height: math.unit(5.9, "feet"),
  27903. name: "Maw",
  27904. image: {
  27905. source: "./media/characters/victoria/maw.svg"
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Normal",
  27912. height: math.unit(320, "cm"),
  27913. default: true
  27914. },
  27915. ]
  27916. ))
  27917. characterMakers.push(() => makeCharacter(
  27918. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27919. {
  27920. front: {
  27921. height: math.unit(5 + 6 / 12, "feet"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/cat/front.svg",
  27925. extra: 1374 / 1257,
  27926. bottom: 59 / 1433
  27927. }
  27928. },
  27929. back: {
  27930. height: math.unit(5 + 6 / 12, "feet"),
  27931. name: "Back",
  27932. image: {
  27933. source: "./media/characters/cat/back.svg",
  27934. extra: 1337 / 1226,
  27935. bottom: 34 / 1371
  27936. }
  27937. },
  27938. taur: {
  27939. height: math.unit(7, "feet"),
  27940. name: "Taur",
  27941. image: {
  27942. source: "./media/characters/cat/taur.svg",
  27943. extra: 1345 / 1231,
  27944. bottom: 66 / 1411
  27945. }
  27946. },
  27947. lucario: {
  27948. height: math.unit(4, "feet"),
  27949. name: "Lucario",
  27950. image: {
  27951. source: "./media/characters/cat/lucario.svg",
  27952. extra: 1470 / 1318,
  27953. bottom: 65 / 1535
  27954. }
  27955. },
  27956. megaLucario: {
  27957. height: math.unit(4, "feet"),
  27958. name: "Mega Lucario",
  27959. image: {
  27960. source: "./media/characters/cat/mega-lucario.svg",
  27961. extra: 1515 / 1319,
  27962. bottom: 63 / 1578
  27963. }
  27964. },
  27965. nickit: {
  27966. height: math.unit(2, "feet"),
  27967. name: "Nickit",
  27968. image: {
  27969. source: "./media/characters/cat/nickit.svg",
  27970. extra: 1980 / 1585,
  27971. bottom: 102 / 2082
  27972. }
  27973. },
  27974. lopunnyFront: {
  27975. height: math.unit(5, "feet"),
  27976. name: "Lopunny (Front)",
  27977. image: {
  27978. source: "./media/characters/cat/lopunny-front.svg",
  27979. extra: 1782 / 1469,
  27980. bottom: 38 / 1820
  27981. }
  27982. },
  27983. lopunnyBack: {
  27984. height: math.unit(5, "feet"),
  27985. name: "Lopunny (Back)",
  27986. image: {
  27987. source: "./media/characters/cat/lopunny-back.svg",
  27988. extra: 1660 / 1490,
  27989. bottom: 25 / 1685
  27990. }
  27991. },
  27992. },
  27993. [
  27994. {
  27995. name: "Really small",
  27996. height: math.unit(1, "nm")
  27997. },
  27998. {
  27999. name: "Micro",
  28000. height: math.unit(5, "inches")
  28001. },
  28002. {
  28003. name: "Normal",
  28004. height: math.unit(5 + 6 / 12, "feet"),
  28005. default: true
  28006. },
  28007. {
  28008. name: "Macro",
  28009. height: math.unit(50, "feet")
  28010. },
  28011. {
  28012. name: "Macro+",
  28013. height: math.unit(150, "feet")
  28014. },
  28015. {
  28016. name: "Megamacro",
  28017. height: math.unit(100, "miles")
  28018. },
  28019. ]
  28020. ))
  28021. characterMakers.push(() => makeCharacter(
  28022. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28023. {
  28024. front: {
  28025. height: math.unit(63.4, "meters"),
  28026. weight: math.unit(3.28349e+6, "kilograms"),
  28027. name: "Front",
  28028. image: {
  28029. source: "./media/characters/kirina-violet/front.svg",
  28030. extra: 2812 / 2725,
  28031. bottom: 0 / 2812
  28032. }
  28033. },
  28034. back: {
  28035. height: math.unit(63.4, "meters"),
  28036. weight: math.unit(3.28349e+6, "kilograms"),
  28037. name: "Back",
  28038. image: {
  28039. source: "./media/characters/kirina-violet/back.svg",
  28040. extra: 2812 / 2725,
  28041. bottom: 0 / 2812
  28042. }
  28043. },
  28044. mouth: {
  28045. height: math.unit(4.35, "meters"),
  28046. name: "Mouth",
  28047. image: {
  28048. source: "./media/characters/kirina-violet/mouth.svg"
  28049. }
  28050. },
  28051. paw: {
  28052. height: math.unit(5.6, "meters"),
  28053. name: "Paw",
  28054. image: {
  28055. source: "./media/characters/kirina-violet/paw.svg"
  28056. }
  28057. },
  28058. tail: {
  28059. height: math.unit(18, "meters"),
  28060. name: "Tail",
  28061. image: {
  28062. source: "./media/characters/kirina-violet/tail.svg"
  28063. }
  28064. },
  28065. },
  28066. [
  28067. {
  28068. name: "Macro",
  28069. height: math.unit(63.4, "meters"),
  28070. default: true
  28071. },
  28072. ]
  28073. ))
  28074. characterMakers.push(() => makeCharacter(
  28075. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28076. {
  28077. front: {
  28078. height: math.unit(60, "feet"),
  28079. name: "Front",
  28080. image: {
  28081. source: "./media/characters/cat-gigachu/front.svg",
  28082. extra: 1024 / 780,
  28083. bottom: 23 / 1047
  28084. }
  28085. },
  28086. back: {
  28087. height: math.unit(60, "feet"),
  28088. name: "Back",
  28089. image: {
  28090. source: "./media/characters/cat-gigachu/back.svg",
  28091. extra: 1024 / 780,
  28092. bottom: 23 / 1047
  28093. }
  28094. },
  28095. },
  28096. [
  28097. {
  28098. name: "Dynamax",
  28099. height: math.unit(60, "feet"),
  28100. default: true
  28101. },
  28102. ]
  28103. ))
  28104. characterMakers.push(() => makeCharacter(
  28105. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28106. {
  28107. front: {
  28108. height: math.unit(6, "feet"),
  28109. weight: math.unit(150, "lb"),
  28110. name: "Front",
  28111. image: {
  28112. source: "./media/characters/sfaiyan/front.svg",
  28113. extra: 999 / 978,
  28114. bottom: 5 / 1004
  28115. }
  28116. },
  28117. },
  28118. [
  28119. {
  28120. name: "Normal",
  28121. height: math.unit(1.82, "meters")
  28122. },
  28123. {
  28124. name: "Giant",
  28125. height: math.unit(2.27, "km"),
  28126. default: true
  28127. },
  28128. ]
  28129. ))
  28130. characterMakers.push(() => makeCharacter(
  28131. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28132. {
  28133. front: {
  28134. height: math.unit(179, "cm"),
  28135. weight: math.unit(100, "kg"),
  28136. name: "Front",
  28137. image: {
  28138. source: "./media/characters/raunehkeli/front.svg",
  28139. extra: 1934 / 1926,
  28140. bottom: 0 / 1934
  28141. }
  28142. },
  28143. },
  28144. [
  28145. {
  28146. name: "Normal",
  28147. height: math.unit(179, "cm")
  28148. },
  28149. {
  28150. name: "Maximum",
  28151. height: math.unit(575, "meters"),
  28152. default: true
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28158. {
  28159. front: {
  28160. height: math.unit(6, "feet"),
  28161. weight: math.unit(150, "lb"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28165. extra: 2625 / 2518,
  28166. bottom: 60 / 2685
  28167. }
  28168. },
  28169. },
  28170. [
  28171. {
  28172. name: "Normal",
  28173. height: math.unit(6 + 2 / 12, "feet"),
  28174. default: true
  28175. },
  28176. {
  28177. name: "Macro",
  28178. height: math.unit(1180, "feet")
  28179. },
  28180. ]
  28181. ))
  28182. characterMakers.push(() => makeCharacter(
  28183. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28184. {
  28185. front: {
  28186. height: math.unit(5 + 6 / 12, "feet"),
  28187. weight: math.unit(108, "lb"),
  28188. name: "Front",
  28189. image: {
  28190. source: "./media/characters/lilith-zott/front.svg",
  28191. extra: 2510 / 2238,
  28192. bottom: 100 / 2610
  28193. }
  28194. },
  28195. frontDressed: {
  28196. height: math.unit(5 + 6 / 12, "feet"),
  28197. weight: math.unit(108, "lb"),
  28198. name: "Front (Dressed)",
  28199. image: {
  28200. source: "./media/characters/lilith-zott/front-dressed.svg",
  28201. extra: 2510 / 2238,
  28202. bottom: 100 / 2610
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(5 + 6 / 12, "feet")
  28210. },
  28211. {
  28212. name: "Macro",
  28213. height: math.unit(200, "feet"),
  28214. default: true
  28215. },
  28216. {
  28217. name: "Macro+",
  28218. height: math.unit(1030, "feet")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(6, "feet"),
  28227. weight: math.unit(150, "lb"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28231. extra: 2567 / 2435,
  28232. bottom: 39 / 2606
  28233. }
  28234. },
  28235. frontSuper: {
  28236. height: math.unit(6, "feet"),
  28237. name: "Front (Super)",
  28238. image: {
  28239. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28240. extra: 2567 / 2435,
  28241. bottom: 39 / 2606
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Normal",
  28248. height: math.unit(5 + 10 / 12, "feet")
  28249. },
  28250. {
  28251. name: "Macro",
  28252. height: math.unit(220, "feet"),
  28253. default: true
  28254. },
  28255. {
  28256. name: "Macro+",
  28257. height: math.unit(1100, "feet")
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28263. {
  28264. front: {
  28265. height: math.unit(100, "miles"),
  28266. name: "Front",
  28267. image: {
  28268. source: "./media/characters/sona/front.svg",
  28269. extra: 2433 / 2201,
  28270. bottom: 53 / 2486
  28271. }
  28272. },
  28273. foot: {
  28274. height: math.unit(16.1, "miles"),
  28275. name: "Foot",
  28276. image: {
  28277. source: "./media/characters/sona/foot.svg"
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Macro",
  28284. height: math.unit(100, "miles"),
  28285. default: true
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28291. {
  28292. front: {
  28293. height: math.unit(6, "feet"),
  28294. weight: math.unit(150, "lb"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/bailey/front.svg",
  28298. extra: 1778 / 1724,
  28299. bottom: 30 / 1808
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Micro",
  28306. height: math.unit(4, "inches")
  28307. },
  28308. {
  28309. name: "Normal",
  28310. height: math.unit(5 + 5 / 12, "feet"),
  28311. default: true
  28312. },
  28313. {
  28314. name: "Macro",
  28315. height: math.unit(250, "feet")
  28316. },
  28317. {
  28318. name: "Megamacro",
  28319. height: math.unit(100, "miles")
  28320. },
  28321. ]
  28322. ))
  28323. characterMakers.push(() => makeCharacter(
  28324. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28325. {
  28326. front: {
  28327. height: math.unit(5 + 2 / 12, "feet"),
  28328. weight: math.unit(120, "lb"),
  28329. name: "Front",
  28330. image: {
  28331. source: "./media/characters/snaps/front.svg",
  28332. extra: 2370 / 2177,
  28333. bottom: 48 / 2418
  28334. }
  28335. },
  28336. back: {
  28337. height: math.unit(5 + 2 / 12, "feet"),
  28338. weight: math.unit(120, "lb"),
  28339. name: "Back",
  28340. image: {
  28341. source: "./media/characters/snaps/back.svg",
  28342. extra: 2408 / 2258,
  28343. bottom: 15 / 2423
  28344. }
  28345. },
  28346. },
  28347. [
  28348. {
  28349. name: "Micro",
  28350. height: math.unit(9, "inches")
  28351. },
  28352. {
  28353. name: "Normal",
  28354. height: math.unit(5 + 2 / 12, "feet"),
  28355. default: true
  28356. },
  28357. {
  28358. name: "Mini Macro",
  28359. height: math.unit(10, "feet")
  28360. },
  28361. ]
  28362. ))
  28363. characterMakers.push(() => makeCharacter(
  28364. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28365. {
  28366. front: {
  28367. height: math.unit(1.8, "meters"),
  28368. weight: math.unit(85, "kg"),
  28369. name: "Front",
  28370. image: {
  28371. source: "./media/characters/azteck/front.svg",
  28372. extra: 2815 / 2625,
  28373. bottom: 89 / 2904
  28374. }
  28375. },
  28376. back: {
  28377. height: math.unit(1.8, "meters"),
  28378. weight: math.unit(85, "kg"),
  28379. name: "Back",
  28380. image: {
  28381. source: "./media/characters/azteck/back.svg",
  28382. extra: 2856 / 2648,
  28383. bottom: 85 / 2941
  28384. }
  28385. },
  28386. frontDressed: {
  28387. height: math.unit(1.8, "meters"),
  28388. weight: math.unit(85, "kg"),
  28389. name: "Front (Dressed)",
  28390. image: {
  28391. source: "./media/characters/azteck/front-dressed.svg",
  28392. extra: 2147 / 2003,
  28393. bottom: 68 / 2215
  28394. }
  28395. },
  28396. head: {
  28397. height: math.unit(0.47, "meters"),
  28398. weight: math.unit(85, "kg"),
  28399. name: "Head",
  28400. image: {
  28401. source: "./media/characters/azteck/head.svg"
  28402. }
  28403. },
  28404. },
  28405. [
  28406. {
  28407. name: "Bite sized",
  28408. height: math.unit(16, "cm")
  28409. },
  28410. {
  28411. name: "Normal",
  28412. height: math.unit(1.8, "meters"),
  28413. default: true
  28414. },
  28415. ]
  28416. ))
  28417. characterMakers.push(() => makeCharacter(
  28418. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28419. {
  28420. front: {
  28421. height: math.unit(6, "feet"),
  28422. weight: math.unit(150, "lb"),
  28423. name: "Front",
  28424. image: {
  28425. source: "./media/characters/pidge/front.svg",
  28426. extra: 620 / 588,
  28427. bottom: 9 / 629
  28428. }
  28429. },
  28430. back: {
  28431. height: math.unit(6, "feet"),
  28432. weight: math.unit(150, "lb"),
  28433. name: "Back",
  28434. image: {
  28435. source: "./media/characters/pidge/back.svg",
  28436. extra: 620 / 588,
  28437. bottom: 9 / 629
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Macro",
  28444. height: math.unit(1, "mile"),
  28445. default: true
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(6, "feet"),
  28454. weight: math.unit(150, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/en/front.svg",
  28458. extra: 1697 / 1563,
  28459. bottom: 103 / 1800
  28460. }
  28461. },
  28462. back: {
  28463. height: math.unit(6, "feet"),
  28464. weight: math.unit(150, "lb"),
  28465. name: "Back",
  28466. image: {
  28467. source: "./media/characters/en/back.svg",
  28468. extra: 1700 / 1570,
  28469. bottom: 51 / 1751
  28470. }
  28471. },
  28472. frontDressed: {
  28473. height: math.unit(6, "feet"),
  28474. weight: math.unit(150, "lb"),
  28475. name: "Front (Dressed)",
  28476. image: {
  28477. source: "./media/characters/en/front-dressed.svg",
  28478. extra: 1697 / 1563,
  28479. bottom: 103 / 1800
  28480. }
  28481. },
  28482. backDressed: {
  28483. height: math.unit(6, "feet"),
  28484. weight: math.unit(150, "lb"),
  28485. name: "Back (Dressed)",
  28486. image: {
  28487. source: "./media/characters/en/back-dressed.svg",
  28488. extra: 1700 / 1570,
  28489. bottom: 51 / 1751
  28490. }
  28491. },
  28492. },
  28493. [
  28494. {
  28495. name: "Macro",
  28496. height: math.unit(210, "feet"),
  28497. default: true
  28498. },
  28499. ]
  28500. ))
  28501. characterMakers.push(() => makeCharacter(
  28502. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28503. {
  28504. front: {
  28505. height: math.unit(6, "feet"),
  28506. weight: math.unit(150, "lb"),
  28507. name: "Front",
  28508. image: {
  28509. source: "./media/characters/haze-orris/front.svg",
  28510. extra: 3975 / 3525,
  28511. bottom: 137 / 4112
  28512. }
  28513. },
  28514. },
  28515. [
  28516. {
  28517. name: "Micro",
  28518. height: math.unit(150, "mm"),
  28519. default: true
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(6, "feet"),
  28528. weight: math.unit(150, "lb"),
  28529. name: "Front",
  28530. image: {
  28531. source: "./media/characters/casselene-yaro/front.svg",
  28532. extra: 4721 / 4541,
  28533. bottom: 82 / 4803
  28534. }
  28535. },
  28536. back: {
  28537. height: math.unit(6, "feet"),
  28538. weight: math.unit(150, "lb"),
  28539. name: "Back",
  28540. image: {
  28541. source: "./media/characters/casselene-yaro/back.svg",
  28542. extra: 4569 / 4377,
  28543. bottom: 69 / 4638
  28544. }
  28545. },
  28546. frontDressed: {
  28547. height: math.unit(6, "feet"),
  28548. weight: math.unit(150, "lb"),
  28549. name: "Front-dressed",
  28550. image: {
  28551. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28552. extra: 4721 / 4541,
  28553. bottom: 82 / 4803
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Macro",
  28560. height: math.unit(190, "feet")
  28561. },
  28562. ]
  28563. ))
  28564. characterMakers.push(() => makeCharacter(
  28565. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28566. {
  28567. front: {
  28568. height: math.unit(6, "feet"),
  28569. weight: math.unit(150, "lb"),
  28570. name: "Front",
  28571. image: {
  28572. source: "./media/characters/myra-rue-delore/front.svg",
  28573. extra: 1340 / 1308,
  28574. bottom: 67 / 1407
  28575. }
  28576. },
  28577. back: {
  28578. height: math.unit(6, "feet"),
  28579. weight: math.unit(150, "lb"),
  28580. name: "Back",
  28581. image: {
  28582. source: "./media/characters/myra-rue-delore/back.svg",
  28583. extra: 1341 / 1310,
  28584. bottom: 40 / 1381
  28585. }
  28586. },
  28587. frontDressed: {
  28588. height: math.unit(6, "feet"),
  28589. weight: math.unit(150, "lb"),
  28590. name: "Front (Dressed)",
  28591. image: {
  28592. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28593. extra: 1340 / 1308,
  28594. bottom: 67 / 1407
  28595. }
  28596. },
  28597. },
  28598. [
  28599. {
  28600. name: "Macro",
  28601. height: math.unit(150, "feet")
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(10, "feet"),
  28610. weight: math.unit(15015, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/fem!plat/front.svg",
  28614. extra: 2799 / 2604,
  28615. bottom: 149 / 2948
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(10, "feet"),
  28623. default: true
  28624. },
  28625. {
  28626. name: "Macro",
  28627. height: math.unit(100, "feet")
  28628. },
  28629. {
  28630. name: "Megamacro",
  28631. height: math.unit(1000, "feet")
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(15 + 5 / 12, "feet"),
  28640. weight: math.unit(4600, "lb"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/neapolitan-ananassa/front.svg",
  28644. extra: 2903 / 2736,
  28645. bottom: 0 / 2903
  28646. }
  28647. },
  28648. side: {
  28649. height: math.unit(15 + 5 / 12, "feet"),
  28650. weight: math.unit(4600, "lb"),
  28651. name: "Side",
  28652. image: {
  28653. source: "./media/characters/neapolitan-ananassa/side.svg",
  28654. extra: 2925 / 2719,
  28655. bottom: 0 / 2925
  28656. }
  28657. },
  28658. back: {
  28659. height: math.unit(15 + 5 / 12, "feet"),
  28660. weight: math.unit(4600, "lb"),
  28661. name: "Back",
  28662. image: {
  28663. source: "./media/characters/neapolitan-ananassa/back.svg",
  28664. extra: 2903 / 2736,
  28665. bottom: 0 / 2903
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(15 + 5 / 12, "feet"),
  28673. default: true
  28674. },
  28675. {
  28676. name: "Post-Millenium",
  28677. height: math.unit(35 + 5 / 12, "feet")
  28678. },
  28679. {
  28680. name: "Post-Era",
  28681. height: math.unit(450 + 5 / 12, "feet")
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28687. {
  28688. front: {
  28689. height: math.unit(300, "meters"),
  28690. weight: math.unit(125000, "tonnes"),
  28691. name: "Front",
  28692. image: {
  28693. source: "./media/characters/pazuzu/front.svg",
  28694. extra: 877 / 794,
  28695. bottom: 47 / 924
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Macro",
  28702. height: math.unit(300, "meters"),
  28703. default: true
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28709. {
  28710. side: {
  28711. height: math.unit(10 + 7 / 12, "feet"),
  28712. weight: math.unit(2.5, "tons"),
  28713. name: "Side",
  28714. image: {
  28715. source: "./media/characters/aasha/side.svg",
  28716. extra: 1345 / 1245,
  28717. bottom: 111 / 1456
  28718. }
  28719. },
  28720. back: {
  28721. height: math.unit(10 + 7 / 12, "feet"),
  28722. weight: math.unit(2.5, "tons"),
  28723. name: "Back",
  28724. image: {
  28725. source: "./media/characters/aasha/back.svg",
  28726. extra: 1133 / 1057,
  28727. bottom: 257 / 1390
  28728. }
  28729. },
  28730. },
  28731. [
  28732. {
  28733. name: "Normal",
  28734. height: math.unit(10 + 7 / 12, "feet"),
  28735. default: true
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(6 + 3 / 12, "feet"),
  28744. name: "Front",
  28745. image: {
  28746. source: "./media/characters/nevan/front.svg",
  28747. extra: 704 / 704,
  28748. bottom: 28 / 732
  28749. }
  28750. },
  28751. back: {
  28752. height: math.unit(6 + 3 / 12, "feet"),
  28753. name: "Back",
  28754. image: {
  28755. source: "./media/characters/nevan/back.svg",
  28756. extra: 714 / 714,
  28757. bottom: 21 / 735
  28758. }
  28759. },
  28760. frontFlaccid: {
  28761. height: math.unit(6 + 3 / 12, "feet"),
  28762. name: "Front (Flaccid)",
  28763. image: {
  28764. source: "./media/characters/nevan/front-flaccid.svg",
  28765. extra: 704 / 704,
  28766. bottom: 28 / 732
  28767. }
  28768. },
  28769. frontErect: {
  28770. height: math.unit(6 + 3 / 12, "feet"),
  28771. name: "Front (Erect)",
  28772. image: {
  28773. source: "./media/characters/nevan/front-erect.svg",
  28774. extra: 704 / 704,
  28775. bottom: 28 / 732
  28776. }
  28777. },
  28778. backFlaccid: {
  28779. height: math.unit(6 + 3 / 12, "feet"),
  28780. name: "Back (Flaccid)",
  28781. image: {
  28782. source: "./media/characters/nevan/back-flaccid.svg",
  28783. extra: 714 / 714,
  28784. bottom: 21 / 735
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Normal",
  28791. height: math.unit(6 + 3 / 12, "feet"),
  28792. default: true
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(4, "feet"),
  28801. name: "Front",
  28802. image: {
  28803. source: "./media/characters/arhan/front.svg",
  28804. extra: 3368 / 3133,
  28805. bottom: 0 / 3368
  28806. }
  28807. },
  28808. side: {
  28809. height: math.unit(4, "feet"),
  28810. name: "Side",
  28811. image: {
  28812. source: "./media/characters/arhan/side.svg",
  28813. extra: 3347 / 3105,
  28814. bottom: 0 / 3347
  28815. }
  28816. },
  28817. tongue: {
  28818. height: math.unit(1.42, "feet"),
  28819. name: "Tongue",
  28820. image: {
  28821. source: "./media/characters/arhan/tongue.svg"
  28822. }
  28823. },
  28824. head: {
  28825. height: math.unit(0.85, "feet"),
  28826. name: "Head",
  28827. image: {
  28828. source: "./media/characters/arhan/head.svg"
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Normal",
  28835. height: math.unit(4, "feet"),
  28836. default: true
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(5 + 7.5 / 12, "feet"),
  28845. weight: math.unit(120, "lb"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/digi-duncan/front.svg",
  28849. extra: 330 / 326,
  28850. bottom: 16 / 346
  28851. }
  28852. },
  28853. side: {
  28854. height: math.unit(5 + 7.5 / 12, "feet"),
  28855. weight: math.unit(120, "lb"),
  28856. name: "Side",
  28857. image: {
  28858. source: "./media/characters/digi-duncan/side.svg",
  28859. extra: 341 / 337,
  28860. bottom: 1 / 342
  28861. }
  28862. },
  28863. back: {
  28864. height: math.unit(5 + 7.5 / 12, "feet"),
  28865. weight: math.unit(120, "lb"),
  28866. name: "Back",
  28867. image: {
  28868. source: "./media/characters/digi-duncan/back.svg",
  28869. extra: 330 / 326,
  28870. bottom: 12 / 342
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Speck",
  28877. height: math.unit(0.25, "mm")
  28878. },
  28879. {
  28880. name: "Micro",
  28881. height: math.unit(5, "mm")
  28882. },
  28883. {
  28884. name: "Tiny",
  28885. height: math.unit(0.5, "inches"),
  28886. default: true
  28887. },
  28888. {
  28889. name: "Human",
  28890. height: math.unit(5 + 7.5 / 12, "feet")
  28891. },
  28892. {
  28893. name: "Minigiant",
  28894. height: math.unit(8 + 5.25, "feet")
  28895. },
  28896. {
  28897. name: "Giant",
  28898. height: math.unit(2000, "feet")
  28899. },
  28900. {
  28901. name: "Mega",
  28902. height: math.unit(371.1, "miles")
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28908. {
  28909. front: {
  28910. height: math.unit(2, "meters"),
  28911. weight: math.unit(350, "kg"),
  28912. name: "Front",
  28913. image: {
  28914. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28915. extra: 898 / 838,
  28916. bottom: 9 / 907
  28917. }
  28918. },
  28919. },
  28920. [
  28921. {
  28922. name: "Micro",
  28923. height: math.unit(8, "meters")
  28924. },
  28925. {
  28926. name: "Normal",
  28927. height: math.unit(50, "meters"),
  28928. default: true
  28929. },
  28930. {
  28931. name: "Macro",
  28932. height: math.unit(500, "meters")
  28933. },
  28934. ]
  28935. ))
  28936. characterMakers.push(() => makeCharacter(
  28937. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28938. {
  28939. front: {
  28940. height: math.unit(6 + 6 / 12, "feet"),
  28941. name: "Front",
  28942. image: {
  28943. source: "./media/characters/khardesh/front.svg",
  28944. extra: 888 / 797,
  28945. bottom: 25 / 913
  28946. }
  28947. },
  28948. },
  28949. [
  28950. {
  28951. name: "Normal",
  28952. height: math.unit(6 + 6 / 12, "feet"),
  28953. default: true
  28954. },
  28955. {
  28956. name: "Normal+",
  28957. height: math.unit(4, "meters")
  28958. },
  28959. {
  28960. name: "Macro",
  28961. height: math.unit(50, "meters")
  28962. },
  28963. {
  28964. name: "Macro+",
  28965. height: math.unit(100, "meters")
  28966. },
  28967. {
  28968. name: "Megamacro",
  28969. height: math.unit(20, "km")
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(6, "feet"),
  28978. weight: math.unit(150, "lb"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/kosho/front.svg",
  28982. extra: 1847 / 1847,
  28983. bottom: 86 / 1933
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Second-stage micro",
  28990. height: math.unit(0.5, "inches")
  28991. },
  28992. {
  28993. name: "First-stage micro",
  28994. height: math.unit(6, "inches")
  28995. },
  28996. {
  28997. name: "Normal",
  28998. height: math.unit(6, "feet"),
  28999. default: true
  29000. },
  29001. {
  29002. name: "First-stage macro",
  29003. height: math.unit(72, "feet")
  29004. },
  29005. {
  29006. name: "Second-stage macro",
  29007. height: math.unit(864, "feet")
  29008. },
  29009. ]
  29010. ))
  29011. characterMakers.push(() => makeCharacter(
  29012. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29013. {
  29014. normal: {
  29015. height: math.unit(4 + 6 / 12, "feet"),
  29016. name: "Normal",
  29017. image: {
  29018. source: "./media/characters/hydra/normal.svg",
  29019. extra: 2833 / 2634,
  29020. bottom: 68 / 2901
  29021. }
  29022. },
  29023. smol: {
  29024. height: math.unit(0.705, "inches"),
  29025. name: "Smol",
  29026. image: {
  29027. source: "./media/characters/hydra/smol.svg",
  29028. extra: 2715 / 2540,
  29029. bottom: 0 / 2715
  29030. }
  29031. },
  29032. },
  29033. [
  29034. {
  29035. name: "Normal",
  29036. height: math.unit(4 + 6 / 12, "feet"),
  29037. default: true
  29038. }
  29039. ]
  29040. ))
  29041. characterMakers.push(() => makeCharacter(
  29042. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29043. {
  29044. front: {
  29045. height: math.unit(0.6, "cm"),
  29046. name: "Front",
  29047. image: {
  29048. source: "./media/characters/daz/front.svg",
  29049. extra: 1682 / 1164,
  29050. bottom: 42 / 1724
  29051. }
  29052. },
  29053. },
  29054. [
  29055. {
  29056. name: "Normal",
  29057. height: math.unit(0.6, "cm"),
  29058. default: true
  29059. },
  29060. ]
  29061. ))
  29062. characterMakers.push(() => makeCharacter(
  29063. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29064. {
  29065. front: {
  29066. height: math.unit(6, "feet"),
  29067. weight: math.unit(235, "lb"),
  29068. name: "Front",
  29069. image: {
  29070. source: "./media/characters/theo-pangolin/front.svg",
  29071. extra: 1996 / 1969,
  29072. bottom: 115 / 2111
  29073. }
  29074. },
  29075. back: {
  29076. height: math.unit(6, "feet"),
  29077. weight: math.unit(235, "lb"),
  29078. name: "Back",
  29079. image: {
  29080. source: "./media/characters/theo-pangolin/back.svg",
  29081. extra: 1979 / 1979,
  29082. bottom: 40 / 2019
  29083. }
  29084. },
  29085. feral: {
  29086. height: math.unit(2, "feet"),
  29087. weight: math.unit(30, "lb"),
  29088. name: "Feral",
  29089. image: {
  29090. source: "./media/characters/theo-pangolin/feral.svg",
  29091. extra: 803 / 791,
  29092. bottom: 181 / 984
  29093. }
  29094. },
  29095. footFive: {
  29096. height: math.unit(1.43, "feet"),
  29097. name: "Foot (Five Toes)",
  29098. image: {
  29099. source: "./media/characters/theo-pangolin/foot-five.svg"
  29100. }
  29101. },
  29102. footFour: {
  29103. height: math.unit(1.43, "feet"),
  29104. name: "Foot (Four Toes)",
  29105. image: {
  29106. source: "./media/characters/theo-pangolin/foot-four.svg"
  29107. }
  29108. },
  29109. handFour: {
  29110. height: math.unit(0.81, "feet"),
  29111. name: "Hand (Four Fingers)",
  29112. image: {
  29113. source: "./media/characters/theo-pangolin/hand-four.svg"
  29114. }
  29115. },
  29116. handThree: {
  29117. height: math.unit(0.81, "feet"),
  29118. name: "Hand (Three Fingers)",
  29119. image: {
  29120. source: "./media/characters/theo-pangolin/hand-three.svg"
  29121. }
  29122. },
  29123. headFront: {
  29124. height: math.unit(1.37, "feet"),
  29125. name: "Head (Front)",
  29126. image: {
  29127. source: "./media/characters/theo-pangolin/head-front.svg"
  29128. }
  29129. },
  29130. headSide: {
  29131. height: math.unit(1.43, "feet"),
  29132. name: "Head (Side)",
  29133. image: {
  29134. source: "./media/characters/theo-pangolin/head-side.svg"
  29135. }
  29136. },
  29137. tongue: {
  29138. height: math.unit(2.29, "feet"),
  29139. name: "Tongue",
  29140. image: {
  29141. source: "./media/characters/theo-pangolin/tongue.svg"
  29142. }
  29143. },
  29144. },
  29145. [
  29146. {
  29147. name: "Normal",
  29148. height: math.unit(6, "feet")
  29149. },
  29150. {
  29151. name: "Macro",
  29152. height: math.unit(400, "feet"),
  29153. default: true
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(6, "inches"),
  29162. weight: math.unit(0.036, "kg"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/renée/front.svg",
  29166. extra: 900 / 886,
  29167. bottom: 8 / 908
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Nano",
  29174. height: math.unit(1, "nm")
  29175. },
  29176. {
  29177. name: "Micro",
  29178. height: math.unit(1, "mm")
  29179. },
  29180. {
  29181. name: "Normal",
  29182. height: math.unit(6, "inches")
  29183. },
  29184. {
  29185. name: "Macro",
  29186. height: math.unit(2000, "feet"),
  29187. default: true
  29188. },
  29189. {
  29190. name: "Megamacro",
  29191. height: math.unit(2, "km")
  29192. },
  29193. {
  29194. name: "Gigamacro",
  29195. height: math.unit(2000, "km")
  29196. },
  29197. {
  29198. name: "Teramacro",
  29199. height: math.unit(250000, "km")
  29200. },
  29201. ]
  29202. ))
  29203. characterMakers.push(() => makeCharacter(
  29204. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29205. {
  29206. front: {
  29207. height: math.unit(4, "meters"),
  29208. weight: math.unit(150, "kg"),
  29209. name: "Front",
  29210. image: {
  29211. source: "./media/characters/caledvwlch/front.svg",
  29212. extra: 1760 / 1551,
  29213. bottom: 28 / 1788
  29214. }
  29215. },
  29216. side: {
  29217. height: math.unit(4, "meters"),
  29218. weight: math.unit(150, "kg"),
  29219. name: "Side",
  29220. image: {
  29221. source: "./media/characters/caledvwlch/side.svg",
  29222. extra: 1605 / 1536,
  29223. bottom: 31 / 1636
  29224. }
  29225. },
  29226. back: {
  29227. height: math.unit(4, "meters"),
  29228. weight: math.unit(150, "kg"),
  29229. name: "Back",
  29230. image: {
  29231. source: "./media/characters/caledvwlch/back.svg",
  29232. extra: 1635 / 1565,
  29233. bottom: 27 / 1662
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "\"Incognito\"",
  29240. height: math.unit(4, "meters")
  29241. },
  29242. {
  29243. name: "Small rampage",
  29244. height: math.unit(600, "meters")
  29245. },
  29246. {
  29247. name: "Mega",
  29248. height: math.unit(30, "km")
  29249. },
  29250. {
  29251. name: "Home-size",
  29252. height: math.unit(50, "km"),
  29253. default: true
  29254. },
  29255. {
  29256. name: "Giga",
  29257. height: math.unit(300, "km")
  29258. },
  29259. {
  29260. name: "Lounging",
  29261. height: math.unit(11000, "km")
  29262. },
  29263. {
  29264. name: "Planet snacking",
  29265. height: math.unit(2000000, "km")
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(6, "feet"),
  29274. weight: math.unit(215, "lb"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/sapphire-svell/front.svg",
  29278. extra: 495 / 455,
  29279. bottom: 20 / 515
  29280. }
  29281. },
  29282. back: {
  29283. height: math.unit(6, "feet"),
  29284. weight: math.unit(216, "lb"),
  29285. name: "Back",
  29286. image: {
  29287. source: "./media/characters/sapphire-svell/back.svg",
  29288. extra: 497 / 477,
  29289. bottom: 7 / 504
  29290. }
  29291. },
  29292. maw: {
  29293. height: math.unit(1.57, "feet"),
  29294. name: "Maw",
  29295. image: {
  29296. source: "./media/characters/sapphire-svell/maw.svg"
  29297. }
  29298. },
  29299. foot: {
  29300. height: math.unit(1.07, "feet"),
  29301. name: "Foot",
  29302. image: {
  29303. source: "./media/characters/sapphire-svell/foot.svg"
  29304. }
  29305. },
  29306. toering: {
  29307. height: math.unit(1.7, "inch"),
  29308. name: "Toering",
  29309. image: {
  29310. source: "./media/characters/sapphire-svell/toering.svg"
  29311. }
  29312. },
  29313. },
  29314. [
  29315. {
  29316. name: "Normal",
  29317. height: math.unit(300, "feet"),
  29318. default: true
  29319. },
  29320. {
  29321. name: "Augmented",
  29322. height: math.unit(1250, "feet")
  29323. },
  29324. {
  29325. name: "Unleashed",
  29326. height: math.unit(3000, "feet")
  29327. },
  29328. ]
  29329. ))
  29330. characterMakers.push(() => makeCharacter(
  29331. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29332. {
  29333. side: {
  29334. height: math.unit(2 + 3 / 12, "feet"),
  29335. weight: math.unit(110, "lb"),
  29336. name: "Side",
  29337. image: {
  29338. source: "./media/characters/glitch-flux/side.svg",
  29339. extra: 997 / 805,
  29340. bottom: 20 / 1017
  29341. }
  29342. },
  29343. },
  29344. [
  29345. {
  29346. name: "Normal",
  29347. height: math.unit(2 + 3 / 12, "feet"),
  29348. default: true
  29349. },
  29350. ]
  29351. ))
  29352. characterMakers.push(() => makeCharacter(
  29353. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29354. {
  29355. front: {
  29356. height: math.unit(4, "meters"),
  29357. name: "Front",
  29358. image: {
  29359. source: "./media/characters/mid/front.svg",
  29360. extra: 507 / 476,
  29361. bottom: 17 / 524
  29362. }
  29363. },
  29364. back: {
  29365. height: math.unit(4, "meters"),
  29366. name: "Back",
  29367. image: {
  29368. source: "./media/characters/mid/back.svg",
  29369. extra: 519 / 487,
  29370. bottom: 7 / 526
  29371. }
  29372. },
  29373. stuck: {
  29374. height: math.unit(2.2, "meters"),
  29375. name: "Stuck",
  29376. image: {
  29377. source: "./media/characters/mid/stuck.svg",
  29378. extra: 1951 / 1869,
  29379. bottom: 88 / 2039
  29380. }
  29381. }
  29382. },
  29383. [
  29384. {
  29385. name: "Normal",
  29386. height: math.unit(4, "meters"),
  29387. default: true
  29388. },
  29389. {
  29390. name: "Big",
  29391. height: math.unit(10, "meters")
  29392. },
  29393. {
  29394. name: "Macro",
  29395. height: math.unit(800, "meters")
  29396. },
  29397. {
  29398. name: "Megamacro",
  29399. height: math.unit(100, "km")
  29400. },
  29401. {
  29402. name: "Overgrown",
  29403. height: math.unit(1, "parsec")
  29404. },
  29405. ]
  29406. ))
  29407. characterMakers.push(() => makeCharacter(
  29408. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29409. {
  29410. front: {
  29411. height: math.unit(2.5, "meters"),
  29412. weight: math.unit(225, "kg"),
  29413. name: "Front",
  29414. image: {
  29415. source: "./media/characters/iris/front.svg",
  29416. extra: 3348 / 3251,
  29417. bottom: 205 / 3553
  29418. }
  29419. },
  29420. maw: {
  29421. height: math.unit(0.56, "meter"),
  29422. name: "Maw",
  29423. image: {
  29424. source: "./media/characters/iris/maw.svg"
  29425. }
  29426. },
  29427. },
  29428. [
  29429. {
  29430. name: "Mewter cat",
  29431. height: math.unit(1.2, "meters")
  29432. },
  29433. {
  29434. name: "Minimacro",
  29435. height: math.unit(2.5, "meters"),
  29436. default: true
  29437. },
  29438. {
  29439. name: "Macro",
  29440. height: math.unit(180, "meters")
  29441. },
  29442. {
  29443. name: "Megamacro",
  29444. height: math.unit(2746, "meters")
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29450. {
  29451. front: {
  29452. height: math.unit(6, "feet"),
  29453. weight: math.unit(135, "lb"),
  29454. name: "Front",
  29455. image: {
  29456. source: "./media/characters/axel/front.svg",
  29457. extra: 908 / 908,
  29458. bottom: 58 / 966
  29459. }
  29460. },
  29461. side: {
  29462. height: math.unit(6, "feet"),
  29463. weight: math.unit(135, "lb"),
  29464. name: "Side",
  29465. image: {
  29466. source: "./media/characters/axel/side.svg",
  29467. extra: 958 / 958,
  29468. bottom: 11 / 969
  29469. }
  29470. },
  29471. back: {
  29472. height: math.unit(6, "feet"),
  29473. weight: math.unit(135, "lb"),
  29474. name: "Back",
  29475. image: {
  29476. source: "./media/characters/axel/back.svg",
  29477. extra: 887 / 887,
  29478. bottom: 34 / 921
  29479. }
  29480. },
  29481. head: {
  29482. height: math.unit(1.07, "feet"),
  29483. name: "Head",
  29484. image: {
  29485. source: "./media/characters/axel/head.svg"
  29486. }
  29487. },
  29488. beak: {
  29489. height: math.unit(1.4, "feet"),
  29490. name: "Beak",
  29491. image: {
  29492. source: "./media/characters/axel/beak.svg"
  29493. }
  29494. },
  29495. beakSide: {
  29496. height: math.unit(1.4, "feet"),
  29497. name: "Beak Side",
  29498. image: {
  29499. source: "./media/characters/axel/beak-side.svg"
  29500. }
  29501. },
  29502. sheath: {
  29503. height: math.unit(0.5, "feet"),
  29504. name: "Sheath",
  29505. image: {
  29506. source: "./media/characters/axel/sheath.svg"
  29507. }
  29508. },
  29509. dick: {
  29510. height: math.unit(0.98, "feet"),
  29511. name: "Dick",
  29512. image: {
  29513. source: "./media/characters/axel/dick.svg"
  29514. }
  29515. },
  29516. },
  29517. [
  29518. {
  29519. name: "Macro",
  29520. height: math.unit(68, "meters"),
  29521. default: true
  29522. },
  29523. ]
  29524. ))
  29525. characterMakers.push(() => makeCharacter(
  29526. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29527. {
  29528. front: {
  29529. height: math.unit(3.5, "meters"),
  29530. weight: math.unit(1200, "kg"),
  29531. name: "Front",
  29532. image: {
  29533. source: "./media/characters/joanna/front.svg",
  29534. extra: 1596 / 1488,
  29535. bottom: 29 / 1625
  29536. }
  29537. },
  29538. back: {
  29539. height: math.unit(3.5, "meters"),
  29540. weight: math.unit(1200, "kg"),
  29541. name: "Back",
  29542. image: {
  29543. source: "./media/characters/joanna/back.svg",
  29544. extra: 1594 / 1495,
  29545. bottom: 26 / 1620
  29546. }
  29547. },
  29548. frontShorts: {
  29549. height: math.unit(3.5, "meters"),
  29550. weight: math.unit(1200, "kg"),
  29551. name: "Front (Shorts)",
  29552. image: {
  29553. source: "./media/characters/joanna/front-shorts.svg",
  29554. extra: 1596 / 1488,
  29555. bottom: 29 / 1625
  29556. }
  29557. },
  29558. frontBiker: {
  29559. height: math.unit(3.5, "meters"),
  29560. weight: math.unit(1200, "kg"),
  29561. name: "Front (Biker)",
  29562. image: {
  29563. source: "./media/characters/joanna/front-biker.svg",
  29564. extra: 1596 / 1488,
  29565. bottom: 29 / 1625
  29566. }
  29567. },
  29568. backBiker: {
  29569. height: math.unit(3.5, "meters"),
  29570. weight: math.unit(1200, "kg"),
  29571. name: "Back (Biker)",
  29572. image: {
  29573. source: "./media/characters/joanna/back-biker.svg",
  29574. extra: 1594 / 1495,
  29575. bottom: 88 / 1682
  29576. }
  29577. },
  29578. bikeLeft: {
  29579. height: math.unit(2.4, "meters"),
  29580. weight: math.unit(1600, "kg"),
  29581. name: "Bike (Left)",
  29582. image: {
  29583. source: "./media/characters/joanna/bike-left.svg",
  29584. extra: 720 / 720,
  29585. bottom: 8 / 728
  29586. }
  29587. },
  29588. bikeRight: {
  29589. height: math.unit(2.4, "meters"),
  29590. weight: math.unit(1600, "kg"),
  29591. name: "Bike (Right)",
  29592. image: {
  29593. source: "./media/characters/joanna/bike-right.svg",
  29594. extra: 720 / 720,
  29595. bottom: 8 / 728
  29596. }
  29597. },
  29598. },
  29599. [
  29600. {
  29601. name: "Incognito",
  29602. height: math.unit(3.5, "meters")
  29603. },
  29604. {
  29605. name: "Casual Big",
  29606. height: math.unit(200, "meters")
  29607. },
  29608. {
  29609. name: "Macro",
  29610. height: math.unit(600, "meters")
  29611. },
  29612. {
  29613. name: "Original",
  29614. height: math.unit(20, "km"),
  29615. default: true
  29616. },
  29617. {
  29618. name: "Giga",
  29619. height: math.unit(400, "km")
  29620. },
  29621. {
  29622. name: "Lounging",
  29623. height: math.unit(1500, "km")
  29624. },
  29625. {
  29626. name: "Planetary",
  29627. height: math.unit(200000, "km")
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29633. {
  29634. front: {
  29635. height: math.unit(6, "feet"),
  29636. weight: math.unit(150, "lb"),
  29637. name: "Front",
  29638. image: {
  29639. source: "./media/characters/hugo-sigil/front.svg",
  29640. extra: 522 / 500,
  29641. bottom: 2 / 524
  29642. }
  29643. },
  29644. back: {
  29645. height: math.unit(6, "feet"),
  29646. weight: math.unit(150, "lb"),
  29647. name: "Back",
  29648. image: {
  29649. source: "./media/characters/hugo-sigil/back.svg",
  29650. extra: 519 / 495,
  29651. bottom: 5 / 524
  29652. }
  29653. },
  29654. maw: {
  29655. height: math.unit(1.4, "feet"),
  29656. weight: math.unit(150, "lb"),
  29657. name: "Maw",
  29658. image: {
  29659. source: "./media/characters/hugo-sigil/maw.svg"
  29660. }
  29661. },
  29662. feet: {
  29663. height: math.unit(1.56, "feet"),
  29664. weight: math.unit(150, "lb"),
  29665. name: "Feet",
  29666. image: {
  29667. source: "./media/characters/hugo-sigil/feet.svg",
  29668. extra: 177 / 177,
  29669. bottom: 12 / 189
  29670. }
  29671. },
  29672. },
  29673. [
  29674. {
  29675. name: "Normal",
  29676. height: math.unit(6, "feet")
  29677. },
  29678. {
  29679. name: "Macro",
  29680. height: math.unit(200, "feet"),
  29681. default: true
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(6, "feet"),
  29690. weight: math.unit(150, "lb"),
  29691. name: "Front",
  29692. image: {
  29693. source: "./media/characters/peri/front.svg",
  29694. extra: 2354 / 2233,
  29695. bottom: 49 / 2403
  29696. }
  29697. },
  29698. },
  29699. [
  29700. {
  29701. name: "Really Small",
  29702. height: math.unit(1, "nm")
  29703. },
  29704. {
  29705. name: "Micro",
  29706. height: math.unit(4, "inches")
  29707. },
  29708. {
  29709. name: "Normal",
  29710. height: math.unit(7, "inches"),
  29711. default: true
  29712. },
  29713. {
  29714. name: "Macro",
  29715. height: math.unit(400, "feet")
  29716. },
  29717. {
  29718. name: "Megamacro",
  29719. height: math.unit(100, "miles")
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29725. {
  29726. frontSlim: {
  29727. height: math.unit(7, "feet"),
  29728. name: "Front (Slim)",
  29729. image: {
  29730. source: "./media/characters/issilora/front-slim.svg",
  29731. extra: 529 / 449,
  29732. bottom: 53 / 582
  29733. }
  29734. },
  29735. sideSlim: {
  29736. height: math.unit(7, "feet"),
  29737. name: "Side (Slim)",
  29738. image: {
  29739. source: "./media/characters/issilora/side-slim.svg",
  29740. extra: 570 / 480,
  29741. bottom: 30 / 600
  29742. }
  29743. },
  29744. backSlim: {
  29745. height: math.unit(7, "feet"),
  29746. name: "Back (Slim)",
  29747. image: {
  29748. source: "./media/characters/issilora/back-slim.svg",
  29749. extra: 537 / 455,
  29750. bottom: 46 / 583
  29751. }
  29752. },
  29753. frontBuff: {
  29754. height: math.unit(7, "feet"),
  29755. name: "Front (Buff)",
  29756. image: {
  29757. source: "./media/characters/issilora/front-buff.svg",
  29758. extra: 2310 / 2035,
  29759. bottom: 335 / 2645
  29760. }
  29761. },
  29762. head: {
  29763. height: math.unit(1.94, "feet"),
  29764. name: "Head",
  29765. image: {
  29766. source: "./media/characters/issilora/head.svg"
  29767. }
  29768. },
  29769. },
  29770. [
  29771. {
  29772. name: "Minimum",
  29773. height: math.unit(7, "feet")
  29774. },
  29775. {
  29776. name: "Comfortable",
  29777. height: math.unit(17, "feet")
  29778. },
  29779. {
  29780. name: "Fun Size",
  29781. height: math.unit(47, "feet")
  29782. },
  29783. {
  29784. name: "Natural Macro",
  29785. height: math.unit(137, "feet"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Maximum Kaiju",
  29790. height: math.unit(397, "feet")
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29796. {
  29797. front: {
  29798. height: math.unit(50 + 9/12, "feet"),
  29799. weight: math.unit(32.8, "tons"),
  29800. name: "Front",
  29801. image: {
  29802. source: "./media/characters/irb'iiritaahn/front.svg",
  29803. extra: 1878/1826,
  29804. bottom: 326/2204
  29805. }
  29806. },
  29807. back: {
  29808. height: math.unit(50 + 9/12, "feet"),
  29809. weight: math.unit(32.8, "tons"),
  29810. name: "Back",
  29811. image: {
  29812. source: "./media/characters/irb'iiritaahn/back.svg",
  29813. extra: 2052/2018,
  29814. bottom: 152/2204
  29815. }
  29816. },
  29817. head: {
  29818. height: math.unit(12.86, "feet"),
  29819. name: "Head",
  29820. image: {
  29821. source: "./media/characters/irb'iiritaahn/head.svg"
  29822. }
  29823. },
  29824. maw: {
  29825. height: math.unit(9.66, "feet"),
  29826. name: "Maw",
  29827. image: {
  29828. source: "./media/characters/irb'iiritaahn/maw.svg"
  29829. }
  29830. },
  29831. frontDick: {
  29832. height: math.unit(8.78461, "feet"),
  29833. name: "Front Dick",
  29834. image: {
  29835. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29836. }
  29837. },
  29838. rearDick: {
  29839. height: math.unit(8.78461, "feet"),
  29840. name: "Rear Dick",
  29841. image: {
  29842. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29843. }
  29844. },
  29845. rearDickUnfolded: {
  29846. height: math.unit(8.78, "feet"),
  29847. name: "Rear Dick (Unfolded)",
  29848. image: {
  29849. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29850. }
  29851. },
  29852. wings: {
  29853. height: math.unit(43, "feet"),
  29854. name: "Wings",
  29855. image: {
  29856. source: "./media/characters/irb'iiritaahn/wings.svg"
  29857. }
  29858. },
  29859. },
  29860. [
  29861. {
  29862. name: "Macro",
  29863. height: math.unit(50 + 9/12, "feet"),
  29864. default: true
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29870. {
  29871. front: {
  29872. height: math.unit(205, "cm"),
  29873. weight: math.unit(102, "kg"),
  29874. name: "Front",
  29875. image: {
  29876. source: "./media/characters/irbisgreif/front.svg",
  29877. extra: 785/706,
  29878. bottom: 13/798
  29879. }
  29880. },
  29881. back: {
  29882. height: math.unit(205, "cm"),
  29883. weight: math.unit(102, "kg"),
  29884. name: "Back",
  29885. image: {
  29886. source: "./media/characters/irbisgreif/back.svg",
  29887. extra: 713/701,
  29888. bottom: 26/739
  29889. }
  29890. },
  29891. frontDressed: {
  29892. height: math.unit(216, "cm"),
  29893. weight: math.unit(102, "kg"),
  29894. name: "Front-dressed",
  29895. image: {
  29896. source: "./media/characters/irbisgreif/front-dressed.svg",
  29897. extra: 902/776,
  29898. bottom: 14/916
  29899. }
  29900. },
  29901. sideDressed: {
  29902. height: math.unit(195, "cm"),
  29903. weight: math.unit(102, "kg"),
  29904. name: "Side-dressed",
  29905. image: {
  29906. source: "./media/characters/irbisgreif/side-dressed.svg",
  29907. extra: 788/688,
  29908. bottom: 21/809
  29909. }
  29910. },
  29911. backDressed: {
  29912. height: math.unit(216, "cm"),
  29913. weight: math.unit(102, "kg"),
  29914. name: "Back-dressed",
  29915. image: {
  29916. source: "./media/characters/irbisgreif/back-dressed.svg",
  29917. extra: 901/783,
  29918. bottom: 10/911
  29919. }
  29920. },
  29921. dick: {
  29922. height: math.unit(0.49, "feet"),
  29923. name: "Dick",
  29924. image: {
  29925. source: "./media/characters/irbisgreif/dick.svg"
  29926. }
  29927. },
  29928. wingTop: {
  29929. height: math.unit(1.93 , "feet"),
  29930. name: "Wing-top",
  29931. image: {
  29932. source: "./media/characters/irbisgreif/wing-top.svg"
  29933. }
  29934. },
  29935. wingBottom: {
  29936. height: math.unit(1.93 , "feet"),
  29937. name: "Wing-bottom",
  29938. image: {
  29939. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29940. }
  29941. },
  29942. },
  29943. [
  29944. {
  29945. name: "Normal",
  29946. height: math.unit(216, "cm"),
  29947. default: true
  29948. },
  29949. ]
  29950. ))
  29951. characterMakers.push(() => makeCharacter(
  29952. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29953. {
  29954. front: {
  29955. height: math.unit(6, "feet"),
  29956. weight: math.unit(150, "lb"),
  29957. name: "Front",
  29958. image: {
  29959. source: "./media/characters/pride/front.svg",
  29960. extra: 1299/1230,
  29961. bottom: 18/1317
  29962. }
  29963. },
  29964. },
  29965. [
  29966. {
  29967. name: "Normal",
  29968. height: math.unit(7, "feet")
  29969. },
  29970. {
  29971. name: "Mini-macro",
  29972. height: math.unit(11, "feet")
  29973. },
  29974. {
  29975. name: "Macro",
  29976. height: math.unit(15, "meters"),
  29977. default: true
  29978. },
  29979. {
  29980. name: "Macro+",
  29981. height: math.unit(40, "meters")
  29982. },
  29983. ]
  29984. ))
  29985. characterMakers.push(() => makeCharacter(
  29986. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  29987. {
  29988. front: {
  29989. height: math.unit(4 + 2 / 12, "feet"),
  29990. weight: math.unit(95, "lb"),
  29991. name: "Front",
  29992. image: {
  29993. source: "./media/characters/vaelophis-nyx/front.svg",
  29994. extra: 2532/2330,
  29995. bottom: 0/2532
  29996. }
  29997. },
  29998. back: {
  29999. height: math.unit(4 + 2 / 12, "feet"),
  30000. weight: math.unit(95, "lb"),
  30001. name: "Back",
  30002. image: {
  30003. source: "./media/characters/vaelophis-nyx/back.svg",
  30004. extra: 2484/2361,
  30005. bottom: 0/2484
  30006. }
  30007. },
  30008. feralSide: {
  30009. height: math.unit(2 + 1/12, "feet"),
  30010. weight: math.unit(20, "lb"),
  30011. name: "Feral (Side)",
  30012. image: {
  30013. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30014. extra: 1721/1581,
  30015. bottom: 70/1791
  30016. }
  30017. },
  30018. feralLazing: {
  30019. height: math.unit(1.08, "feet"),
  30020. weight: math.unit(20, "lb"),
  30021. name: "Feral (Lazing)",
  30022. image: {
  30023. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30024. extra: 822/822,
  30025. bottom: 248/1070
  30026. }
  30027. },
  30028. ear: {
  30029. height: math.unit(0.416, "feet"),
  30030. name: "Ear",
  30031. image: {
  30032. source: "./media/characters/vaelophis-nyx/ear.svg"
  30033. }
  30034. },
  30035. eye: {
  30036. height: math.unit(0.0748, "feet"),
  30037. name: "Eye",
  30038. image: {
  30039. source: "./media/characters/vaelophis-nyx/eye.svg"
  30040. }
  30041. },
  30042. mouth: {
  30043. height: math.unit(0.378, "feet"),
  30044. name: "Mouth",
  30045. image: {
  30046. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30047. }
  30048. },
  30049. spade: {
  30050. height: math.unit(0.55, "feet"),
  30051. name: "Spade",
  30052. image: {
  30053. source: "./media/characters/vaelophis-nyx/spade.svg"
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Normal",
  30060. height: math.unit(4 + 2/12, "feet"),
  30061. default: true
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30067. {
  30068. front: {
  30069. height: math.unit(7, "feet"),
  30070. weight: math.unit(231, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/flux/front.svg",
  30074. extra: 919/871,
  30075. bottom: 0/919
  30076. }
  30077. },
  30078. back: {
  30079. height: math.unit(7, "feet"),
  30080. weight: math.unit(231, "lb"),
  30081. name: "Back",
  30082. image: {
  30083. source: "./media/characters/flux/back.svg",
  30084. extra: 1040/992,
  30085. bottom: 0/1040
  30086. }
  30087. },
  30088. frontDressed: {
  30089. height: math.unit(7, "feet"),
  30090. weight: math.unit(231, "lb"),
  30091. name: "Front (Dressed)",
  30092. image: {
  30093. source: "./media/characters/flux/front-dressed.svg",
  30094. extra: 919/871,
  30095. bottom: 0/919
  30096. }
  30097. },
  30098. feralSide: {
  30099. height: math.unit(5, "feet"),
  30100. weight: math.unit(150, "lb"),
  30101. name: "Feral (Side)",
  30102. image: {
  30103. source: "./media/characters/flux/feral-side.svg",
  30104. extra: 598/528,
  30105. bottom: 28/626
  30106. }
  30107. },
  30108. head: {
  30109. height: math.unit(1.585, "feet"),
  30110. name: "Head",
  30111. image: {
  30112. source: "./media/characters/flux/head.svg"
  30113. }
  30114. },
  30115. headSide: {
  30116. height: math.unit(1.74, "feet"),
  30117. name: "Head (Side)",
  30118. image: {
  30119. source: "./media/characters/flux/head-side.svg"
  30120. }
  30121. },
  30122. headSideFire: {
  30123. height: math.unit(1.76, "feet"),
  30124. name: "Head (Side, Fire)",
  30125. image: {
  30126. source: "./media/characters/flux/head-side-fire.svg"
  30127. }
  30128. },
  30129. },
  30130. [
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(7, "feet"),
  30134. default: true
  30135. },
  30136. ]
  30137. ))
  30138. characterMakers.push(() => makeCharacter(
  30139. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30140. {
  30141. front: {
  30142. height: math.unit(9, "feet"),
  30143. weight: math.unit(1012, "lb"),
  30144. name: "Front",
  30145. image: {
  30146. source: "./media/characters/ulfra-lupae/front.svg",
  30147. extra: 1083/1011,
  30148. bottom: 67/1150
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Micro",
  30155. height: math.unit(6, "inches")
  30156. },
  30157. {
  30158. name: "Socializing",
  30159. height: math.unit(6 + 5/12, "feet")
  30160. },
  30161. {
  30162. name: "Normal",
  30163. height: math.unit(9, "feet"),
  30164. default: true
  30165. },
  30166. {
  30167. name: "Macro",
  30168. height: math.unit(150, "feet")
  30169. },
  30170. ]
  30171. ))
  30172. characterMakers.push(() => makeCharacter(
  30173. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30174. {
  30175. front: {
  30176. height: math.unit(5 + 2/12, "feet"),
  30177. weight: math.unit(120, "lb"),
  30178. name: "Front",
  30179. image: {
  30180. source: "./media/characters/timber/front.svg",
  30181. extra: 2814/2705,
  30182. bottom: 181/2995
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Normal",
  30189. height: math.unit(5 + 2/12, "feet"),
  30190. default: true
  30191. },
  30192. ]
  30193. ))
  30194. characterMakers.push(() => makeCharacter(
  30195. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30196. {
  30197. front: {
  30198. height: math.unit(5 + 7/12, "feet"),
  30199. weight: math.unit(220, "lb"),
  30200. name: "Front",
  30201. image: {
  30202. source: "./media/characters/nicki/front.svg",
  30203. extra: 453/419,
  30204. bottom: 7/460
  30205. }
  30206. },
  30207. frontAlt: {
  30208. height: math.unit(5 + 7/12, "feet"),
  30209. weight: math.unit(220, "lb"),
  30210. name: "Front-alt",
  30211. image: {
  30212. source: "./media/characters/nicki/front-alt.svg",
  30213. extra: 435/411,
  30214. bottom: 12/447
  30215. }
  30216. },
  30217. back: {
  30218. height: math.unit(5 + 7/12, "feet"),
  30219. weight: math.unit(220, "lb"),
  30220. name: "Back",
  30221. image: {
  30222. source: "./media/characters/nicki/back.svg",
  30223. extra: 440/413,
  30224. bottom: 19/459
  30225. }
  30226. },
  30227. frontNsfw: {
  30228. height: math.unit(5 + 7/12, "feet"),
  30229. weight: math.unit(220, "lb"),
  30230. name: "Front (NSFW)",
  30231. image: {
  30232. source: "./media/characters/nicki/front-nsfw.svg",
  30233. extra: 453/419,
  30234. bottom: 7/460
  30235. }
  30236. },
  30237. frontNsfwAlt: {
  30238. height: math.unit(5 + 7/12, "feet"),
  30239. weight: math.unit(220, "lb"),
  30240. name: "Front (Alt, NSFW)",
  30241. image: {
  30242. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30243. extra: 435/411,
  30244. bottom: 12/447
  30245. }
  30246. },
  30247. backNsfw: {
  30248. height: math.unit(5 + 7/12, "feet"),
  30249. weight: math.unit(220, "lb"),
  30250. name: "Back (NSFW)",
  30251. image: {
  30252. source: "./media/characters/nicki/back-nsfw.svg",
  30253. extra: 440/413,
  30254. bottom: 19/459
  30255. }
  30256. },
  30257. head: {
  30258. height: math.unit(2.1, "feet"),
  30259. name: "Head",
  30260. image: {
  30261. source: "./media/characters/nicki/head.svg"
  30262. }
  30263. },
  30264. paw: {
  30265. height: math.unit(1.88, "feet"),
  30266. name: "Paw",
  30267. image: {
  30268. source: "./media/characters/nicki/paw.svg"
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(5 + 7/12, "feet"),
  30276. default: true
  30277. },
  30278. ]
  30279. ))
  30280. characterMakers.push(() => makeCharacter(
  30281. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30282. {
  30283. front: {
  30284. height: math.unit(7 + 10/12, "feet"),
  30285. weight: math.unit(3.5, "tons"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/lee/front.svg",
  30289. extra: 1773/1615,
  30290. bottom: 86/1859
  30291. }
  30292. },
  30293. hand: {
  30294. height: math.unit(1.78, "feet"),
  30295. name: "Hand",
  30296. image: {
  30297. source: "./media/characters/lee/hand.svg"
  30298. }
  30299. },
  30300. maw: {
  30301. height: math.unit(1.18, "feet"),
  30302. name: "Maw",
  30303. image: {
  30304. source: "./media/characters/lee/maw.svg"
  30305. }
  30306. },
  30307. },
  30308. [
  30309. {
  30310. name: "Normal",
  30311. height: math.unit(7 + 10/12, "feet"),
  30312. default: true
  30313. },
  30314. ]
  30315. ))
  30316. characterMakers.push(() => makeCharacter(
  30317. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30318. {
  30319. front: {
  30320. height: math.unit(9, "feet"),
  30321. name: "Front",
  30322. image: {
  30323. source: "./media/characters/guti/front.svg",
  30324. extra: 4551/4355,
  30325. bottom: 123/4674
  30326. }
  30327. },
  30328. tongue: {
  30329. height: math.unit(1, "feet"),
  30330. name: "Tongue",
  30331. image: {
  30332. source: "./media/characters/guti/tongue.svg"
  30333. }
  30334. },
  30335. paw: {
  30336. height: math.unit(1.18, "feet"),
  30337. name: "Paw",
  30338. image: {
  30339. source: "./media/characters/guti/paw.svg"
  30340. }
  30341. },
  30342. },
  30343. [
  30344. {
  30345. name: "Normal",
  30346. height: math.unit(9, "feet"),
  30347. default: true
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30353. {
  30354. side: {
  30355. height: math.unit(5, "meters"),
  30356. name: "Side",
  30357. image: {
  30358. source: "./media/characters/vesper/side.svg",
  30359. extra: 1605/1518,
  30360. bottom: 0/1605
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "Small",
  30367. height: math.unit(5, "meters")
  30368. },
  30369. {
  30370. name: "Sage",
  30371. height: math.unit(100, "meters"),
  30372. default: true
  30373. },
  30374. {
  30375. name: "Fun Size",
  30376. height: math.unit(600, "meters")
  30377. },
  30378. {
  30379. name: "Goddess",
  30380. height: math.unit(20000, "km")
  30381. },
  30382. {
  30383. name: "Maximum",
  30384. height: math.unit(5, "galaxies")
  30385. },
  30386. ]
  30387. ))
  30388. characterMakers.push(() => makeCharacter(
  30389. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30390. {
  30391. front: {
  30392. height: math.unit(6 + 3/12, "feet"),
  30393. weight: math.unit(190, "lb"),
  30394. name: "Front",
  30395. image: {
  30396. source: "./media/characters/gawain/front.svg",
  30397. extra: 2222/2139,
  30398. bottom: 90/2312
  30399. }
  30400. },
  30401. back: {
  30402. height: math.unit(6 + 3/12, "feet"),
  30403. weight: math.unit(190, "lb"),
  30404. name: "Back",
  30405. image: {
  30406. source: "./media/characters/gawain/back.svg",
  30407. extra: 2199/2111,
  30408. bottom: 73/2272
  30409. }
  30410. },
  30411. },
  30412. [
  30413. {
  30414. name: "Normal",
  30415. height: math.unit(6 + 3/12, "feet"),
  30416. default: true
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30422. {
  30423. side: {
  30424. height: math.unit(3.5, "meters"),
  30425. weight: math.unit(16000, "lb"),
  30426. name: "Side",
  30427. image: {
  30428. source: "./media/characters/dascalti/side.svg",
  30429. extra: 392/273,
  30430. bottom: 47/439
  30431. }
  30432. },
  30433. breath: {
  30434. height: math.unit(7.4, "feet"),
  30435. name: "Breath",
  30436. image: {
  30437. source: "./media/characters/dascalti/breath.svg"
  30438. }
  30439. },
  30440. fed: {
  30441. height: math.unit(3.6, "meters"),
  30442. weight: math.unit(16000, "lb"),
  30443. name: "Fed",
  30444. image: {
  30445. source: "./media/characters/dascalti/fed.svg",
  30446. extra: 1419/820,
  30447. bottom: 95/1514
  30448. }
  30449. },
  30450. },
  30451. [
  30452. {
  30453. name: "Normal",
  30454. height: math.unit(3.5, "meters"),
  30455. default: true
  30456. },
  30457. ]
  30458. ))
  30459. characterMakers.push(() => makeCharacter(
  30460. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30461. {
  30462. front: {
  30463. height: math.unit(3 + 5/12, "feet"),
  30464. name: "Front",
  30465. image: {
  30466. source: "./media/characters/mauve/front.svg",
  30467. extra: 1126/1033,
  30468. bottom: 65/1191
  30469. }
  30470. },
  30471. side: {
  30472. height: math.unit(3 + 5/12, "feet"),
  30473. name: "Side",
  30474. image: {
  30475. source: "./media/characters/mauve/side.svg",
  30476. extra: 1089/1001,
  30477. bottom: 29/1118
  30478. }
  30479. },
  30480. back: {
  30481. height: math.unit(3 + 5/12, "feet"),
  30482. name: "Back",
  30483. image: {
  30484. source: "./media/characters/mauve/back.svg",
  30485. extra: 1173/1053,
  30486. bottom: 109/1282
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Normal",
  30493. height: math.unit(3 + 5/12, "feet"),
  30494. default: true
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30500. {
  30501. front: {
  30502. height: math.unit(6 + 3/12, "feet"),
  30503. weight: math.unit(430, "lb"),
  30504. name: "Front",
  30505. image: {
  30506. source: "./media/characters/carlos/front.svg",
  30507. extra: 1964/1913,
  30508. bottom: 70/2034
  30509. }
  30510. },
  30511. },
  30512. [
  30513. {
  30514. name: "Normal",
  30515. height: math.unit(6 + 3/12, "feet"),
  30516. default: true
  30517. },
  30518. ]
  30519. ))
  30520. characterMakers.push(() => makeCharacter(
  30521. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30522. {
  30523. back: {
  30524. height: math.unit(5 + 10/12, "feet"),
  30525. weight: math.unit(200, "lb"),
  30526. name: "Back",
  30527. image: {
  30528. source: "./media/characters/jax/back.svg",
  30529. extra: 764/739,
  30530. bottom: 25/789
  30531. }
  30532. },
  30533. },
  30534. [
  30535. {
  30536. name: "Normal",
  30537. height: math.unit(5 + 10/12, "feet"),
  30538. default: true
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(8, "feet"),
  30547. weight: math.unit(250, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/eikthynir/front.svg",
  30551. extra: 1332/1166,
  30552. bottom: 82/1414
  30553. }
  30554. },
  30555. back: {
  30556. height: math.unit(8, "feet"),
  30557. weight: math.unit(250, "lb"),
  30558. name: "Back",
  30559. image: {
  30560. source: "./media/characters/eikthynir/back.svg",
  30561. extra: 1342/1190,
  30562. bottom: 19/1361
  30563. }
  30564. },
  30565. dick: {
  30566. height: math.unit(2.35, "feet"),
  30567. name: "Dick",
  30568. image: {
  30569. source: "./media/characters/eikthynir/dick.svg"
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(8, "feet"),
  30577. default: true
  30578. },
  30579. ]
  30580. ))
  30581. characterMakers.push(() => makeCharacter(
  30582. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30583. {
  30584. front: {
  30585. height: math.unit(99, "meters"),
  30586. weight: math.unit(13000, "tons"),
  30587. name: "Front",
  30588. image: {
  30589. source: "./media/characters/zlmos/front.svg",
  30590. extra: 2202/1992,
  30591. bottom: 315/2517
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Macro",
  30598. height: math.unit(99, "meters"),
  30599. default: true
  30600. },
  30601. ]
  30602. ))
  30603. characterMakers.push(() => makeCharacter(
  30604. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30605. {
  30606. front: {
  30607. height: math.unit(6 + 5/12, "feet"),
  30608. name: "Front",
  30609. image: {
  30610. source: "./media/characters/purri/front.svg",
  30611. extra: 1698/1610,
  30612. bottom: 32/1730
  30613. }
  30614. },
  30615. frontAlt: {
  30616. height: math.unit(6 + 5/12, "feet"),
  30617. name: "Front (Alt)",
  30618. image: {
  30619. source: "./media/characters/purri/front-alt.svg",
  30620. extra: 450/420,
  30621. bottom: 26/476
  30622. }
  30623. },
  30624. boots: {
  30625. height: math.unit(5.5, "feet"),
  30626. name: "Boots",
  30627. image: {
  30628. source: "./media/characters/purri/boots.svg",
  30629. extra: 905/853,
  30630. bottom: 18/923
  30631. }
  30632. },
  30633. lying: {
  30634. height: math.unit(2, "feet"),
  30635. name: "Lying",
  30636. image: {
  30637. source: "./media/characters/purri/lying.svg",
  30638. extra: 940/843,
  30639. bottom: 146/1086
  30640. }
  30641. },
  30642. devious: {
  30643. height: math.unit(1.77, "feet"),
  30644. name: "Devious",
  30645. image: {
  30646. source: "./media/characters/purri/devious.svg",
  30647. extra: 1440/1155,
  30648. bottom: 147/1587
  30649. }
  30650. },
  30651. bean: {
  30652. height: math.unit(1.94, "feet"),
  30653. name: "Bean",
  30654. image: {
  30655. source: "./media/characters/purri/bean.svg"
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Micro",
  30662. height: math.unit(1, "mm")
  30663. },
  30664. {
  30665. name: "Normal",
  30666. height: math.unit(6 + 5/12, "feet"),
  30667. default: true
  30668. },
  30669. {
  30670. name: "Macro :3c",
  30671. height: math.unit(2, "miles")
  30672. },
  30673. ]
  30674. ))
  30675. characterMakers.push(() => makeCharacter(
  30676. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30677. {
  30678. front: {
  30679. height: math.unit(6 + 2/12, "feet"),
  30680. weight: math.unit(250, "lb"),
  30681. name: "Front",
  30682. image: {
  30683. source: "./media/characters/moonlight/front.svg",
  30684. extra: 1044/908,
  30685. bottom: 56/1100
  30686. }
  30687. },
  30688. paw: {
  30689. height: math.unit(1, "feet"),
  30690. name: "Paw",
  30691. image: {
  30692. source: "./media/characters/moonlight/paw.svg"
  30693. }
  30694. },
  30695. paws: {
  30696. height: math.unit(0.98, "feet"),
  30697. name: "Paws",
  30698. image: {
  30699. source: "./media/characters/moonlight/paws.svg",
  30700. extra: 939/939,
  30701. bottom: 50/989
  30702. }
  30703. },
  30704. mouth: {
  30705. height: math.unit(0.48, "feet"),
  30706. name: "Mouth",
  30707. image: {
  30708. source: "./media/characters/moonlight/mouth.svg"
  30709. }
  30710. },
  30711. },
  30712. [
  30713. {
  30714. name: "Normal",
  30715. height: math.unit(6 + 2/12, "feet"),
  30716. default: true
  30717. },
  30718. {
  30719. name: "Macro",
  30720. height: math.unit(300, "feet")
  30721. },
  30722. {
  30723. name: "Macro+",
  30724. height: math.unit(1, "mile")
  30725. },
  30726. {
  30727. name: "Mt. Moon",
  30728. height: math.unit(5, "miles")
  30729. },
  30730. {
  30731. name: "Megamacro",
  30732. height: math.unit(15, "miles")
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30738. {
  30739. back: {
  30740. height: math.unit(6, "feet"),
  30741. weight: math.unit(150, "lb"),
  30742. name: "Back",
  30743. image: {
  30744. source: "./media/characters/sylen/back.svg",
  30745. extra: 1335/1273,
  30746. bottom: 107/1442
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Normal",
  30753. height: math.unit(5 + 5/12, "feet")
  30754. },
  30755. {
  30756. name: "Megamacro",
  30757. height: math.unit(3, "miles"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30764. {
  30765. front: {
  30766. height: math.unit(6, "feet"),
  30767. weight: math.unit(190, "lb"),
  30768. name: "Front",
  30769. image: {
  30770. source: "./media/characters/huttser/front.svg",
  30771. extra: 1152/1058,
  30772. bottom: 23/1175
  30773. }
  30774. },
  30775. side: {
  30776. height: math.unit(6, "feet"),
  30777. weight: math.unit(190, "lb"),
  30778. name: "Side",
  30779. image: {
  30780. source: "./media/characters/huttser/side.svg",
  30781. extra: 1174/1065,
  30782. bottom: 18/1192
  30783. }
  30784. },
  30785. back: {
  30786. height: math.unit(6, "feet"),
  30787. weight: math.unit(190, "lb"),
  30788. name: "Back",
  30789. image: {
  30790. source: "./media/characters/huttser/back.svg",
  30791. extra: 1158/1056,
  30792. bottom: 12/1170
  30793. }
  30794. },
  30795. },
  30796. [
  30797. ]
  30798. ))
  30799. characterMakers.push(() => makeCharacter(
  30800. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30801. {
  30802. side: {
  30803. height: math.unit(12 + 9/12, "feet"),
  30804. weight: math.unit(15000, "lb"),
  30805. name: "Side",
  30806. image: {
  30807. source: "./media/characters/faan/side.svg",
  30808. extra: 2747/2697,
  30809. bottom: 0/2747
  30810. }
  30811. },
  30812. front: {
  30813. height: math.unit(12 + 9/12, "feet"),
  30814. weight: math.unit(15000, "lb"),
  30815. name: "Front",
  30816. image: {
  30817. source: "./media/characters/faan/front.svg",
  30818. extra: 607/571,
  30819. bottom: 24/631
  30820. }
  30821. },
  30822. head: {
  30823. height: math.unit(2.85, "feet"),
  30824. name: "Head",
  30825. image: {
  30826. source: "./media/characters/faan/head.svg"
  30827. }
  30828. },
  30829. headAlt: {
  30830. height: math.unit(3.13, "feet"),
  30831. name: "Head-alt",
  30832. image: {
  30833. source: "./media/characters/faan/head-alt.svg"
  30834. }
  30835. },
  30836. },
  30837. [
  30838. {
  30839. name: "Normal",
  30840. height: math.unit(12 + 9/12, "feet"),
  30841. default: true
  30842. },
  30843. ]
  30844. ))
  30845. characterMakers.push(() => makeCharacter(
  30846. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30847. {
  30848. front: {
  30849. height: math.unit(6, "feet"),
  30850. weight: math.unit(300, "lb"),
  30851. name: "Front",
  30852. image: {
  30853. source: "./media/characters/tanio/front.svg",
  30854. extra: 711/673,
  30855. bottom: 25/736
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Normal",
  30862. height: math.unit(6, "feet"),
  30863. default: true
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(3, "inches"),
  30872. name: "Front",
  30873. image: {
  30874. source: "./media/characters/noboru/front.svg",
  30875. extra: 1039/932,
  30876. bottom: 18/1057
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Micro",
  30883. height: math.unit(3, "inches"),
  30884. default: true
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30890. {
  30891. front: {
  30892. height: math.unit(1.85, "meters"),
  30893. weight: math.unit(80, "kg"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/daniel-barrett/front.svg",
  30897. extra: 355/337,
  30898. bottom: 9/364
  30899. }
  30900. },
  30901. },
  30902. [
  30903. {
  30904. name: "Pico",
  30905. height: math.unit(0.0433, "mm")
  30906. },
  30907. {
  30908. name: "Nano",
  30909. height: math.unit(1.5, "mm")
  30910. },
  30911. {
  30912. name: "Micro",
  30913. height: math.unit(5.3, "cm"),
  30914. default: true
  30915. },
  30916. {
  30917. name: "Normal",
  30918. height: math.unit(1.85, "meters")
  30919. },
  30920. {
  30921. name: "Macro",
  30922. height: math.unit(64.7, "meters")
  30923. },
  30924. {
  30925. name: "Megamacro",
  30926. height: math.unit(2.26, "km")
  30927. },
  30928. {
  30929. name: "Gigamacro",
  30930. height: math.unit(79, "km")
  30931. },
  30932. {
  30933. name: "Teramacro",
  30934. height: math.unit(2765, "km")
  30935. },
  30936. {
  30937. name: "Petamacro",
  30938. height: math.unit(96678, "km")
  30939. },
  30940. ]
  30941. ))
  30942. characterMakers.push(() => makeCharacter(
  30943. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  30944. {
  30945. front: {
  30946. height: math.unit(30, "meters"),
  30947. weight: math.unit(400, "tons"),
  30948. name: "Front",
  30949. image: {
  30950. source: "./media/characters/zeel/front.svg",
  30951. extra: 2599/2599,
  30952. bottom: 226/2825
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Macro",
  30959. height: math.unit(30, "meters"),
  30960. default: true
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  30966. {
  30967. front: {
  30968. height: math.unit(6 + 7/12, "feet"),
  30969. weight: math.unit(210, "lb"),
  30970. name: "Front",
  30971. image: {
  30972. source: "./media/characters/tarn/front.svg",
  30973. extra: 3517/3220,
  30974. bottom: 91/3608
  30975. }
  30976. },
  30977. back: {
  30978. height: math.unit(6 + 7/12, "feet"),
  30979. weight: math.unit(210, "lb"),
  30980. name: "Back",
  30981. image: {
  30982. source: "./media/characters/tarn/back.svg",
  30983. extra: 3566/3241,
  30984. bottom: 34/3600
  30985. }
  30986. },
  30987. dick: {
  30988. height: math.unit(1.65, "feet"),
  30989. name: "Dick",
  30990. image: {
  30991. source: "./media/characters/tarn/dick.svg"
  30992. }
  30993. },
  30994. paw: {
  30995. height: math.unit(1.80, "feet"),
  30996. name: "Paw",
  30997. image: {
  30998. source: "./media/characters/tarn/paw.svg"
  30999. }
  31000. },
  31001. tongue: {
  31002. height: math.unit(0.97, "feet"),
  31003. name: "Tongue",
  31004. image: {
  31005. source: "./media/characters/tarn/tongue.svg"
  31006. }
  31007. },
  31008. },
  31009. [
  31010. {
  31011. name: "Micro",
  31012. height: math.unit(4, "inches")
  31013. },
  31014. {
  31015. name: "Normal",
  31016. height: math.unit(6 + 7/12, "feet"),
  31017. default: true
  31018. },
  31019. {
  31020. name: "Macro",
  31021. height: math.unit(300, "feet")
  31022. },
  31023. ]
  31024. ))
  31025. characterMakers.push(() => makeCharacter(
  31026. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31027. {
  31028. front: {
  31029. height: math.unit(5 + 7/12, "feet"),
  31030. weight: math.unit(80, "kg"),
  31031. name: "Front",
  31032. image: {
  31033. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31034. extra: 3023/2865,
  31035. bottom: 33/3056
  31036. }
  31037. },
  31038. back: {
  31039. height: math.unit(5 + 7/12, "feet"),
  31040. weight: math.unit(80, "kg"),
  31041. name: "Back",
  31042. image: {
  31043. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31044. extra: 3020/2886,
  31045. bottom: 30/3050
  31046. }
  31047. },
  31048. dick: {
  31049. height: math.unit(0.98, "feet"),
  31050. name: "Dick",
  31051. image: {
  31052. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31053. }
  31054. },
  31055. anatomy: {
  31056. height: math.unit(2.86, "feet"),
  31057. name: "Anatomy",
  31058. image: {
  31059. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31060. }
  31061. },
  31062. },
  31063. [
  31064. {
  31065. name: "Really Small",
  31066. height: math.unit(2, "inches")
  31067. },
  31068. {
  31069. name: "Micro",
  31070. height: math.unit(5.583, "inches")
  31071. },
  31072. {
  31073. name: "Normal",
  31074. height: math.unit(5 + 7/12, "feet"),
  31075. default: true
  31076. },
  31077. {
  31078. name: "Macro",
  31079. height: math.unit(67, "feet")
  31080. },
  31081. {
  31082. name: "Megamacro",
  31083. height: math.unit(134, "feet")
  31084. },
  31085. ]
  31086. ))
  31087. characterMakers.push(() => makeCharacter(
  31088. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31089. {
  31090. front: {
  31091. height: math.unit(9, "feet"),
  31092. weight: math.unit(120, "lb"),
  31093. name: "Front",
  31094. image: {
  31095. source: "./media/characters/sally/front.svg",
  31096. extra: 1506/1349,
  31097. bottom: 66/1572
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Normal",
  31104. height: math.unit(9, "feet"),
  31105. default: true
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(8, "feet"),
  31114. weight: math.unit(900, "lb"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/owen/front.svg",
  31118. extra: 1761/1657,
  31119. bottom: 74/1835
  31120. }
  31121. },
  31122. side: {
  31123. height: math.unit(8, "feet"),
  31124. weight: math.unit(900, "lb"),
  31125. name: "Side",
  31126. image: {
  31127. source: "./media/characters/owen/side.svg",
  31128. extra: 1797/1734,
  31129. bottom: 30/1827
  31130. }
  31131. },
  31132. back: {
  31133. height: math.unit(8, "feet"),
  31134. weight: math.unit(900, "lb"),
  31135. name: "Back",
  31136. image: {
  31137. source: "./media/characters/owen/back.svg",
  31138. extra: 1796/1706,
  31139. bottom: 59/1855
  31140. }
  31141. },
  31142. maw: {
  31143. height: math.unit(1.76, "feet"),
  31144. name: "Maw",
  31145. image: {
  31146. source: "./media/characters/owen/maw.svg"
  31147. }
  31148. },
  31149. },
  31150. [
  31151. ]
  31152. ))
  31153. //characters
  31154. function makeCharacters() {
  31155. const results = [];
  31156. characterMakers.forEach(character => {
  31157. results.push(character());
  31158. });
  31159. return results;
  31160. }