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

32426 строки
814 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. "gremlin": {
  1428. name: "Gremlin",
  1429. parents: ["monster"]
  1430. },
  1431. "dragonsune": {
  1432. name: "Dragonsune",
  1433. parents: ["dragon", "kitsune"]
  1434. },
  1435. "ghost": {
  1436. name: "Ghost",
  1437. parents: ["monster"]
  1438. },
  1439. "false-vampire-bat": {
  1440. name: "False Vampire Bat",
  1441. parents: ["bat"]
  1442. },
  1443. }
  1444. //species
  1445. function getSpeciesInfo(speciesList) {
  1446. let result = new Set();
  1447. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1448. result.add(entry)
  1449. });
  1450. return Array.from(result);
  1451. };
  1452. function getSpeciesInfoHelper(species) {
  1453. if (!speciesData[species]) {
  1454. console.warn(species + " doesn't exist");
  1455. return [];
  1456. }
  1457. if (speciesData[species].parents) {
  1458. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1459. } else {
  1460. return [species];
  1461. }
  1462. }
  1463. characterMakers.push(() => makeCharacter(
  1464. {
  1465. name: "Fen",
  1466. species: ["crux"],
  1467. description: {
  1468. title: "Bio",
  1469. text: "Very furry. Sheds on everything."
  1470. },
  1471. tags: [
  1472. "anthro",
  1473. "goo"
  1474. ]
  1475. },
  1476. {
  1477. back: {
  1478. height: math.unit(2.2428, "meter"),
  1479. weight: math.unit(124.738, "kg"),
  1480. name: "Back",
  1481. image: {
  1482. source: "./media/characters/fen/back.svg",
  1483. extra: 2024 / 1867,
  1484. bottom: 13 / 2037
  1485. },
  1486. info: {
  1487. description: {
  1488. mode: "append",
  1489. text: "\n\nHe is not currently looking at you."
  1490. }
  1491. }
  1492. },
  1493. full: {
  1494. height: math.unit(1.34, "meter"),
  1495. weight: math.unit(225, "kg"),
  1496. name: "Full",
  1497. image: {
  1498. source: "./media/characters/fen/full.svg"
  1499. },
  1500. info: {
  1501. description: {
  1502. mode: "append",
  1503. text: "\n\nMunch."
  1504. }
  1505. }
  1506. },
  1507. kneeling: {
  1508. height: math.unit(5.4, "feet"),
  1509. weight: math.unit(124.738, "kg"),
  1510. name: "Kneeling",
  1511. image: {
  1512. source: "./media/characters/fen/kneeling.svg",
  1513. extra: 563 / 507
  1514. }
  1515. },
  1516. goo: {
  1517. height: math.unit(2.8, "feet"),
  1518. weight: math.unit(125, "kg"),
  1519. capacity: math.unit(1, "people"),
  1520. name: "Goo",
  1521. image: {
  1522. source: "./media/characters/fen/goo.svg",
  1523. bottom: 116 / 613
  1524. }
  1525. },
  1526. lounging: {
  1527. height: math.unit(6.5, "feet"),
  1528. weight: math.unit(125, "kg"),
  1529. name: "Lounging",
  1530. image: {
  1531. source: "./media/characters/fen/lounging.svg"
  1532. }
  1533. },
  1534. },
  1535. [
  1536. {
  1537. name: "Normal",
  1538. height: math.unit(2.2428, "meter")
  1539. },
  1540. {
  1541. name: "Big",
  1542. height: math.unit(12, "feet")
  1543. },
  1544. {
  1545. name: "Minimacro",
  1546. height: math.unit(40, "feet"),
  1547. default: true,
  1548. info: {
  1549. description: {
  1550. mode: "append",
  1551. text: "\n\nTOO DAMN BIG"
  1552. }
  1553. }
  1554. },
  1555. {
  1556. name: "Macro",
  1557. height: math.unit(100, "feet"),
  1558. info: {
  1559. description: {
  1560. mode: "append",
  1561. text: "\n\nTOO DAMN BIG"
  1562. }
  1563. }
  1564. },
  1565. {
  1566. name: "Macro+",
  1567. height: math.unit(300, "feet")
  1568. },
  1569. {
  1570. name: "Megamacro",
  1571. height: math.unit(2, "miles")
  1572. }
  1573. ]
  1574. ))
  1575. characterMakers.push(() => makeCharacter(
  1576. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1577. {
  1578. front: {
  1579. height: math.unit(183, "cm"),
  1580. weight: math.unit(80, "kg"),
  1581. name: "Front",
  1582. image: {
  1583. source: "./media/characters/sofia-fluttertail/front.svg",
  1584. bottom: 0.01,
  1585. extra: 2154 / 2081
  1586. }
  1587. },
  1588. frontAlt: {
  1589. height: math.unit(183, "cm"),
  1590. weight: math.unit(80, "kg"),
  1591. name: "Front (alt)",
  1592. image: {
  1593. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1594. }
  1595. },
  1596. back: {
  1597. height: math.unit(183, "cm"),
  1598. weight: math.unit(80, "kg"),
  1599. name: "Back",
  1600. image: {
  1601. source: "./media/characters/sofia-fluttertail/back.svg"
  1602. }
  1603. },
  1604. kneeling: {
  1605. height: math.unit(125, "cm"),
  1606. weight: math.unit(80, "kg"),
  1607. name: "Kneeling",
  1608. image: {
  1609. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1610. extra: 1033 / 977,
  1611. bottom: 23.7 / 1057
  1612. }
  1613. },
  1614. maw: {
  1615. height: math.unit(183 / 5, "cm"),
  1616. name: "Maw",
  1617. image: {
  1618. source: "./media/characters/sofia-fluttertail/maw.svg"
  1619. }
  1620. },
  1621. mawcloseup: {
  1622. height: math.unit(183 / 5 * 0.41, "cm"),
  1623. name: "Maw (Closeup)",
  1624. image: {
  1625. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1626. }
  1627. },
  1628. paws: {
  1629. height: math.unit(1.17, "feet"),
  1630. name: "Paws",
  1631. image: {
  1632. source: "./media/characters/sofia-fluttertail/paws.svg",
  1633. extra: 851 / 851,
  1634. bottom: 17 / 868
  1635. }
  1636. },
  1637. },
  1638. [
  1639. {
  1640. name: "Normal",
  1641. height: math.unit(1.83, "meter")
  1642. },
  1643. {
  1644. name: "Size Thief",
  1645. height: math.unit(18, "feet")
  1646. },
  1647. {
  1648. name: "50 Foot Collie",
  1649. height: math.unit(50, "feet")
  1650. },
  1651. {
  1652. name: "Macro",
  1653. height: math.unit(96, "feet"),
  1654. default: true
  1655. },
  1656. {
  1657. name: "Megamerger",
  1658. height: math.unit(650, "feet")
  1659. },
  1660. ]
  1661. ))
  1662. characterMakers.push(() => makeCharacter(
  1663. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1664. {
  1665. front: {
  1666. height: math.unit(7, "feet"),
  1667. weight: math.unit(100, "kg"),
  1668. name: "Front",
  1669. image: {
  1670. source: "./media/characters/march/front.svg",
  1671. extra: 1,
  1672. bottom: 0.015
  1673. }
  1674. },
  1675. foot: {
  1676. height: math.unit(0.9, "feet"),
  1677. name: "Foot",
  1678. image: {
  1679. source: "./media/characters/march/foot.svg"
  1680. }
  1681. },
  1682. },
  1683. [
  1684. {
  1685. name: "Normal",
  1686. height: math.unit(7.9, "feet")
  1687. },
  1688. {
  1689. name: "Macro",
  1690. height: math.unit(220, "meters")
  1691. },
  1692. {
  1693. name: "Megamacro",
  1694. height: math.unit(2.98, "km"),
  1695. default: true
  1696. },
  1697. {
  1698. name: "Gigamacro",
  1699. height: math.unit(15963, "km")
  1700. },
  1701. {
  1702. name: "Teramacro",
  1703. height: math.unit(2980000000, "km")
  1704. },
  1705. {
  1706. name: "Examacro",
  1707. height: math.unit(250, "parsecs")
  1708. },
  1709. ]
  1710. ))
  1711. characterMakers.push(() => makeCharacter(
  1712. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1713. {
  1714. front: {
  1715. height: math.unit(6, "feet"),
  1716. weight: math.unit(60, "kg"),
  1717. name: "Front",
  1718. image: {
  1719. source: "./media/characters/noir/front.svg",
  1720. extra: 1,
  1721. bottom: 0.032
  1722. }
  1723. },
  1724. },
  1725. [
  1726. {
  1727. name: "Normal",
  1728. height: math.unit(6.6, "feet")
  1729. },
  1730. {
  1731. name: "Macro",
  1732. height: math.unit(500, "feet")
  1733. },
  1734. {
  1735. name: "Megamacro",
  1736. height: math.unit(2.5, "km"),
  1737. default: true
  1738. },
  1739. {
  1740. name: "Gigamacro",
  1741. height: math.unit(22500, "km")
  1742. },
  1743. {
  1744. name: "Teramacro",
  1745. height: math.unit(2500000000, "km")
  1746. },
  1747. {
  1748. name: "Examacro",
  1749. height: math.unit(200, "parsecs")
  1750. },
  1751. ]
  1752. ))
  1753. characterMakers.push(() => makeCharacter(
  1754. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1755. {
  1756. front: {
  1757. height: math.unit(7, "feet"),
  1758. weight: math.unit(100, "kg"),
  1759. name: "Front",
  1760. image: {
  1761. source: "./media/characters/okuri/front.svg",
  1762. extra: 1,
  1763. bottom: 0.037
  1764. }
  1765. },
  1766. back: {
  1767. height: math.unit(7, "feet"),
  1768. weight: math.unit(100, "kg"),
  1769. name: "Back",
  1770. image: {
  1771. source: "./media/characters/okuri/back.svg",
  1772. extra: 1,
  1773. bottom: 0.007
  1774. }
  1775. },
  1776. },
  1777. [
  1778. {
  1779. name: "Megamacro",
  1780. height: math.unit(100, "miles"),
  1781. default: true
  1782. },
  1783. ]
  1784. ))
  1785. characterMakers.push(() => makeCharacter(
  1786. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1787. {
  1788. front: {
  1789. height: math.unit(7, "feet"),
  1790. weight: math.unit(100, "kg"),
  1791. name: "Front",
  1792. image: {
  1793. source: "./media/characters/manny/front.svg",
  1794. extra: 1,
  1795. bottom: 0.06
  1796. }
  1797. },
  1798. back: {
  1799. height: math.unit(7, "feet"),
  1800. weight: math.unit(100, "kg"),
  1801. name: "Back",
  1802. image: {
  1803. source: "./media/characters/manny/back.svg",
  1804. extra: 1,
  1805. bottom: 0.014
  1806. }
  1807. },
  1808. },
  1809. [
  1810. {
  1811. name: "Normal",
  1812. height: math.unit(7, "feet"),
  1813. },
  1814. {
  1815. name: "Macro",
  1816. height: math.unit(78, "feet"),
  1817. default: true
  1818. },
  1819. {
  1820. name: "Macro+",
  1821. height: math.unit(300, "meters")
  1822. },
  1823. {
  1824. name: "Macro++",
  1825. height: math.unit(2400, "meters")
  1826. },
  1827. {
  1828. name: "Megamacro",
  1829. height: math.unit(5167, "meters")
  1830. },
  1831. {
  1832. name: "Gigamacro",
  1833. height: math.unit(41769, "miles")
  1834. },
  1835. ]
  1836. ))
  1837. characterMakers.push(() => makeCharacter(
  1838. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1839. {
  1840. front: {
  1841. height: math.unit(7, "feet"),
  1842. weight: math.unit(100, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/adake/front-1.svg"
  1846. }
  1847. },
  1848. frontAlt: {
  1849. height: math.unit(7, "feet"),
  1850. weight: math.unit(100, "kg"),
  1851. name: "Front (Alt)",
  1852. image: {
  1853. source: "./media/characters/adake/front-2.svg",
  1854. extra: 1,
  1855. bottom: 0.01
  1856. }
  1857. },
  1858. back: {
  1859. height: math.unit(7, "feet"),
  1860. weight: math.unit(100, "kg"),
  1861. name: "Back",
  1862. image: {
  1863. source: "./media/characters/adake/back.svg",
  1864. }
  1865. },
  1866. kneel: {
  1867. height: math.unit(5.385, "feet"),
  1868. weight: math.unit(100, "kg"),
  1869. name: "Kneeling",
  1870. image: {
  1871. source: "./media/characters/adake/kneel.svg",
  1872. bottom: 0.052
  1873. }
  1874. },
  1875. },
  1876. [
  1877. {
  1878. name: "Normal",
  1879. height: math.unit(7, "feet"),
  1880. },
  1881. {
  1882. name: "Macro",
  1883. height: math.unit(78, "feet"),
  1884. default: true
  1885. },
  1886. {
  1887. name: "Macro+",
  1888. height: math.unit(300, "meters")
  1889. },
  1890. {
  1891. name: "Macro++",
  1892. height: math.unit(2400, "meters")
  1893. },
  1894. {
  1895. name: "Megamacro",
  1896. height: math.unit(5167, "meters")
  1897. },
  1898. {
  1899. name: "Gigamacro",
  1900. height: math.unit(41769, "miles")
  1901. },
  1902. ]
  1903. ))
  1904. characterMakers.push(() => makeCharacter(
  1905. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1906. {
  1907. front: {
  1908. height: math.unit(1.65, "meters"),
  1909. weight: math.unit(50, "kg"),
  1910. name: "Front",
  1911. image: {
  1912. source: "./media/characters/elijah/front.svg",
  1913. extra: 858 / 830,
  1914. bottom: 95.5 / 953.8559
  1915. }
  1916. },
  1917. back: {
  1918. height: math.unit(1.65, "meters"),
  1919. weight: math.unit(50, "kg"),
  1920. name: "Back",
  1921. image: {
  1922. source: "./media/characters/elijah/back.svg",
  1923. extra: 895 / 850,
  1924. bottom: 5.3 / 897.956
  1925. }
  1926. },
  1927. frontNsfw: {
  1928. height: math.unit(1.65, "meters"),
  1929. weight: math.unit(50, "kg"),
  1930. name: "Front (NSFW)",
  1931. image: {
  1932. source: "./media/characters/elijah/front-nsfw.svg",
  1933. extra: 858 / 830,
  1934. bottom: 95.5 / 953.8559
  1935. }
  1936. },
  1937. backNsfw: {
  1938. height: math.unit(1.65, "meters"),
  1939. weight: math.unit(50, "kg"),
  1940. name: "Back (NSFW)",
  1941. image: {
  1942. source: "./media/characters/elijah/back-nsfw.svg",
  1943. extra: 895 / 850,
  1944. bottom: 5.3 / 897.956
  1945. }
  1946. },
  1947. dick: {
  1948. height: math.unit(1, "feet"),
  1949. name: "Dick",
  1950. image: {
  1951. source: "./media/characters/elijah/dick.svg"
  1952. }
  1953. },
  1954. beakOpen: {
  1955. height: math.unit(1.25, "feet"),
  1956. name: "Beak (Open)",
  1957. image: {
  1958. source: "./media/characters/elijah/beak-open.svg"
  1959. }
  1960. },
  1961. beakShut: {
  1962. height: math.unit(1.25, "feet"),
  1963. name: "Beak (Shut)",
  1964. image: {
  1965. source: "./media/characters/elijah/beak-shut.svg"
  1966. }
  1967. },
  1968. footFlexing: {
  1969. height: math.unit(1.61, "feet"),
  1970. name: "Foot (Flexing)",
  1971. image: {
  1972. source: "./media/characters/elijah/foot-flexing.svg"
  1973. }
  1974. },
  1975. footStepping: {
  1976. height: math.unit(1.44, "feet"),
  1977. name: "Foot (Stepping)",
  1978. image: {
  1979. source: "./media/characters/elijah/foot-stepping.svg"
  1980. }
  1981. },
  1982. plantigradeLeg: {
  1983. height: math.unit(2.34, "feet"),
  1984. name: "Plantigrade Leg",
  1985. image: {
  1986. source: "./media/characters/elijah/plantigrade-leg.svg"
  1987. }
  1988. },
  1989. plantigradeFootLeft: {
  1990. height: math.unit(0.9, "feet"),
  1991. name: "Plantigrade Foot (Left)",
  1992. image: {
  1993. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1994. }
  1995. },
  1996. plantigradeFootRight: {
  1997. height: math.unit(0.9, "feet"),
  1998. name: "Plantigrade Foot (Right)",
  1999. image: {
  2000. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Normal",
  2007. height: math.unit(1.65, "meters")
  2008. },
  2009. {
  2010. name: "Macro",
  2011. height: math.unit(55, "meters"),
  2012. default: true
  2013. },
  2014. {
  2015. name: "Macro+",
  2016. height: math.unit(105, "meters")
  2017. },
  2018. ]
  2019. ))
  2020. characterMakers.push(() => makeCharacter(
  2021. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2022. {
  2023. front: {
  2024. height: math.unit(11, "feet"),
  2025. weight: math.unit(80, "kg"),
  2026. name: "Front",
  2027. image: {
  2028. source: "./media/characters/rai/front.svg",
  2029. extra: 1,
  2030. bottom: 0.03
  2031. }
  2032. },
  2033. side: {
  2034. height: math.unit(11, "feet"),
  2035. weight: math.unit(80, "kg"),
  2036. name: "Side",
  2037. image: {
  2038. source: "./media/characters/rai/side.svg"
  2039. }
  2040. },
  2041. back: {
  2042. height: math.unit(11, "feet"),
  2043. weight: math.unit(80, "lb"),
  2044. name: "Back",
  2045. image: {
  2046. source: "./media/characters/rai/back.svg",
  2047. extra: 1,
  2048. bottom: 0.01
  2049. }
  2050. },
  2051. feral: {
  2052. height: math.unit(11, "feet"),
  2053. weight: math.unit(800, "lb"),
  2054. name: "Feral",
  2055. image: {
  2056. source: "./media/characters/rai/feral.svg",
  2057. extra: 1050 / 659,
  2058. bottom: 0.07
  2059. }
  2060. },
  2061. dragon: {
  2062. height: math.unit(23, "feet"),
  2063. weight: math.unit(50000, "lb"),
  2064. name: "Dragon",
  2065. image: {
  2066. source: "./media/characters/rai/dragon.svg",
  2067. extra: 2498 / 2030,
  2068. bottom: 85.2 / 2584
  2069. }
  2070. },
  2071. maw: {
  2072. height: math.unit(6 / 3.81416, "feet"),
  2073. name: "Maw",
  2074. image: {
  2075. source: "./media/characters/rai/maw.svg"
  2076. }
  2077. },
  2078. },
  2079. [
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(11, "feet")
  2083. },
  2084. {
  2085. name: "Macro",
  2086. height: math.unit(302, "feet"),
  2087. default: true
  2088. },
  2089. ]
  2090. ))
  2091. characterMakers.push(() => makeCharacter(
  2092. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2093. {
  2094. frontDressed: {
  2095. height: math.unit(216, "feet"),
  2096. weight: math.unit(7000000, "lb"),
  2097. name: "Front (Dressed)",
  2098. image: {
  2099. source: "./media/characters/jazzy/front-dressed.svg",
  2100. extra: 2738 / 2651,
  2101. bottom: 41.8 / 2786
  2102. }
  2103. },
  2104. backDressed: {
  2105. height: math.unit(216, "feet"),
  2106. weight: math.unit(7000000, "lb"),
  2107. name: "Back (Dressed)",
  2108. image: {
  2109. source: "./media/characters/jazzy/back-dressed.svg",
  2110. extra: 2775 / 2673,
  2111. bottom: 36.8 / 2817
  2112. }
  2113. },
  2114. front: {
  2115. height: math.unit(216, "feet"),
  2116. weight: math.unit(7000000, "lb"),
  2117. name: "Front",
  2118. image: {
  2119. source: "./media/characters/jazzy/front.svg",
  2120. extra: 2738 / 2651,
  2121. bottom: 41.8 / 2786
  2122. }
  2123. },
  2124. back: {
  2125. height: math.unit(216, "feet"),
  2126. weight: math.unit(7000000, "lb"),
  2127. name: "Back",
  2128. image: {
  2129. source: "./media/characters/jazzy/back.svg",
  2130. extra: 2775 / 2673,
  2131. bottom: 36.8 / 2817
  2132. }
  2133. },
  2134. maw: {
  2135. height: math.unit(20, "feet"),
  2136. name: "Maw",
  2137. image: {
  2138. source: "./media/characters/jazzy/maw.svg"
  2139. }
  2140. },
  2141. paws: {
  2142. height: math.unit(27.5, "feet"),
  2143. name: "Paws",
  2144. image: {
  2145. source: "./media/characters/jazzy/paws.svg"
  2146. }
  2147. },
  2148. eye: {
  2149. height: math.unit(4.4, "feet"),
  2150. name: "Eye",
  2151. image: {
  2152. source: "./media/characters/jazzy/eye.svg"
  2153. }
  2154. },
  2155. droneOffense: {
  2156. height: math.unit(9.5, "inches"),
  2157. name: "Drone (Offense)",
  2158. image: {
  2159. source: "./media/characters/jazzy/drone-offense.svg"
  2160. }
  2161. },
  2162. droneRecon: {
  2163. height: math.unit(9.5, "inches"),
  2164. name: "Drone (Recon)",
  2165. image: {
  2166. source: "./media/characters/jazzy/drone-recon.svg"
  2167. }
  2168. },
  2169. droneDefense: {
  2170. height: math.unit(9.5, "inches"),
  2171. name: "Drone (Defense)",
  2172. image: {
  2173. source: "./media/characters/jazzy/drone-defense.svg"
  2174. }
  2175. },
  2176. },
  2177. [
  2178. {
  2179. name: "Macro",
  2180. height: math.unit(216, "feet"),
  2181. default: true
  2182. },
  2183. ]
  2184. ))
  2185. characterMakers.push(() => makeCharacter(
  2186. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2187. {
  2188. front: {
  2189. height: math.unit(7, "feet"),
  2190. weight: math.unit(80, "kg"),
  2191. name: "Front",
  2192. image: {
  2193. source: "./media/characters/flamm/front.svg",
  2194. extra: 1794 / 1677,
  2195. bottom: 31.7 / 1828.5
  2196. }
  2197. },
  2198. },
  2199. [
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(9.5, "feet")
  2203. },
  2204. {
  2205. name: "Macro",
  2206. height: math.unit(200, "feet"),
  2207. default: true
  2208. },
  2209. ]
  2210. ))
  2211. characterMakers.push(() => makeCharacter(
  2212. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2213. {
  2214. front: {
  2215. height: math.unit(5 + 3/12, "feet"),
  2216. weight: math.unit(60, "kg"),
  2217. name: "Front",
  2218. image: {
  2219. source: "./media/characters/zephiro/front.svg",
  2220. extra: 2309 / 2162,
  2221. bottom: 0.069
  2222. }
  2223. },
  2224. side: {
  2225. height: math.unit(5 + 3/12, "feet"),
  2226. weight: math.unit(60, "kg"),
  2227. name: "Side",
  2228. image: {
  2229. source: "./media/characters/zephiro/side.svg",
  2230. extra: 2403 / 2279,
  2231. bottom: 0.015
  2232. }
  2233. },
  2234. back: {
  2235. height: math.unit(5 + 3/12, "feet"),
  2236. weight: math.unit(60, "kg"),
  2237. name: "Back",
  2238. image: {
  2239. source: "./media/characters/zephiro/back.svg",
  2240. extra: 2373 / 2244,
  2241. bottom: 0.013
  2242. }
  2243. },
  2244. hand: {
  2245. height: math.unit(0.68, "feet"),
  2246. name: "Hand",
  2247. image: {
  2248. source: "./media/characters/zephiro/hand.svg"
  2249. }
  2250. },
  2251. paw: {
  2252. height: math.unit(1, "feet"),
  2253. name: "Paw",
  2254. image: {
  2255. source: "./media/characters/zephiro/paw.svg"
  2256. }
  2257. },
  2258. beans: {
  2259. height: math.unit(0.93, "feet"),
  2260. name: "Beans",
  2261. image: {
  2262. source: "./media/characters/zephiro/beans.svg"
  2263. }
  2264. },
  2265. },
  2266. [
  2267. {
  2268. name: "Micro",
  2269. height: math.unit(3, "inches")
  2270. },
  2271. {
  2272. name: "Normal",
  2273. height: math.unit(5 + 3 / 12, "feet"),
  2274. default: true
  2275. },
  2276. {
  2277. name: "Macro",
  2278. height: math.unit(118, "feet")
  2279. },
  2280. ]
  2281. ))
  2282. characterMakers.push(() => makeCharacter(
  2283. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2284. {
  2285. front: {
  2286. height: math.unit(5, "feet"),
  2287. weight: math.unit(90, "kg"),
  2288. name: "Front",
  2289. image: {
  2290. source: "./media/characters/fory/front.svg",
  2291. extra: 2862 / 2674,
  2292. bottom: 180 / 3043.8
  2293. }
  2294. },
  2295. back: {
  2296. height: math.unit(5, "feet"),
  2297. weight: math.unit(90, "kg"),
  2298. name: "Back",
  2299. image: {
  2300. source: "./media/characters/fory/back.svg",
  2301. extra: 2962 / 2791,
  2302. bottom: 106 / 3071.8
  2303. }
  2304. },
  2305. foot: {
  2306. height: math.unit(2.14, "feet"),
  2307. name: "Foot",
  2308. image: {
  2309. source: "./media/characters/fory/foot.svg"
  2310. }
  2311. },
  2312. },
  2313. [
  2314. {
  2315. name: "Normal",
  2316. height: math.unit(5, "feet")
  2317. },
  2318. {
  2319. name: "Macro",
  2320. height: math.unit(50, "feet"),
  2321. default: true
  2322. },
  2323. {
  2324. name: "Megamacro",
  2325. height: math.unit(10, "miles")
  2326. },
  2327. {
  2328. name: "Gigamacro",
  2329. height: math.unit(5, "earths")
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2335. {
  2336. front: {
  2337. height: math.unit(7, "feet"),
  2338. weight: math.unit(90, "kg"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/kurrikage/front.svg",
  2342. extra: 1,
  2343. bottom: 0.035
  2344. }
  2345. },
  2346. back: {
  2347. height: math.unit(7, "feet"),
  2348. weight: math.unit(90, "lb"),
  2349. name: "Back",
  2350. image: {
  2351. source: "./media/characters/kurrikage/back.svg"
  2352. }
  2353. },
  2354. paw: {
  2355. height: math.unit(1.5, "feet"),
  2356. name: "Paw",
  2357. image: {
  2358. source: "./media/characters/kurrikage/paw.svg"
  2359. }
  2360. },
  2361. staff: {
  2362. height: math.unit(6.7, "feet"),
  2363. name: "Staff",
  2364. image: {
  2365. source: "./media/characters/kurrikage/staff.svg"
  2366. }
  2367. },
  2368. peek: {
  2369. height: math.unit(1.05, "feet"),
  2370. name: "Peeking",
  2371. image: {
  2372. source: "./media/characters/kurrikage/peek.svg",
  2373. bottom: 0.08
  2374. }
  2375. },
  2376. },
  2377. [
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(12, "feet"),
  2381. default: true
  2382. },
  2383. {
  2384. name: "Big",
  2385. height: math.unit(20, "feet")
  2386. },
  2387. {
  2388. name: "Macro",
  2389. height: math.unit(500, "feet")
  2390. },
  2391. {
  2392. name: "Megamacro",
  2393. height: math.unit(20, "miles")
  2394. },
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2399. {
  2400. front: {
  2401. height: math.unit(6, "feet"),
  2402. weight: math.unit(75, "kg"),
  2403. name: "Front",
  2404. image: {
  2405. source: "./media/characters/shingo/front.svg",
  2406. extra: 706/681,
  2407. bottom: 11/717
  2408. }
  2409. },
  2410. frontAlt: {
  2411. height: math.unit(6, "feet"),
  2412. weight: math.unit(75, "kg"),
  2413. name: "Front (Alt)",
  2414. image: {
  2415. source: "./media/characters/shingo/front-alt.svg",
  2416. extra: 3511 / 3338,
  2417. bottom: 0.005
  2418. }
  2419. },
  2420. paw: {
  2421. height: math.unit(1, "feet"),
  2422. name: "Paw",
  2423. image: {
  2424. source: "./media/characters/shingo/paw.svg"
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Micro",
  2431. height: math.unit(4, "inches")
  2432. },
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(6, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro",
  2440. height: math.unit(108, "feet")
  2441. },
  2442. {
  2443. name: "Macro+",
  2444. height: math.unit(1500, "feet")
  2445. },
  2446. ]
  2447. ))
  2448. characterMakers.push(() => makeCharacter(
  2449. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2450. {
  2451. side: {
  2452. height: math.unit(6, "feet"),
  2453. weight: math.unit(75, "kg"),
  2454. name: "Side",
  2455. image: {
  2456. source: "./media/characters/aigey/side.svg"
  2457. }
  2458. },
  2459. },
  2460. [
  2461. {
  2462. name: "Macro",
  2463. height: math.unit(200, "feet"),
  2464. default: true
  2465. },
  2466. {
  2467. name: "Megamacro",
  2468. height: math.unit(100, "miles")
  2469. },
  2470. ]
  2471. )
  2472. )
  2473. characterMakers.push(() => makeCharacter(
  2474. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2475. {
  2476. front: {
  2477. height: math.unit(5 + 5 / 12, "feet"),
  2478. weight: math.unit(75, "kg"),
  2479. name: "Front",
  2480. image: {
  2481. source: "./media/characters/natasha/front.svg",
  2482. extra: 859 / 824,
  2483. bottom: 23 / 879.6
  2484. }
  2485. },
  2486. frontNsfw: {
  2487. height: math.unit(5 + 5 / 12, "feet"),
  2488. weight: math.unit(75, "kg"),
  2489. name: "Front (NSFW)",
  2490. image: {
  2491. source: "./media/characters/natasha/front-nsfw.svg",
  2492. extra: 859 / 824,
  2493. bottom: 23 / 879.6
  2494. }
  2495. },
  2496. frontErect: {
  2497. height: math.unit(5 + 5 / 12, "feet"),
  2498. weight: math.unit(75, "kg"),
  2499. name: "Front (Erect)",
  2500. image: {
  2501. source: "./media/characters/natasha/front-erect.svg",
  2502. extra: 859 / 824,
  2503. bottom: 23 / 879.6
  2504. }
  2505. },
  2506. back: {
  2507. height: math.unit(5 + 5 / 12, "feet"),
  2508. weight: math.unit(75, "kg"),
  2509. name: "Back",
  2510. image: {
  2511. source: "./media/characters/natasha/back.svg",
  2512. extra: 887.9 / 852.6,
  2513. bottom: 9.7 / 896.4
  2514. }
  2515. },
  2516. backAlt: {
  2517. height: math.unit(5 + 5 / 12, "feet"),
  2518. weight: math.unit(75, "kg"),
  2519. name: "Back (Alt)",
  2520. image: {
  2521. source: "./media/characters/natasha/back-alt.svg",
  2522. extra: 1236.7 / 1192,
  2523. bottom: 22.3 / 1258.2
  2524. }
  2525. },
  2526. dick: {
  2527. height: math.unit(1.772, "feet"),
  2528. name: "Dick",
  2529. image: {
  2530. source: "./media/characters/natasha/dick.svg"
  2531. }
  2532. },
  2533. paw: {
  2534. height: math.unit(0.250, "meters"),
  2535. name: "Paw",
  2536. image: {
  2537. source: "./media/characters/natasha/paw.svg"
  2538. }
  2539. },
  2540. },
  2541. [
  2542. {
  2543. name: "Normal",
  2544. height: math.unit(5 + 5 / 12, "feet")
  2545. },
  2546. {
  2547. name: "Large",
  2548. height: math.unit(12, "feet")
  2549. },
  2550. {
  2551. name: "Macro",
  2552. height: math.unit(100, "feet"),
  2553. default: true
  2554. },
  2555. {
  2556. name: "Macro+",
  2557. height: math.unit(260, "feet")
  2558. },
  2559. {
  2560. name: "Macro++",
  2561. height: math.unit(1, "mile")
  2562. },
  2563. ]
  2564. ))
  2565. characterMakers.push(() => makeCharacter(
  2566. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2567. {
  2568. front: {
  2569. height: math.unit(6, "feet"),
  2570. weight: math.unit(75, "kg"),
  2571. name: "Front",
  2572. image: {
  2573. source: "./media/characters/malik/front.svg"
  2574. }
  2575. },
  2576. side: {
  2577. height: math.unit(6, "feet"),
  2578. weight: math.unit(75, "kg"),
  2579. name: "Side",
  2580. image: {
  2581. source: "./media/characters/malik/side.svg",
  2582. extra: 1.1539
  2583. }
  2584. },
  2585. back: {
  2586. height: math.unit(6, "feet"),
  2587. weight: math.unit(75, "kg"),
  2588. name: "Back",
  2589. image: {
  2590. source: "./media/characters/malik/back.svg"
  2591. }
  2592. },
  2593. },
  2594. [
  2595. {
  2596. name: "Macro",
  2597. height: math.unit(156, "feet"),
  2598. default: true
  2599. },
  2600. {
  2601. name: "Macro+",
  2602. height: math.unit(1188, "feet")
  2603. },
  2604. ]
  2605. ))
  2606. characterMakers.push(() => makeCharacter(
  2607. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2608. {
  2609. front: {
  2610. height: math.unit(6, "feet"),
  2611. weight: math.unit(75, "kg"),
  2612. name: "Front",
  2613. image: {
  2614. source: "./media/characters/sefer/front.svg",
  2615. extra: 848 / 659,
  2616. bottom: 28.3 / 876.442
  2617. }
  2618. },
  2619. back: {
  2620. height: math.unit(6, "feet"),
  2621. weight: math.unit(75, "kg"),
  2622. name: "Back",
  2623. image: {
  2624. source: "./media/characters/sefer/back.svg",
  2625. extra: 864 / 695,
  2626. bottom: 10 / 871
  2627. }
  2628. },
  2629. frontDressed: {
  2630. height: math.unit(6, "feet"),
  2631. weight: math.unit(75, "kg"),
  2632. name: "Front (Dressed)",
  2633. image: {
  2634. source: "./media/characters/sefer/front-dressed.svg",
  2635. extra: 839 / 653,
  2636. bottom: 37.6 / 878
  2637. }
  2638. },
  2639. },
  2640. [
  2641. {
  2642. name: "Normal",
  2643. height: math.unit(6, "feet"),
  2644. default: true
  2645. },
  2646. ]
  2647. ))
  2648. characterMakers.push(() => makeCharacter(
  2649. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2650. {
  2651. body: {
  2652. height: math.unit(2.2428, "meter"),
  2653. weight: math.unit(124.738, "kg"),
  2654. name: "Body",
  2655. image: {
  2656. extra: 1225 / 1050,
  2657. source: "./media/characters/north/front.svg"
  2658. }
  2659. }
  2660. },
  2661. [
  2662. {
  2663. name: "Micro",
  2664. height: math.unit(4, "inches")
  2665. },
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(63, "meters")
  2669. },
  2670. {
  2671. name: "Megamacro",
  2672. height: math.unit(101, "miles"),
  2673. default: true
  2674. }
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2679. {
  2680. angled: {
  2681. height: math.unit(4, "meter"),
  2682. weight: math.unit(150, "kg"),
  2683. name: "Angled",
  2684. image: {
  2685. source: "./media/characters/talan/angled-sfw.svg",
  2686. bottom: 29 / 3734
  2687. }
  2688. },
  2689. angledNsfw: {
  2690. height: math.unit(4, "meter"),
  2691. weight: math.unit(150, "kg"),
  2692. name: "Angled (NSFW)",
  2693. image: {
  2694. source: "./media/characters/talan/angled-nsfw.svg",
  2695. bottom: 29 / 3734
  2696. }
  2697. },
  2698. frontNsfw: {
  2699. height: math.unit(4, "meter"),
  2700. weight: math.unit(150, "kg"),
  2701. name: "Front (NSFW)",
  2702. image: {
  2703. source: "./media/characters/talan/front-nsfw.svg",
  2704. bottom: 29 / 3734
  2705. }
  2706. },
  2707. sideNsfw: {
  2708. height: math.unit(4, "meter"),
  2709. weight: math.unit(150, "kg"),
  2710. name: "Side (NSFW)",
  2711. image: {
  2712. source: "./media/characters/talan/side-nsfw.svg",
  2713. bottom: 29 / 3734
  2714. }
  2715. },
  2716. back: {
  2717. height: math.unit(4, "meter"),
  2718. weight: math.unit(150, "kg"),
  2719. name: "Back",
  2720. image: {
  2721. source: "./media/characters/talan/back.svg"
  2722. }
  2723. },
  2724. dickBottom: {
  2725. height: math.unit(0.621, "meter"),
  2726. name: "Dick (Bottom)",
  2727. image: {
  2728. source: "./media/characters/talan/dick-bottom.svg"
  2729. }
  2730. },
  2731. dickTop: {
  2732. height: math.unit(0.621, "meter"),
  2733. name: "Dick (Top)",
  2734. image: {
  2735. source: "./media/characters/talan/dick-top.svg"
  2736. }
  2737. },
  2738. dickSide: {
  2739. height: math.unit(0.305, "meter"),
  2740. name: "Dick (Side)",
  2741. image: {
  2742. source: "./media/characters/talan/dick-side.svg"
  2743. }
  2744. },
  2745. dickFront: {
  2746. height: math.unit(0.305, "meter"),
  2747. name: "Dick (Front)",
  2748. image: {
  2749. source: "./media/characters/talan/dick-front.svg"
  2750. }
  2751. },
  2752. },
  2753. [
  2754. {
  2755. name: "Normal",
  2756. height: math.unit(4, "meters")
  2757. },
  2758. {
  2759. name: "Macro",
  2760. height: math.unit(100, "meters")
  2761. },
  2762. {
  2763. name: "Megamacro",
  2764. height: math.unit(2, "miles"),
  2765. default: true
  2766. },
  2767. {
  2768. name: "Gigamacro",
  2769. height: math.unit(5000, "miles")
  2770. },
  2771. {
  2772. name: "Teramacro",
  2773. height: math.unit(100, "parsecs")
  2774. }
  2775. ]
  2776. ))
  2777. characterMakers.push(() => makeCharacter(
  2778. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2779. {
  2780. front: {
  2781. height: math.unit(2, "meter"),
  2782. weight: math.unit(90, "kg"),
  2783. name: "Front",
  2784. image: {
  2785. source: "./media/characters/gael'rathus/front.svg"
  2786. }
  2787. },
  2788. frontAlt: {
  2789. height: math.unit(2, "meter"),
  2790. weight: math.unit(90, "kg"),
  2791. name: "Front (alt)",
  2792. image: {
  2793. source: "./media/characters/gael'rathus/front-alt.svg"
  2794. }
  2795. },
  2796. frontAlt2: {
  2797. height: math.unit(2, "meter"),
  2798. weight: math.unit(90, "kg"),
  2799. name: "Front (alt 2)",
  2800. image: {
  2801. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2802. }
  2803. }
  2804. },
  2805. [
  2806. {
  2807. name: "Normal",
  2808. height: math.unit(9, "feet"),
  2809. default: true
  2810. },
  2811. {
  2812. name: "Large",
  2813. height: math.unit(25, "feet")
  2814. },
  2815. {
  2816. name: "Macro",
  2817. height: math.unit(0.25, "miles")
  2818. },
  2819. {
  2820. name: "Megamacro",
  2821. height: math.unit(10, "miles")
  2822. }
  2823. ]
  2824. ))
  2825. characterMakers.push(() => makeCharacter(
  2826. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2827. {
  2828. side: {
  2829. height: math.unit(2, "meter"),
  2830. weight: math.unit(140, "kg"),
  2831. name: "Side",
  2832. image: {
  2833. source: "./media/characters/sosha/side.svg",
  2834. bottom: 0.042
  2835. }
  2836. },
  2837. },
  2838. [
  2839. {
  2840. name: "Normal",
  2841. height: math.unit(12, "feet"),
  2842. default: true
  2843. }
  2844. ]
  2845. ))
  2846. characterMakers.push(() => makeCharacter(
  2847. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2848. {
  2849. side: {
  2850. height: math.unit(5 + 5 / 12, "feet"),
  2851. weight: math.unit(170, "kg"),
  2852. name: "Side",
  2853. image: {
  2854. source: "./media/characters/runnola/side.svg",
  2855. extra: 741 / 448,
  2856. bottom: 0.05
  2857. }
  2858. },
  2859. },
  2860. [
  2861. {
  2862. name: "Small",
  2863. height: math.unit(3, "feet")
  2864. },
  2865. {
  2866. name: "Normal",
  2867. height: math.unit(5 + 5 / 12, "feet"),
  2868. default: true
  2869. },
  2870. {
  2871. name: "Big",
  2872. height: math.unit(10, "feet")
  2873. },
  2874. ]
  2875. ))
  2876. characterMakers.push(() => makeCharacter(
  2877. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2878. {
  2879. front: {
  2880. height: math.unit(2, "meter"),
  2881. weight: math.unit(50, "kg"),
  2882. name: "Front",
  2883. image: {
  2884. source: "./media/characters/kurribird/front.svg",
  2885. bottom: 0.015
  2886. }
  2887. },
  2888. frontAlt: {
  2889. height: math.unit(1.5, "meter"),
  2890. weight: math.unit(50, "kg"),
  2891. name: "Front (Alt)",
  2892. image: {
  2893. source: "./media/characters/kurribird/front-alt.svg",
  2894. extra: 1.45
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Normal",
  2901. height: math.unit(7, "feet")
  2902. },
  2903. {
  2904. name: "Big",
  2905. height: math.unit(12, "feet"),
  2906. default: true
  2907. },
  2908. {
  2909. name: "Macro",
  2910. height: math.unit(1500, "feet")
  2911. },
  2912. {
  2913. name: "Megamacro",
  2914. height: math.unit(2, "miles")
  2915. }
  2916. ]
  2917. ))
  2918. characterMakers.push(() => makeCharacter(
  2919. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2920. {
  2921. front: {
  2922. height: math.unit(2, "meter"),
  2923. weight: math.unit(80, "kg"),
  2924. name: "Front",
  2925. image: {
  2926. source: "./media/characters/elbial/front.svg",
  2927. extra: 1643 / 1556,
  2928. bottom: 60.2 / 1696
  2929. }
  2930. },
  2931. side: {
  2932. height: math.unit(2, "meter"),
  2933. weight: math.unit(80, "kg"),
  2934. name: "Side",
  2935. image: {
  2936. source: "./media/characters/elbial/side.svg",
  2937. extra: 1630 / 1565,
  2938. bottom: 71.5 / 1697
  2939. }
  2940. },
  2941. back: {
  2942. height: math.unit(2, "meter"),
  2943. weight: math.unit(80, "kg"),
  2944. name: "Back",
  2945. image: {
  2946. source: "./media/characters/elbial/back.svg",
  2947. extra: 1668 / 1595,
  2948. bottom: 5.6 / 1672
  2949. }
  2950. },
  2951. frontDressed: {
  2952. height: math.unit(2, "meter"),
  2953. weight: math.unit(80, "kg"),
  2954. name: "Front (Dressed)",
  2955. image: {
  2956. source: "./media/characters/elbial/front-dressed.svg",
  2957. extra: 1653 / 1584,
  2958. bottom: 57 / 1708
  2959. }
  2960. },
  2961. genitals: {
  2962. height: math.unit(2 / 3.367, "meter"),
  2963. name: "Genitals",
  2964. image: {
  2965. source: "./media/characters/elbial/genitals.svg"
  2966. }
  2967. },
  2968. },
  2969. [
  2970. {
  2971. name: "Large",
  2972. height: math.unit(100, "feet")
  2973. },
  2974. {
  2975. name: "Macro",
  2976. height: math.unit(500, "feet"),
  2977. default: true
  2978. },
  2979. {
  2980. name: "Megamacro",
  2981. height: math.unit(10, "miles")
  2982. },
  2983. {
  2984. name: "Gigamacro",
  2985. height: math.unit(25000, "miles")
  2986. },
  2987. {
  2988. name: "Full-Size",
  2989. height: math.unit(8000000, "gigaparsecs")
  2990. }
  2991. ]
  2992. ))
  2993. characterMakers.push(() => makeCharacter(
  2994. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2995. {
  2996. front: {
  2997. height: math.unit(2, "meter"),
  2998. weight: math.unit(60, "kg"),
  2999. name: "Front",
  3000. image: {
  3001. source: "./media/characters/noah/front.svg"
  3002. }
  3003. },
  3004. talons: {
  3005. height: math.unit(0.315, "meter"),
  3006. name: "Talons",
  3007. image: {
  3008. source: "./media/characters/noah/talons.svg"
  3009. }
  3010. }
  3011. },
  3012. [
  3013. {
  3014. name: "Large",
  3015. height: math.unit(50, "feet")
  3016. },
  3017. {
  3018. name: "Macro",
  3019. height: math.unit(750, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(50, "miles")
  3025. },
  3026. {
  3027. name: "Gigamacro",
  3028. height: math.unit(100000, "miles")
  3029. },
  3030. {
  3031. name: "Full-Size",
  3032. height: math.unit(3000000000, "miles")
  3033. }
  3034. ]
  3035. ))
  3036. characterMakers.push(() => makeCharacter(
  3037. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3038. {
  3039. front: {
  3040. height: math.unit(2, "meter"),
  3041. weight: math.unit(80, "kg"),
  3042. name: "Front",
  3043. image: {
  3044. source: "./media/characters/natalya/front.svg"
  3045. }
  3046. },
  3047. back: {
  3048. height: math.unit(2, "meter"),
  3049. weight: math.unit(80, "kg"),
  3050. name: "Back",
  3051. image: {
  3052. source: "./media/characters/natalya/back.svg"
  3053. }
  3054. }
  3055. },
  3056. [
  3057. {
  3058. name: "Normal",
  3059. height: math.unit(150, "feet"),
  3060. default: true
  3061. },
  3062. {
  3063. name: "Megamacro",
  3064. height: math.unit(5, "miles")
  3065. },
  3066. {
  3067. name: "Full-Size",
  3068. height: math.unit(600, "kiloparsecs")
  3069. }
  3070. ]
  3071. ))
  3072. characterMakers.push(() => makeCharacter(
  3073. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3074. {
  3075. front: {
  3076. height: math.unit(2, "meter"),
  3077. weight: math.unit(50, "kg"),
  3078. name: "Front",
  3079. image: {
  3080. source: "./media/characters/erestrebah/front.svg",
  3081. extra: 208 / 193,
  3082. bottom: 0.055
  3083. }
  3084. },
  3085. back: {
  3086. height: math.unit(2, "meter"),
  3087. weight: math.unit(50, "kg"),
  3088. name: "Back",
  3089. image: {
  3090. source: "./media/characters/erestrebah/back.svg",
  3091. extra: 1.3
  3092. }
  3093. }
  3094. },
  3095. [
  3096. {
  3097. name: "Normal",
  3098. height: math.unit(10, "feet")
  3099. },
  3100. {
  3101. name: "Large",
  3102. height: math.unit(50, "feet"),
  3103. default: true
  3104. },
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(300, "feet")
  3108. },
  3109. {
  3110. name: "Macro+",
  3111. height: math.unit(750, "feet")
  3112. },
  3113. {
  3114. name: "Megamacro",
  3115. height: math.unit(3, "miles")
  3116. }
  3117. ]
  3118. ))
  3119. characterMakers.push(() => makeCharacter(
  3120. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3121. {
  3122. front: {
  3123. height: math.unit(2, "meter"),
  3124. weight: math.unit(80, "kg"),
  3125. name: "Front",
  3126. image: {
  3127. source: "./media/characters/jennifer/front.svg",
  3128. bottom: 0.11,
  3129. extra: 1.16
  3130. }
  3131. },
  3132. frontAlt: {
  3133. height: math.unit(2, "meter"),
  3134. weight: math.unit(80, "kg"),
  3135. name: "Front (Alt)",
  3136. image: {
  3137. source: "./media/characters/jennifer/front-alt.svg"
  3138. }
  3139. }
  3140. },
  3141. [
  3142. {
  3143. name: "Canon Height",
  3144. height: math.unit(120, "feet"),
  3145. default: true
  3146. },
  3147. {
  3148. name: "Macro+",
  3149. height: math.unit(300, "feet")
  3150. },
  3151. {
  3152. name: "Megamacro",
  3153. height: math.unit(20000, "feet")
  3154. }
  3155. ]
  3156. ))
  3157. characterMakers.push(() => makeCharacter(
  3158. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3159. {
  3160. front: {
  3161. height: math.unit(2, "meter"),
  3162. weight: math.unit(50, "kg"),
  3163. name: "Front",
  3164. image: {
  3165. source: "./media/characters/kalista/front.svg",
  3166. extra: 1947 / 1700,
  3167. bottom: 76.6 / 1412.98
  3168. }
  3169. },
  3170. back: {
  3171. height: math.unit(2, "meter"),
  3172. weight: math.unit(50, "kg"),
  3173. name: "Back",
  3174. image: {
  3175. source: "./media/characters/kalista/back.svg",
  3176. extra: 1366 / 1156,
  3177. bottom: 33.9 / 1362.78
  3178. }
  3179. }
  3180. },
  3181. [
  3182. {
  3183. name: "Uncomfortably Small",
  3184. height: math.unit(10, "feet")
  3185. },
  3186. {
  3187. name: "Small",
  3188. height: math.unit(30, "feet")
  3189. },
  3190. {
  3191. name: "Macro",
  3192. height: math.unit(100, "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Macro+",
  3197. height: math.unit(2000, "feet")
  3198. },
  3199. {
  3200. name: "True Form",
  3201. height: math.unit(8924, "miles")
  3202. }
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(2, "meter"),
  3210. weight: math.unit(120, "kg"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/ggv/front.svg"
  3214. }
  3215. },
  3216. side: {
  3217. height: math.unit(2, "meter"),
  3218. weight: math.unit(120, "kg"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/ggv/side.svg"
  3222. }
  3223. }
  3224. },
  3225. [
  3226. {
  3227. name: "Extremely Puny",
  3228. height: math.unit(9 + 5 / 12, "feet")
  3229. },
  3230. {
  3231. name: "Horribly Small",
  3232. height: math.unit(47.7, "miles"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Reasonably Sized",
  3237. height: math.unit(25000, "parsecs")
  3238. },
  3239. {
  3240. name: "Slightly Uncompressed",
  3241. height: math.unit(7.77e31, "parsecs")
  3242. },
  3243. {
  3244. name: "Omniversal",
  3245. height: math.unit(1e300, "meters")
  3246. },
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(2, "meter"),
  3254. weight: math.unit(75, "lb"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/napalm/front.svg"
  3258. }
  3259. },
  3260. back: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(75, "lb"),
  3263. name: "Back",
  3264. image: {
  3265. source: "./media/characters/napalm/back.svg"
  3266. }
  3267. }
  3268. },
  3269. [
  3270. {
  3271. name: "Standard",
  3272. height: math.unit(55, "feet"),
  3273. default: true
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(7 + 5 / 6, "feet"),
  3282. weight: math.unit(325, "lb"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/asana/front.svg",
  3286. extra: 1133 / 1060,
  3287. bottom: 15.2 / 1148.6
  3288. }
  3289. },
  3290. back: {
  3291. height: math.unit(7 + 5 / 6, "feet"),
  3292. weight: math.unit(325, "lb"),
  3293. name: "Back",
  3294. image: {
  3295. source: "./media/characters/asana/back.svg",
  3296. extra: 1114 / 1043,
  3297. bottom: 5 / 1120
  3298. }
  3299. },
  3300. dressedDark: {
  3301. height: math.unit(7 + 5 / 6, "feet"),
  3302. weight: math.unit(325, "lb"),
  3303. name: "Dressed (Dark)",
  3304. image: {
  3305. source: "./media/characters/asana/dressed-dark.svg",
  3306. extra: 1133 / 1060,
  3307. bottom: 15.2 / 1148.6
  3308. }
  3309. },
  3310. dressedLight: {
  3311. height: math.unit(7 + 5 / 6, "feet"),
  3312. weight: math.unit(325, "lb"),
  3313. name: "Dressed (Light)",
  3314. image: {
  3315. source: "./media/characters/asana/dressed-light.svg",
  3316. extra: 1133 / 1060,
  3317. bottom: 15.2 / 1148.6
  3318. }
  3319. },
  3320. },
  3321. [
  3322. {
  3323. name: "Standard",
  3324. height: math.unit(7 + 5 / 6, "feet"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Large",
  3329. height: math.unit(10, "meters")
  3330. },
  3331. {
  3332. name: "Macro",
  3333. height: math.unit(2500, "meters")
  3334. },
  3335. {
  3336. name: "Megamacro",
  3337. height: math.unit(5e6, "meters")
  3338. },
  3339. {
  3340. name: "Examacro",
  3341. height: math.unit(5e12, "lightyears")
  3342. },
  3343. {
  3344. name: "Max Size",
  3345. height: math.unit(1e31, "lightyears")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(60, "kg"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/ebony/front.svg",
  3358. bottom: 0.03,
  3359. extra: 1045 / 810 + 0.03
  3360. }
  3361. },
  3362. side: {
  3363. height: math.unit(2, "meter"),
  3364. weight: math.unit(60, "kg"),
  3365. name: "Side",
  3366. image: {
  3367. source: "./media/characters/ebony/side.svg",
  3368. bottom: 0.03,
  3369. extra: 1045 / 810 + 0.03
  3370. }
  3371. },
  3372. back: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(60, "kg"),
  3375. name: "Back",
  3376. image: {
  3377. source: "./media/characters/ebony/back.svg",
  3378. bottom: 0.01,
  3379. extra: 1045 / 810 + 0.01
  3380. }
  3381. },
  3382. },
  3383. [
  3384. // TODO check why I did this lol
  3385. {
  3386. name: "Standard",
  3387. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3388. default: true
  3389. },
  3390. {
  3391. name: "Macro",
  3392. height: math.unit(200, "feet")
  3393. },
  3394. {
  3395. name: "Gigamacro",
  3396. height: math.unit(13000, "km")
  3397. }
  3398. ]
  3399. ))
  3400. characterMakers.push(() => makeCharacter(
  3401. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3402. {
  3403. front: {
  3404. height: math.unit(6, "feet"),
  3405. weight: math.unit(175, "lb"),
  3406. name: "Front",
  3407. image: {
  3408. source: "./media/characters/mountain/front.svg",
  3409. extra: 972 / 955,
  3410. bottom: 64 / 1036.6
  3411. }
  3412. },
  3413. back: {
  3414. height: math.unit(6, "feet"),
  3415. weight: math.unit(175, "lb"),
  3416. name: "Back",
  3417. image: {
  3418. source: "./media/characters/mountain/back.svg",
  3419. extra: 970 / 950,
  3420. bottom: 28.25 / 999
  3421. }
  3422. },
  3423. },
  3424. [
  3425. {
  3426. name: "Large",
  3427. height: math.unit(20, "meters")
  3428. },
  3429. {
  3430. name: "Macro",
  3431. height: math.unit(300, "meters")
  3432. },
  3433. {
  3434. name: "Gigamacro",
  3435. height: math.unit(10000, "km"),
  3436. default: true
  3437. },
  3438. {
  3439. name: "Examacro",
  3440. height: math.unit(10e9, "lightyears")
  3441. }
  3442. ]
  3443. ))
  3444. characterMakers.push(() => makeCharacter(
  3445. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3446. {
  3447. front: {
  3448. height: math.unit(8, "feet"),
  3449. weight: math.unit(500, "lb"),
  3450. name: "Front",
  3451. image: {
  3452. source: "./media/characters/rick/front.svg"
  3453. }
  3454. }
  3455. },
  3456. [
  3457. {
  3458. name: "Normal",
  3459. height: math.unit(8, "feet"),
  3460. default: true
  3461. },
  3462. {
  3463. name: "Macro",
  3464. height: math.unit(5, "km")
  3465. }
  3466. ]
  3467. ))
  3468. characterMakers.push(() => makeCharacter(
  3469. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3470. {
  3471. front: {
  3472. height: math.unit(8, "feet"),
  3473. weight: math.unit(120, "lb"),
  3474. name: "Front",
  3475. image: {
  3476. source: "./media/characters/ona/front.svg"
  3477. }
  3478. },
  3479. frontAlt: {
  3480. height: math.unit(8, "feet"),
  3481. weight: math.unit(120, "lb"),
  3482. name: "Front (Alt)",
  3483. image: {
  3484. source: "./media/characters/ona/front-alt.svg"
  3485. }
  3486. },
  3487. back: {
  3488. height: math.unit(8, "feet"),
  3489. weight: math.unit(120, "lb"),
  3490. name: "Back",
  3491. image: {
  3492. source: "./media/characters/ona/back.svg"
  3493. }
  3494. },
  3495. foot: {
  3496. height: math.unit(1.1, "feet"),
  3497. name: "Foot",
  3498. image: {
  3499. source: "./media/characters/ona/foot.svg"
  3500. }
  3501. }
  3502. },
  3503. [
  3504. {
  3505. name: "Megamacro",
  3506. height: math.unit(70, "km"),
  3507. default: true
  3508. },
  3509. {
  3510. name: "Gigamacro",
  3511. height: math.unit(681818, "miles")
  3512. },
  3513. {
  3514. name: "Examacro",
  3515. height: math.unit(3800000, "lightyears")
  3516. },
  3517. ]
  3518. ))
  3519. characterMakers.push(() => makeCharacter(
  3520. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3521. {
  3522. front: {
  3523. height: math.unit(12, "feet"),
  3524. weight: math.unit(3000, "lb"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/mech/front.svg",
  3528. extra: 2900 / 2770,
  3529. bottom: 110 / 3010
  3530. }
  3531. },
  3532. back: {
  3533. height: math.unit(12, "feet"),
  3534. weight: math.unit(3000, "lb"),
  3535. name: "Back",
  3536. image: {
  3537. source: "./media/characters/mech/back.svg",
  3538. extra: 3011 / 2890,
  3539. bottom: 94 / 3105
  3540. }
  3541. },
  3542. maw: {
  3543. height: math.unit(3.07, "feet"),
  3544. name: "Maw",
  3545. image: {
  3546. source: "./media/characters/mech/maw.svg"
  3547. }
  3548. },
  3549. head: {
  3550. height: math.unit(2.82, "feet"),
  3551. name: "Head",
  3552. image: {
  3553. source: "./media/characters/mech/head.svg"
  3554. }
  3555. },
  3556. dick: {
  3557. height: math.unit(1.43, "feet"),
  3558. name: "Dick",
  3559. image: {
  3560. source: "./media/characters/mech/dick.svg"
  3561. }
  3562. },
  3563. },
  3564. [
  3565. {
  3566. name: "Normal",
  3567. height: math.unit(12, "feet")
  3568. },
  3569. {
  3570. name: "Macro",
  3571. height: math.unit(300, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Macro+",
  3576. height: math.unit(1500, "feet")
  3577. },
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3582. {
  3583. front: {
  3584. height: math.unit(1.3, "meter"),
  3585. weight: math.unit(30, "kg"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/gregory/front.svg",
  3589. }
  3590. }
  3591. },
  3592. [
  3593. {
  3594. name: "Normal",
  3595. height: math.unit(1.3, "meter"),
  3596. default: true
  3597. },
  3598. {
  3599. name: "Macro",
  3600. height: math.unit(20, "meter")
  3601. }
  3602. ]
  3603. ))
  3604. characterMakers.push(() => makeCharacter(
  3605. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3606. {
  3607. front: {
  3608. height: math.unit(2.8, "meter"),
  3609. weight: math.unit(200, "kg"),
  3610. name: "Front",
  3611. image: {
  3612. source: "./media/characters/elory/front.svg",
  3613. }
  3614. }
  3615. },
  3616. [
  3617. {
  3618. name: "Normal",
  3619. height: math.unit(2.8, "meter"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(38, "meter")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(470, "feet"),
  3633. weight: math.unit(924, "tons"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/angelpatamon/front.svg",
  3637. }
  3638. }
  3639. },
  3640. [
  3641. {
  3642. name: "Normal",
  3643. height: math.unit(470, "feet"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Deity Size I",
  3648. height: math.unit(28651.2, "km")
  3649. },
  3650. {
  3651. name: "Deity Size II",
  3652. height: math.unit(171907.2, "km")
  3653. }
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3658. {
  3659. side: {
  3660. height: math.unit(7.2, "meter"),
  3661. weight: math.unit(8.2, "tons"),
  3662. name: "Side",
  3663. image: {
  3664. source: "./media/characters/cryae/side.svg",
  3665. extra: 3500 / 1500
  3666. }
  3667. }
  3668. },
  3669. [
  3670. {
  3671. name: "Normal",
  3672. height: math.unit(7.2, "meter"),
  3673. default: true
  3674. }
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3679. {
  3680. front: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(175, "lb"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/xera/front.svg",
  3686. extra: 2377 / 1972,
  3687. bottom: 75.5 / 2452
  3688. }
  3689. },
  3690. side: {
  3691. height: math.unit(6, "feet"),
  3692. weight: math.unit(175, "lb"),
  3693. name: "Side",
  3694. image: {
  3695. source: "./media/characters/xera/side.svg",
  3696. extra: 2345 / 2019,
  3697. bottom: 39.7 / 2384
  3698. }
  3699. },
  3700. back: {
  3701. height: math.unit(6, "feet"),
  3702. weight: math.unit(175, "lb"),
  3703. name: "Back",
  3704. image: {
  3705. source: "./media/characters/xera/back.svg",
  3706. extra: 2095 / 1984,
  3707. bottom: 67 / 2166
  3708. }
  3709. },
  3710. },
  3711. [
  3712. {
  3713. name: "Small",
  3714. height: math.unit(10, "feet")
  3715. },
  3716. {
  3717. name: "Macro",
  3718. height: math.unit(500, "meters"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Macro+",
  3723. height: math.unit(10, "km")
  3724. },
  3725. {
  3726. name: "Gigamacro",
  3727. height: math.unit(25000, "km")
  3728. },
  3729. {
  3730. name: "Teramacro",
  3731. height: math.unit(3e6, "km")
  3732. }
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(6, "feet"),
  3740. weight: math.unit(175, "lb"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/nebula/front.svg",
  3744. extra: 2566 / 2362,
  3745. bottom: 81 / 2644
  3746. }
  3747. }
  3748. },
  3749. [
  3750. {
  3751. name: "Small",
  3752. height: math.unit(4.5, "meters")
  3753. },
  3754. {
  3755. name: "Macro",
  3756. height: math.unit(1500, "meters"),
  3757. default: true
  3758. },
  3759. {
  3760. name: "Megamacro",
  3761. height: math.unit(150, "km")
  3762. },
  3763. {
  3764. name: "Gigamacro",
  3765. height: math.unit(27000, "km")
  3766. }
  3767. ]
  3768. ))
  3769. characterMakers.push(() => makeCharacter(
  3770. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3771. {
  3772. front: {
  3773. height: math.unit(6, "feet"),
  3774. weight: math.unit(225, "lb"),
  3775. name: "Front",
  3776. image: {
  3777. source: "./media/characters/abysgar/front.svg"
  3778. }
  3779. }
  3780. },
  3781. [
  3782. {
  3783. name: "Small",
  3784. height: math.unit(4.5, "meters")
  3785. },
  3786. {
  3787. name: "Macro",
  3788. height: math.unit(1250, "meters"),
  3789. default: true
  3790. },
  3791. {
  3792. name: "Megamacro",
  3793. height: math.unit(125, "km")
  3794. },
  3795. {
  3796. name: "Gigamacro",
  3797. height: math.unit(26000, "km")
  3798. }
  3799. ]
  3800. ))
  3801. characterMakers.push(() => makeCharacter(
  3802. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3803. {
  3804. front: {
  3805. height: math.unit(6, "feet"),
  3806. weight: math.unit(180, "lb"),
  3807. name: "Front",
  3808. image: {
  3809. source: "./media/characters/yakuz/front.svg"
  3810. }
  3811. }
  3812. },
  3813. [
  3814. {
  3815. name: "Small",
  3816. height: math.unit(5, "meters")
  3817. },
  3818. {
  3819. name: "Macro",
  3820. height: math.unit(1500, "meters"),
  3821. default: true
  3822. },
  3823. {
  3824. name: "Megamacro",
  3825. height: math.unit(200, "km")
  3826. },
  3827. {
  3828. name: "Gigamacro",
  3829. height: math.unit(100000, "km")
  3830. }
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(175, "lb"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/mirova/front.svg",
  3842. extra: 3334 / 3071,
  3843. bottom: 42 / 3375.6
  3844. }
  3845. }
  3846. },
  3847. [
  3848. {
  3849. name: "Small",
  3850. height: math.unit(5, "meters")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(900, "meters"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Megamacro",
  3859. height: math.unit(135, "km")
  3860. },
  3861. {
  3862. name: "Gigamacro",
  3863. height: math.unit(20000, "km")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3869. {
  3870. side: {
  3871. height: math.unit(28.35, "feet"),
  3872. weight: math.unit(99.75, "tons"),
  3873. name: "Side",
  3874. image: {
  3875. source: "./media/characters/asana-mech/side.svg",
  3876. extra: 923 / 699,
  3877. bottom: 50 / 975
  3878. }
  3879. },
  3880. chaingun: {
  3881. height: math.unit(7, "feet"),
  3882. weight: math.unit(2400, "lb"),
  3883. name: "Chaingun",
  3884. image: {
  3885. source: "./media/characters/asana-mech/chaingun.svg"
  3886. }
  3887. },
  3888. laser: {
  3889. height: math.unit(7.12, "feet"),
  3890. weight: math.unit(2000, "lb"),
  3891. name: "Laser",
  3892. image: {
  3893. source: "./media/characters/asana-mech/laser.svg"
  3894. }
  3895. },
  3896. },
  3897. [
  3898. {
  3899. name: "Normal",
  3900. height: math.unit(28.35, "feet"),
  3901. default: true
  3902. },
  3903. {
  3904. name: "Macro",
  3905. height: math.unit(2500, "feet")
  3906. },
  3907. {
  3908. name: "Megamacro",
  3909. height: math.unit(25, "miles")
  3910. },
  3911. {
  3912. name: "Examacro",
  3913. height: math.unit(6e8, "lightyears")
  3914. },
  3915. ]
  3916. ))
  3917. characterMakers.push(() => makeCharacter(
  3918. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3919. {
  3920. front: {
  3921. height: math.unit(5, "meters"),
  3922. weight: math.unit(1000, "kg"),
  3923. name: "Front",
  3924. image: {
  3925. source: "./media/characters/asche/front.svg",
  3926. extra: 1258 / 1190,
  3927. bottom: 47 / 1305
  3928. }
  3929. },
  3930. frontUnderwear: {
  3931. height: math.unit(5, "meters"),
  3932. weight: math.unit(1000, "kg"),
  3933. name: "Front (Underwear)",
  3934. image: {
  3935. source: "./media/characters/asche/front-underwear.svg",
  3936. extra: 1258 / 1190,
  3937. bottom: 47 / 1305
  3938. }
  3939. },
  3940. frontDressed: {
  3941. height: math.unit(5, "meters"),
  3942. weight: math.unit(1000, "kg"),
  3943. name: "Front (Dressed)",
  3944. image: {
  3945. source: "./media/characters/asche/front-dressed.svg",
  3946. extra: 1258 / 1190,
  3947. bottom: 47 / 1305
  3948. }
  3949. },
  3950. frontArmor: {
  3951. height: math.unit(5, "meters"),
  3952. weight: math.unit(1000, "kg"),
  3953. name: "Front (Armored)",
  3954. image: {
  3955. source: "./media/characters/asche/front-armored.svg",
  3956. extra: 1374 / 1308,
  3957. bottom: 23 / 1397
  3958. }
  3959. },
  3960. mp724: {
  3961. height: math.unit(0.96, "meters"),
  3962. weight: math.unit(38, "kg"),
  3963. name: "H&K MP724",
  3964. image: {
  3965. source: "./media/characters/asche/h&k-mp724.svg"
  3966. }
  3967. },
  3968. side: {
  3969. height: math.unit(5, "meters"),
  3970. weight: math.unit(1000, "kg"),
  3971. name: "Side",
  3972. image: {
  3973. source: "./media/characters/asche/side.svg",
  3974. extra: 1717 / 1609,
  3975. bottom: 0.005
  3976. }
  3977. },
  3978. back: {
  3979. height: math.unit(5, "meters"),
  3980. weight: math.unit(1000, "kg"),
  3981. name: "Back",
  3982. image: {
  3983. source: "./media/characters/asche/back.svg",
  3984. extra: 1570 / 1501
  3985. }
  3986. },
  3987. },
  3988. [
  3989. {
  3990. name: "DEFCON 5",
  3991. height: math.unit(5, "meters")
  3992. },
  3993. {
  3994. name: "DEFCON 4",
  3995. height: math.unit(500, "meters"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "DEFCON 3",
  4000. height: math.unit(5, "km")
  4001. },
  4002. {
  4003. name: "DEFCON 2",
  4004. height: math.unit(500, "km")
  4005. },
  4006. {
  4007. name: "DEFCON 1",
  4008. height: math.unit(500000, "km")
  4009. },
  4010. {
  4011. name: "DEFCON 0",
  4012. height: math.unit(3, "gigaparsecs")
  4013. },
  4014. ]
  4015. ))
  4016. characterMakers.push(() => makeCharacter(
  4017. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4018. {
  4019. front: {
  4020. height: math.unit(2, "meters"),
  4021. weight: math.unit(76, "kg"),
  4022. name: "Front",
  4023. image: {
  4024. source: "./media/characters/gale/front.svg"
  4025. }
  4026. },
  4027. frontAlt1: {
  4028. height: math.unit(2, "meters"),
  4029. weight: math.unit(76, "kg"),
  4030. name: "Front (Alt 1)",
  4031. image: {
  4032. source: "./media/characters/gale/front-alt-1.svg"
  4033. }
  4034. },
  4035. frontAlt2: {
  4036. height: math.unit(2, "meters"),
  4037. weight: math.unit(76, "kg"),
  4038. name: "Front (Alt 2)",
  4039. image: {
  4040. source: "./media/characters/gale/front-alt-2.svg"
  4041. }
  4042. },
  4043. },
  4044. [
  4045. {
  4046. name: "Normal",
  4047. height: math.unit(7, "feet")
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(150, "feet"),
  4052. default: true
  4053. },
  4054. {
  4055. name: "Macro+",
  4056. height: math.unit(300, "feet")
  4057. },
  4058. ]
  4059. ))
  4060. characterMakers.push(() => makeCharacter(
  4061. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4062. {
  4063. front: {
  4064. height: math.unit(2, "meters"),
  4065. weight: math.unit(76, "kg"),
  4066. name: "Front",
  4067. image: {
  4068. source: "./media/characters/draylen/front.svg"
  4069. }
  4070. }
  4071. },
  4072. [
  4073. {
  4074. name: "Macro",
  4075. height: math.unit(150, "feet"),
  4076. default: true
  4077. }
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4082. {
  4083. front: {
  4084. height: math.unit(7 + 9 / 12, "feet"),
  4085. weight: math.unit(379, "lbs"),
  4086. name: "Front",
  4087. image: {
  4088. source: "./media/characters/chez/front.svg"
  4089. }
  4090. },
  4091. side: {
  4092. height: math.unit(7 + 9 / 12, "feet"),
  4093. weight: math.unit(379, "lbs"),
  4094. name: "Side",
  4095. image: {
  4096. source: "./media/characters/chez/side.svg"
  4097. }
  4098. }
  4099. },
  4100. [
  4101. {
  4102. name: "Normal",
  4103. height: math.unit(7 + 9 / 12, "feet"),
  4104. default: true
  4105. },
  4106. {
  4107. name: "God King",
  4108. height: math.unit(9750000, "meters")
  4109. }
  4110. ]
  4111. ))
  4112. characterMakers.push(() => makeCharacter(
  4113. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4114. {
  4115. front: {
  4116. height: math.unit(6, "feet"),
  4117. weight: math.unit(275, "lbs"),
  4118. name: "Front",
  4119. image: {
  4120. source: "./media/characters/kaylum/front.svg",
  4121. bottom: 0.01,
  4122. extra: 1166 / 1031
  4123. }
  4124. },
  4125. frontWingless: {
  4126. height: math.unit(6, "feet"),
  4127. weight: math.unit(275, "lbs"),
  4128. name: "Front (Wingless)",
  4129. image: {
  4130. source: "./media/characters/kaylum/front-wingless.svg",
  4131. bottom: 0.01,
  4132. extra: 1117 / 1031
  4133. }
  4134. }
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(3.05, "meters")
  4140. },
  4141. {
  4142. name: "Master",
  4143. height: math.unit(5.5, "meters")
  4144. },
  4145. {
  4146. name: "Rampage",
  4147. height: math.unit(19, "meters")
  4148. },
  4149. {
  4150. name: "Macro Lite",
  4151. height: math.unit(37, "meters")
  4152. },
  4153. {
  4154. name: "Hyper Predator",
  4155. height: math.unit(61, "meters")
  4156. },
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(138, "meters"),
  4160. default: true
  4161. }
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4166. {
  4167. front: {
  4168. height: math.unit(6, "feet"),
  4169. weight: math.unit(150, "lbs"),
  4170. name: "Front",
  4171. image: {
  4172. source: "./media/characters/geta/front.svg"
  4173. }
  4174. }
  4175. },
  4176. [
  4177. {
  4178. name: "Micro",
  4179. height: math.unit(3, "inches"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "Normal",
  4184. height: math.unit(5 + 5 / 12, "feet")
  4185. }
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4190. {
  4191. front: {
  4192. height: math.unit(6, "feet"),
  4193. weight: math.unit(300, "lbs"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/tyrnn/front.svg"
  4197. }
  4198. }
  4199. },
  4200. [
  4201. {
  4202. name: "Main Height",
  4203. height: math.unit(355, "feet"),
  4204. default: true
  4205. },
  4206. {
  4207. name: "Fave. Height",
  4208. height: math.unit(2400, "feet")
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(6, "feet"),
  4217. weight: math.unit(300, "lbs"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/appledectomy/front.svg"
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Macro",
  4227. height: math.unit(2500, "feet")
  4228. },
  4229. {
  4230. name: "Megamacro",
  4231. height: math.unit(50, "miles"),
  4232. default: true
  4233. },
  4234. {
  4235. name: "Gigamacro",
  4236. height: math.unit(5000, "miles")
  4237. },
  4238. {
  4239. name: "Teramacro",
  4240. height: math.unit(250000, "miles")
  4241. },
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4246. {
  4247. front: {
  4248. height: math.unit(6, "feet"),
  4249. weight: math.unit(200, "lbs"),
  4250. name: "Front",
  4251. image: {
  4252. source: "./media/characters/vulpes/front.svg",
  4253. extra: 573 / 543,
  4254. bottom: 0.033
  4255. }
  4256. },
  4257. side: {
  4258. height: math.unit(6, "feet"),
  4259. weight: math.unit(200, "lbs"),
  4260. name: "Side",
  4261. image: {
  4262. source: "./media/characters/vulpes/side.svg",
  4263. extra: 577 / 549,
  4264. bottom: 11 / 588
  4265. }
  4266. },
  4267. back: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(200, "lbs"),
  4270. name: "Back",
  4271. image: {
  4272. source: "./media/characters/vulpes/back.svg",
  4273. extra: 573 / 549,
  4274. bottom: 20 / 593
  4275. }
  4276. },
  4277. feet: {
  4278. height: math.unit(1.276, "feet"),
  4279. name: "Feet",
  4280. image: {
  4281. source: "./media/characters/vulpes/feet.svg"
  4282. }
  4283. },
  4284. maw: {
  4285. height: math.unit(1.18, "feet"),
  4286. name: "Maw",
  4287. image: {
  4288. source: "./media/characters/vulpes/maw.svg"
  4289. }
  4290. },
  4291. },
  4292. [
  4293. {
  4294. name: "Micro",
  4295. height: math.unit(2, "inches")
  4296. },
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(6.3, "feet")
  4300. },
  4301. {
  4302. name: "Macro",
  4303. height: math.unit(850, "feet")
  4304. },
  4305. {
  4306. name: "Megamacro",
  4307. height: math.unit(7500, "feet"),
  4308. default: true
  4309. },
  4310. {
  4311. name: "Gigamacro",
  4312. height: math.unit(570000, "miles")
  4313. }
  4314. ]
  4315. ))
  4316. characterMakers.push(() => makeCharacter(
  4317. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4318. {
  4319. front: {
  4320. height: math.unit(6, "feet"),
  4321. weight: math.unit(210, "lbs"),
  4322. name: "Front",
  4323. image: {
  4324. source: "./media/characters/rain-fallen/front.svg"
  4325. }
  4326. },
  4327. side: {
  4328. height: math.unit(6, "feet"),
  4329. weight: math.unit(210, "lbs"),
  4330. name: "Side",
  4331. image: {
  4332. source: "./media/characters/rain-fallen/side.svg"
  4333. }
  4334. },
  4335. back: {
  4336. height: math.unit(6, "feet"),
  4337. weight: math.unit(210, "lbs"),
  4338. name: "Back",
  4339. image: {
  4340. source: "./media/characters/rain-fallen/back.svg"
  4341. }
  4342. },
  4343. feral: {
  4344. height: math.unit(9, "feet"),
  4345. weight: math.unit(700, "lbs"),
  4346. name: "Feral",
  4347. image: {
  4348. source: "./media/characters/rain-fallen/feral.svg"
  4349. }
  4350. },
  4351. },
  4352. [
  4353. {
  4354. name: "Meddling with Mortals",
  4355. height: math.unit(8 + 8/12, "feet")
  4356. },
  4357. {
  4358. name: "Normal",
  4359. height: math.unit(5, "meter")
  4360. },
  4361. {
  4362. name: "Macro",
  4363. height: math.unit(150, "meter"),
  4364. default: true
  4365. },
  4366. {
  4367. name: "Megamacro",
  4368. height: math.unit(278e6, "meter")
  4369. },
  4370. {
  4371. name: "Gigamacro",
  4372. height: math.unit(2e9, "meter")
  4373. },
  4374. {
  4375. name: "Teramacro",
  4376. height: math.unit(8e12, "meter")
  4377. },
  4378. {
  4379. name: "Devourer",
  4380. height: math.unit(14, "zettameters")
  4381. },
  4382. {
  4383. name: "Scarlet King",
  4384. height: math.unit(18, "yottameters")
  4385. },
  4386. {
  4387. name: "Void",
  4388. height: math.unit(6.66e66, "yottameters")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4394. {
  4395. standing: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(180, "lbs"),
  4398. name: "Standing",
  4399. image: {
  4400. source: "./media/characters/zaakira/standing.svg"
  4401. }
  4402. },
  4403. laying: {
  4404. height: math.unit(3, "feet"),
  4405. weight: math.unit(180, "lbs"),
  4406. name: "Laying",
  4407. image: {
  4408. source: "./media/characters/zaakira/laying.svg"
  4409. }
  4410. },
  4411. },
  4412. [
  4413. {
  4414. name: "Normal",
  4415. height: math.unit(12, "feet")
  4416. },
  4417. {
  4418. name: "Macro",
  4419. height: math.unit(279, "feet"),
  4420. default: true
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4426. {
  4427. femSfw: {
  4428. height: math.unit(8, "feet"),
  4429. weight: math.unit(350, "lb"),
  4430. name: "Fem",
  4431. image: {
  4432. source: "./media/characters/sigvald/fem-sfw.svg",
  4433. extra: 182 / 164,
  4434. bottom: 8.7 / 190.5
  4435. }
  4436. },
  4437. femNsfw: {
  4438. height: math.unit(8, "feet"),
  4439. weight: math.unit(350, "lb"),
  4440. name: "Fem (NSFW)",
  4441. image: {
  4442. source: "./media/characters/sigvald/fem-nsfw.svg",
  4443. extra: 182 / 164,
  4444. bottom: 8.7 / 190.5
  4445. }
  4446. },
  4447. maleNsfw: {
  4448. height: math.unit(8, "feet"),
  4449. weight: math.unit(350, "lb"),
  4450. name: "Male (NSFW)",
  4451. image: {
  4452. source: "./media/characters/sigvald/male-nsfw.svg",
  4453. extra: 182 / 164,
  4454. bottom: 8.7 / 190.5
  4455. }
  4456. },
  4457. hermNsfw: {
  4458. height: math.unit(8, "feet"),
  4459. weight: math.unit(350, "lb"),
  4460. name: "Herm (NSFW)",
  4461. image: {
  4462. source: "./media/characters/sigvald/herm-nsfw.svg",
  4463. extra: 182 / 164,
  4464. bottom: 8.7 / 190.5
  4465. }
  4466. },
  4467. dick: {
  4468. height: math.unit(2.36, "feet"),
  4469. name: "Dick",
  4470. image: {
  4471. source: "./media/characters/sigvald/dick.svg"
  4472. }
  4473. },
  4474. eye: {
  4475. height: math.unit(0.31, "feet"),
  4476. name: "Eye",
  4477. image: {
  4478. source: "./media/characters/sigvald/eye.svg"
  4479. }
  4480. },
  4481. mouth: {
  4482. height: math.unit(0.92, "feet"),
  4483. name: "Mouth",
  4484. image: {
  4485. source: "./media/characters/sigvald/mouth.svg"
  4486. }
  4487. },
  4488. paws: {
  4489. height: math.unit(2.2, "feet"),
  4490. name: "Paws",
  4491. image: {
  4492. source: "./media/characters/sigvald/paws.svg"
  4493. }
  4494. }
  4495. },
  4496. [
  4497. {
  4498. name: "Normal",
  4499. height: math.unit(8, "feet")
  4500. },
  4501. {
  4502. name: "Large",
  4503. height: math.unit(12, "feet")
  4504. },
  4505. {
  4506. name: "Larger",
  4507. height: math.unit(20, "feet")
  4508. },
  4509. {
  4510. name: "Macro",
  4511. height: math.unit(150, "feet")
  4512. },
  4513. {
  4514. name: "Macro+",
  4515. height: math.unit(200, "feet"),
  4516. default: true
  4517. },
  4518. ]
  4519. ))
  4520. characterMakers.push(() => makeCharacter(
  4521. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4522. {
  4523. side: {
  4524. height: math.unit(12, "feet"),
  4525. weight: math.unit(2000, "kg"),
  4526. name: "Side",
  4527. image: {
  4528. source: "./media/characters/scott/side.svg",
  4529. extra: 754 / 724,
  4530. bottom: 0.069
  4531. }
  4532. },
  4533. upright: {
  4534. height: math.unit(12, "feet"),
  4535. weight: math.unit(2000, "kg"),
  4536. name: "Upright",
  4537. image: {
  4538. source: "./media/characters/scott/upright.svg",
  4539. extra: 3881 / 3722,
  4540. bottom: 0.05
  4541. }
  4542. },
  4543. },
  4544. [
  4545. {
  4546. name: "Normal",
  4547. height: math.unit(12, "feet"),
  4548. default: true
  4549. },
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4554. {
  4555. side: {
  4556. height: math.unit(8, "meters"),
  4557. weight: math.unit(84755, "lbs"),
  4558. name: "Side",
  4559. image: {
  4560. source: "./media/characters/tobias/side.svg",
  4561. extra: 1474 / 1096,
  4562. bottom: 38.9 / 1513.1235
  4563. }
  4564. },
  4565. },
  4566. [
  4567. {
  4568. name: "Normal",
  4569. height: math.unit(8, "meters"),
  4570. default: true
  4571. },
  4572. ]
  4573. ))
  4574. characterMakers.push(() => makeCharacter(
  4575. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4576. {
  4577. front: {
  4578. height: math.unit(5.5, "feet"),
  4579. weight: math.unit(400, "lbs"),
  4580. name: "Front",
  4581. image: {
  4582. source: "./media/characters/kieran/front.svg",
  4583. extra: 2694 / 2364,
  4584. bottom: 217 / 2908
  4585. }
  4586. },
  4587. side: {
  4588. height: math.unit(5.5, "feet"),
  4589. weight: math.unit(400, "lbs"),
  4590. name: "Side",
  4591. image: {
  4592. source: "./media/characters/kieran/side.svg",
  4593. extra: 875 / 777,
  4594. bottom: 84.6 / 959
  4595. }
  4596. },
  4597. },
  4598. [
  4599. {
  4600. name: "Normal",
  4601. height: math.unit(5.5, "feet"),
  4602. default: true
  4603. },
  4604. ]
  4605. ))
  4606. characterMakers.push(() => makeCharacter(
  4607. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4608. {
  4609. side: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(70, "kg"),
  4612. name: "Side",
  4613. image: {
  4614. source: "./media/characters/sanya/side.svg",
  4615. bottom: 0.02,
  4616. extra: 1.02
  4617. }
  4618. },
  4619. },
  4620. [
  4621. {
  4622. name: "Small",
  4623. height: math.unit(2, "meters")
  4624. },
  4625. {
  4626. name: "Normal",
  4627. height: math.unit(3, "meters")
  4628. },
  4629. {
  4630. name: "Macro",
  4631. height: math.unit(16, "meters"),
  4632. default: true
  4633. },
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4638. {
  4639. front: {
  4640. height: math.unit(2, "meters"),
  4641. weight: math.unit(120, "kg"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/miranda/front.svg",
  4645. extra: 195 / 185,
  4646. bottom: 10.9 / 206.5
  4647. }
  4648. },
  4649. back: {
  4650. height: math.unit(2, "meters"),
  4651. weight: math.unit(120, "kg"),
  4652. name: "Back",
  4653. image: {
  4654. source: "./media/characters/miranda/back.svg",
  4655. extra: 201 / 193,
  4656. bottom: 2.3 / 203.7
  4657. }
  4658. },
  4659. },
  4660. [
  4661. {
  4662. name: "Normal",
  4663. height: math.unit(10, "feet"),
  4664. default: true
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "James", species: ["deer"], tags: ["anthro"] },
  4670. {
  4671. side: {
  4672. height: math.unit(2, "meters"),
  4673. weight: math.unit(100, "kg"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/james/front.svg",
  4677. extra: 10 / 8.5
  4678. }
  4679. },
  4680. },
  4681. [
  4682. {
  4683. name: "Normal",
  4684. height: math.unit(8.5, "feet"),
  4685. default: true
  4686. }
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4691. {
  4692. side: {
  4693. height: math.unit(9.5, "feet"),
  4694. weight: math.unit(2500, "lbs"),
  4695. name: "Side",
  4696. image: {
  4697. source: "./media/characters/heather/side.svg"
  4698. }
  4699. },
  4700. },
  4701. [
  4702. {
  4703. name: "Normal",
  4704. height: math.unit(9.5, "feet"),
  4705. default: true
  4706. }
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4711. {
  4712. side: {
  4713. height: math.unit(6.5, "feet"),
  4714. weight: math.unit(400, "lbs"),
  4715. name: "Side",
  4716. image: {
  4717. source: "./media/characters/lukas/side.svg",
  4718. extra: 7.25 / 6.5
  4719. }
  4720. },
  4721. },
  4722. [
  4723. {
  4724. name: "Normal",
  4725. height: math.unit(6.5, "feet"),
  4726. default: true
  4727. }
  4728. ]
  4729. ))
  4730. characterMakers.push(() => makeCharacter(
  4731. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4732. {
  4733. side: {
  4734. height: math.unit(5, "feet"),
  4735. weight: math.unit(3000, "lbs"),
  4736. name: "Side",
  4737. image: {
  4738. source: "./media/characters/louise/side.svg"
  4739. }
  4740. },
  4741. },
  4742. [
  4743. {
  4744. name: "Normal",
  4745. height: math.unit(5, "feet"),
  4746. default: true
  4747. }
  4748. ]
  4749. ))
  4750. characterMakers.push(() => makeCharacter(
  4751. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4752. {
  4753. side: {
  4754. height: math.unit(6, "feet"),
  4755. weight: math.unit(150, "lbs"),
  4756. name: "Side",
  4757. image: {
  4758. source: "./media/characters/ramona/side.svg"
  4759. }
  4760. },
  4761. },
  4762. [
  4763. {
  4764. name: "Normal",
  4765. height: math.unit(5.3, "meters"),
  4766. default: true
  4767. },
  4768. {
  4769. name: "Macro",
  4770. height: math.unit(20, "stories")
  4771. },
  4772. {
  4773. name: "Macro+",
  4774. height: math.unit(50, "stories")
  4775. },
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4780. {
  4781. standing: {
  4782. height: math.unit(5.75, "feet"),
  4783. weight: math.unit(160, "lbs"),
  4784. name: "Standing",
  4785. image: {
  4786. source: "./media/characters/deerpuff/standing.svg",
  4787. extra: 682 / 624
  4788. }
  4789. },
  4790. sitting: {
  4791. height: math.unit(5.75 / 1.79, "feet"),
  4792. weight: math.unit(160, "lbs"),
  4793. name: "Sitting",
  4794. image: {
  4795. source: "./media/characters/deerpuff/sitting.svg",
  4796. bottom: 44 / 400,
  4797. extra: 1
  4798. }
  4799. },
  4800. taurLaying: {
  4801. height: math.unit(6, "feet"),
  4802. weight: math.unit(400, "lbs"),
  4803. name: "Taur (Laying)",
  4804. image: {
  4805. source: "./media/characters/deerpuff/taur-laying.svg"
  4806. }
  4807. },
  4808. },
  4809. [
  4810. {
  4811. name: "Puffball",
  4812. height: math.unit(6, "inches")
  4813. },
  4814. {
  4815. name: "Normalpuff",
  4816. height: math.unit(5.75, "feet")
  4817. },
  4818. {
  4819. name: "Macropuff",
  4820. height: math.unit(1500, "feet"),
  4821. default: true
  4822. },
  4823. {
  4824. name: "Megapuff",
  4825. height: math.unit(500, "miles")
  4826. },
  4827. {
  4828. name: "Gigapuff",
  4829. height: math.unit(250000, "miles")
  4830. },
  4831. {
  4832. name: "Omegapuff",
  4833. height: math.unit(1000, "lightyears")
  4834. },
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4839. {
  4840. stomping: {
  4841. height: math.unit(6, "feet"),
  4842. weight: math.unit(170, "lbs"),
  4843. name: "Stomping",
  4844. image: {
  4845. source: "./media/characters/vivian/stomping.svg"
  4846. }
  4847. },
  4848. sitting: {
  4849. height: math.unit(6 / 1.75, "feet"),
  4850. weight: math.unit(170, "lbs"),
  4851. name: "Sitting",
  4852. image: {
  4853. source: "./media/characters/vivian/sitting.svg",
  4854. bottom: 1 / 6.4,
  4855. extra: 1,
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(7, "feet"),
  4863. default: true
  4864. },
  4865. {
  4866. name: "Macro",
  4867. height: math.unit(10, "stories")
  4868. },
  4869. {
  4870. name: "Macro+",
  4871. height: math.unit(30, "stories")
  4872. },
  4873. {
  4874. name: "Megamacro",
  4875. height: math.unit(10, "miles")
  4876. },
  4877. {
  4878. name: "Megamacro+",
  4879. height: math.unit(2750000, "meters")
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4885. {
  4886. front: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(160, "lbs"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/prince/front.svg",
  4892. extra: 3400 / 3000
  4893. }
  4894. },
  4895. jumping: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(160, "lbs"),
  4898. name: "Jumping",
  4899. image: {
  4900. source: "./media/characters/prince/jump.svg",
  4901. extra: 2555 / 2134
  4902. }
  4903. },
  4904. },
  4905. [
  4906. {
  4907. name: "Normal",
  4908. height: math.unit(7.75, "feet"),
  4909. default: true
  4910. },
  4911. {
  4912. name: "Not cute",
  4913. height: math.unit(17, "feet")
  4914. },
  4915. {
  4916. name: "I said NOT",
  4917. height: math.unit(91, "feet")
  4918. },
  4919. {
  4920. name: "Please stop",
  4921. height: math.unit(560, "feet")
  4922. },
  4923. {
  4924. name: "What have you done",
  4925. height: math.unit(2200, "feet")
  4926. },
  4927. {
  4928. name: "Deer God",
  4929. height: math.unit(3.6, "miles")
  4930. },
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4935. {
  4936. standing: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(300, "lbs"),
  4939. name: "Standing",
  4940. image: {
  4941. source: "./media/characters/psymon/standing.svg",
  4942. extra: 1888 / 1810,
  4943. bottom: 0.05
  4944. }
  4945. },
  4946. slithering: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(300, "lbs"),
  4949. name: "Slithering",
  4950. image: {
  4951. source: "./media/characters/psymon/slithering.svg",
  4952. extra: 1330 / 1224
  4953. }
  4954. },
  4955. slitheringAlt: {
  4956. height: math.unit(6, "feet"),
  4957. weight: math.unit(300, "lbs"),
  4958. name: "Slithering (Alt)",
  4959. image: {
  4960. source: "./media/characters/psymon/slithering-alt.svg",
  4961. extra: 1330 / 1224
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(11.25, "feet"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Large",
  4973. height: math.unit(27, "feet")
  4974. },
  4975. {
  4976. name: "Giant",
  4977. height: math.unit(87, "feet")
  4978. },
  4979. {
  4980. name: "Macro",
  4981. height: math.unit(365, "feet")
  4982. },
  4983. {
  4984. name: "Megamacro",
  4985. height: math.unit(3, "miles")
  4986. },
  4987. {
  4988. name: "World Serpent",
  4989. height: math.unit(8000, "miles")
  4990. },
  4991. ]
  4992. ))
  4993. characterMakers.push(() => makeCharacter(
  4994. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4995. {
  4996. front: {
  4997. height: math.unit(6, "feet"),
  4998. weight: math.unit(180, "lbs"),
  4999. name: "Front",
  5000. image: {
  5001. source: "./media/characters/daimos/front.svg",
  5002. extra: 4160 / 3897,
  5003. bottom: 0.021
  5004. }
  5005. }
  5006. },
  5007. [
  5008. {
  5009. name: "Normal",
  5010. height: math.unit(8, "feet"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Big Dog",
  5015. height: math.unit(22, "feet")
  5016. },
  5017. {
  5018. name: "Macro",
  5019. height: math.unit(127, "feet")
  5020. },
  5021. {
  5022. name: "Megamacro",
  5023. height: math.unit(3600, "feet")
  5024. },
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5029. {
  5030. side: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(180, "lbs"),
  5033. name: "Side",
  5034. image: {
  5035. source: "./media/characters/blake/side.svg",
  5036. extra: 1212 / 1120,
  5037. bottom: 0.05
  5038. }
  5039. },
  5040. crouched: {
  5041. height: math.unit(6 * 0.57, "feet"),
  5042. weight: math.unit(180, "lbs"),
  5043. name: "Crouched",
  5044. image: {
  5045. source: "./media/characters/blake/crouched.svg",
  5046. extra: 840 / 587,
  5047. bottom: 0.04
  5048. }
  5049. },
  5050. bent: {
  5051. height: math.unit(6 * 0.75, "feet"),
  5052. weight: math.unit(180, "lbs"),
  5053. name: "Bent",
  5054. image: {
  5055. source: "./media/characters/blake/bent.svg",
  5056. extra: 592 / 544,
  5057. bottom: 0.035
  5058. }
  5059. },
  5060. },
  5061. [
  5062. {
  5063. name: "Normal",
  5064. height: math.unit(8 + 1 / 6, "feet"),
  5065. default: true
  5066. },
  5067. {
  5068. name: "Big Backside",
  5069. height: math.unit(37, "feet")
  5070. },
  5071. {
  5072. name: "Subway Shredder",
  5073. height: math.unit(72, "feet")
  5074. },
  5075. {
  5076. name: "City Carver",
  5077. height: math.unit(1675, "feet")
  5078. },
  5079. {
  5080. name: "Tectonic Tweaker",
  5081. height: math.unit(2300, "miles")
  5082. },
  5083. ]
  5084. ))
  5085. characterMakers.push(() => makeCharacter(
  5086. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5087. {
  5088. front: {
  5089. height: math.unit(6, "feet"),
  5090. weight: math.unit(180, "lbs"),
  5091. name: "Front",
  5092. image: {
  5093. source: "./media/characters/guisetto/front.svg",
  5094. extra: 856 / 817,
  5095. bottom: 0.06
  5096. }
  5097. },
  5098. airborne: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(180, "lbs"),
  5101. name: "Airborne",
  5102. image: {
  5103. source: "./media/characters/guisetto/airborne.svg",
  5104. extra: 584 / 525
  5105. }
  5106. },
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(10 + 11 / 12, "feet"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Large",
  5116. height: math.unit(35, "feet")
  5117. },
  5118. {
  5119. name: "Macro",
  5120. height: math.unit(475, "feet")
  5121. },
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5126. {
  5127. front: {
  5128. height: math.unit(6, "feet"),
  5129. weight: math.unit(180, "lbs"),
  5130. name: "Front",
  5131. image: {
  5132. source: "./media/characters/luxor/front.svg",
  5133. extra: 2940 / 2152
  5134. }
  5135. },
  5136. back: {
  5137. height: math.unit(6, "feet"),
  5138. weight: math.unit(180, "lbs"),
  5139. name: "Back",
  5140. image: {
  5141. source: "./media/characters/luxor/back.svg",
  5142. extra: 1083 / 960
  5143. }
  5144. },
  5145. },
  5146. [
  5147. {
  5148. name: "Normal",
  5149. height: math.unit(5 + 5 / 6, "feet"),
  5150. default: true
  5151. },
  5152. {
  5153. name: "Lamp",
  5154. height: math.unit(50, "feet")
  5155. },
  5156. {
  5157. name: "Lämp",
  5158. height: math.unit(300, "feet")
  5159. },
  5160. {
  5161. name: "The sun is a lamp",
  5162. height: math.unit(250000, "miles")
  5163. },
  5164. ]
  5165. ))
  5166. characterMakers.push(() => makeCharacter(
  5167. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5168. {
  5169. front: {
  5170. height: math.unit(6, "feet"),
  5171. weight: math.unit(50, "lbs"),
  5172. name: "Front",
  5173. image: {
  5174. source: "./media/characters/huoyan/front.svg"
  5175. }
  5176. },
  5177. side: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(180, "lbs"),
  5180. name: "Side",
  5181. image: {
  5182. source: "./media/characters/huoyan/side.svg"
  5183. }
  5184. },
  5185. },
  5186. [
  5187. {
  5188. name: "Chef",
  5189. height: math.unit(9, "feet")
  5190. },
  5191. {
  5192. name: "Normal",
  5193. height: math.unit(65, "feet"),
  5194. default: true
  5195. },
  5196. {
  5197. name: "Macro",
  5198. height: math.unit(780, "feet")
  5199. },
  5200. {
  5201. name: "Flaming Mountain",
  5202. height: math.unit(4.8, "miles")
  5203. },
  5204. {
  5205. name: "Celestial",
  5206. height: math.unit(765000, "miles")
  5207. },
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5212. {
  5213. front: {
  5214. height: math.unit(5 + 3 / 4, "feet"),
  5215. weight: math.unit(120, "lbs"),
  5216. name: "Front",
  5217. image: {
  5218. source: "./media/characters/tails/front.svg"
  5219. }
  5220. }
  5221. },
  5222. [
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(5 + 3 / 4, "feet"),
  5226. default: true
  5227. }
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5232. {
  5233. front: {
  5234. height: math.unit(4, "feet"),
  5235. weight: math.unit(50, "lbs"),
  5236. name: "Front",
  5237. image: {
  5238. source: "./media/characters/rainy/front.svg"
  5239. }
  5240. }
  5241. },
  5242. [
  5243. {
  5244. name: "Macro",
  5245. height: math.unit(800, "feet"),
  5246. default: true
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(150, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/rainier/front.svg"
  5259. }
  5260. }
  5261. },
  5262. [
  5263. {
  5264. name: "Micro",
  5265. height: math.unit(2, "mm"),
  5266. default: true
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(180, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/andy/front.svg"
  5279. }
  5280. }
  5281. },
  5282. [
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(8, "feet"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Macro",
  5290. height: math.unit(1000, "feet")
  5291. },
  5292. {
  5293. name: "Megamacro",
  5294. height: math.unit(5, "miles")
  5295. },
  5296. {
  5297. name: "Gigamacro",
  5298. height: math.unit(5000, "miles")
  5299. },
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(210, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/cimmaron/front-sfw.svg",
  5311. extra: 701 / 676,
  5312. bottom: 0.046
  5313. }
  5314. },
  5315. back: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(210, "lbs"),
  5318. name: "Back",
  5319. image: {
  5320. source: "./media/characters/cimmaron/back-sfw.svg",
  5321. extra: 701 / 676,
  5322. bottom: 0.046
  5323. }
  5324. },
  5325. frontNsfw: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(210, "lbs"),
  5328. name: "Front (NSFW)",
  5329. image: {
  5330. source: "./media/characters/cimmaron/front-nsfw.svg",
  5331. extra: 701 / 676,
  5332. bottom: 0.046
  5333. }
  5334. },
  5335. backNsfw: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(210, "lbs"),
  5338. name: "Back (NSFW)",
  5339. image: {
  5340. source: "./media/characters/cimmaron/back-nsfw.svg",
  5341. extra: 701 / 676,
  5342. bottom: 0.046
  5343. }
  5344. },
  5345. dick: {
  5346. height: math.unit(1.714, "feet"),
  5347. name: "Dick",
  5348. image: {
  5349. source: "./media/characters/cimmaron/dick.svg"
  5350. }
  5351. },
  5352. },
  5353. [
  5354. {
  5355. name: "Normal",
  5356. height: math.unit(6, "feet"),
  5357. default: true
  5358. },
  5359. {
  5360. name: "Macro Mayor",
  5361. height: math.unit(350, "meters")
  5362. },
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5367. {
  5368. front: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(200, "lbs"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/akari/front.svg",
  5374. extra: 962 / 901,
  5375. bottom: 0.04
  5376. }
  5377. }
  5378. },
  5379. [
  5380. {
  5381. name: "Micro",
  5382. height: math.unit(5, "inches"),
  5383. default: true
  5384. },
  5385. {
  5386. name: "Normal",
  5387. height: math.unit(7, "feet")
  5388. },
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5393. {
  5394. front: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(140, "lbs"),
  5397. name: "Front",
  5398. image: {
  5399. source: "./media/characters/cynosura/front.svg",
  5400. extra: 896 / 847
  5401. }
  5402. },
  5403. back: {
  5404. height: math.unit(6, "feet"),
  5405. weight: math.unit(140, "lbs"),
  5406. name: "Back",
  5407. image: {
  5408. source: "./media/characters/cynosura/back.svg",
  5409. extra: 1365 / 1250
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Micro",
  5416. height: math.unit(4, "inches")
  5417. },
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(5.75, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Tall",
  5425. height: math.unit(10, "feet")
  5426. },
  5427. {
  5428. name: "Big",
  5429. height: math.unit(20, "feet")
  5430. },
  5431. {
  5432. name: "Macro",
  5433. height: math.unit(50, "feet")
  5434. },
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5439. {
  5440. front: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(170, "lbs"),
  5443. name: "Front",
  5444. image: {
  5445. source: "./media/characters/gin/front.svg",
  5446. extra: 1.053,
  5447. bottom: 0.025
  5448. }
  5449. },
  5450. foot: {
  5451. height: math.unit(6 / 4.25, "feet"),
  5452. name: "Foot",
  5453. image: {
  5454. source: "./media/characters/gin/foot.svg"
  5455. }
  5456. },
  5457. sole: {
  5458. height: math.unit(6 / 4.40, "feet"),
  5459. name: "Sole",
  5460. image: {
  5461. source: "./media/characters/gin/sole.svg"
  5462. }
  5463. },
  5464. },
  5465. [
  5466. {
  5467. name: "Normal",
  5468. height: math.unit(13 + 2 / 12, "feet")
  5469. },
  5470. {
  5471. name: "Macro",
  5472. height: math.unit(1500, "feet")
  5473. },
  5474. {
  5475. name: "Megamacro",
  5476. height: math.unit(200, "miles"),
  5477. default: true
  5478. },
  5479. {
  5480. name: "Gigamacro",
  5481. height: math.unit(500, "megameters")
  5482. },
  5483. {
  5484. name: "Teramacro",
  5485. height: math.unit(15, "lightyears")
  5486. }
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5491. {
  5492. front: {
  5493. height: math.unit(6 + 1 / 6, "feet"),
  5494. weight: math.unit(178, "lbs"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/guy/front.svg"
  5498. }
  5499. }
  5500. },
  5501. [
  5502. {
  5503. name: "Normal",
  5504. height: math.unit(6 + 1 / 6, "feet"),
  5505. default: true
  5506. },
  5507. {
  5508. name: "Large",
  5509. height: math.unit(25 + 7 / 12, "feet")
  5510. },
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(60 + 9 / 12, "feet")
  5514. },
  5515. {
  5516. name: "Macro+",
  5517. height: math.unit(246, "feet")
  5518. },
  5519. {
  5520. name: "Macro++",
  5521. height: math.unit(878, "feet")
  5522. }
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5527. {
  5528. front: {
  5529. height: math.unit(9, "feet"),
  5530. weight: math.unit(800, "lbs"),
  5531. name: "Front",
  5532. image: {
  5533. source: "./media/characters/tiberius/front.svg",
  5534. extra: 2295 / 2071
  5535. }
  5536. },
  5537. back: {
  5538. height: math.unit(9, "feet"),
  5539. weight: math.unit(800, "lbs"),
  5540. name: "Back",
  5541. image: {
  5542. source: "./media/characters/tiberius/back.svg",
  5543. extra: 2373 / 2160
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(9, "feet"),
  5551. default: true
  5552. }
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5557. {
  5558. front: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(600, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/surgo/front.svg",
  5564. extra: 3591 / 2227
  5565. }
  5566. },
  5567. back: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(600, "lbs"),
  5570. name: "Back",
  5571. image: {
  5572. source: "./media/characters/surgo/back.svg",
  5573. extra: 3557 / 2228
  5574. }
  5575. },
  5576. laying: {
  5577. height: math.unit(6 * 0.85, "feet"),
  5578. weight: math.unit(600, "lbs"),
  5579. name: "Laying",
  5580. image: {
  5581. source: "./media/characters/surgo/laying.svg"
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(6, "feet"),
  5589. default: true
  5590. }
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5595. {
  5596. side: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(150, "lbs"),
  5599. name: "Side",
  5600. image: {
  5601. source: "./media/characters/cibus/side.svg",
  5602. extra: 800 / 400
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(6, "feet"),
  5610. default: true
  5611. }
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5616. {
  5617. front: {
  5618. height: math.unit(6, "feet"),
  5619. weight: math.unit(240, "lbs"),
  5620. name: "Front",
  5621. image: {
  5622. source: "./media/characters/nibbles/front.svg"
  5623. }
  5624. },
  5625. side: {
  5626. height: math.unit(6, "feet"),
  5627. weight: math.unit(240, "lbs"),
  5628. name: "Side",
  5629. image: {
  5630. source: "./media/characters/nibbles/side.svg"
  5631. }
  5632. },
  5633. },
  5634. [
  5635. {
  5636. name: "Normal",
  5637. height: math.unit(9, "feet"),
  5638. default: true
  5639. }
  5640. ]
  5641. ))
  5642. characterMakers.push(() => makeCharacter(
  5643. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5644. {
  5645. side: {
  5646. height: math.unit(5 + 1 / 6, "feet"),
  5647. weight: math.unit(130, "lbs"),
  5648. name: "Side",
  5649. image: {
  5650. source: "./media/characters/rikky/side.svg",
  5651. extra: 851 / 801
  5652. }
  5653. },
  5654. },
  5655. [
  5656. {
  5657. name: "Normal",
  5658. height: math.unit(5 + 1 / 6, "feet")
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(152, "feet"),
  5663. default: true
  5664. },
  5665. {
  5666. name: "Megamacro",
  5667. height: math.unit(7, "miles")
  5668. }
  5669. ]
  5670. ))
  5671. characterMakers.push(() => makeCharacter(
  5672. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5673. {
  5674. side: {
  5675. height: math.unit(370, "cm"),
  5676. weight: math.unit(350, "lbs"),
  5677. name: "Side",
  5678. image: {
  5679. source: "./media/characters/malfressa/side.svg"
  5680. }
  5681. },
  5682. walking: {
  5683. height: math.unit(370, "cm"),
  5684. weight: math.unit(350, "lbs"),
  5685. name: "Walking",
  5686. image: {
  5687. source: "./media/characters/malfressa/walking.svg"
  5688. }
  5689. },
  5690. feral: {
  5691. height: math.unit(2500, "cm"),
  5692. weight: math.unit(100000, "lbs"),
  5693. name: "Feral",
  5694. image: {
  5695. source: "./media/characters/malfressa/feral.svg",
  5696. extra: 2108 / 837,
  5697. bottom: 0.02
  5698. }
  5699. },
  5700. },
  5701. [
  5702. {
  5703. name: "Normal",
  5704. height: math.unit(370, "cm")
  5705. },
  5706. {
  5707. name: "Macro",
  5708. height: math.unit(300, "meters"),
  5709. default: true
  5710. }
  5711. ]
  5712. ))
  5713. characterMakers.push(() => makeCharacter(
  5714. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5715. {
  5716. front: {
  5717. height: math.unit(6, "feet"),
  5718. weight: math.unit(60, "kg"),
  5719. name: "Front",
  5720. image: {
  5721. source: "./media/characters/jaro/front.svg"
  5722. }
  5723. },
  5724. back: {
  5725. height: math.unit(6, "feet"),
  5726. weight: math.unit(60, "kg"),
  5727. name: "Back",
  5728. image: {
  5729. source: "./media/characters/jaro/back.svg"
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Micro",
  5736. height: math.unit(7, "inches")
  5737. },
  5738. {
  5739. name: "Normal",
  5740. height: math.unit(5.5, "feet"),
  5741. default: true
  5742. },
  5743. {
  5744. name: "Minimacro",
  5745. height: math.unit(20, "feet")
  5746. },
  5747. {
  5748. name: "Macro",
  5749. height: math.unit(200, "meters")
  5750. }
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5755. {
  5756. front: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(195, "lb"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/rogue/front.svg"
  5762. }
  5763. },
  5764. },
  5765. [
  5766. {
  5767. name: "Macro",
  5768. height: math.unit(90, "feet"),
  5769. default: true
  5770. },
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5775. {
  5776. front: {
  5777. height: math.unit(5 + 8 / 12, "feet"),
  5778. weight: math.unit(140, "lb"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/piper/front.svg",
  5782. extra: 3948/3655,
  5783. bottom: 0/3948
  5784. }
  5785. },
  5786. },
  5787. [
  5788. {
  5789. name: "Micro",
  5790. height: math.unit(2, "inches")
  5791. },
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(5 + 8 / 12, "feet")
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(250, "feet"),
  5799. default: true
  5800. },
  5801. {
  5802. name: "Megamacro",
  5803. height: math.unit(7, "miles")
  5804. },
  5805. ]
  5806. ))
  5807. characterMakers.push(() => makeCharacter(
  5808. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5809. {
  5810. front: {
  5811. height: math.unit(6, "feet"),
  5812. weight: math.unit(220, "lb"),
  5813. name: "Front",
  5814. image: {
  5815. source: "./media/characters/gemini/front.svg"
  5816. }
  5817. },
  5818. back: {
  5819. height: math.unit(6, "feet"),
  5820. weight: math.unit(220, "lb"),
  5821. name: "Back",
  5822. image: {
  5823. source: "./media/characters/gemini/back.svg"
  5824. }
  5825. },
  5826. kneeling: {
  5827. height: math.unit(6 / 1.5, "feet"),
  5828. weight: math.unit(220, "lb"),
  5829. name: "Kneeling",
  5830. image: {
  5831. source: "./media/characters/gemini/kneeling.svg",
  5832. bottom: 0.02
  5833. }
  5834. },
  5835. },
  5836. [
  5837. {
  5838. name: "Macro",
  5839. height: math.unit(300, "meters"),
  5840. default: true
  5841. },
  5842. {
  5843. name: "Megamacro",
  5844. height: math.unit(6900, "meters")
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5850. {
  5851. anthro: {
  5852. height: math.unit(2.35, "meters"),
  5853. weight: math.unit(73, "kg"),
  5854. name: "Anthro",
  5855. image: {
  5856. source: "./media/characters/alicia/anthro.svg",
  5857. extra: 2571 / 2385,
  5858. bottom: 75 / 2648
  5859. }
  5860. },
  5861. paw: {
  5862. height: math.unit(1.32, "feet"),
  5863. name: "Paw",
  5864. image: {
  5865. source: "./media/characters/alicia/paw.svg"
  5866. }
  5867. },
  5868. feral: {
  5869. height: math.unit(1.69, "meters"),
  5870. weight: math.unit(73, "kg"),
  5871. name: "Feral",
  5872. image: {
  5873. source: "./media/characters/alicia/feral.svg",
  5874. extra: 2123 / 1715,
  5875. bottom: 222 / 2349
  5876. }
  5877. },
  5878. },
  5879. [
  5880. {
  5881. name: "Normal",
  5882. height: math.unit(2.35, "meters")
  5883. },
  5884. {
  5885. name: "Macro",
  5886. height: math.unit(60, "meters"),
  5887. default: true
  5888. },
  5889. {
  5890. name: "Megamacro",
  5891. height: math.unit(10000, "kilometers")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(7, "feet"),
  5900. weight: math.unit(250, "lbs"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/archy/front.svg"
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Micro",
  5910. height: math.unit(1, "inch")
  5911. },
  5912. {
  5913. name: "Shorty",
  5914. height: math.unit(5, "feet")
  5915. },
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(7, "feet")
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(600, "meters"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Megamacro",
  5927. height: math.unit(1, "mile")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(1.65, "meters"),
  5936. weight: math.unit(74, "kg"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/berri/front.svg",
  5940. extra: 857 / 837,
  5941. bottom: 18 / 877
  5942. }
  5943. },
  5944. bum: {
  5945. height: math.unit(1.46, "feet"),
  5946. name: "Bum",
  5947. image: {
  5948. source: "./media/characters/berri/bum.svg"
  5949. }
  5950. },
  5951. mouth: {
  5952. height: math.unit(0.44, "feet"),
  5953. name: "Mouth",
  5954. image: {
  5955. source: "./media/characters/berri/mouth.svg"
  5956. }
  5957. },
  5958. paw: {
  5959. height: math.unit(0.826, "feet"),
  5960. name: "Paw",
  5961. image: {
  5962. source: "./media/characters/berri/paw.svg"
  5963. }
  5964. },
  5965. },
  5966. [
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(1.65, "meters")
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(60, "m"),
  5974. default: true
  5975. },
  5976. {
  5977. name: "Megamacro",
  5978. height: math.unit(9.213, "km")
  5979. },
  5980. {
  5981. name: "Planet Eater",
  5982. height: math.unit(489, "megameters")
  5983. },
  5984. {
  5985. name: "Teramacro",
  5986. height: math.unit(2471635000000, "meters")
  5987. },
  5988. {
  5989. name: "Examacro",
  5990. height: math.unit(8.0624e+26, "meters")
  5991. }
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5996. {
  5997. front: {
  5998. height: math.unit(1.72, "meters"),
  5999. weight: math.unit(68, "kg"),
  6000. name: "Front",
  6001. image: {
  6002. source: "./media/characters/lexi/front.svg"
  6003. }
  6004. }
  6005. },
  6006. [
  6007. {
  6008. name: "Very Smol",
  6009. height: math.unit(10, "mm")
  6010. },
  6011. {
  6012. name: "Micro",
  6013. height: math.unit(6.8, "cm"),
  6014. default: true
  6015. },
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(1.72, "m")
  6019. }
  6020. ]
  6021. ))
  6022. characterMakers.push(() => makeCharacter(
  6023. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6024. {
  6025. front: {
  6026. height: math.unit(1.69, "meters"),
  6027. weight: math.unit(68, "kg"),
  6028. name: "Front",
  6029. image: {
  6030. source: "./media/characters/martin/front.svg",
  6031. extra: 596 / 581
  6032. }
  6033. }
  6034. },
  6035. [
  6036. {
  6037. name: "Micro",
  6038. height: math.unit(6.85, "cm"),
  6039. default: true
  6040. },
  6041. {
  6042. name: "Normal",
  6043. height: math.unit(1.69, "m")
  6044. }
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6049. {
  6050. front: {
  6051. height: math.unit(1.69, "meters"),
  6052. weight: math.unit(68, "kg"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/juno/front.svg"
  6056. }
  6057. }
  6058. },
  6059. [
  6060. {
  6061. name: "Micro",
  6062. height: math.unit(7, "cm")
  6063. },
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(1.89, "m")
  6067. },
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(353, "meters"),
  6071. default: true
  6072. }
  6073. ]
  6074. ))
  6075. characterMakers.push(() => makeCharacter(
  6076. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6077. {
  6078. front: {
  6079. height: math.unit(1.93, "meters"),
  6080. weight: math.unit(83, "kg"),
  6081. name: "Front",
  6082. image: {
  6083. source: "./media/characters/samantha/front.svg"
  6084. }
  6085. },
  6086. frontClothed: {
  6087. height: math.unit(1.93, "meters"),
  6088. weight: math.unit(83, "kg"),
  6089. name: "Front (Clothed)",
  6090. image: {
  6091. source: "./media/characters/samantha/front-clothed.svg"
  6092. }
  6093. },
  6094. back: {
  6095. height: math.unit(1.93, "meters"),
  6096. weight: math.unit(83, "kg"),
  6097. name: "Back",
  6098. image: {
  6099. source: "./media/characters/samantha/back.svg"
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(1.93, "m")
  6107. },
  6108. {
  6109. name: "Macro",
  6110. height: math.unit(74, "meters"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Macro+",
  6115. height: math.unit(223, "meters"),
  6116. },
  6117. {
  6118. name: "Megamacro",
  6119. height: math.unit(8381, "meters"),
  6120. },
  6121. {
  6122. name: "Megamacro+",
  6123. height: math.unit(12000, "kilometers")
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(1.92, "meters"),
  6132. weight: math.unit(80, "kg"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/dr-clay/front.svg"
  6136. }
  6137. },
  6138. frontClothed: {
  6139. height: math.unit(1.92, "meters"),
  6140. weight: math.unit(80, "kg"),
  6141. name: "Front (Clothed)",
  6142. image: {
  6143. source: "./media/characters/dr-clay/front-clothed.svg"
  6144. }
  6145. }
  6146. },
  6147. [
  6148. {
  6149. name: "Normal",
  6150. height: math.unit(1.92, "m")
  6151. },
  6152. {
  6153. name: "Macro",
  6154. height: math.unit(214, "meters"),
  6155. default: true
  6156. },
  6157. {
  6158. name: "Macro+",
  6159. height: math.unit(12.237, "meters"),
  6160. },
  6161. {
  6162. name: "Megamacro",
  6163. height: math.unit(557, "megameters"),
  6164. },
  6165. {
  6166. name: "Unimaginable",
  6167. height: math.unit(120e9, "lightyears")
  6168. },
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6173. {
  6174. front: {
  6175. height: math.unit(2, "meters"),
  6176. weight: math.unit(80, "kg"),
  6177. name: "Front",
  6178. image: {
  6179. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6180. }
  6181. }
  6182. },
  6183. [
  6184. {
  6185. name: "Teramacro",
  6186. height: math.unit(500000, "lightyears"),
  6187. default: true
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6193. {
  6194. front: {
  6195. height: math.unit(2, "meters"),
  6196. weight: math.unit(150, "kg"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/vemus/front.svg",
  6200. extra: 2384 / 2084,
  6201. bottom: 0.0123
  6202. }
  6203. }
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(3.75, "meters"),
  6209. default: true
  6210. },
  6211. {
  6212. name: "Big",
  6213. height: math.unit(8, "meters")
  6214. },
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(100, "meters")
  6218. },
  6219. {
  6220. name: "Macro+",
  6221. height: math.unit(1500, "meters")
  6222. },
  6223. {
  6224. name: "Stellar",
  6225. height: math.unit(14e8, "meters")
  6226. },
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6231. {
  6232. front: {
  6233. height: math.unit(2, "meters"),
  6234. weight: math.unit(70, "kg"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/beherit/front.svg",
  6238. extra: 1408 / 1242
  6239. }
  6240. }
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(6, "feet")
  6246. },
  6247. {
  6248. name: "Lorg",
  6249. height: math.unit(25, "feet"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Lorger",
  6254. height: math.unit(75, "feet")
  6255. },
  6256. {
  6257. name: "Macro",
  6258. height: math.unit(200, "meters")
  6259. },
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6264. {
  6265. front: {
  6266. height: math.unit(2, "meters"),
  6267. weight: math.unit(150, "kg"),
  6268. name: "Front",
  6269. image: {
  6270. source: "./media/characters/everett/front.svg",
  6271. extra: 2038 / 1737,
  6272. bottom: 0.03
  6273. }
  6274. },
  6275. paw: {
  6276. height: math.unit(2 / 3.6, "meters"),
  6277. name: "Paw",
  6278. image: {
  6279. source: "./media/characters/everett/paw.svg"
  6280. }
  6281. },
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(15, "feet"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Lorg",
  6291. height: math.unit(70, "feet"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Lorger",
  6296. height: math.unit(250, "feet")
  6297. },
  6298. {
  6299. name: "Macro",
  6300. height: math.unit(500, "meters")
  6301. },
  6302. ]
  6303. ))
  6304. characterMakers.push(() => makeCharacter(
  6305. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6306. {
  6307. front: {
  6308. height: math.unit(2, "meters"),
  6309. weight: math.unit(86, "kg"),
  6310. name: "Front",
  6311. image: {
  6312. source: "./media/characters/rose/front.svg",
  6313. extra: 350/335,
  6314. bottom: 10/360
  6315. }
  6316. },
  6317. frontAlt: {
  6318. height: math.unit(1.6, "meters"),
  6319. weight: math.unit(86, "kg"),
  6320. name: "Front (Alt)",
  6321. image: {
  6322. source: "./media/characters/rose/front-alt.svg",
  6323. extra: 299/283,
  6324. bottom: 3/302
  6325. }
  6326. },
  6327. plush: {
  6328. height: math.unit(2, "meters"),
  6329. weight: math.unit(86/3, "kg"),
  6330. name: "Plush",
  6331. image: {
  6332. source: "./media/characters/rose/plush.svg",
  6333. extra: 361/337,
  6334. bottom: 11/372
  6335. }
  6336. },
  6337. },
  6338. [
  6339. {
  6340. name: "Mini-Micro",
  6341. height: math.unit(1, "cm")
  6342. },
  6343. {
  6344. name: "Micro",
  6345. height: math.unit(3.5, "inches"),
  6346. default: true
  6347. },
  6348. {
  6349. name: "Normal",
  6350. height: math.unit(6 + 1 / 6, "feet")
  6351. },
  6352. {
  6353. name: "Mini-Macro",
  6354. height: math.unit(9 + 10 / 12, "feet")
  6355. },
  6356. ]
  6357. ))
  6358. characterMakers.push(() => makeCharacter(
  6359. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6360. {
  6361. front: {
  6362. height: math.unit(2, "meters"),
  6363. weight: math.unit(350, "lbs"),
  6364. name: "Front",
  6365. image: {
  6366. source: "./media/characters/regal/front.svg"
  6367. }
  6368. },
  6369. back: {
  6370. height: math.unit(2, "meters"),
  6371. weight: math.unit(350, "lbs"),
  6372. name: "Back",
  6373. image: {
  6374. source: "./media/characters/regal/back.svg"
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(350, "feet"),
  6382. default: true
  6383. }
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6388. {
  6389. front: {
  6390. height: math.unit(4 + 11 / 12, "feet"),
  6391. weight: math.unit(100, "lbs"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/opal/front.svg"
  6395. }
  6396. },
  6397. frontAlt: {
  6398. height: math.unit(4 + 11 / 12, "feet"),
  6399. weight: math.unit(100, "lbs"),
  6400. name: "Front (Alt)",
  6401. image: {
  6402. source: "./media/characters/opal/front-alt.svg"
  6403. }
  6404. },
  6405. },
  6406. [
  6407. {
  6408. name: "Small",
  6409. height: math.unit(4 + 11 / 12, "feet")
  6410. },
  6411. {
  6412. name: "Normal",
  6413. height: math.unit(20, "feet"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Macro",
  6418. height: math.unit(120, "feet")
  6419. },
  6420. {
  6421. name: "Megamacro",
  6422. height: math.unit(80, "miles")
  6423. },
  6424. {
  6425. name: "True Size",
  6426. height: math.unit(100000, "lightyears")
  6427. },
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(200, "lbs"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/vector-wuff/front.svg"
  6439. }
  6440. }
  6441. },
  6442. [
  6443. {
  6444. name: "Normal",
  6445. height: math.unit(2.8, "meters")
  6446. },
  6447. {
  6448. name: "Macro",
  6449. height: math.unit(450, "meters"),
  6450. default: true
  6451. },
  6452. {
  6453. name: "Megamacro",
  6454. height: math.unit(15, "kilometers")
  6455. }
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6460. {
  6461. front: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(256, "lbs"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/dannik/front.svg"
  6467. }
  6468. }
  6469. },
  6470. [
  6471. {
  6472. name: "Macro",
  6473. height: math.unit(69.57, "meters"),
  6474. default: true
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(120, "lbs"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/azura-saharah/front.svg"
  6487. }
  6488. },
  6489. back: {
  6490. height: math.unit(6, "feet"),
  6491. weight: math.unit(120, "lbs"),
  6492. name: "Back",
  6493. image: {
  6494. source: "./media/characters/azura-saharah/back.svg"
  6495. }
  6496. },
  6497. },
  6498. [
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(100, "feet"),
  6502. default: true
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6508. {
  6509. side: {
  6510. height: math.unit(5 + 4 / 12, "feet"),
  6511. weight: math.unit(163, "lbs"),
  6512. name: "Side",
  6513. image: {
  6514. source: "./media/characters/kennedy/side.svg"
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Standard Doggo",
  6521. height: math.unit(5 + 4 / 12, "feet")
  6522. },
  6523. {
  6524. name: "Big Doggo",
  6525. height: math.unit(25 + 3 / 12, "feet"),
  6526. default: true
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(90, "lbs"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/odi-lunar/front.svg"
  6539. }
  6540. }
  6541. },
  6542. [
  6543. {
  6544. name: "Micro",
  6545. height: math.unit(3, "inches"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(5.5, "feet")
  6551. }
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6556. {
  6557. back: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(220, "lbs"),
  6560. name: "Back",
  6561. image: {
  6562. source: "./media/characters/mandake/back.svg"
  6563. }
  6564. }
  6565. },
  6566. [
  6567. {
  6568. name: "Normal",
  6569. height: math.unit(7, "feet"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(78, "feet")
  6575. },
  6576. {
  6577. name: "Macro+",
  6578. height: math.unit(300, "meters")
  6579. },
  6580. {
  6581. name: "Macro++",
  6582. height: math.unit(2400, "feet")
  6583. },
  6584. {
  6585. name: "Megamacro",
  6586. height: math.unit(5167, "meters")
  6587. },
  6588. {
  6589. name: "Gigamacro",
  6590. height: math.unit(41769, "miles")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(120, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/yozey/front.svg"
  6603. }
  6604. },
  6605. frontAlt: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(120, "lbs"),
  6608. name: "Front (Alt)",
  6609. image: {
  6610. source: "./media/characters/yozey/front-alt.svg"
  6611. }
  6612. },
  6613. side: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(120, "lbs"),
  6616. name: "Side",
  6617. image: {
  6618. source: "./media/characters/yozey/side.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Micro",
  6625. height: math.unit(3, "inches"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(6, "feet")
  6631. }
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6636. {
  6637. front: {
  6638. height: math.unit(6, "feet"),
  6639. weight: math.unit(103, "lbs"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/valeska-voss/front.svg"
  6643. }
  6644. }
  6645. },
  6646. [
  6647. {
  6648. name: "Mini-Sized Sub",
  6649. height: math.unit(3.1, "inches")
  6650. },
  6651. {
  6652. name: "Mid-Sized Sub",
  6653. height: math.unit(6.2, "inches")
  6654. },
  6655. {
  6656. name: "Full-Sized Sub",
  6657. height: math.unit(9.3, "inches")
  6658. },
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(5 + 2 / 12, "foot"),
  6662. default: true
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(160, "lbs"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/gene-zeta/front.svg",
  6675. extra: 3006 / 2826,
  6676. bottom: 182 / 3188
  6677. }
  6678. }
  6679. },
  6680. [
  6681. {
  6682. name: "Micro",
  6683. height: math.unit(6, "inches")
  6684. },
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(5 + 11 / 12, "foot"),
  6688. default: true
  6689. },
  6690. {
  6691. name: "Macro",
  6692. height: math.unit(140, "feet")
  6693. },
  6694. {
  6695. name: "Supercharged",
  6696. height: math.unit(2500, "feet")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(350, "lbs"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/razinox/front.svg",
  6709. extra: 1686 / 1548,
  6710. bottom: 28.2 / 1868
  6711. }
  6712. },
  6713. back: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(350, "lbs"),
  6716. name: "Back",
  6717. image: {
  6718. source: "./media/characters/razinox/back.svg",
  6719. extra: 1660 / 1590,
  6720. bottom: 15 / 1665
  6721. }
  6722. },
  6723. },
  6724. [
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(10 + 8 / 12, "foot")
  6728. },
  6729. {
  6730. name: "Minimacro",
  6731. height: math.unit(15, "foot")
  6732. },
  6733. {
  6734. name: "Macro",
  6735. height: math.unit(60, "foot"),
  6736. default: true
  6737. },
  6738. {
  6739. name: "Megamacro",
  6740. height: math.unit(5, "miles")
  6741. },
  6742. {
  6743. name: "Gigamacro",
  6744. height: math.unit(6000, "miles")
  6745. },
  6746. ]
  6747. ))
  6748. characterMakers.push(() => makeCharacter(
  6749. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6750. {
  6751. front: {
  6752. height: math.unit(6, "feet"),
  6753. weight: math.unit(150, "lbs"),
  6754. name: "Front",
  6755. image: {
  6756. source: "./media/characters/cobalt/front.svg"
  6757. }
  6758. }
  6759. },
  6760. [
  6761. {
  6762. name: "Normal",
  6763. height: math.unit(8 + 1 / 12, "foot")
  6764. },
  6765. {
  6766. name: "Macro",
  6767. height: math.unit(111, "foot"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Supracosmic",
  6772. height: math.unit(1e42, "feet")
  6773. },
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(140, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/amanda/front.svg"
  6785. }
  6786. }
  6787. },
  6788. [
  6789. {
  6790. name: "Micro",
  6791. height: math.unit(5, "inches"),
  6792. default: true
  6793. },
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6798. {
  6799. front: {
  6800. height: math.unit(2.75, "meters"),
  6801. weight: math.unit(1200, "lb"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/teal/front.svg",
  6805. extra: 2463 / 2320,
  6806. bottom: 166 / 2629
  6807. }
  6808. },
  6809. back: {
  6810. height: math.unit(2.75, "meters"),
  6811. weight: math.unit(1200, "lb"),
  6812. name: "Back",
  6813. image: {
  6814. source: "./media/characters/teal/back.svg",
  6815. extra: 2580 / 2489,
  6816. bottom: 151 / 2731
  6817. }
  6818. },
  6819. sitting: {
  6820. height: math.unit(1.9, "meters"),
  6821. weight: math.unit(1200, "lb"),
  6822. name: "Sitting",
  6823. image: {
  6824. source: "./media/characters/teal/sitting.svg",
  6825. extra: 623 / 590,
  6826. bottom: 121 / 744
  6827. }
  6828. },
  6829. standing: {
  6830. height: math.unit(2.75, "meters"),
  6831. weight: math.unit(1200, "lb"),
  6832. name: "Standing",
  6833. image: {
  6834. source: "./media/characters/teal/standing.svg",
  6835. extra: 923 / 893,
  6836. bottom: 60 / 983
  6837. }
  6838. },
  6839. stretching: {
  6840. height: math.unit(3.65, "meters"),
  6841. weight: math.unit(1200, "lb"),
  6842. name: "Stretching",
  6843. image: {
  6844. source: "./media/characters/teal/stretching.svg",
  6845. extra: 1276 / 1244,
  6846. bottom: 0 / 1276
  6847. }
  6848. },
  6849. legged: {
  6850. height: math.unit(1.3, "meters"),
  6851. weight: math.unit(100, "lb"),
  6852. name: "Legged",
  6853. image: {
  6854. source: "./media/characters/teal/legged.svg",
  6855. extra: 462 / 437,
  6856. bottom: 24 / 486
  6857. }
  6858. },
  6859. naga: {
  6860. height: math.unit(5.4, "meters"),
  6861. weight: math.unit(4000, "lb"),
  6862. name: "Naga",
  6863. image: {
  6864. source: "./media/characters/teal/naga.svg",
  6865. extra: 1902 / 1858,
  6866. bottom: 0 / 1902
  6867. }
  6868. },
  6869. hand: {
  6870. height: math.unit(0.52, "meters"),
  6871. name: "Hand",
  6872. image: {
  6873. source: "./media/characters/teal/hand.svg"
  6874. }
  6875. },
  6876. maw: {
  6877. height: math.unit(0.43, "meters"),
  6878. name: "Maw",
  6879. image: {
  6880. source: "./media/characters/teal/maw.svg"
  6881. }
  6882. },
  6883. slit: {
  6884. height: math.unit(0.25, "meters"),
  6885. name: "Slit",
  6886. image: {
  6887. source: "./media/characters/teal/slit.svg"
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(2.75, "meters"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Macro",
  6899. height: math.unit(300, "feet")
  6900. },
  6901. {
  6902. name: "Macro+",
  6903. height: math.unit(2000, "feet")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6909. {
  6910. frontCat: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(180, "lbs"),
  6913. name: "Front (Cat)",
  6914. image: {
  6915. source: "./media/characters/ravin-amulet/front-cat.svg"
  6916. }
  6917. },
  6918. frontCatAlt: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(180, "lbs"),
  6921. name: "Front (Alt, Cat)",
  6922. image: {
  6923. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6924. }
  6925. },
  6926. frontWerewolf: {
  6927. height: math.unit(6 * 1.2, "feet"),
  6928. weight: math.unit(225, "lbs"),
  6929. name: "Front (Werewolf)",
  6930. image: {
  6931. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6932. }
  6933. },
  6934. backWerewolf: {
  6935. height: math.unit(6 * 1.2, "feet"),
  6936. weight: math.unit(225, "lbs"),
  6937. name: "Back (Werewolf)",
  6938. image: {
  6939. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6940. }
  6941. },
  6942. },
  6943. [
  6944. {
  6945. name: "Nano",
  6946. height: math.unit(1, "micrometer")
  6947. },
  6948. {
  6949. name: "Micro",
  6950. height: math.unit(1, "inch")
  6951. },
  6952. {
  6953. name: "Normal",
  6954. height: math.unit(6, "feet"),
  6955. default: true
  6956. },
  6957. {
  6958. name: "Macro",
  6959. height: math.unit(60, "feet")
  6960. }
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(165, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/fluoresce/front.svg"
  6972. }
  6973. }
  6974. },
  6975. [
  6976. {
  6977. name: "Micro",
  6978. height: math.unit(6, "cm")
  6979. },
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(5 + 7 / 12, "feet"),
  6983. default: true
  6984. },
  6985. {
  6986. name: "Macro",
  6987. height: math.unit(56, "feet")
  6988. },
  6989. {
  6990. name: "Megamacro",
  6991. height: math.unit(1.9, "miles")
  6992. },
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(9 + 6 / 12, "feet"),
  7000. weight: math.unit(523, "lbs"),
  7001. name: "Side",
  7002. image: {
  7003. source: "./media/characters/aurora/side.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(9 + 6 / 12, "feet")
  7011. },
  7012. {
  7013. name: "Macro",
  7014. height: math.unit(96, "feet"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Macro+",
  7019. height: math.unit(243, "feet")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(194, "cm"),
  7028. weight: math.unit(90, "kg"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/ranek/front.svg"
  7032. }
  7033. },
  7034. side: {
  7035. height: math.unit(194, "cm"),
  7036. weight: math.unit(90, "kg"),
  7037. name: "Side",
  7038. image: {
  7039. source: "./media/characters/ranek/side.svg"
  7040. }
  7041. },
  7042. back: {
  7043. height: math.unit(194, "cm"),
  7044. weight: math.unit(90, "kg"),
  7045. name: "Back",
  7046. image: {
  7047. source: "./media/characters/ranek/back.svg"
  7048. }
  7049. },
  7050. feral: {
  7051. height: math.unit(30, "cm"),
  7052. weight: math.unit(1.6, "lbs"),
  7053. name: "Feral",
  7054. image: {
  7055. source: "./media/characters/ranek/feral.svg"
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(194, "cm"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(100, "meters")
  7068. },
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(5 + 6 / 12, "feet"),
  7076. weight: math.unit(153, "lbs"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/andrew-cooper/front.svg"
  7080. }
  7081. },
  7082. },
  7083. [
  7084. {
  7085. name: "Nano",
  7086. height: math.unit(1, "mm")
  7087. },
  7088. {
  7089. name: "Micro",
  7090. height: math.unit(2, "inches")
  7091. },
  7092. {
  7093. name: "Normal",
  7094. height: math.unit(5 + 6 / 12, "feet"),
  7095. default: true
  7096. }
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(180, "lbs"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/akane-sato/front.svg",
  7108. extra: 1219 / 1140
  7109. }
  7110. },
  7111. back: {
  7112. height: math.unit(6, "feet"),
  7113. weight: math.unit(180, "lbs"),
  7114. name: "Back",
  7115. image: {
  7116. source: "./media/characters/akane-sato/back.svg",
  7117. extra: 1219 / 1170
  7118. }
  7119. },
  7120. },
  7121. [
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(2.5, "meters")
  7125. },
  7126. {
  7127. name: "Macro",
  7128. height: math.unit(250, "meters"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Megamacro",
  7133. height: math.unit(25, "km")
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(65, "kg"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/rook/front.svg",
  7146. extra: 960 / 950
  7147. }
  7148. }
  7149. },
  7150. [
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(8.8, "feet")
  7154. },
  7155. {
  7156. name: "Macro",
  7157. height: math.unit(88, "feet"),
  7158. default: true
  7159. },
  7160. {
  7161. name: "Megamacro",
  7162. height: math.unit(8, "miles")
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(12 + 2 / 12, "feet"),
  7171. weight: math.unit(808, "lbs"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/prodigy/front.svg"
  7175. }
  7176. }
  7177. },
  7178. [
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(12 + 2 / 12, "feet"),
  7182. default: true
  7183. },
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(143, "feet")
  7187. },
  7188. {
  7189. name: "Macro+",
  7190. height: math.unit(400, "feet")
  7191. },
  7192. ]
  7193. ))
  7194. characterMakers.push(() => makeCharacter(
  7195. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7196. {
  7197. front: {
  7198. height: math.unit(6, "feet"),
  7199. weight: math.unit(225, "lbs"),
  7200. name: "Front",
  7201. image: {
  7202. source: "./media/characters/daniel/front.svg"
  7203. }
  7204. },
  7205. leaning: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(225, "lbs"),
  7208. name: "Leaning",
  7209. image: {
  7210. source: "./media/characters/daniel/leaning.svg"
  7211. }
  7212. },
  7213. },
  7214. [
  7215. {
  7216. name: "Macro",
  7217. height: math.unit(1000, "feet"),
  7218. default: true
  7219. },
  7220. ]
  7221. ))
  7222. characterMakers.push(() => makeCharacter(
  7223. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7224. {
  7225. front: {
  7226. height: math.unit(6, "feet"),
  7227. weight: math.unit(88, "lbs"),
  7228. name: "Front",
  7229. image: {
  7230. source: "./media/characters/chiros/front.svg",
  7231. extra: 306 / 226
  7232. }
  7233. },
  7234. side: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(88, "lbs"),
  7237. name: "Side",
  7238. image: {
  7239. source: "./media/characters/chiros/side.svg",
  7240. extra: 306 / 226
  7241. }
  7242. },
  7243. },
  7244. [
  7245. {
  7246. name: "Normal",
  7247. height: math.unit(6, "cm"),
  7248. default: true
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7254. {
  7255. front: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(100, "lbs"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/selka/front.svg",
  7261. extra: 947 / 887
  7262. }
  7263. }
  7264. },
  7265. [
  7266. {
  7267. name: "Normal",
  7268. height: math.unit(5, "cm"),
  7269. default: true
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(8 + 3 / 12, "feet"),
  7278. weight: math.unit(424, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/verin/front.svg",
  7282. extra: 1845 / 1550
  7283. }
  7284. },
  7285. frontArmored: {
  7286. height: math.unit(8 + 3 / 12, "feet"),
  7287. weight: math.unit(424, "lbs"),
  7288. name: "Front (Armored)",
  7289. image: {
  7290. source: "./media/characters/verin/front-armor.svg",
  7291. extra: 1845 / 1550,
  7292. bottom: 0.01
  7293. }
  7294. },
  7295. back: {
  7296. height: math.unit(8 + 3 / 12, "feet"),
  7297. weight: math.unit(424, "lbs"),
  7298. name: "Back",
  7299. image: {
  7300. source: "./media/characters/verin/back.svg",
  7301. bottom: 0.1,
  7302. extra: 1
  7303. }
  7304. },
  7305. foot: {
  7306. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7307. name: "Foot",
  7308. image: {
  7309. source: "./media/characters/verin/foot.svg"
  7310. }
  7311. },
  7312. },
  7313. [
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(8 + 3 / 12, "feet")
  7317. },
  7318. {
  7319. name: "Minimacro",
  7320. height: math.unit(21, "feet"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(626, "feet")
  7326. },
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(2.718, "meters"),
  7334. weight: math.unit(150, "lbs"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/sovrim-terraquian/front.svg"
  7338. }
  7339. },
  7340. back: {
  7341. height: math.unit(2.718, "meters"),
  7342. weight: math.unit(150, "lbs"),
  7343. name: "Back",
  7344. image: {
  7345. source: "./media/characters/sovrim-terraquian/back.svg"
  7346. }
  7347. }
  7348. },
  7349. [
  7350. {
  7351. name: "Micro",
  7352. height: math.unit(2, "inches")
  7353. },
  7354. {
  7355. name: "Small",
  7356. height: math.unit(1, "meter")
  7357. },
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(Math.E, "meters"),
  7361. default: true
  7362. },
  7363. {
  7364. name: "Macro",
  7365. height: math.unit(20, "meters")
  7366. },
  7367. {
  7368. name: "Macro+",
  7369. height: math.unit(400, "meters")
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(7, "feet"),
  7378. weight: math.unit(489, "lbs"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/reece-silvermane/front.svg",
  7382. bottom: 0.02,
  7383. extra: 1
  7384. }
  7385. },
  7386. },
  7387. [
  7388. {
  7389. name: "Macro",
  7390. height: math.unit(1.5, "miles"),
  7391. default: true
  7392. },
  7393. ]
  7394. ))
  7395. characterMakers.push(() => makeCharacter(
  7396. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7397. {
  7398. front: {
  7399. height: math.unit(6, "feet"),
  7400. weight: math.unit(78, "kg"),
  7401. name: "Front",
  7402. image: {
  7403. source: "./media/characters/kane/front.svg",
  7404. extra: 978 / 899
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(2.1, "m"),
  7412. },
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(1, "km"),
  7416. default: true
  7417. },
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(6, "feet"),
  7425. weight: math.unit(200, "kg"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/tegon/front.svg",
  7429. bottom: 0.01,
  7430. extra: 1
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Micro",
  7437. height: math.unit(1, "inch")
  7438. },
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(6 + 3 / 12, "feet"),
  7442. default: true
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(300, "feet")
  7447. },
  7448. {
  7449. name: "Megamacro",
  7450. height: math.unit(69, "miles")
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7456. {
  7457. side: {
  7458. height: math.unit(6, "feet"),
  7459. weight: math.unit(2304, "lbs"),
  7460. name: "Side",
  7461. image: {
  7462. source: "./media/characters/arcturax/side.svg",
  7463. extra: 790 / 376,
  7464. bottom: 0.01
  7465. }
  7466. },
  7467. },
  7468. [
  7469. {
  7470. name: "Micro",
  7471. height: math.unit(2, "inch")
  7472. },
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(6, "feet")
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(39, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Megamacro",
  7484. height: math.unit(7, "miles")
  7485. },
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7490. {
  7491. front: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(50, "lbs"),
  7494. name: "Front",
  7495. image: {
  7496. source: "./media/characters/sentri/front.svg",
  7497. extra: 1750 / 1570,
  7498. bottom: 0.025
  7499. }
  7500. },
  7501. frontAlt: {
  7502. height: math.unit(6, "feet"),
  7503. weight: math.unit(50, "lbs"),
  7504. name: "Front (Alt)",
  7505. image: {
  7506. source: "./media/characters/sentri/front-alt.svg",
  7507. extra: 1750 / 1570,
  7508. bottom: 0.025
  7509. }
  7510. },
  7511. },
  7512. [
  7513. {
  7514. name: "Normal",
  7515. height: math.unit(15, "feet"),
  7516. default: true
  7517. },
  7518. {
  7519. name: "Macro",
  7520. height: math.unit(2500, "feet")
  7521. }
  7522. ]
  7523. ))
  7524. characterMakers.push(() => makeCharacter(
  7525. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7526. {
  7527. front: {
  7528. height: math.unit(5 + 8 / 12, "feet"),
  7529. weight: math.unit(130, "lbs"),
  7530. name: "Front",
  7531. image: {
  7532. source: "./media/characters/corvin/front.svg",
  7533. extra: 1803 / 1629
  7534. }
  7535. },
  7536. frontShirt: {
  7537. height: math.unit(5 + 8 / 12, "feet"),
  7538. weight: math.unit(130, "lbs"),
  7539. name: "Front (Shirt)",
  7540. image: {
  7541. source: "./media/characters/corvin/front-shirt.svg",
  7542. extra: 1803 / 1629
  7543. }
  7544. },
  7545. frontPoncho: {
  7546. height: math.unit(5 + 8 / 12, "feet"),
  7547. weight: math.unit(130, "lbs"),
  7548. name: "Front (Poncho)",
  7549. image: {
  7550. source: "./media/characters/corvin/front-poncho.svg",
  7551. extra: 1803 / 1629
  7552. }
  7553. },
  7554. side: {
  7555. height: math.unit(5 + 8 / 12, "feet"),
  7556. weight: math.unit(130, "lbs"),
  7557. name: "Side",
  7558. image: {
  7559. source: "./media/characters/corvin/side.svg",
  7560. extra: 1012 / 945
  7561. }
  7562. },
  7563. back: {
  7564. height: math.unit(5 + 8 / 12, "feet"),
  7565. weight: math.unit(130, "lbs"),
  7566. name: "Back",
  7567. image: {
  7568. source: "./media/characters/corvin/back.svg",
  7569. extra: 1803 / 1629
  7570. }
  7571. },
  7572. },
  7573. [
  7574. {
  7575. name: "Micro",
  7576. height: math.unit(3, "inches")
  7577. },
  7578. {
  7579. name: "Normal",
  7580. height: math.unit(5 + 8 / 12, "feet")
  7581. },
  7582. {
  7583. name: "Macro",
  7584. height: math.unit(300, "feet"),
  7585. default: true
  7586. },
  7587. {
  7588. name: "Megamacro",
  7589. height: math.unit(500, "miles")
  7590. }
  7591. ]
  7592. ))
  7593. characterMakers.push(() => makeCharacter(
  7594. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7595. {
  7596. front: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(135, "lbs"),
  7599. name: "Front",
  7600. image: {
  7601. source: "./media/characters/q/front.svg",
  7602. extra: 854 / 752,
  7603. bottom: 0.005
  7604. }
  7605. },
  7606. back: {
  7607. height: math.unit(6, "feet"),
  7608. weight: math.unit(130, "lbs"),
  7609. name: "Back",
  7610. image: {
  7611. source: "./media/characters/q/back.svg",
  7612. extra: 854 / 752
  7613. }
  7614. },
  7615. },
  7616. [
  7617. {
  7618. name: "Macro",
  7619. height: math.unit(90, "feet"),
  7620. default: true
  7621. },
  7622. {
  7623. name: "Extra Macro",
  7624. height: math.unit(300, "feet"),
  7625. },
  7626. {
  7627. name: "BIG WALF",
  7628. height: math.unit(750, "feet"),
  7629. },
  7630. ]
  7631. ))
  7632. characterMakers.push(() => makeCharacter(
  7633. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7634. {
  7635. front: {
  7636. height: math.unit(6, "feet"),
  7637. weight: math.unit(150, "lbs"),
  7638. name: "Front",
  7639. image: {
  7640. source: "./media/characters/carley/front.svg",
  7641. extra: 3927 / 3540,
  7642. bottom: 29.2 / 735
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Normal",
  7649. height: math.unit(6 + 3 / 12, "feet")
  7650. },
  7651. {
  7652. name: "Macro",
  7653. height: math.unit(185, "feet"),
  7654. default: true
  7655. },
  7656. {
  7657. name: "Megamacro",
  7658. height: math.unit(8, "miles"),
  7659. },
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(3, "feet"),
  7667. weight: math.unit(28, "lbs"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/citrine/front.svg"
  7671. }
  7672. }
  7673. },
  7674. [
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(3, "feet"),
  7678. default: true
  7679. }
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7684. {
  7685. front: {
  7686. height: math.unit(14, "feet"),
  7687. weight: math.unit(1450, "kg"),
  7688. capacity: math.unit(15, "people"),
  7689. name: "Front",
  7690. image: {
  7691. source: "./media/characters/aura-starwind/front.svg",
  7692. extra: 1455 / 1335
  7693. }
  7694. },
  7695. side: {
  7696. height: math.unit(14, "feet"),
  7697. weight: math.unit(1450, "kg"),
  7698. capacity: math.unit(15, "people"),
  7699. name: "Side",
  7700. image: {
  7701. source: "./media/characters/aura-starwind/side.svg",
  7702. extra: 1654 / 1497
  7703. }
  7704. },
  7705. taur: {
  7706. height: math.unit(18, "feet"),
  7707. weight: math.unit(5500, "kg"),
  7708. capacity: math.unit(50, "people"),
  7709. name: "Taur",
  7710. image: {
  7711. source: "./media/characters/aura-starwind/taur.svg",
  7712. extra: 1760 / 1650
  7713. }
  7714. },
  7715. feral: {
  7716. height: math.unit(46, "feet"),
  7717. weight: math.unit(25000, "kg"),
  7718. capacity: math.unit(120, "people"),
  7719. name: "Feral",
  7720. image: {
  7721. source: "./media/characters/aura-starwind/feral.svg"
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(14, "feet"),
  7729. default: true
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(50, "meters")
  7734. },
  7735. {
  7736. name: "Megamacro",
  7737. height: math.unit(5000, "meters")
  7738. },
  7739. {
  7740. name: "Gigamacro",
  7741. height: math.unit(100000, "kilometers")
  7742. },
  7743. ]
  7744. ))
  7745. characterMakers.push(() => makeCharacter(
  7746. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7747. {
  7748. front: {
  7749. height: math.unit(2 + 7 / 12, "feet"),
  7750. weight: math.unit(32, "lbs"),
  7751. name: "Front",
  7752. image: {
  7753. source: "./media/characters/rivet/front.svg",
  7754. extra: 1716 / 1658,
  7755. bottom: 0.03
  7756. }
  7757. },
  7758. foot: {
  7759. height: math.unit(0.551, "feet"),
  7760. name: "Rivet's Foot",
  7761. image: {
  7762. source: "./media/characters/rivet/foot.svg"
  7763. },
  7764. rename: true
  7765. }
  7766. },
  7767. [
  7768. {
  7769. name: "Micro",
  7770. height: math.unit(1.5, "inches"),
  7771. },
  7772. {
  7773. name: "Normal",
  7774. height: math.unit(2 + 7 / 12, "feet"),
  7775. default: true
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(85, "feet")
  7780. },
  7781. {
  7782. name: "Megamacro",
  7783. height: math.unit(2.2, "km")
  7784. }
  7785. ]
  7786. ))
  7787. characterMakers.push(() => makeCharacter(
  7788. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7789. {
  7790. front: {
  7791. height: math.unit(5 + 9 / 12, "feet"),
  7792. weight: math.unit(150, "lbs"),
  7793. name: "Front",
  7794. image: {
  7795. source: "./media/characters/coffee/front.svg",
  7796. extra: 3666 / 3032,
  7797. bottom: 0.04
  7798. }
  7799. },
  7800. foot: {
  7801. height: math.unit(1.29, "feet"),
  7802. name: "Foot",
  7803. image: {
  7804. source: "./media/characters/coffee/foot.svg"
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Micro",
  7811. height: math.unit(2, "inches"),
  7812. },
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(5 + 9 / 12, "feet"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Macro",
  7820. height: math.unit(800, "feet")
  7821. },
  7822. {
  7823. name: "Megamacro",
  7824. height: math.unit(25, "miles")
  7825. }
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(200, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/chari-gal/front.svg",
  7837. extra: 1568 / 1385,
  7838. bottom: 0.047
  7839. }
  7840. },
  7841. gigantamax: {
  7842. height: math.unit(6 * 16, "feet"),
  7843. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7844. name: "Gigantamax",
  7845. image: {
  7846. source: "./media/characters/chari-gal/gigantamax.svg",
  7847. extra: 1124 / 888,
  7848. bottom: 0.03
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(5 + 7 / 12, "feet")
  7856. },
  7857. {
  7858. name: "Macro",
  7859. height: math.unit(200, "feet"),
  7860. default: true
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(150, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/nova/front.svg",
  7873. extra: 5000 / 4722,
  7874. bottom: 0.02
  7875. }
  7876. }
  7877. },
  7878. [
  7879. {
  7880. name: "Micro-",
  7881. height: math.unit(0.8, "inches")
  7882. },
  7883. {
  7884. name: "Micro",
  7885. height: math.unit(2, "inches"),
  7886. default: true
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(3 + 1 / 12, "feet"),
  7895. weight: math.unit(21.7, "lbs"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/argent/front.svg",
  7899. extra: 1471 / 1331,
  7900. bottom: 100.8 / 1575.5
  7901. }
  7902. }
  7903. },
  7904. [
  7905. {
  7906. name: "Micro",
  7907. height: math.unit(2, "inches")
  7908. },
  7909. {
  7910. name: "Normal",
  7911. height: math.unit(3 + 1 / 12, "feet"),
  7912. default: true
  7913. },
  7914. {
  7915. name: "Macro",
  7916. height: math.unit(120, "feet")
  7917. },
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7922. {
  7923. lamp: {
  7924. height: math.unit(7 * 1559 / 989, "feet"),
  7925. name: "Magic Lamp",
  7926. image: {
  7927. source: "./media/characters/mira-al-cul/lamp.svg",
  7928. extra: 1617 / 1559
  7929. }
  7930. },
  7931. front: {
  7932. height: math.unit(7, "feet"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/mira-al-cul/front.svg",
  7936. extra: 1044 / 990
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Heavily Restricted",
  7943. height: math.unit(7 * 1559 / 989, "feet")
  7944. },
  7945. {
  7946. name: "Freshly Freed",
  7947. height: math.unit(50 * 1559 / 989, "feet")
  7948. },
  7949. {
  7950. name: "World Encompassing",
  7951. height: math.unit(10000 * 1559 / 989, "miles")
  7952. },
  7953. {
  7954. name: "Galactic",
  7955. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7956. },
  7957. {
  7958. name: "Palmed Universe",
  7959. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7960. default: true
  7961. },
  7962. {
  7963. name: "Multiversal Matriarch",
  7964. height: math.unit(8.87e10, "yottameters")
  7965. },
  7966. {
  7967. name: "Void Mother",
  7968. height: math.unit(3.14e110, "yottaparsecs")
  7969. },
  7970. {
  7971. name: "Toying with Transcendence",
  7972. height: math.unit(1e307, "meters")
  7973. },
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7978. {
  7979. front: {
  7980. height: math.unit(17 + 1 / 12, "feet"),
  7981. weight: math.unit(476.2 * 5, "lbs"),
  7982. name: "Front",
  7983. image: {
  7984. source: "./media/characters/kuro-shi-uchū/front.svg",
  7985. extra: 2329 / 1835,
  7986. bottom: 0.02
  7987. }
  7988. },
  7989. },
  7990. [
  7991. {
  7992. name: "Micro",
  7993. height: math.unit(2, "inches")
  7994. },
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(12, "meters")
  7998. },
  7999. {
  8000. name: "Planetary",
  8001. height: math.unit(0.00929, "AU"),
  8002. default: true
  8003. },
  8004. {
  8005. name: "Universal",
  8006. height: math.unit(20, "gigaparsecs")
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(5 + 2 / 12, "feet"),
  8015. weight: math.unit(120, "lbs"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/katherine/front.svg",
  8019. extra: 2075 / 1969
  8020. }
  8021. },
  8022. dress: {
  8023. height: math.unit(5 + 2 / 12, "feet"),
  8024. weight: math.unit(120, "lbs"),
  8025. name: "Dress",
  8026. image: {
  8027. source: "./media/characters/katherine/dress.svg",
  8028. extra: 2258 / 2064
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Micro",
  8035. height: math.unit(1, "inches"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Normal",
  8040. height: math.unit(5 + 2 / 12, "feet")
  8041. },
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(100, "meters")
  8045. },
  8046. {
  8047. name: "Megamacro",
  8048. height: math.unit(80, "miles")
  8049. },
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(7 + 8 / 12, "feet"),
  8057. weight: math.unit(250, "lbs"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/yevis/front.svg",
  8061. extra: 1938 / 1755
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Mortal",
  8068. height: math.unit(7 + 8 / 12, "feet")
  8069. },
  8070. {
  8071. name: "Battle",
  8072. height: math.unit(25 + 11 / 12, "feet")
  8073. },
  8074. {
  8075. name: "Wrath",
  8076. height: math.unit(1654 + 11 / 12, "feet")
  8077. },
  8078. {
  8079. name: "Planet Destroyer",
  8080. height: math.unit(12000, "miles")
  8081. },
  8082. {
  8083. name: "Galaxy Conqueror",
  8084. height: math.unit(1.45, "zettameters"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "Universal War",
  8089. height: math.unit(184, "gigaparsecs")
  8090. },
  8091. {
  8092. name: "Eternity War",
  8093. height: math.unit(1.98e55, "yottaparsecs")
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(5 + 8 / 12, "feet"),
  8102. weight: math.unit(63, "kg"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/xavier/front.svg",
  8106. extra: 944 / 883
  8107. }
  8108. },
  8109. frontStretch: {
  8110. height: math.unit(5 + 8 / 12, "feet"),
  8111. weight: math.unit(63, "kg"),
  8112. name: "Stretching",
  8113. image: {
  8114. source: "./media/characters/xavier/front-stretch.svg",
  8115. extra: 962 / 820
  8116. }
  8117. },
  8118. },
  8119. [
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(5 + 8 / 12, "feet")
  8123. },
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(100, "meters"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "McLargeHuge",
  8131. height: math.unit(10, "miles")
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8137. {
  8138. front: {
  8139. height: math.unit(5 + 5 / 12, "feet"),
  8140. weight: math.unit(150, "lb"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/joshii/front.svg",
  8144. extra: 765 / 653,
  8145. bottom: 51 / 816
  8146. }
  8147. },
  8148. foot: {
  8149. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8150. name: "Foot",
  8151. image: {
  8152. source: "./media/characters/joshii/foot.svg"
  8153. }
  8154. },
  8155. },
  8156. [
  8157. {
  8158. name: "Micro",
  8159. height: math.unit(2, "inches"),
  8160. default: true
  8161. },
  8162. {
  8163. name: "Normal",
  8164. height: math.unit(5 + 5 / 12, "feet")
  8165. },
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(785, "feet")
  8169. },
  8170. {
  8171. name: "Megamacro",
  8172. height: math.unit(24.5, "miles")
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(6, "feet"),
  8181. weight: math.unit(150, "lb"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/goddess-elizabeth/front.svg",
  8185. extra: 1800 / 1525,
  8186. bottom: 0.005
  8187. }
  8188. },
  8189. foot: {
  8190. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8191. name: "Foot",
  8192. image: {
  8193. source: "./media/characters/goddess-elizabeth/foot.svg"
  8194. }
  8195. },
  8196. mouth: {
  8197. height: math.unit(6, "feet"),
  8198. name: "Mouth",
  8199. image: {
  8200. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8201. }
  8202. },
  8203. },
  8204. [
  8205. {
  8206. name: "Micro",
  8207. height: math.unit(12, "feet")
  8208. },
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(80, "miles"),
  8212. default: true
  8213. },
  8214. {
  8215. name: "Macro",
  8216. height: math.unit(15000, "parsecs")
  8217. },
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8222. {
  8223. front: {
  8224. height: math.unit(5 + 9 / 12, "feet"),
  8225. weight: math.unit(144, "lb"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/kara/front.svg"
  8229. }
  8230. },
  8231. feet: {
  8232. height: math.unit(6 / 6.765, "feet"),
  8233. name: "Kara's Feet",
  8234. rename: true,
  8235. image: {
  8236. source: "./media/characters/kara/feet.svg"
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Normal",
  8243. height: math.unit(5 + 9 / 12, "feet")
  8244. },
  8245. {
  8246. name: "Macro",
  8247. height: math.unit(174, "feet"),
  8248. default: true
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(18, "feet"),
  8257. weight: math.unit(4050, "lb"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/tyrone/front.svg",
  8261. extra: 2405 / 2270,
  8262. bottom: 182 / 2587
  8263. }
  8264. },
  8265. },
  8266. [
  8267. {
  8268. name: "Normal",
  8269. height: math.unit(18, "feet"),
  8270. default: true
  8271. },
  8272. {
  8273. name: "Macro",
  8274. height: math.unit(300, "feet")
  8275. },
  8276. {
  8277. name: "Megamacro",
  8278. height: math.unit(15, "km")
  8279. },
  8280. {
  8281. name: "Gigamacro",
  8282. height: math.unit(500, "km")
  8283. },
  8284. {
  8285. name: "Teramacro",
  8286. height: math.unit(0.5, "gigameters")
  8287. },
  8288. {
  8289. name: "Omnimacro",
  8290. height: math.unit(1e252, "yottauniverse")
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8296. {
  8297. front: {
  8298. height: math.unit(7 + 8 / 12, "feet"),
  8299. weight: math.unit(120, "lb"),
  8300. name: "Front",
  8301. image: {
  8302. source: "./media/characters/danny/front.svg",
  8303. extra: 1490 / 1350
  8304. }
  8305. },
  8306. back: {
  8307. height: math.unit(7 + 8 / 12, "feet"),
  8308. weight: math.unit(120, "lb"),
  8309. name: "Back",
  8310. image: {
  8311. source: "./media/characters/danny/back.svg",
  8312. extra: 1490 / 1350
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(7 + 8 / 12, "feet"),
  8320. default: true
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(3.5, "inches"),
  8329. weight: math.unit(19, "grams"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/mallow/front.svg",
  8333. extra: 471 / 431
  8334. }
  8335. },
  8336. back: {
  8337. height: math.unit(3.5, "inches"),
  8338. weight: math.unit(19, "grams"),
  8339. name: "Back",
  8340. image: {
  8341. source: "./media/characters/mallow/back.svg",
  8342. extra: 471 / 431
  8343. }
  8344. },
  8345. },
  8346. [
  8347. {
  8348. name: "Normal",
  8349. height: math.unit(3.5, "inches"),
  8350. default: true
  8351. },
  8352. ]
  8353. ))
  8354. characterMakers.push(() => makeCharacter(
  8355. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8356. {
  8357. front: {
  8358. height: math.unit(9, "feet"),
  8359. weight: math.unit(230, "kg"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/starry-aqua/front.svg"
  8363. }
  8364. },
  8365. back: {
  8366. height: math.unit(9, "feet"),
  8367. weight: math.unit(230, "kg"),
  8368. name: "Back",
  8369. image: {
  8370. source: "./media/characters/starry-aqua/back.svg"
  8371. }
  8372. },
  8373. hand: {
  8374. height: math.unit(9 * 0.1168, "feet"),
  8375. name: "Hand",
  8376. image: {
  8377. source: "./media/characters/starry-aqua/hand.svg"
  8378. }
  8379. },
  8380. foot: {
  8381. height: math.unit(9 * 0.18, "feet"),
  8382. name: "Foot",
  8383. image: {
  8384. source: "./media/characters/starry-aqua/foot.svg"
  8385. }
  8386. }
  8387. },
  8388. [
  8389. {
  8390. name: "Micro",
  8391. height: math.unit(3, "inches")
  8392. },
  8393. {
  8394. name: "Normal",
  8395. height: math.unit(9, "feet")
  8396. },
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(300, "feet"),
  8400. default: true
  8401. },
  8402. {
  8403. name: "Megamacro",
  8404. height: math.unit(3200, "feet")
  8405. }
  8406. ]
  8407. ))
  8408. characterMakers.push(() => makeCharacter(
  8409. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8410. {
  8411. front: {
  8412. height: math.unit(6, "feet"),
  8413. weight: math.unit(230, "lb"),
  8414. name: "Front",
  8415. image: {
  8416. source: "./media/characters/luka/front.svg",
  8417. extra: 1,
  8418. bottom: 0.025
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Normal",
  8425. height: math.unit(12 + 8 / 12, "feet"),
  8426. default: true
  8427. },
  8428. {
  8429. name: "Minimacro",
  8430. height: math.unit(20, "feet")
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(250, "feet")
  8435. },
  8436. {
  8437. name: "Megamacro",
  8438. height: math.unit(5, "miles")
  8439. },
  8440. {
  8441. name: "Gigamacro",
  8442. height: math.unit(8000, "miles")
  8443. },
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(150, "lb"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/natalie-nightring/front.svg",
  8455. extra: 1,
  8456. bottom: 0.06
  8457. }
  8458. },
  8459. },
  8460. [
  8461. {
  8462. name: "Uh Oh",
  8463. height: math.unit(0.1, "mm")
  8464. },
  8465. {
  8466. name: "Small",
  8467. height: math.unit(3, "inches")
  8468. },
  8469. {
  8470. name: "Human Scale",
  8471. height: math.unit(6, "feet")
  8472. },
  8473. {
  8474. name: "Librarian",
  8475. height: math.unit(50, "feet"),
  8476. default: true
  8477. },
  8478. {
  8479. name: "Immense",
  8480. height: math.unit(200, "miles")
  8481. },
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8486. {
  8487. front: {
  8488. height: math.unit(6, "feet"),
  8489. weight: math.unit(180, "lbs"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/danni-rosie/front.svg",
  8493. extra: 1260 / 1128,
  8494. bottom: 0.022
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Micro",
  8501. height: math.unit(2, "inches"),
  8502. default: true
  8503. },
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8508. {
  8509. front: {
  8510. height: math.unit(5 + 9 / 12, "feet"),
  8511. weight: math.unit(220, "lb"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/samantha-kruse/front.svg",
  8515. extra: (985 / 935),
  8516. bottom: 0.03
  8517. }
  8518. },
  8519. frontUndressed: {
  8520. height: math.unit(5 + 9 / 12, "feet"),
  8521. weight: math.unit(220, "lb"),
  8522. name: "Front (Undressed)",
  8523. image: {
  8524. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8525. extra: (973 / 923),
  8526. bottom: 0.025
  8527. }
  8528. },
  8529. fat: {
  8530. height: math.unit(5 + 9 / 12, "feet"),
  8531. weight: math.unit(900, "lb"),
  8532. name: "Front (Fat)",
  8533. image: {
  8534. source: "./media/characters/samantha-kruse/fat.svg",
  8535. extra: 2688 / 2561
  8536. }
  8537. },
  8538. },
  8539. [
  8540. {
  8541. name: "Normal",
  8542. height: math.unit(5 + 9 / 12, "feet"),
  8543. default: true
  8544. }
  8545. ]
  8546. ))
  8547. characterMakers.push(() => makeCharacter(
  8548. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8549. {
  8550. back: {
  8551. height: math.unit(5 + 4 / 12, "feet"),
  8552. weight: math.unit(4963, "lb"),
  8553. name: "Back",
  8554. image: {
  8555. source: "./media/characters/amelia-rosie/back.svg",
  8556. extra: 1113 / 963,
  8557. bottom: 0.01
  8558. }
  8559. },
  8560. },
  8561. [
  8562. {
  8563. name: "Level 0",
  8564. height: math.unit(5 + 4 / 12, "feet")
  8565. },
  8566. {
  8567. name: "Level 1",
  8568. height: math.unit(164597, "feet"),
  8569. default: true
  8570. },
  8571. {
  8572. name: "Level 2",
  8573. height: math.unit(956243, "miles")
  8574. },
  8575. {
  8576. name: "Level 3",
  8577. height: math.unit(29421709423, "miles")
  8578. },
  8579. {
  8580. name: "Level 4",
  8581. height: math.unit(154, "lightyears")
  8582. },
  8583. {
  8584. name: "Level 5",
  8585. height: math.unit(4738272, "lightyears")
  8586. },
  8587. {
  8588. name: "Level 6",
  8589. height: math.unit(145787152896, "lightyears")
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(5 + 11 / 12, "feet"),
  8598. weight: math.unit(65, "kg"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/rook-kitara/front.svg",
  8602. extra: 1347 / 1274,
  8603. bottom: 0.005
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Totally Unfair",
  8610. height: math.unit(1.8, "mm")
  8611. },
  8612. {
  8613. name: "Lap Rookie",
  8614. height: math.unit(1.4, "feet")
  8615. },
  8616. {
  8617. name: "Normal",
  8618. height: math.unit(5 + 11 / 12, "feet"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "How Did This Happen",
  8623. height: math.unit(80, "miles")
  8624. }
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(7, "feet"),
  8632. weight: math.unit(300, "lb"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/pisces/front.svg",
  8636. extra: 2255 / 2115,
  8637. bottom: 0.03
  8638. }
  8639. },
  8640. back: {
  8641. height: math.unit(7, "feet"),
  8642. weight: math.unit(300, "lb"),
  8643. name: "Back",
  8644. image: {
  8645. source: "./media/characters/pisces/back.svg",
  8646. extra: 2146 / 2055,
  8647. bottom: 0.04
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(7, "feet"),
  8655. default: true
  8656. },
  8657. {
  8658. name: "Swimming Pool",
  8659. height: math.unit(12.2, "meters")
  8660. },
  8661. {
  8662. name: "Olympic Swimming Pool",
  8663. height: math.unit(56.3, "meters")
  8664. },
  8665. {
  8666. name: "Lake Superior",
  8667. height: math.unit(93900, "meters")
  8668. },
  8669. {
  8670. name: "Mediterranean Sea",
  8671. height: math.unit(644457, "meters")
  8672. },
  8673. {
  8674. name: "World's Oceans",
  8675. height: math.unit(4567491, "meters")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(2.3, "meters"),
  8684. weight: math.unit(120, "kg"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/zelas/front.svg"
  8688. }
  8689. },
  8690. side: {
  8691. height: math.unit(2.3, "meters"),
  8692. weight: math.unit(120, "kg"),
  8693. name: "Side",
  8694. image: {
  8695. source: "./media/characters/zelas/side.svg"
  8696. }
  8697. },
  8698. back: {
  8699. height: math.unit(2.3, "meters"),
  8700. weight: math.unit(120, "kg"),
  8701. name: "Back",
  8702. image: {
  8703. source: "./media/characters/zelas/back.svg"
  8704. }
  8705. },
  8706. foot: {
  8707. height: math.unit(1.116, "feet"),
  8708. name: "Foot",
  8709. image: {
  8710. source: "./media/characters/zelas/foot.svg"
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(2.3, "meters")
  8718. },
  8719. {
  8720. name: "Macro",
  8721. height: math.unit(30, "meters"),
  8722. default: true
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(1, "inch"),
  8731. weight: math.unit(0.21, "grams"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/talbot/front.svg",
  8735. extra: 594 / 544
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Micro",
  8742. height: math.unit(1, "inch"),
  8743. default: true
  8744. },
  8745. ]
  8746. ))
  8747. characterMakers.push(() => makeCharacter(
  8748. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8749. {
  8750. front: {
  8751. height: math.unit(3 + 3 / 12, "feet"),
  8752. weight: math.unit(51.8, "lb"),
  8753. name: "Front",
  8754. image: {
  8755. source: "./media/characters/fliss/front.svg",
  8756. extra: 840 / 640
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Teeny Tiny",
  8763. height: math.unit(1, "mm")
  8764. },
  8765. {
  8766. name: "Small",
  8767. height: math.unit(1, "inch"),
  8768. default: true
  8769. },
  8770. {
  8771. name: "Standard Sylveon",
  8772. height: math.unit(3 + 3 / 12, "feet")
  8773. },
  8774. {
  8775. name: "Large Nuisance",
  8776. height: math.unit(33, "feet")
  8777. },
  8778. {
  8779. name: "City Filler",
  8780. height: math.unit(3000, "feet")
  8781. },
  8782. {
  8783. name: "New Horizon",
  8784. height: math.unit(6000, "miles")
  8785. },
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8790. {
  8791. front: {
  8792. height: math.unit(5, "cm"),
  8793. weight: math.unit(1.94, "g"),
  8794. name: "Front",
  8795. image: {
  8796. source: "./media/characters/fleta/front.svg",
  8797. extra: 835 / 803
  8798. }
  8799. },
  8800. back: {
  8801. height: math.unit(5, "cm"),
  8802. weight: math.unit(1.94, "g"),
  8803. name: "Back",
  8804. image: {
  8805. source: "./media/characters/fleta/back.svg",
  8806. extra: 835 / 803
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Micro",
  8813. height: math.unit(5, "cm"),
  8814. default: true
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8820. {
  8821. front: {
  8822. height: math.unit(6, "feet"),
  8823. weight: math.unit(225, "lb"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/dominic/front.svg",
  8827. extra: 1770 / 1620,
  8828. bottom: 0.025
  8829. }
  8830. },
  8831. back: {
  8832. height: math.unit(6, "feet"),
  8833. weight: math.unit(225, "lb"),
  8834. name: "Back",
  8835. image: {
  8836. source: "./media/characters/dominic/back.svg",
  8837. extra: 1745 / 1620,
  8838. bottom: 0.065
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Nano",
  8845. height: math.unit(0.1, "mm")
  8846. },
  8847. {
  8848. name: "Micro-",
  8849. height: math.unit(1, "mm")
  8850. },
  8851. {
  8852. name: "Micro",
  8853. height: math.unit(4, "inches")
  8854. },
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(6 + 4 / 12, "feet"),
  8858. default: true
  8859. },
  8860. {
  8861. name: "Macro",
  8862. height: math.unit(115, "feet")
  8863. },
  8864. {
  8865. name: "Macro+",
  8866. height: math.unit(955, "feet")
  8867. },
  8868. {
  8869. name: "Megamacro",
  8870. height: math.unit(8990, "feet")
  8871. },
  8872. {
  8873. name: "Gigmacro",
  8874. height: math.unit(9310, "miles")
  8875. },
  8876. {
  8877. name: "Teramacro",
  8878. height: math.unit(1567005010, "miles")
  8879. },
  8880. {
  8881. name: "Examacro",
  8882. height: math.unit(1425, "parsecs")
  8883. },
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8888. {
  8889. front: {
  8890. height: math.unit(400, "feet"),
  8891. weight: math.unit(44444444, "lb"),
  8892. name: "Front",
  8893. image: {
  8894. source: "./media/characters/major-colonel/front.svg"
  8895. }
  8896. },
  8897. back: {
  8898. height: math.unit(400, "feet"),
  8899. weight: math.unit(44444444, "lb"),
  8900. name: "Back",
  8901. image: {
  8902. source: "./media/characters/major-colonel/back.svg"
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Macro",
  8909. height: math.unit(400, "feet"),
  8910. default: true
  8911. },
  8912. ]
  8913. ))
  8914. characterMakers.push(() => makeCharacter(
  8915. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8916. {
  8917. catFront: {
  8918. height: math.unit(6, "feet"),
  8919. weight: math.unit(120, "lb"),
  8920. name: "Front (Cat Side)",
  8921. image: {
  8922. source: "./media/characters/axel-lycan/cat-front.svg",
  8923. extra: 430 / 402,
  8924. bottom: 43 / 472.35
  8925. }
  8926. },
  8927. catBack: {
  8928. height: math.unit(6, "feet"),
  8929. weight: math.unit(120, "lb"),
  8930. name: "Back (Cat Side)",
  8931. image: {
  8932. source: "./media/characters/axel-lycan/cat-back.svg",
  8933. extra: 447 / 419,
  8934. bottom: 23.3 / 469
  8935. }
  8936. },
  8937. wolfFront: {
  8938. height: math.unit(6, "feet"),
  8939. weight: math.unit(120, "lb"),
  8940. name: "Front (Wolf Side)",
  8941. image: {
  8942. source: "./media/characters/axel-lycan/wolf-front.svg",
  8943. extra: 485 / 456,
  8944. bottom: 19 / 504
  8945. }
  8946. },
  8947. wolfBack: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(120, "lb"),
  8950. name: "Back (Wolf Side)",
  8951. image: {
  8952. source: "./media/characters/axel-lycan/wolf-back.svg",
  8953. extra: 475 / 438,
  8954. bottom: 39.2 / 514
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Macro",
  8961. height: math.unit(1, "km"),
  8962. default: true
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(5 + 9 / 12, "feet"),
  8971. weight: math.unit(175, "lb"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/vanrel-hyena/front.svg",
  8975. extra: 1086 / 1010,
  8976. bottom: 0.04
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Normal",
  8983. height: math.unit(5 + 9 / 12, "feet"),
  8984. default: true
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(6, "feet"),
  8993. weight: math.unit(103, "lb"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/abbott-absol/front.svg",
  8997. extra: 2010 / 1842
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Megamicro",
  9004. height: math.unit(0.1, "mm")
  9005. },
  9006. {
  9007. name: "Micro",
  9008. height: math.unit(1, "inch")
  9009. },
  9010. {
  9011. name: "Normal",
  9012. height: math.unit(6, "feet"),
  9013. default: true
  9014. },
  9015. ]
  9016. ))
  9017. characterMakers.push(() => makeCharacter(
  9018. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9019. {
  9020. front: {
  9021. height: math.unit(6, "feet"),
  9022. weight: math.unit(264, "lb"),
  9023. name: "Front",
  9024. image: {
  9025. source: "./media/characters/hector/front.svg",
  9026. extra: 2280 / 2130,
  9027. bottom: 0.07
  9028. }
  9029. },
  9030. },
  9031. [
  9032. {
  9033. name: "Normal",
  9034. height: math.unit(12.25, "foot"),
  9035. default: true
  9036. },
  9037. {
  9038. name: "Macro",
  9039. height: math.unit(160, "feet")
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(6, "feet"),
  9048. weight: math.unit(150, "lb"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/sal/front.svg",
  9052. extra: 1846 / 1699,
  9053. bottom: 0.04
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Megamacro",
  9060. height: math.unit(10, "miles"),
  9061. default: true
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9067. {
  9068. front: {
  9069. height: math.unit(3, "meters"),
  9070. weight: math.unit(450, "kg"),
  9071. name: "front",
  9072. image: {
  9073. source: "./media/characters/ranger/front.svg",
  9074. extra: 2401 / 2243,
  9075. bottom: 0.05
  9076. }
  9077. },
  9078. },
  9079. [
  9080. {
  9081. name: "Normal",
  9082. height: math.unit(3, "meters"),
  9083. default: true
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(14, "feet"),
  9092. weight: math.unit(800, "kg"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/theresa/front.svg",
  9096. extra: 3575 / 3346,
  9097. bottom: 0.03
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(14, "feet"),
  9105. default: true
  9106. },
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9111. {
  9112. front: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(3, "kg"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/ine/front.svg",
  9118. extra: 678 / 539,
  9119. bottom: 0.023
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Normal",
  9126. height: math.unit(2.265, "feet"),
  9127. default: true
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(5, "feet"),
  9136. weight: math.unit(30, "kg"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/vial/front.svg",
  9140. extra: 1365 / 1277,
  9141. bottom: 0.04
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Normal",
  9148. height: math.unit(5, "feet"),
  9149. default: true
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9155. {
  9156. side: {
  9157. height: math.unit(3.4, "meters"),
  9158. weight: math.unit(1000, "lb"),
  9159. name: "Side",
  9160. image: {
  9161. source: "./media/characters/rovoska/side.svg",
  9162. extra: 4403 / 1515
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(3.4, "meters"),
  9170. default: true
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(8, "feet"),
  9179. weight: math.unit(315, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/gunner-rotthbauer/front.svg"
  9183. }
  9184. },
  9185. back: {
  9186. height: math.unit(8, "feet"),
  9187. weight: math.unit(315, "lb"),
  9188. name: "Back",
  9189. image: {
  9190. source: "./media/characters/gunner-rotthbauer/back.svg"
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Micro",
  9197. height: math.unit(3.5, "inches")
  9198. },
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(8, "feet"),
  9202. default: true
  9203. },
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(250, "feet")
  9207. },
  9208. {
  9209. name: "Megamacro",
  9210. height: math.unit(1, "AU")
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9216. {
  9217. front: {
  9218. height: math.unit(5 + 5 / 12, "feet"),
  9219. weight: math.unit(140, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/allatia/front.svg",
  9223. extra: 1227 / 1180,
  9224. bottom: 0.027
  9225. }
  9226. },
  9227. },
  9228. [
  9229. {
  9230. name: "Normal",
  9231. height: math.unit(5 + 5 / 12, "feet")
  9232. },
  9233. {
  9234. name: "Macro",
  9235. height: math.unit(250, "feet"),
  9236. default: true
  9237. },
  9238. {
  9239. name: "Megamacro",
  9240. height: math.unit(8, "miles")
  9241. }
  9242. ]
  9243. ))
  9244. characterMakers.push(() => makeCharacter(
  9245. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9246. {
  9247. front: {
  9248. height: math.unit(6, "feet"),
  9249. weight: math.unit(120, "lb"),
  9250. name: "Front",
  9251. image: {
  9252. source: "./media/characters/tene/front.svg",
  9253. extra: 1728 / 1578,
  9254. bottom: 0.022
  9255. }
  9256. },
  9257. stomping: {
  9258. height: math.unit(2.025, "meters"),
  9259. weight: math.unit(120, "lb"),
  9260. name: "Stomping",
  9261. image: {
  9262. source: "./media/characters/tene/stomping.svg",
  9263. extra: 938 / 873,
  9264. bottom: 0.01
  9265. }
  9266. },
  9267. sitting: {
  9268. height: math.unit(1, "meter"),
  9269. weight: math.unit(120, "lb"),
  9270. name: "Sitting",
  9271. image: {
  9272. source: "./media/characters/tene/sitting.svg",
  9273. extra: 437 / 415,
  9274. bottom: 0.1
  9275. }
  9276. },
  9277. feral: {
  9278. height: math.unit(3.9, "feet"),
  9279. weight: math.unit(250, "lb"),
  9280. name: "Feral",
  9281. image: {
  9282. source: "./media/characters/tene/feral.svg",
  9283. extra: 717 / 458,
  9284. bottom: 0.179
  9285. }
  9286. },
  9287. },
  9288. [
  9289. {
  9290. name: "Normal",
  9291. height: math.unit(6, "feet")
  9292. },
  9293. {
  9294. name: "Macro",
  9295. height: math.unit(300, "feet"),
  9296. default: true
  9297. },
  9298. {
  9299. name: "Megamacro",
  9300. height: math.unit(5, "miles")
  9301. },
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9306. {
  9307. side: {
  9308. height: math.unit(6, "feet"),
  9309. name: "Side",
  9310. image: {
  9311. source: "./media/characters/evander/side.svg",
  9312. extra: 877 / 477
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(0.83, "meters"),
  9320. default: true
  9321. },
  9322. ]
  9323. ))
  9324. characterMakers.push(() => makeCharacter(
  9325. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9326. {
  9327. front: {
  9328. height: math.unit(12, "feet"),
  9329. weight: math.unit(1000, "lb"),
  9330. name: "Front",
  9331. image: {
  9332. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9333. extra: 1762 / 1611
  9334. }
  9335. },
  9336. back: {
  9337. height: math.unit(12, "feet"),
  9338. weight: math.unit(1000, "lb"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9342. extra: 1762 / 1611
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Normal",
  9349. height: math.unit(12, "feet"),
  9350. default: true
  9351. },
  9352. {
  9353. name: "Kaiju",
  9354. height: math.unit(150, "feet")
  9355. },
  9356. ]
  9357. ))
  9358. characterMakers.push(() => makeCharacter(
  9359. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9360. {
  9361. front: {
  9362. height: math.unit(6, "feet"),
  9363. weight: math.unit(150, "lb"),
  9364. name: "Front",
  9365. image: {
  9366. source: "./media/characters/zero-alurus/front.svg"
  9367. }
  9368. },
  9369. back: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(150, "lb"),
  9372. name: "Back",
  9373. image: {
  9374. source: "./media/characters/zero-alurus/back.svg"
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(5 + 10 / 12, "feet")
  9382. },
  9383. {
  9384. name: "Macro",
  9385. height: math.unit(60, "feet"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro+",
  9390. height: math.unit(450, "feet")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(200, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/mega-shi/front.svg",
  9403. extra: 1279 / 1250,
  9404. bottom: 0.02
  9405. }
  9406. },
  9407. back: {
  9408. height: math.unit(6, "feet"),
  9409. weight: math.unit(200, "lb"),
  9410. name: "Back",
  9411. image: {
  9412. source: "./media/characters/mega-shi/back.svg",
  9413. extra: 1279 / 1250,
  9414. bottom: 0.02
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Micro",
  9421. height: math.unit(16 + 6 / 12, "feet")
  9422. },
  9423. {
  9424. name: "Third Dimension",
  9425. height: math.unit(40, "meters")
  9426. },
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(660, "feet"),
  9430. default: true
  9431. },
  9432. {
  9433. name: "Megamacro",
  9434. height: math.unit(10, "miles")
  9435. },
  9436. {
  9437. name: "Planetary Launch",
  9438. height: math.unit(500, "miles")
  9439. },
  9440. {
  9441. name: "Interstellar",
  9442. height: math.unit(1e9, "miles")
  9443. },
  9444. {
  9445. name: "Leaving the Universe",
  9446. height: math.unit(1, "gigaparsec")
  9447. },
  9448. {
  9449. name: "Travelling Universes",
  9450. height: math.unit(30e15, "parsecs")
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(150, "lb"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/odyssey/front.svg",
  9463. extra: 1782 / 1582,
  9464. bottom: 0.01
  9465. }
  9466. },
  9467. side: {
  9468. height: math.unit(5.7, "feet"),
  9469. weight: math.unit(140, "lb"),
  9470. name: "Side",
  9471. image: {
  9472. source: "./media/characters/odyssey/side.svg",
  9473. extra: 6462 / 5700
  9474. }
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Normal",
  9480. height: math.unit(5 + 4 / 12, "feet")
  9481. },
  9482. {
  9483. name: "Macro",
  9484. height: math.unit(1, "km")
  9485. },
  9486. {
  9487. name: "Megamacro",
  9488. height: math.unit(3000, "km")
  9489. },
  9490. {
  9491. name: "Gigamacro",
  9492. height: math.unit(1, "AU"),
  9493. default: true
  9494. },
  9495. {
  9496. name: "Omniversal",
  9497. height: math.unit(100e14, "lightyears")
  9498. },
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9503. {
  9504. front: {
  9505. height: math.unit(6, "feet"),
  9506. weight: math.unit(300, "lb"),
  9507. name: "Front",
  9508. image: {
  9509. source: "./media/characters/mekuto/front.svg",
  9510. extra: 921 / 832,
  9511. bottom: 0.03
  9512. }
  9513. },
  9514. hand: {
  9515. height: math.unit(6 / 10.24, "feet"),
  9516. name: "Hand",
  9517. image: {
  9518. source: "./media/characters/mekuto/hand.svg"
  9519. }
  9520. },
  9521. foot: {
  9522. height: math.unit(6 / 5.05, "feet"),
  9523. name: "Foot",
  9524. image: {
  9525. source: "./media/characters/mekuto/foot.svg"
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Minimicro",
  9532. height: math.unit(0.2, "inches")
  9533. },
  9534. {
  9535. name: "Micro",
  9536. height: math.unit(1.5, "inches")
  9537. },
  9538. {
  9539. name: "Normal",
  9540. height: math.unit(5 + 11 / 12, "feet"),
  9541. default: true
  9542. },
  9543. {
  9544. name: "Minimacro",
  9545. height: math.unit(17 + 9 / 12, "feet")
  9546. },
  9547. {
  9548. name: "Macro",
  9549. height: math.unit(177.5, "feet")
  9550. },
  9551. {
  9552. name: "Megamacro",
  9553. height: math.unit(152, "miles")
  9554. },
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9559. {
  9560. front: {
  9561. height: math.unit(6.5, "inches"),
  9562. weight: math.unit(13, "oz"),
  9563. name: "Front",
  9564. image: {
  9565. source: "./media/characters/dafydd-tomos/front.svg",
  9566. extra: 2990 / 2603,
  9567. bottom: 0.03
  9568. }
  9569. },
  9570. },
  9571. [
  9572. {
  9573. name: "Micro",
  9574. height: math.unit(6.5, "inches"),
  9575. default: true
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(150, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/splinter/front.svg",
  9588. extra: 2990 / 2882,
  9589. bottom: 0.04
  9590. }
  9591. },
  9592. back: {
  9593. height: math.unit(6, "feet"),
  9594. weight: math.unit(150, "lb"),
  9595. name: "Back",
  9596. image: {
  9597. source: "./media/characters/splinter/back.svg",
  9598. extra: 2990 / 2882,
  9599. bottom: 0.04
  9600. }
  9601. },
  9602. },
  9603. [
  9604. {
  9605. name: "Normal",
  9606. height: math.unit(6, "feet")
  9607. },
  9608. {
  9609. name: "Macro",
  9610. height: math.unit(230, "meters"),
  9611. default: true
  9612. },
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9617. {
  9618. front: {
  9619. height: math.unit(4 + 10 / 12, "feet"),
  9620. weight: math.unit(480, "lb"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/snow-gabumon/front.svg",
  9624. extra: 1140 / 963,
  9625. bottom: 0.058
  9626. }
  9627. },
  9628. back: {
  9629. height: math.unit(4 + 10 / 12, "feet"),
  9630. weight: math.unit(480, "lb"),
  9631. name: "Back",
  9632. image: {
  9633. source: "./media/characters/snow-gabumon/back.svg",
  9634. extra: 1115 / 962,
  9635. bottom: 0.041
  9636. }
  9637. },
  9638. frontUndresed: {
  9639. height: math.unit(4 + 10 / 12, "feet"),
  9640. weight: math.unit(480, "lb"),
  9641. name: "Front (Undressed)",
  9642. image: {
  9643. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9644. extra: 1061 / 960,
  9645. bottom: 0.045
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Micro",
  9652. height: math.unit(1, "inch")
  9653. },
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(4 + 10 / 12, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(200, "feet")
  9662. },
  9663. {
  9664. name: "Megamacro",
  9665. height: math.unit(120, "miles")
  9666. },
  9667. {
  9668. name: "Gigamacro",
  9669. height: math.unit(9800, "miles")
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(1.7, "meters"),
  9678. weight: math.unit(140, "lb"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/moody/front.svg",
  9682. extra: 3226 / 3007,
  9683. bottom: 0.087
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Micro",
  9690. height: math.unit(1, "mm")
  9691. },
  9692. {
  9693. name: "Normal",
  9694. height: math.unit(1.7, "meters"),
  9695. default: true
  9696. },
  9697. {
  9698. name: "Macro",
  9699. height: math.unit(80, "meters")
  9700. },
  9701. {
  9702. name: "Macro+",
  9703. height: math.unit(500, "meters")
  9704. },
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(6, "feet"),
  9712. weight: math.unit(150, "lb"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/zyas/front.svg",
  9716. extra: 1180 / 1120,
  9717. bottom: 0.045
  9718. }
  9719. },
  9720. },
  9721. [
  9722. {
  9723. name: "Normal",
  9724. height: math.unit(10, "feet"),
  9725. default: true
  9726. },
  9727. {
  9728. name: "Macro",
  9729. height: math.unit(500, "feet")
  9730. },
  9731. {
  9732. name: "Megamacro",
  9733. height: math.unit(5, "miles")
  9734. },
  9735. {
  9736. name: "Teramacro",
  9737. height: math.unit(150000, "miles")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(6, "feet"),
  9746. weight: math.unit(150, "lb"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/cuon/front.svg",
  9750. extra: 1390 / 1320,
  9751. bottom: 0.008
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Micro",
  9758. height: math.unit(3, "inches")
  9759. },
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(18 + 9 / 12, "feet"),
  9763. default: true
  9764. },
  9765. {
  9766. name: "Macro",
  9767. height: math.unit(360, "feet")
  9768. },
  9769. {
  9770. name: "Megamacro",
  9771. height: math.unit(360, "miles")
  9772. },
  9773. ]
  9774. ))
  9775. characterMakers.push(() => makeCharacter(
  9776. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9777. {
  9778. front: {
  9779. height: math.unit(2.4, "meters"),
  9780. weight: math.unit(70, "kg"),
  9781. name: "Front",
  9782. image: {
  9783. source: "./media/characters/nyanuxk/front.svg",
  9784. extra: 1172 / 1084,
  9785. bottom: 0.065
  9786. }
  9787. },
  9788. side: {
  9789. height: math.unit(2.4, "meters"),
  9790. weight: math.unit(70, "kg"),
  9791. name: "Side",
  9792. image: {
  9793. source: "./media/characters/nyanuxk/side.svg",
  9794. extra: 1190 / 1132,
  9795. bottom: 0.007
  9796. }
  9797. },
  9798. back: {
  9799. height: math.unit(2.4, "meters"),
  9800. weight: math.unit(70, "kg"),
  9801. name: "Back",
  9802. image: {
  9803. source: "./media/characters/nyanuxk/back.svg",
  9804. extra: 1200 / 1141,
  9805. bottom: 0.015
  9806. }
  9807. },
  9808. foot: {
  9809. height: math.unit(0.52, "meters"),
  9810. name: "Foot",
  9811. image: {
  9812. source: "./media/characters/nyanuxk/foot.svg"
  9813. }
  9814. },
  9815. },
  9816. [
  9817. {
  9818. name: "Micro",
  9819. height: math.unit(2, "cm")
  9820. },
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(2.4, "meters"),
  9824. default: true
  9825. },
  9826. {
  9827. name: "Smaller Macro",
  9828. height: math.unit(120, "meters")
  9829. },
  9830. {
  9831. name: "Bigger Macro",
  9832. height: math.unit(1.2, "km")
  9833. },
  9834. {
  9835. name: "Megamacro",
  9836. height: math.unit(15, "kilometers")
  9837. },
  9838. {
  9839. name: "Gigamacro",
  9840. height: math.unit(2000, "km")
  9841. },
  9842. {
  9843. name: "Teramacro",
  9844. height: math.unit(500000, "km")
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9850. {
  9851. side: {
  9852. height: math.unit(6, "feet"),
  9853. name: "Side",
  9854. image: {
  9855. source: "./media/characters/ailbhe/side.svg",
  9856. extra: 757 / 464,
  9857. bottom: 0.041
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(1.07, "meters"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9871. {
  9872. front: {
  9873. height: math.unit(6, "feet"),
  9874. weight: math.unit(120, "kg"),
  9875. name: "Front",
  9876. image: {
  9877. source: "./media/characters/zevulfius/front.svg",
  9878. extra: 965 / 903
  9879. }
  9880. },
  9881. side: {
  9882. height: math.unit(6, "feet"),
  9883. weight: math.unit(120, "kg"),
  9884. name: "Side",
  9885. image: {
  9886. source: "./media/characters/zevulfius/side.svg",
  9887. extra: 939 / 900
  9888. }
  9889. },
  9890. back: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(120, "kg"),
  9893. name: "Back",
  9894. image: {
  9895. source: "./media/characters/zevulfius/back.svg",
  9896. extra: 918 / 854,
  9897. bottom: 0.005
  9898. }
  9899. },
  9900. foot: {
  9901. height: math.unit(6 / 3.72, "feet"),
  9902. name: "Foot",
  9903. image: {
  9904. source: "./media/characters/zevulfius/foot.svg"
  9905. }
  9906. },
  9907. },
  9908. [
  9909. {
  9910. name: "Macro",
  9911. height: math.unit(750, "meters")
  9912. },
  9913. {
  9914. name: "Megamacro",
  9915. height: math.unit(20, "km"),
  9916. default: true
  9917. },
  9918. {
  9919. name: "Gigamacro",
  9920. height: math.unit(2000, "km")
  9921. },
  9922. {
  9923. name: "Teramacro",
  9924. height: math.unit(250000, "km")
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(100, "feet"),
  9933. weight: math.unit(350, "kg"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/rikes/front.svg",
  9937. extra: 1565 / 1483,
  9938. bottom: 0.017
  9939. }
  9940. },
  9941. },
  9942. [
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(100, "feet"),
  9946. default: true
  9947. },
  9948. ]
  9949. ))
  9950. characterMakers.push(() => makeCharacter(
  9951. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9952. {
  9953. anthro: {
  9954. height: math.unit(8, "feet"),
  9955. weight: math.unit(120, "kg"),
  9956. name: "Anthro",
  9957. image: {
  9958. source: "./media/characters/adam-silver-mane/anthro.svg",
  9959. extra: 5743 / 5339,
  9960. bottom: 0.07
  9961. }
  9962. },
  9963. taur: {
  9964. height: math.unit(16, "feet"),
  9965. weight: math.unit(1500, "kg"),
  9966. name: "Taur",
  9967. image: {
  9968. source: "./media/characters/adam-silver-mane/taur.svg",
  9969. extra: 1713 / 1571,
  9970. bottom: 0.01
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Normal",
  9977. height: math.unit(8, "feet")
  9978. },
  9979. {
  9980. name: "Minimacro",
  9981. height: math.unit(80, "feet")
  9982. },
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(800, "feet"),
  9986. default: true
  9987. },
  9988. {
  9989. name: "Megamacro",
  9990. height: math.unit(8000, "feet")
  9991. },
  9992. {
  9993. name: "Gigamacro",
  9994. height: math.unit(800, "miles")
  9995. },
  9996. {
  9997. name: "Teramacro",
  9998. height: math.unit(80000, "miles")
  9999. },
  10000. {
  10001. name: "Celestial",
  10002. height: math.unit(8e6, "miles")
  10003. },
  10004. {
  10005. name: "Star Dragon",
  10006. height: math.unit(800000, "parsecs")
  10007. },
  10008. {
  10009. name: "Godly",
  10010. height: math.unit(800, "teraparsecs")
  10011. },
  10012. ]
  10013. ))
  10014. characterMakers.push(() => makeCharacter(
  10015. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10016. {
  10017. front: {
  10018. height: math.unit(6, "feet"),
  10019. weight: math.unit(150, "lb"),
  10020. name: "Front",
  10021. image: {
  10022. source: "./media/characters/ky'owin/front.svg",
  10023. extra: 3888 / 3068,
  10024. bottom: 0.015
  10025. }
  10026. },
  10027. },
  10028. [
  10029. {
  10030. name: "Normal",
  10031. height: math.unit(6 + 8 / 12, "feet")
  10032. },
  10033. {
  10034. name: "Large",
  10035. height: math.unit(68, "feet")
  10036. },
  10037. {
  10038. name: "Macro",
  10039. height: math.unit(132, "feet")
  10040. },
  10041. {
  10042. name: "Macro+",
  10043. height: math.unit(340, "feet")
  10044. },
  10045. {
  10046. name: "Macro++",
  10047. height: math.unit(680, "feet"),
  10048. default: true
  10049. },
  10050. {
  10051. name: "Megamacro",
  10052. height: math.unit(1, "mile")
  10053. },
  10054. {
  10055. name: "Megamacro+",
  10056. height: math.unit(10, "miles")
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10062. {
  10063. front: {
  10064. height: math.unit(4, "feet"),
  10065. weight: math.unit(50, "lb"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/mal/front.svg",
  10069. extra: 785 / 724,
  10070. bottom: 0.07
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Micro",
  10077. height: math.unit(4, "inches")
  10078. },
  10079. {
  10080. name: "Normal",
  10081. height: math.unit(4, "feet"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Macro",
  10086. height: math.unit(200, "feet")
  10087. },
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10092. {
  10093. front: {
  10094. height: math.unit(6, "feet"),
  10095. weight: math.unit(150, "lb"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/jordan-deware/front.svg",
  10099. extra: 1191 / 1012
  10100. }
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Nano",
  10106. height: math.unit(0.01, "mm")
  10107. },
  10108. {
  10109. name: "Minimicro",
  10110. height: math.unit(1, "mm")
  10111. },
  10112. {
  10113. name: "Micro",
  10114. height: math.unit(0.5, "inches")
  10115. },
  10116. {
  10117. name: "Normal",
  10118. height: math.unit(4, "feet"),
  10119. default: true
  10120. },
  10121. {
  10122. name: "Minimacro",
  10123. height: math.unit(40, "meters")
  10124. },
  10125. {
  10126. name: "Small Macro",
  10127. height: math.unit(400, "meters")
  10128. },
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(4, "miles")
  10132. },
  10133. {
  10134. name: "Megamacro",
  10135. height: math.unit(40, "miles")
  10136. },
  10137. {
  10138. name: "Megamacro+",
  10139. height: math.unit(400, "miles")
  10140. },
  10141. {
  10142. name: "Gigamacro",
  10143. height: math.unit(400000, "miles")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10149. {
  10150. side: {
  10151. height: math.unit(6, "feet"),
  10152. weight: math.unit(150, "lb"),
  10153. name: "Side",
  10154. image: {
  10155. source: "./media/characters/kimiko/side.svg",
  10156. extra: 600 / 358
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(15, "feet"),
  10164. default: true
  10165. },
  10166. {
  10167. name: "Macro",
  10168. height: math.unit(220, "feet")
  10169. },
  10170. {
  10171. name: "Macro+",
  10172. height: math.unit(1450, "feet")
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(11500, "feet")
  10177. },
  10178. {
  10179. name: "Gigamacro",
  10180. height: math.unit(9500, "miles")
  10181. },
  10182. {
  10183. name: "Teramacro",
  10184. height: math.unit(2208005005, "miles")
  10185. },
  10186. {
  10187. name: "Examacro",
  10188. height: math.unit(2750, "parsecs")
  10189. },
  10190. {
  10191. name: "Zettamacro",
  10192. height: math.unit(101500, "parsecs")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(6, "feet"),
  10201. weight: math.unit(70, "kg"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/andrew-sleepy/front.svg"
  10205. }
  10206. },
  10207. side: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(70, "kg"),
  10210. name: "Side",
  10211. image: {
  10212. source: "./media/characters/andrew-sleepy/side.svg"
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Micro",
  10219. height: math.unit(1, "mm"),
  10220. default: true
  10221. },
  10222. ]
  10223. ))
  10224. characterMakers.push(() => makeCharacter(
  10225. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10226. {
  10227. front: {
  10228. height: math.unit(6, "feet"),
  10229. weight: math.unit(150, "lb"),
  10230. name: "Front",
  10231. image: {
  10232. source: "./media/characters/judio/front.svg",
  10233. extra: 1258 / 1110
  10234. }
  10235. },
  10236. },
  10237. [
  10238. {
  10239. name: "Normal",
  10240. height: math.unit(5 + 6 / 12, "feet")
  10241. },
  10242. {
  10243. name: "Macro",
  10244. height: math.unit(1000, "feet"),
  10245. default: true
  10246. },
  10247. {
  10248. name: "Megamacro",
  10249. height: math.unit(10, "miles")
  10250. },
  10251. ]
  10252. ))
  10253. characterMakers.push(() => makeCharacter(
  10254. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10255. {
  10256. front: {
  10257. height: math.unit(6, "feet"),
  10258. weight: math.unit(68, "kg"),
  10259. name: "Front",
  10260. image: {
  10261. source: "./media/characters/nomaxice/front.svg",
  10262. extra: 1498 / 1073,
  10263. bottom: 0.075
  10264. }
  10265. },
  10266. foot: {
  10267. height: math.unit(1.1, "feet"),
  10268. name: "Foot",
  10269. image: {
  10270. source: "./media/characters/nomaxice/foot.svg"
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Micro",
  10277. height: math.unit(8, "cm")
  10278. },
  10279. {
  10280. name: "Norm",
  10281. height: math.unit(1.82, "m")
  10282. },
  10283. {
  10284. name: "Norm+",
  10285. height: math.unit(8.8, "feet")
  10286. },
  10287. {
  10288. name: "Big",
  10289. height: math.unit(8, "meters"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(18, "meters")
  10295. },
  10296. {
  10297. name: "Macro+",
  10298. height: math.unit(88, "meters")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(12, "feet"),
  10307. weight: math.unit(1.5, "tons"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/dydros/front.svg",
  10311. extra: 863 / 800,
  10312. bottom: 0.015
  10313. }
  10314. },
  10315. back: {
  10316. height: math.unit(12, "feet"),
  10317. weight: math.unit(1.5, "tons"),
  10318. name: "Back",
  10319. image: {
  10320. source: "./media/characters/dydros/back.svg",
  10321. extra: 900 / 843,
  10322. bottom: 0.005
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(12, "feet"),
  10330. default: true
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(100, "kg"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/riggi/front.svg",
  10343. extra: 5787 / 5303
  10344. }
  10345. },
  10346. hyper: {
  10347. height: math.unit(6 * 5 / 3, "feet"),
  10348. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10349. name: "Hyper",
  10350. image: {
  10351. source: "./media/characters/riggi/hyper.svg",
  10352. extra: 3595 / 3485
  10353. }
  10354. },
  10355. },
  10356. [
  10357. {
  10358. name: "Small Macro",
  10359. height: math.unit(50, "feet")
  10360. },
  10361. {
  10362. name: "Default",
  10363. height: math.unit(200, "feet"),
  10364. default: true
  10365. },
  10366. {
  10367. name: "Loom",
  10368. height: math.unit(10000, "feet")
  10369. },
  10370. {
  10371. name: "Cruising Altitude",
  10372. height: math.unit(30000, "feet")
  10373. },
  10374. {
  10375. name: "Megamacro",
  10376. height: math.unit(100, "miles")
  10377. },
  10378. {
  10379. name: "Continent Sized",
  10380. height: math.unit(2800, "miles")
  10381. },
  10382. {
  10383. name: "Earth Sized",
  10384. height: math.unit(8000, "miles")
  10385. },
  10386. ]
  10387. ))
  10388. characterMakers.push(() => makeCharacter(
  10389. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10390. {
  10391. front: {
  10392. height: math.unit(6, "feet"),
  10393. weight: math.unit(250, "lb"),
  10394. name: "Front",
  10395. image: {
  10396. source: "./media/characters/alexi/front.svg",
  10397. extra: 3483 / 3291,
  10398. bottom: 0.04
  10399. }
  10400. },
  10401. back: {
  10402. height: math.unit(6, "feet"),
  10403. weight: math.unit(250, "lb"),
  10404. name: "Back",
  10405. image: {
  10406. source: "./media/characters/alexi/back.svg",
  10407. extra: 3533 / 3356,
  10408. bottom: 0.021
  10409. }
  10410. },
  10411. frontTransforming: {
  10412. height: math.unit(8.58, "feet"),
  10413. weight: math.unit(1300, "lb"),
  10414. name: "Transforming",
  10415. image: {
  10416. source: "./media/characters/alexi/front-transforming.svg",
  10417. extra: 437 / 409,
  10418. bottom: 19 / 458.66
  10419. }
  10420. },
  10421. frontTransformed: {
  10422. height: math.unit(12.5, "feet"),
  10423. weight: math.unit(4000, "lb"),
  10424. name: "Transformed",
  10425. image: {
  10426. source: "./media/characters/alexi/front-transformed.svg",
  10427. extra: 639 / 614,
  10428. bottom: 30.55 / 671
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Normal",
  10435. height: math.unit(14, "feet"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Minimacro",
  10440. height: math.unit(30, "meters")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(500, "meters")
  10445. },
  10446. {
  10447. name: "Megamacro",
  10448. height: math.unit(9000, "km")
  10449. },
  10450. {
  10451. name: "Teramacro",
  10452. height: math.unit(384000, "km")
  10453. },
  10454. ]
  10455. ))
  10456. characterMakers.push(() => makeCharacter(
  10457. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10458. {
  10459. front: {
  10460. height: math.unit(6, "feet"),
  10461. weight: math.unit(150, "lb"),
  10462. name: "Front",
  10463. image: {
  10464. source: "./media/characters/kayroo/front.svg",
  10465. extra: 1153 / 1038,
  10466. bottom: 0.06
  10467. }
  10468. },
  10469. foot: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(150, "lb"),
  10472. name: "Foot",
  10473. image: {
  10474. source: "./media/characters/kayroo/foot.svg"
  10475. }
  10476. },
  10477. },
  10478. [
  10479. {
  10480. name: "Normal",
  10481. height: math.unit(8, "feet"),
  10482. default: true
  10483. },
  10484. {
  10485. name: "Minimacro",
  10486. height: math.unit(250, "feet")
  10487. },
  10488. {
  10489. name: "Macro",
  10490. height: math.unit(2800, "feet")
  10491. },
  10492. {
  10493. name: "Megamacro",
  10494. height: math.unit(5200, "feet")
  10495. },
  10496. {
  10497. name: "Gigamacro",
  10498. height: math.unit(27000, "feet")
  10499. },
  10500. {
  10501. name: "Omega",
  10502. height: math.unit(45000, "feet")
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10508. {
  10509. front: {
  10510. height: math.unit(18, "feet"),
  10511. weight: math.unit(5800, "lb"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/rhys/front.svg",
  10515. extra: 3386 / 3090,
  10516. bottom: 0.07
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Normal",
  10523. height: math.unit(18, "feet"),
  10524. default: true
  10525. },
  10526. {
  10527. name: "Working Size",
  10528. height: math.unit(200, "feet")
  10529. },
  10530. {
  10531. name: "Demolition Size",
  10532. height: math.unit(2000, "feet")
  10533. },
  10534. {
  10535. name: "Maximum Licensed Size",
  10536. height: math.unit(5, "miles")
  10537. },
  10538. {
  10539. name: "Maximum Observed Size",
  10540. height: math.unit(10, "yottameters")
  10541. },
  10542. ]
  10543. ))
  10544. characterMakers.push(() => makeCharacter(
  10545. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10546. {
  10547. front: {
  10548. height: math.unit(6, "feet"),
  10549. weight: math.unit(250, "lb"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/toto/front.svg",
  10553. extra: 527 / 479,
  10554. bottom: 0.05
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Micro",
  10561. height: math.unit(3, "feet")
  10562. },
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(10, "feet")
  10566. },
  10567. {
  10568. name: "Macro",
  10569. height: math.unit(150, "feet"),
  10570. default: true
  10571. },
  10572. {
  10573. name: "Megamacro",
  10574. height: math.unit(1200, "feet")
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "King", species: ["lion"], tags: ["anthro"] },
  10580. {
  10581. back: {
  10582. height: math.unit(6, "feet"),
  10583. weight: math.unit(150, "lb"),
  10584. name: "Back",
  10585. image: {
  10586. source: "./media/characters/king/back.svg"
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Micro",
  10593. height: math.unit(2, "inches")
  10594. },
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(8, "feet")
  10598. },
  10599. {
  10600. name: "Macro",
  10601. height: math.unit(200, "feet"),
  10602. default: true
  10603. },
  10604. {
  10605. name: "Megamacro",
  10606. height: math.unit(50, "miles")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10612. {
  10613. anthro: {
  10614. height: math.unit(6 + 5 / 12, "feet"),
  10615. weight: math.unit(280, "lb"),
  10616. name: "Anthro",
  10617. image: {
  10618. source: "./media/characters/cordite/anthro.svg",
  10619. extra: 1986 / 1905,
  10620. bottom: 0.025
  10621. }
  10622. },
  10623. feral: {
  10624. height: math.unit(2, "feet"),
  10625. weight: math.unit(90, "lb"),
  10626. name: "Feral",
  10627. image: {
  10628. source: "./media/characters/cordite/feral.svg",
  10629. extra: 1260 / 755,
  10630. bottom: 0.05
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Normal",
  10637. height: math.unit(6 + 5 / 12, "feet"),
  10638. default: true
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10644. {
  10645. front: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Front",
  10649. image: {
  10650. source: "./media/characters/pianostrong/front.svg",
  10651. extra: 6577 / 6254,
  10652. bottom: 0.02
  10653. }
  10654. },
  10655. side: {
  10656. height: math.unit(6, "feet"),
  10657. weight: math.unit(150, "lb"),
  10658. name: "Side",
  10659. image: {
  10660. source: "./media/characters/pianostrong/side.svg",
  10661. extra: 6106 / 5730
  10662. }
  10663. },
  10664. back: {
  10665. height: math.unit(6, "feet"),
  10666. weight: math.unit(150, "lb"),
  10667. name: "Back",
  10668. image: {
  10669. source: "./media/characters/pianostrong/back.svg",
  10670. extra: 6085 / 5733,
  10671. bottom: 0.01
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Macro",
  10678. height: math.unit(100, "feet")
  10679. },
  10680. {
  10681. name: "Macro+",
  10682. height: math.unit(300, "feet"),
  10683. default: true
  10684. },
  10685. {
  10686. name: "Macro++",
  10687. height: math.unit(1000, "feet")
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10693. {
  10694. front: {
  10695. height: math.unit(6, "feet"),
  10696. weight: math.unit(150, "lb"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/kona/front.svg",
  10700. extra: 2960 / 2629,
  10701. bottom: 0.005
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Normal",
  10708. height: math.unit(11 + 8 / 12, "feet")
  10709. },
  10710. {
  10711. name: "Macro",
  10712. height: math.unit(850, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Macro+",
  10717. height: math.unit(1.5, "km"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Megamacro",
  10722. height: math.unit(80, "miles")
  10723. },
  10724. {
  10725. name: "Gigamacro",
  10726. height: math.unit(3500, "miles")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10732. {
  10733. side: {
  10734. height: math.unit(1.9, "meters"),
  10735. weight: math.unit(326, "kg"),
  10736. name: "Side",
  10737. image: {
  10738. source: "./media/characters/levi/side.svg",
  10739. extra: 1704 / 1334,
  10740. bottom: 0.02
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(1.9, "meters"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Macro",
  10752. height: math.unit(20, "meters")
  10753. },
  10754. {
  10755. name: "Macro+",
  10756. height: math.unit(200, "meters")
  10757. },
  10758. {
  10759. name: "Megamacro",
  10760. height: math.unit(2, "km")
  10761. },
  10762. {
  10763. name: "Megamacro+",
  10764. height: math.unit(20, "km")
  10765. },
  10766. {
  10767. name: "Gigamacro",
  10768. height: math.unit(2500, "km")
  10769. },
  10770. {
  10771. name: "Gigamacro+",
  10772. height: math.unit(120000, "km")
  10773. },
  10774. {
  10775. name: "Teramacro",
  10776. height: math.unit(7.77e6, "km")
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(6 + 4 / 12, "feet"),
  10785. weight: math.unit(188, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/bmc/front.svg",
  10789. extra: 1067 / 1022,
  10790. bottom: 0.047
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Human-sized",
  10797. height: math.unit(6 + 4 / 12, "feet")
  10798. },
  10799. {
  10800. name: "Small",
  10801. height: math.unit(250, "feet")
  10802. },
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(1250, "feet"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Good Day",
  10810. height: math.unit(88, "miles")
  10811. },
  10812. {
  10813. name: "Largest Measured Size",
  10814. height: math.unit(11.2e6, "lightyears")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(20, "feet"),
  10823. weight: math.unit(2016, "kg"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/sven-the-kaiju/front.svg",
  10827. extra: 1479 / 1449,
  10828. bottom: 0.05
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Fairy",
  10835. height: math.unit(6, "inches")
  10836. },
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(20, "feet"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Rampage",
  10844. height: math.unit(200, "feet")
  10845. },
  10846. {
  10847. name: "Archfey Forest Guardian",
  10848. height: math.unit(1, "mile")
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(4, "meters"),
  10857. weight: math.unit(2, "tons"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/marik/front.svg",
  10861. extra: 1057 / 1003,
  10862. bottom: 0.08
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Normal",
  10869. height: math.unit(4, "meters"),
  10870. default: true
  10871. },
  10872. {
  10873. name: "Macro",
  10874. height: math.unit(20, "meters")
  10875. },
  10876. {
  10877. name: "Megamacro",
  10878. height: math.unit(50, "km")
  10879. },
  10880. {
  10881. name: "Gigamacro",
  10882. height: math.unit(100, "km")
  10883. },
  10884. {
  10885. name: "Alpha Macro",
  10886. height: math.unit(7.88e7, "yottameters")
  10887. },
  10888. ]
  10889. ))
  10890. characterMakers.push(() => makeCharacter(
  10891. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10892. {
  10893. front: {
  10894. height: math.unit(6, "feet"),
  10895. weight: math.unit(110, "lb"),
  10896. name: "Front",
  10897. image: {
  10898. source: "./media/characters/mel/front.svg",
  10899. extra: 736 / 617,
  10900. bottom: 0.017
  10901. }
  10902. },
  10903. },
  10904. [
  10905. {
  10906. name: "Pico",
  10907. height: math.unit(3, "pm")
  10908. },
  10909. {
  10910. name: "Nano",
  10911. height: math.unit(3, "nm")
  10912. },
  10913. {
  10914. name: "Micro",
  10915. height: math.unit(0.3, "mm"),
  10916. default: true
  10917. },
  10918. {
  10919. name: "Micro+",
  10920. height: math.unit(3, "mm")
  10921. },
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(5 + 10.5 / 12, "feet")
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10930. {
  10931. kaiju: {
  10932. height: math.unit(1.75, "meters"),
  10933. weight: math.unit(55, "kg"),
  10934. name: "Kaiju",
  10935. image: {
  10936. source: "./media/characters/lykonous/kaiju.svg",
  10937. extra: 1055 / 946,
  10938. bottom: 0.135
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(2.5, "meters"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Kaiju Dragon",
  10950. height: math.unit(60, "meters")
  10951. },
  10952. {
  10953. name: "Mega Kaiju",
  10954. height: math.unit(120, "km")
  10955. },
  10956. {
  10957. name: "Giga Kaiju",
  10958. height: math.unit(200, "megameters")
  10959. },
  10960. {
  10961. name: "Terra Kaiju",
  10962. height: math.unit(400, "gigameters")
  10963. },
  10964. {
  10965. name: "Kaiju Dragon God",
  10966. height: math.unit(13000, "exaparsecs")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(150, "lb"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/blü/front.svg",
  10979. extra: 1883 / 1564,
  10980. bottom: 0.031
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Normal",
  10987. height: math.unit(13, "feet"),
  10988. default: true
  10989. },
  10990. {
  10991. name: "Big Boi",
  10992. height: math.unit(150, "meters")
  10993. },
  10994. {
  10995. name: "Mini Stomper",
  10996. height: math.unit(300, "meters")
  10997. },
  10998. {
  10999. name: "Macro",
  11000. height: math.unit(1000, "meters")
  11001. },
  11002. {
  11003. name: "Megamacro",
  11004. height: math.unit(11000, "meters")
  11005. },
  11006. {
  11007. name: "Gigamacro",
  11008. height: math.unit(11000, "km")
  11009. },
  11010. {
  11011. name: "Teramacro",
  11012. height: math.unit(420000, "km")
  11013. },
  11014. {
  11015. name: "Examacro",
  11016. height: math.unit(120, "parsecs")
  11017. },
  11018. {
  11019. name: "God Tho",
  11020. height: math.unit(98000000000, "parsecs")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11026. {
  11027. taurFront: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(200, "lb"),
  11030. name: "Taur (Front)",
  11031. image: {
  11032. source: "./media/characters/scales/taur-front.svg",
  11033. extra: 1,
  11034. bottom: 0.05
  11035. }
  11036. },
  11037. taurBack: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(200, "lb"),
  11040. name: "Taur (Back)",
  11041. image: {
  11042. source: "./media/characters/scales/taur-back.svg",
  11043. extra: 1,
  11044. bottom: 0.08
  11045. }
  11046. },
  11047. anthro: {
  11048. height: math.unit(6 * 7 / 12, "feet"),
  11049. weight: math.unit(100, "lb"),
  11050. name: "Anthro",
  11051. image: {
  11052. source: "./media/characters/scales/anthro.svg",
  11053. extra: 1,
  11054. bottom: 0.06
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(12, "feet"),
  11062. default: true
  11063. },
  11064. ]
  11065. ))
  11066. characterMakers.push(() => makeCharacter(
  11067. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11068. {
  11069. front: {
  11070. height: math.unit(6, "feet"),
  11071. weight: math.unit(150, "lb"),
  11072. name: "Front",
  11073. image: {
  11074. source: "./media/characters/koragos/front.svg",
  11075. extra: 841 / 794,
  11076. bottom: 0.035
  11077. }
  11078. },
  11079. back: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(150, "lb"),
  11082. name: "Back",
  11083. image: {
  11084. source: "./media/characters/koragos/back.svg",
  11085. extra: 841 / 810,
  11086. bottom: 0.022
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Normal",
  11093. height: math.unit(6 + 11 / 12, "feet"),
  11094. default: true
  11095. },
  11096. {
  11097. name: "Macro",
  11098. height: math.unit(490, "feet")
  11099. },
  11100. {
  11101. name: "Megamacro",
  11102. height: math.unit(10, "miles")
  11103. },
  11104. {
  11105. name: "Gigamacro",
  11106. height: math.unit(50, "miles")
  11107. },
  11108. ]
  11109. ))
  11110. characterMakers.push(() => makeCharacter(
  11111. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11112. {
  11113. front: {
  11114. height: math.unit(6, "feet"),
  11115. weight: math.unit(250, "lb"),
  11116. name: "Front",
  11117. image: {
  11118. source: "./media/characters/xylrem/front.svg",
  11119. extra: 3323 / 3050,
  11120. bottom: 0.065
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Micro",
  11127. height: math.unit(4, "feet")
  11128. },
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(16, "feet"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Macro",
  11136. height: math.unit(2720, "feet")
  11137. },
  11138. {
  11139. name: "Megamacro",
  11140. height: math.unit(25000, "miles")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11146. {
  11147. front: {
  11148. height: math.unit(8, "feet"),
  11149. weight: math.unit(250, "kg"),
  11150. name: "Front",
  11151. image: {
  11152. source: "./media/characters/ikideru/front.svg",
  11153. extra: 930 / 870,
  11154. bottom: 0.087
  11155. }
  11156. },
  11157. back: {
  11158. height: math.unit(8, "feet"),
  11159. weight: math.unit(250, "kg"),
  11160. name: "Back",
  11161. image: {
  11162. source: "./media/characters/ikideru/back.svg",
  11163. extra: 919 / 852,
  11164. bottom: 0.055
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Rare",
  11171. height: math.unit(8, "feet"),
  11172. default: true
  11173. },
  11174. {
  11175. name: "Playful Loom",
  11176. height: math.unit(80, "feet")
  11177. },
  11178. {
  11179. name: "City Leaner",
  11180. height: math.unit(230, "feet")
  11181. },
  11182. {
  11183. name: "Megamacro",
  11184. height: math.unit(2500, "feet")
  11185. },
  11186. {
  11187. name: "Gigamacro",
  11188. height: math.unit(26400, "feet")
  11189. },
  11190. {
  11191. name: "Tectonic Shifter",
  11192. height: math.unit(1.7, "megameters")
  11193. },
  11194. {
  11195. name: "Planet Carer",
  11196. height: math.unit(21, "megameters")
  11197. },
  11198. {
  11199. name: "God",
  11200. height: math.unit(11157.22, "parsecs")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(120, "lb"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/neo/front.svg"
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Micro",
  11219. height: math.unit(2, "inches"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Human Size",
  11224. height: math.unit(5 + 8 / 12, "feet")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(13 + 10 / 12, "feet"),
  11233. weight: math.unit(5320, "lb"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/chauncey-chantz/front.svg",
  11237. extra: 1587 / 1435,
  11238. bottom: 0.02
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(13 + 10 / 12, "feet"),
  11246. default: true
  11247. },
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(45, "feet")
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(250, "miles")
  11255. },
  11256. {
  11257. name: "Planetary",
  11258. height: math.unit(10000, "miles")
  11259. },
  11260. {
  11261. name: "Galactic",
  11262. height: math.unit(40000, "parsecs")
  11263. },
  11264. {
  11265. name: "Universal",
  11266. height: math.unit(1, "yottameter")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11272. {
  11273. front: {
  11274. height: math.unit(6, "feet"),
  11275. weight: math.unit(150, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/epifox/front.svg",
  11279. extra: 1,
  11280. bottom: 0.075
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Micro",
  11287. height: math.unit(6, "inches")
  11288. },
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(12, "feet"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Macro",
  11296. height: math.unit(3810, "feet")
  11297. },
  11298. {
  11299. name: "Megamacro",
  11300. height: math.unit(500, "miles")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(1.8796, "m"),
  11309. weight: math.unit(230, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/colin-t/front.svg",
  11313. extra: 1272 / 1193,
  11314. bottom: 0.07
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Micro",
  11321. height: math.unit(0.571, "meters")
  11322. },
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(1.8796, "meters"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Tall",
  11330. height: math.unit(4, "meters")
  11331. },
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(67.241, "meters")
  11335. },
  11336. {
  11337. name: "Megamacro",
  11338. height: math.unit(371.856, "meters")
  11339. },
  11340. {
  11341. name: "Planetary",
  11342. height: math.unit(12631.5689, "km")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(1.85, "meters"),
  11351. weight: math.unit(80, "kg"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/matvei/front.svg",
  11355. extra: 614 / 594,
  11356. bottom: 0.01
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(1.85, "meters"),
  11364. default: true
  11365. },
  11366. ]
  11367. ))
  11368. characterMakers.push(() => makeCharacter(
  11369. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11370. {
  11371. front: {
  11372. height: math.unit(5 + 9 / 12, "feet"),
  11373. weight: math.unit(70, "lb"),
  11374. name: "Front",
  11375. image: {
  11376. source: "./media/characters/quincy/front.svg",
  11377. extra: 3041 / 2751
  11378. }
  11379. },
  11380. back: {
  11381. height: math.unit(5 + 9 / 12, "feet"),
  11382. weight: math.unit(70, "lb"),
  11383. name: "Back",
  11384. image: {
  11385. source: "./media/characters/quincy/back.svg",
  11386. extra: 3041 / 2751
  11387. }
  11388. },
  11389. flying: {
  11390. height: math.unit(5 + 4 / 12, "feet"),
  11391. weight: math.unit(70, "lb"),
  11392. name: "Flying",
  11393. image: {
  11394. source: "./media/characters/quincy/flying.svg",
  11395. extra: 1044 / 930
  11396. }
  11397. },
  11398. },
  11399. [
  11400. {
  11401. name: "Micro",
  11402. height: math.unit(3, "cm")
  11403. },
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(5 + 9 / 12, "feet")
  11407. },
  11408. {
  11409. name: "Macro",
  11410. height: math.unit(200, "meters"),
  11411. default: true
  11412. },
  11413. {
  11414. name: "Megamacro",
  11415. height: math.unit(1000, "meters")
  11416. },
  11417. ]
  11418. ))
  11419. characterMakers.push(() => makeCharacter(
  11420. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11421. {
  11422. front: {
  11423. height: math.unit(4 + 7 / 12, "feet"),
  11424. weight: math.unit(50, "lb"),
  11425. name: "Front",
  11426. image: {
  11427. source: "./media/characters/vanrel/front.svg",
  11428. extra: 1,
  11429. bottom: 0.02
  11430. }
  11431. },
  11432. frontAlt: {
  11433. height: math.unit(4 + 7 / 12, "feet"),
  11434. weight: math.unit(50, "lb"),
  11435. name: "Front-alt",
  11436. image: {
  11437. source: "./media/characters/vanrel/front-alt.svg",
  11438. extra: 1,
  11439. bottom: 15 / 1511
  11440. }
  11441. },
  11442. elemental: {
  11443. height: math.unit(3, "feet"),
  11444. weight: math.unit(50, "lb"),
  11445. name: "Elemental",
  11446. image: {
  11447. source: "./media/characters/vanrel/elemental.svg",
  11448. extra: 192.3 / 162.8,
  11449. bottom: 1.79 / 194.17
  11450. }
  11451. },
  11452. side: {
  11453. height: math.unit(4 + 7 / 12, "feet"),
  11454. weight: math.unit(50, "lb"),
  11455. name: "Side",
  11456. image: {
  11457. source: "./media/characters/vanrel/side.svg",
  11458. extra: 1,
  11459. bottom: 0.025
  11460. }
  11461. },
  11462. tome: {
  11463. height: math.unit(1.35, "feet"),
  11464. weight: math.unit(10, "lb"),
  11465. name: "Vanrel's Tome",
  11466. rename: true,
  11467. image: {
  11468. source: "./media/characters/vanrel/tome.svg"
  11469. }
  11470. },
  11471. beans: {
  11472. height: math.unit(0.89, "feet"),
  11473. name: "Beans",
  11474. image: {
  11475. source: "./media/characters/vanrel/beans.svg"
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Normal",
  11482. height: math.unit(4 + 7 / 12, "feet"),
  11483. default: true
  11484. },
  11485. ]
  11486. ))
  11487. characterMakers.push(() => makeCharacter(
  11488. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11489. {
  11490. front: {
  11491. height: math.unit(7 + 5 / 12, "feet"),
  11492. weight: math.unit(150, "lb"),
  11493. name: "Front",
  11494. image: {
  11495. source: "./media/characters/kuiper-vanrel/front.svg",
  11496. extra: 1118 / 1068,
  11497. bottom: 0.09
  11498. }
  11499. },
  11500. foot: {
  11501. height: math.unit(0.55, "meters"),
  11502. name: "Foot",
  11503. image: {
  11504. source: "./media/characters/kuiper-vanrel/foot.svg",
  11505. }
  11506. },
  11507. battle: {
  11508. height: math.unit(6.824, "feet"),
  11509. weight: math.unit(150, "lb"),
  11510. name: "Battle",
  11511. image: {
  11512. source: "./media/characters/kuiper-vanrel/battle.svg",
  11513. extra: 1466 / 1327,
  11514. bottom: 29 / 1492.5
  11515. }
  11516. },
  11517. battleAlt: {
  11518. height: math.unit(6.824, "feet"),
  11519. weight: math.unit(150, "lb"),
  11520. name: "Battle (Alt)",
  11521. image: {
  11522. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11523. extra: 2081 / 1965,
  11524. bottom: 40 / 2121
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(7 + 5 / 12, "feet"),
  11532. default: true
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11538. {
  11539. front: {
  11540. height: math.unit(8 + 5 / 12, "feet"),
  11541. weight: math.unit(150, "lb"),
  11542. name: "Front",
  11543. image: {
  11544. source: "./media/characters/keset-vanrel/front.svg",
  11545. extra: 1150 / 1084,
  11546. bottom: 0.05
  11547. }
  11548. },
  11549. hand: {
  11550. height: math.unit(0.6, "meters"),
  11551. name: "Hand",
  11552. image: {
  11553. source: "./media/characters/keset-vanrel/hand.svg"
  11554. }
  11555. },
  11556. foot: {
  11557. height: math.unit(0.94978, "meters"),
  11558. name: "Foot",
  11559. image: {
  11560. source: "./media/characters/keset-vanrel/foot.svg"
  11561. }
  11562. },
  11563. battle: {
  11564. height: math.unit(7.408, "feet"),
  11565. weight: math.unit(150, "lb"),
  11566. name: "Battle",
  11567. image: {
  11568. source: "./media/characters/keset-vanrel/battle.svg",
  11569. extra: 1890 / 1386,
  11570. bottom: 73.28 / 1970
  11571. }
  11572. },
  11573. },
  11574. [
  11575. {
  11576. name: "Normal",
  11577. height: math.unit(8 + 5 / 12, "feet"),
  11578. default: true
  11579. },
  11580. ]
  11581. ))
  11582. characterMakers.push(() => makeCharacter(
  11583. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11584. {
  11585. front: {
  11586. height: math.unit(6, "feet"),
  11587. weight: math.unit(150, "lb"),
  11588. name: "Front",
  11589. image: {
  11590. source: "./media/characters/neos/front.svg",
  11591. extra: 1696 / 992,
  11592. bottom: 0.14
  11593. }
  11594. },
  11595. },
  11596. [
  11597. {
  11598. name: "Normal",
  11599. height: math.unit(54, "cm"),
  11600. default: true
  11601. },
  11602. {
  11603. name: "Macro",
  11604. height: math.unit(100, "m")
  11605. },
  11606. {
  11607. name: "Megamacro",
  11608. height: math.unit(10, "km")
  11609. },
  11610. {
  11611. name: "Megamacro+",
  11612. height: math.unit(100, "km")
  11613. },
  11614. {
  11615. name: "Gigamacro",
  11616. height: math.unit(100, "Mm")
  11617. },
  11618. {
  11619. name: "Teramacro",
  11620. height: math.unit(100, "Gm")
  11621. },
  11622. {
  11623. name: "Examacro",
  11624. height: math.unit(100, "Em")
  11625. },
  11626. {
  11627. name: "Godly",
  11628. height: math.unit(10000, "Ym")
  11629. },
  11630. {
  11631. name: "Beyond Godly",
  11632. height: math.unit(25, "multiverses")
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11638. {
  11639. feminine: {
  11640. height: math.unit(5, "feet"),
  11641. weight: math.unit(100, "lb"),
  11642. name: "Feminine",
  11643. image: {
  11644. source: "./media/characters/sammy-mouse/feminine.svg",
  11645. extra: 2526 / 2425,
  11646. bottom: 0.123
  11647. }
  11648. },
  11649. masculine: {
  11650. height: math.unit(5, "feet"),
  11651. weight: math.unit(100, "lb"),
  11652. name: "Masculine",
  11653. image: {
  11654. source: "./media/characters/sammy-mouse/masculine.svg",
  11655. extra: 2526 / 2425,
  11656. bottom: 0.123
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(5, "inches")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(5, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(60, "feet")
  11673. },
  11674. ]
  11675. ))
  11676. characterMakers.push(() => makeCharacter(
  11677. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11678. {
  11679. front: {
  11680. height: math.unit(4, "feet"),
  11681. weight: math.unit(50, "lb"),
  11682. name: "Front",
  11683. image: {
  11684. source: "./media/characters/kole/front.svg",
  11685. extra: 1423 / 1303,
  11686. bottom: 0.025
  11687. }
  11688. },
  11689. back: {
  11690. height: math.unit(4, "feet"),
  11691. weight: math.unit(50, "lb"),
  11692. name: "Back",
  11693. image: {
  11694. source: "./media/characters/kole/back.svg",
  11695. extra: 1426 / 1280,
  11696. bottom: 0.02
  11697. }
  11698. },
  11699. },
  11700. [
  11701. {
  11702. name: "Normal",
  11703. height: math.unit(4, "feet"),
  11704. default: true
  11705. },
  11706. ]
  11707. ))
  11708. characterMakers.push(() => makeCharacter(
  11709. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11710. {
  11711. front: {
  11712. height: math.unit(2 + 6 / 12, "feet"),
  11713. weight: math.unit(20, "lb"),
  11714. name: "Front",
  11715. image: {
  11716. source: "./media/characters/rufran/front.svg",
  11717. extra: 2041 / 1839,
  11718. bottom: 0.055
  11719. }
  11720. },
  11721. back: {
  11722. height: math.unit(2 + 6 / 12, "feet"),
  11723. weight: math.unit(20, "lb"),
  11724. name: "Back",
  11725. image: {
  11726. source: "./media/characters/rufran/back.svg",
  11727. extra: 2054 / 1839,
  11728. bottom: 0.01
  11729. }
  11730. },
  11731. hand: {
  11732. height: math.unit(0.2166, "meters"),
  11733. name: "Hand",
  11734. image: {
  11735. source: "./media/characters/rufran/hand.svg"
  11736. }
  11737. },
  11738. foot: {
  11739. height: math.unit(0.185, "meters"),
  11740. name: "Foot",
  11741. image: {
  11742. source: "./media/characters/rufran/foot.svg"
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Micro",
  11749. height: math.unit(1, "inch")
  11750. },
  11751. {
  11752. name: "Normal",
  11753. height: math.unit(2 + 6 / 12, "feet"),
  11754. default: true
  11755. },
  11756. {
  11757. name: "Big",
  11758. height: math.unit(60, "feet")
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(325, "feet")
  11763. },
  11764. ]
  11765. ))
  11766. characterMakers.push(() => makeCharacter(
  11767. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11768. {
  11769. front: {
  11770. height: math.unit(0.3, "meters"),
  11771. weight: math.unit(3.5, "kg"),
  11772. name: "Front",
  11773. image: {
  11774. source: "./media/characters/chip/front.svg",
  11775. extra: 748 / 674
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Micro",
  11782. height: math.unit(1, "inch"),
  11783. default: true
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11789. {
  11790. side: {
  11791. height: math.unit(2.3, "meters"),
  11792. weight: math.unit(3500, "lb"),
  11793. name: "Side",
  11794. image: {
  11795. source: "./media/characters/torvid/side.svg",
  11796. extra: 1972 / 722,
  11797. bottom: 0.035
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(2.3, "meters"),
  11805. default: true
  11806. },
  11807. ]
  11808. ))
  11809. characterMakers.push(() => makeCharacter(
  11810. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11811. {
  11812. front: {
  11813. height: math.unit(2, "meters"),
  11814. weight: math.unit(150.5, "kg"),
  11815. name: "Front",
  11816. image: {
  11817. source: "./media/characters/susan/front.svg",
  11818. extra: 693 / 635,
  11819. bottom: 0.05
  11820. }
  11821. },
  11822. },
  11823. [
  11824. {
  11825. name: "Megamacro",
  11826. height: math.unit(505, "miles"),
  11827. default: true
  11828. },
  11829. ]
  11830. ))
  11831. characterMakers.push(() => makeCharacter(
  11832. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11833. {
  11834. front: {
  11835. height: math.unit(6, "feet"),
  11836. weight: math.unit(150, "lb"),
  11837. name: "Front",
  11838. image: {
  11839. source: "./media/characters/raindrops/front.svg",
  11840. extra: 2655 / 2461,
  11841. bottom: 49 / 2705
  11842. }
  11843. },
  11844. back: {
  11845. height: math.unit(6, "feet"),
  11846. weight: math.unit(150, "lb"),
  11847. name: "Back",
  11848. image: {
  11849. source: "./media/characters/raindrops/back.svg",
  11850. extra: 2574 / 2400,
  11851. bottom: 65 / 2634
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Micro",
  11858. height: math.unit(6, "inches")
  11859. },
  11860. {
  11861. name: "Normal",
  11862. height: math.unit(6 + 2 / 12, "feet")
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(131, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(15, "miles")
  11872. },
  11873. {
  11874. name: "Gigamacro",
  11875. height: math.unit(4000, "miles")
  11876. },
  11877. {
  11878. name: "Teramacro",
  11879. height: math.unit(315000, "miles")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(2.794, "meters"),
  11888. weight: math.unit(325, "kg"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/tezwa/front.svg",
  11892. extra: 2083 / 1906,
  11893. bottom: 0.031
  11894. }
  11895. },
  11896. foot: {
  11897. height: math.unit(0.687, "meters"),
  11898. name: "Foot",
  11899. image: {
  11900. source: "./media/characters/tezwa/foot.svg"
  11901. }
  11902. },
  11903. },
  11904. [
  11905. {
  11906. name: "Normal",
  11907. height: math.unit(9 + 2 / 12, "feet"),
  11908. default: true
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11914. {
  11915. front: {
  11916. height: math.unit(58, "feet"),
  11917. weight: math.unit(89000, "lb"),
  11918. name: "Front",
  11919. image: {
  11920. source: "./media/characters/typhus/front.svg",
  11921. extra: 816 / 800,
  11922. bottom: 0.065
  11923. }
  11924. },
  11925. },
  11926. [
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(58, "feet"),
  11930. default: true
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11936. {
  11937. front: {
  11938. height: math.unit(12, "feet"),
  11939. weight: math.unit(6, "tonnes"),
  11940. name: "Front",
  11941. image: {
  11942. source: "./media/characters/lyra-von-wulf/front.svg",
  11943. extra: 1,
  11944. bottom: 0.10
  11945. }
  11946. },
  11947. frontMecha: {
  11948. height: math.unit(12, "feet"),
  11949. weight: math.unit(12, "tonnes"),
  11950. name: "Front (Mecha)",
  11951. image: {
  11952. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11953. extra: 1,
  11954. bottom: 0.042
  11955. }
  11956. },
  11957. maw: {
  11958. height: math.unit(2.2, "feet"),
  11959. name: "Maw",
  11960. image: {
  11961. source: "./media/characters/lyra-von-wulf/maw.svg"
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(12, "feet"),
  11969. default: true
  11970. },
  11971. {
  11972. name: "Classic",
  11973. height: math.unit(50, "feet")
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(500, "feet")
  11978. },
  11979. {
  11980. name: "Megamacro",
  11981. height: math.unit(1, "mile")
  11982. },
  11983. {
  11984. name: "Gigamacro",
  11985. height: math.unit(400, "miles")
  11986. },
  11987. {
  11988. name: "Teramacro",
  11989. height: math.unit(22000, "miles")
  11990. },
  11991. {
  11992. name: "Solarmacro",
  11993. height: math.unit(8600000, "miles")
  11994. },
  11995. {
  11996. name: "Galactic",
  11997. height: math.unit(1057000, "lightyears")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12003. {
  12004. front: {
  12005. height: math.unit(6 + 10 / 12, "feet"),
  12006. weight: math.unit(150, "lb"),
  12007. name: "Front",
  12008. image: {
  12009. source: "./media/characters/dixon/front.svg",
  12010. extra: 3361 / 3209,
  12011. bottom: 0.01
  12012. }
  12013. },
  12014. },
  12015. [
  12016. {
  12017. name: "Normal",
  12018. height: math.unit(6 + 10 / 12, "feet"),
  12019. default: true
  12020. },
  12021. {
  12022. name: "Big",
  12023. height: math.unit(12, "meters")
  12024. },
  12025. {
  12026. name: "Macro",
  12027. height: math.unit(500, "meters")
  12028. },
  12029. {
  12030. name: "Megamacro",
  12031. height: math.unit(2, "km")
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(185, "cm"),
  12040. weight: math.unit(68, "kg"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/kauko/front.svg",
  12044. extra: 1455 / 1421,
  12045. bottom: 0.03
  12046. }
  12047. },
  12048. back: {
  12049. height: math.unit(185, "cm"),
  12050. weight: math.unit(68, "kg"),
  12051. name: "Back",
  12052. image: {
  12053. source: "./media/characters/kauko/back.svg",
  12054. extra: 1455 / 1421,
  12055. bottom: 0.004
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Normal",
  12062. height: math.unit(185, "cm"),
  12063. default: true
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(150, "kg"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/varg/front.svg",
  12076. extra: 1108 / 1018,
  12077. bottom: 0.0375
  12078. }
  12079. },
  12080. },
  12081. [
  12082. {
  12083. name: "Normal",
  12084. height: math.unit(5, "meters")
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(200, "meters")
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(20, "kilometers")
  12093. },
  12094. {
  12095. name: "True Size",
  12096. height: math.unit(211, "km"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Gigamacro",
  12101. height: math.unit(1000, "km")
  12102. },
  12103. {
  12104. name: "Gigamacro+",
  12105. height: math.unit(8000, "km")
  12106. },
  12107. {
  12108. name: "Teramacro",
  12109. height: math.unit(1000000, "km")
  12110. },
  12111. ]
  12112. ))
  12113. characterMakers.push(() => makeCharacter(
  12114. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12115. {
  12116. front: {
  12117. height: math.unit(7 + 7 / 12, "feet"),
  12118. weight: math.unit(267, "lb"),
  12119. name: "Front",
  12120. image: {
  12121. source: "./media/characters/dayza/front.svg",
  12122. extra: 1262 / 1200,
  12123. bottom: 0.035
  12124. }
  12125. },
  12126. side: {
  12127. height: math.unit(7 + 7 / 12, "feet"),
  12128. weight: math.unit(267, "lb"),
  12129. name: "Side",
  12130. image: {
  12131. source: "./media/characters/dayza/side.svg",
  12132. extra: 1295 / 1245,
  12133. bottom: 0.05
  12134. }
  12135. },
  12136. back: {
  12137. height: math.unit(7 + 7 / 12, "feet"),
  12138. weight: math.unit(267, "lb"),
  12139. name: "Back",
  12140. image: {
  12141. source: "./media/characters/dayza/back.svg",
  12142. extra: 1241 / 1170
  12143. }
  12144. },
  12145. },
  12146. [
  12147. {
  12148. name: "Normal",
  12149. height: math.unit(7 + 7 / 12, "feet"),
  12150. default: true
  12151. },
  12152. {
  12153. name: "Macro",
  12154. height: math.unit(155, "feet")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(6 + 5 / 12, "feet"),
  12163. weight: math.unit(160, "lb"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/xanthos/front.svg",
  12167. extra: 1,
  12168. bottom: 0.04
  12169. }
  12170. },
  12171. back: {
  12172. height: math.unit(6 + 5 / 12, "feet"),
  12173. weight: math.unit(160, "lb"),
  12174. name: "Back",
  12175. image: {
  12176. source: "./media/characters/xanthos/back.svg",
  12177. extra: 1,
  12178. bottom: 0.03
  12179. }
  12180. },
  12181. hand: {
  12182. height: math.unit(0.928, "feet"),
  12183. name: "Hand",
  12184. image: {
  12185. source: "./media/characters/xanthos/hand.svg"
  12186. }
  12187. },
  12188. foot: {
  12189. height: math.unit(1.286, "feet"),
  12190. name: "Foot",
  12191. image: {
  12192. source: "./media/characters/xanthos/foot.svg"
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Normal",
  12199. height: math.unit(6 + 5 / 12, "feet"),
  12200. default: true
  12201. },
  12202. {
  12203. name: "Normal+",
  12204. height: math.unit(6, "meters")
  12205. },
  12206. {
  12207. name: "Macro",
  12208. height: math.unit(40, "feet")
  12209. },
  12210. {
  12211. name: "Macro+",
  12212. height: math.unit(200, "meters")
  12213. },
  12214. {
  12215. name: "Megamacro",
  12216. height: math.unit(20, "km")
  12217. },
  12218. {
  12219. name: "Megamacro+",
  12220. height: math.unit(100, "km")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12226. {
  12227. front: {
  12228. height: math.unit(6 + 3 / 12, "feet"),
  12229. weight: math.unit(215, "lb"),
  12230. name: "Front",
  12231. image: {
  12232. source: "./media/characters/grynn/front.svg",
  12233. extra: 4627 / 4209,
  12234. bottom: 0.047
  12235. }
  12236. },
  12237. },
  12238. [
  12239. {
  12240. name: "Micro",
  12241. height: math.unit(6, "inches")
  12242. },
  12243. {
  12244. name: "Normal",
  12245. height: math.unit(6 + 3 / 12, "feet"),
  12246. default: true
  12247. },
  12248. {
  12249. name: "Big",
  12250. height: math.unit(104, "feet")
  12251. },
  12252. {
  12253. name: "Macro",
  12254. height: math.unit(944, "feet")
  12255. },
  12256. {
  12257. name: "Macro+",
  12258. height: math.unit(9480, "feet")
  12259. },
  12260. {
  12261. name: "Megamacro",
  12262. height: math.unit(78752, "feet")
  12263. },
  12264. {
  12265. name: "Megamacro+",
  12266. height: math.unit(630128, "feet")
  12267. },
  12268. {
  12269. name: "Megamacro++",
  12270. height: math.unit(3150695, "feet")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(7 + 5 / 12, "feet"),
  12279. weight: math.unit(450, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/mocha-aura/front.svg",
  12283. extra: 1907 / 1817,
  12284. bottom: 0.04
  12285. }
  12286. },
  12287. back: {
  12288. height: math.unit(7 + 5 / 12, "feet"),
  12289. weight: math.unit(450, "lb"),
  12290. name: "Back",
  12291. image: {
  12292. source: "./media/characters/mocha-aura/back.svg",
  12293. extra: 1900 / 1825,
  12294. bottom: 0.045
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Nano",
  12301. height: math.unit(1, "nm")
  12302. },
  12303. {
  12304. name: "Megamicro",
  12305. height: math.unit(1, "mm")
  12306. },
  12307. {
  12308. name: "Micro",
  12309. height: math.unit(3, "inches")
  12310. },
  12311. {
  12312. name: "Normal",
  12313. height: math.unit(7 + 5 / 12, "feet"),
  12314. default: true
  12315. },
  12316. {
  12317. name: "Macro",
  12318. height: math.unit(30, "feet")
  12319. },
  12320. {
  12321. name: "Megamacro",
  12322. height: math.unit(3500, "feet")
  12323. },
  12324. {
  12325. name: "Teramacro",
  12326. height: math.unit(500000, "miles")
  12327. },
  12328. {
  12329. name: "Petamacro",
  12330. height: math.unit(50000000000000000, "parsecs")
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12336. {
  12337. front: {
  12338. height: math.unit(6, "feet"),
  12339. weight: math.unit(150, "lb"),
  12340. name: "Front",
  12341. image: {
  12342. source: "./media/characters/ilisha-devya/front.svg",
  12343. extra: 1,
  12344. bottom: 0.175
  12345. }
  12346. },
  12347. back: {
  12348. height: math.unit(6, "feet"),
  12349. weight: math.unit(150, "lb"),
  12350. name: "Back",
  12351. image: {
  12352. source: "./media/characters/ilisha-devya/back.svg",
  12353. extra: 1,
  12354. bottom: 0.015
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Macro",
  12361. height: math.unit(500, "feet"),
  12362. default: true
  12363. },
  12364. {
  12365. name: "Megamacro",
  12366. height: math.unit(10, "miles")
  12367. },
  12368. {
  12369. name: "Gigamacro",
  12370. height: math.unit(100000, "miles")
  12371. },
  12372. {
  12373. name: "Examacro",
  12374. height: math.unit(1e9, "lightyears")
  12375. },
  12376. {
  12377. name: "Omniversal",
  12378. height: math.unit(1e33, "lightyears")
  12379. },
  12380. {
  12381. name: "Beyond Infinite",
  12382. height: math.unit(1e100, "lightyears")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12388. {
  12389. Side: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(150, "lb"),
  12392. name: "Side",
  12393. image: {
  12394. source: "./media/characters/mira/side.svg",
  12395. extra: 900 / 799,
  12396. bottom: 0.02
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Human Size",
  12403. height: math.unit(6, "feet")
  12404. },
  12405. {
  12406. name: "Macro",
  12407. height: math.unit(100, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Megamacro",
  12412. height: math.unit(10, "miles")
  12413. },
  12414. {
  12415. name: "Gigamacro",
  12416. height: math.unit(25000, "miles")
  12417. },
  12418. {
  12419. name: "Teramacro",
  12420. height: math.unit(300, "AU")
  12421. },
  12422. {
  12423. name: "Full Size",
  12424. height: math.unit(4.5e10, "lightyears")
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12430. {
  12431. front: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(150, "lb"),
  12434. name: "Front",
  12435. image: {
  12436. source: "./media/characters/holly/front.svg",
  12437. extra: 639 / 606
  12438. }
  12439. },
  12440. back: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(150, "lb"),
  12443. name: "Back",
  12444. image: {
  12445. source: "./media/characters/holly/back.svg",
  12446. extra: 623 / 598
  12447. }
  12448. },
  12449. frontWorking: {
  12450. height: math.unit(6, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Front (Working)",
  12453. image: {
  12454. source: "./media/characters/holly/front-working.svg",
  12455. extra: 607 / 577,
  12456. bottom: 0.048
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Normal",
  12463. height: math.unit(12 + 3 / 12, "feet"),
  12464. default: true
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/porter/front.svg",
  12477. extra: 1,
  12478. bottom: 0.01
  12479. }
  12480. },
  12481. frontRobes: {
  12482. height: math.unit(6, "feet"),
  12483. weight: math.unit(150, "lb"),
  12484. name: "Front (Robes)",
  12485. image: {
  12486. source: "./media/characters/porter/front-robes.svg",
  12487. extra: 1.01,
  12488. bottom: 0.01
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(11 + 9 / 12, "feet"),
  12496. default: true
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12502. {
  12503. legendary: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(150, "lb"),
  12506. name: "Legendary",
  12507. image: {
  12508. source: "./media/characters/lucy/legendary.svg",
  12509. extra: 1355 / 1100,
  12510. bottom: 0.045
  12511. }
  12512. },
  12513. },
  12514. [
  12515. {
  12516. name: "Legendary",
  12517. height: math.unit(86882 * 2, "miles"),
  12518. default: true
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12524. {
  12525. front: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(150, "lb"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/drusilla/front.svg",
  12531. extra: 678 / 635,
  12532. bottom: 0.03
  12533. }
  12534. },
  12535. back: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Back",
  12539. image: {
  12540. source: "./media/characters/drusilla/back.svg",
  12541. extra: 678 / 635,
  12542. bottom: 0.005
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Macro",
  12549. height: math.unit(100, "feet")
  12550. },
  12551. {
  12552. name: "Canon Height",
  12553. height: math.unit(2000, "feet"),
  12554. default: true
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12560. {
  12561. front: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(180, "lb"),
  12564. name: "Front",
  12565. image: {
  12566. source: "./media/characters/renard-thatch/front.svg",
  12567. extra: 2411 / 2275,
  12568. bottom: 0.01
  12569. }
  12570. },
  12571. frontPosing: {
  12572. height: math.unit(6, "feet"),
  12573. weight: math.unit(180, "lb"),
  12574. name: "Front (Posing)",
  12575. image: {
  12576. source: "./media/characters/renard-thatch/front-posing.svg",
  12577. extra: 2381 / 2261,
  12578. bottom: 0.01
  12579. }
  12580. },
  12581. back: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(180, "lb"),
  12584. name: "Back",
  12585. image: {
  12586. source: "./media/characters/renard-thatch/back.svg",
  12587. extra: 2428 / 2288
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Micro",
  12594. height: math.unit(3, "inches")
  12595. },
  12596. {
  12597. name: "Default",
  12598. height: math.unit(6, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Macro",
  12603. height: math.unit(75, "feet")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(1450, "feet"),
  12612. weight: math.unit(1.21e6, "tons"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/sekvra/front.svg",
  12616. extra: 1,
  12617. bottom: 0.03
  12618. }
  12619. },
  12620. frontClothed: {
  12621. height: math.unit(1450, "feet"),
  12622. weight: math.unit(1.21e6, "tons"),
  12623. name: "Front (Clothed)",
  12624. image: {
  12625. source: "./media/characters/sekvra/front-clothed.svg",
  12626. extra: 1,
  12627. bottom: 0.03
  12628. }
  12629. },
  12630. side: {
  12631. height: math.unit(1450, "feet"),
  12632. weight: math.unit(1.21e6, "tons"),
  12633. name: "Side",
  12634. image: {
  12635. source: "./media/characters/sekvra/side.svg",
  12636. extra: 1,
  12637. bottom: 0.025
  12638. }
  12639. },
  12640. back: {
  12641. height: math.unit(1450, "feet"),
  12642. weight: math.unit(1.21e6, "tons"),
  12643. name: "Back",
  12644. image: {
  12645. source: "./media/characters/sekvra/back.svg",
  12646. extra: 1,
  12647. bottom: 0.005
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Macro",
  12654. height: math.unit(1450, "feet"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Megamacro",
  12659. height: math.unit(15000, "feet")
  12660. },
  12661. ]
  12662. ))
  12663. characterMakers.push(() => makeCharacter(
  12664. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12665. {
  12666. front: {
  12667. height: math.unit(6, "feet"),
  12668. weight: math.unit(150, "lb"),
  12669. name: "Front",
  12670. image: {
  12671. source: "./media/characters/carmine/front.svg",
  12672. extra: 1,
  12673. bottom: 0.035
  12674. }
  12675. },
  12676. frontArmor: {
  12677. height: math.unit(6, "feet"),
  12678. weight: math.unit(150, "lb"),
  12679. name: "Front (Armor)",
  12680. image: {
  12681. source: "./media/characters/carmine/front-armor.svg",
  12682. extra: 1,
  12683. bottom: 0.035
  12684. }
  12685. },
  12686. },
  12687. [
  12688. {
  12689. name: "Large",
  12690. height: math.unit(1, "mile")
  12691. },
  12692. {
  12693. name: "Huge",
  12694. height: math.unit(40, "miles"),
  12695. default: true
  12696. },
  12697. {
  12698. name: "Colossal",
  12699. height: math.unit(2500, "miles")
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(6, "feet"),
  12708. weight: math.unit(150, "lb"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/elyssia/front.svg",
  12712. extra: 2201 / 2035,
  12713. bottom: 0.05
  12714. }
  12715. },
  12716. frontClothed: {
  12717. height: math.unit(6, "feet"),
  12718. weight: math.unit(150, "lb"),
  12719. name: "Front (Clothed)",
  12720. image: {
  12721. source: "./media/characters/elyssia/front-clothed.svg",
  12722. extra: 2201 / 2035,
  12723. bottom: 0.05
  12724. }
  12725. },
  12726. back: {
  12727. height: math.unit(6, "feet"),
  12728. weight: math.unit(150, "lb"),
  12729. name: "Back",
  12730. image: {
  12731. source: "./media/characters/elyssia/back.svg",
  12732. extra: 2201 / 2035,
  12733. bottom: 0.013
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Smaller",
  12740. height: math.unit(150, "feet")
  12741. },
  12742. {
  12743. name: "Standard",
  12744. height: math.unit(1400, "feet"),
  12745. default: true
  12746. },
  12747. {
  12748. name: "Distracted",
  12749. height: math.unit(15000, "feet")
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12755. {
  12756. front: {
  12757. height: math.unit(7 + 4 / 12, "feet"),
  12758. weight: math.unit(500, "lb"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/geno-maxwell/front.svg",
  12762. extra: 2207 / 2040,
  12763. bottom: 0.015
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Micro",
  12770. height: math.unit(3, "inches")
  12771. },
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(7 + 4 / 12, "feet"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Macro",
  12779. height: math.unit(220, "feet")
  12780. },
  12781. {
  12782. name: "Megamacro",
  12783. height: math.unit(11, "miles")
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(7 + 4 / 12, "feet"),
  12792. weight: math.unit(500, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/regena-maxwell/front.svg",
  12796. extra: 3115 / 2770,
  12797. bottom: 0.02
  12798. }
  12799. },
  12800. },
  12801. [
  12802. {
  12803. name: "Normal",
  12804. height: math.unit(7 + 4 / 12, "feet"),
  12805. default: true
  12806. },
  12807. {
  12808. name: "Macro",
  12809. height: math.unit(220, "feet")
  12810. },
  12811. {
  12812. name: "Megamacro",
  12813. height: math.unit(11, "miles")
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12819. {
  12820. front: {
  12821. height: math.unit(6, "feet"),
  12822. weight: math.unit(150, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12826. extra: 860 / 690,
  12827. bottom: 0.03
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(1.7, "meters"),
  12835. default: true
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(6, "feet"),
  12844. weight: math.unit(150, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/quilly/front.svg",
  12848. extra: 890 / 776
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Gigamacro",
  12855. height: math.unit(404090, "miles"),
  12856. default: true
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12862. {
  12863. front: {
  12864. height: math.unit(7 + 8 / 12, "feet"),
  12865. weight: math.unit(350, "lb"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/tempest/front.svg",
  12869. extra: 1175 / 1086,
  12870. bottom: 0.02
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Normal",
  12877. height: math.unit(7 + 8 / 12, "feet"),
  12878. default: true
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12884. {
  12885. side: {
  12886. height: math.unit(4 + 5 / 12, "feet"),
  12887. weight: math.unit(80, "lb"),
  12888. name: "Side",
  12889. image: {
  12890. source: "./media/characters/rodger/side.svg",
  12891. extra: 1235 / 1118
  12892. }
  12893. },
  12894. },
  12895. [
  12896. {
  12897. name: "Micro",
  12898. height: math.unit(1, "inch")
  12899. },
  12900. {
  12901. name: "Normal",
  12902. height: math.unit(4 + 5 / 12, "feet"),
  12903. default: true
  12904. },
  12905. {
  12906. name: "Macro",
  12907. height: math.unit(120, "feet")
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(6, "feet"),
  12916. weight: math.unit(150, "lb"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/danyel/front.svg",
  12920. extra: 1185 / 1123,
  12921. bottom: 0.05
  12922. }
  12923. },
  12924. },
  12925. [
  12926. {
  12927. name: "Shrunken",
  12928. height: math.unit(0.5, "mm")
  12929. },
  12930. {
  12931. name: "Micro",
  12932. height: math.unit(1, "mm"),
  12933. default: true
  12934. },
  12935. {
  12936. name: "Upsized",
  12937. height: math.unit(5 + 5 / 12, "feet")
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12943. {
  12944. front: {
  12945. height: math.unit(5 + 6 / 12, "feet"),
  12946. weight: math.unit(200, "lb"),
  12947. name: "Front",
  12948. image: {
  12949. source: "./media/characters/vivian-bijoux/front.svg",
  12950. extra: 1,
  12951. bottom: 0.072
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(5 + 6 / 12, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Bad Dream",
  12963. height: math.unit(500, "feet")
  12964. },
  12965. {
  12966. name: "Nightmare",
  12967. height: math.unit(500, "miles")
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6 + 1 / 12, "feet"),
  12976. weight: math.unit(260, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/zeta/front.svg",
  12980. extra: 1968 / 1889,
  12981. bottom: 0.06
  12982. }
  12983. },
  12984. back: {
  12985. height: math.unit(6 + 1 / 12, "feet"),
  12986. weight: math.unit(260, "lb"),
  12987. name: "Back",
  12988. image: {
  12989. source: "./media/characters/zeta/back.svg",
  12990. extra: 1944 / 1858,
  12991. bottom: 0.03
  12992. }
  12993. },
  12994. hand: {
  12995. height: math.unit(1.112, "feet"),
  12996. name: "Hand",
  12997. image: {
  12998. source: "./media/characters/zeta/hand.svg"
  12999. }
  13000. },
  13001. foot: {
  13002. height: math.unit(1.48, "feet"),
  13003. name: "Foot",
  13004. image: {
  13005. source: "./media/characters/zeta/foot.svg"
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Micro",
  13012. height: math.unit(6, "inches")
  13013. },
  13014. {
  13015. name: "Normal",
  13016. height: math.unit(6 + 1 / 12, "feet"),
  13017. default: true
  13018. },
  13019. {
  13020. name: "Macro",
  13021. height: math.unit(20, "feet")
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(6, "feet"),
  13030. weight: math.unit(150, "lb"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/jamie-larsen/front.svg",
  13034. extra: 962 / 933,
  13035. bottom: 0.02
  13036. }
  13037. },
  13038. back: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(150, "lb"),
  13041. name: "Back",
  13042. image: {
  13043. source: "./media/characters/jamie-larsen/back.svg",
  13044. extra: 997 / 946
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Macro",
  13051. height: math.unit(28 + 7 / 12, "feet"),
  13052. default: true
  13053. },
  13054. {
  13055. name: "Macro+",
  13056. height: math.unit(180, "feet")
  13057. },
  13058. {
  13059. name: "Megamacro",
  13060. height: math.unit(10, "miles")
  13061. },
  13062. {
  13063. name: "Gigamacro",
  13064. height: math.unit(200000, "miles")
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13070. {
  13071. front: {
  13072. height: math.unit(6, "feet"),
  13073. weight: math.unit(120, "lb"),
  13074. name: "Front",
  13075. image: {
  13076. source: "./media/characters/vance/front.svg",
  13077. extra: 1980 / 1890,
  13078. bottom: 0.09
  13079. }
  13080. },
  13081. back: {
  13082. height: math.unit(6, "feet"),
  13083. weight: math.unit(120, "lb"),
  13084. name: "Back",
  13085. image: {
  13086. source: "./media/characters/vance/back.svg",
  13087. extra: 2081 / 1994,
  13088. bottom: 0.014
  13089. }
  13090. },
  13091. hand: {
  13092. height: math.unit(0.88, "feet"),
  13093. name: "Hand",
  13094. image: {
  13095. source: "./media/characters/vance/hand.svg"
  13096. }
  13097. },
  13098. foot: {
  13099. height: math.unit(0.64, "feet"),
  13100. name: "Foot",
  13101. image: {
  13102. source: "./media/characters/vance/foot.svg"
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Small",
  13109. height: math.unit(90, "feet"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Macro",
  13114. height: math.unit(100, "meters")
  13115. },
  13116. {
  13117. name: "Megamacro",
  13118. height: math.unit(15, "miles")
  13119. },
  13120. ]
  13121. ))
  13122. characterMakers.push(() => makeCharacter(
  13123. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13124. {
  13125. front: {
  13126. height: math.unit(6, "feet"),
  13127. weight: math.unit(180, "lb"),
  13128. name: "Front",
  13129. image: {
  13130. source: "./media/characters/xochitl/front.svg",
  13131. extra: 2297 / 2261,
  13132. bottom: 0.065
  13133. }
  13134. },
  13135. back: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(180, "lb"),
  13138. name: "Back",
  13139. image: {
  13140. source: "./media/characters/xochitl/back.svg",
  13141. extra: 2386 / 2354,
  13142. bottom: 0.01
  13143. }
  13144. },
  13145. foot: {
  13146. height: math.unit(6 / 5 * 1.15, "feet"),
  13147. weight: math.unit(150, "lb"),
  13148. name: "Foot",
  13149. image: {
  13150. source: "./media/characters/xochitl/foot.svg"
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Macro",
  13157. height: math.unit(80, "feet")
  13158. },
  13159. {
  13160. name: "Macro+",
  13161. height: math.unit(400, "feet"),
  13162. default: true
  13163. },
  13164. {
  13165. name: "Gigamacro",
  13166. height: math.unit(80000, "miles")
  13167. },
  13168. {
  13169. name: "Gigamacro+",
  13170. height: math.unit(400000, "miles")
  13171. },
  13172. {
  13173. name: "Teramacro",
  13174. height: math.unit(300, "AU")
  13175. },
  13176. ]
  13177. ))
  13178. characterMakers.push(() => makeCharacter(
  13179. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13180. {
  13181. front: {
  13182. height: math.unit(6, "feet"),
  13183. weight: math.unit(150, "lb"),
  13184. name: "Front",
  13185. image: {
  13186. source: "./media/characters/vincent/front.svg",
  13187. extra: 1130 / 1080,
  13188. bottom: 0.055
  13189. }
  13190. },
  13191. beak: {
  13192. height: math.unit(6 * 0.1, "feet"),
  13193. name: "Beak",
  13194. image: {
  13195. source: "./media/characters/vincent/beak.svg"
  13196. }
  13197. },
  13198. hand: {
  13199. height: math.unit(6 * 0.85, "feet"),
  13200. weight: math.unit(150, "lb"),
  13201. name: "Hand",
  13202. image: {
  13203. source: "./media/characters/vincent/hand.svg"
  13204. }
  13205. },
  13206. foot: {
  13207. height: math.unit(6 * 0.19, "feet"),
  13208. weight: math.unit(150, "lb"),
  13209. name: "Foot",
  13210. image: {
  13211. source: "./media/characters/vincent/foot.svg"
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Base",
  13218. height: math.unit(6 + 5 / 12, "feet"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Macro",
  13223. height: math.unit(300, "feet")
  13224. },
  13225. {
  13226. name: "Megamacro",
  13227. height: math.unit(2, "miles")
  13228. },
  13229. {
  13230. name: "Gigamacro",
  13231. height: math.unit(1000, "miles")
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13237. {
  13238. front: {
  13239. height: math.unit(6 + 2 / 12, "feet"),
  13240. weight: math.unit(265, "lb"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/jay/front.svg",
  13244. extra: 1510 / 1430,
  13245. bottom: 0.042
  13246. }
  13247. },
  13248. back: {
  13249. height: math.unit(6 + 2 / 12, "feet"),
  13250. weight: math.unit(265, "lb"),
  13251. name: "Back",
  13252. image: {
  13253. source: "./media/characters/jay/back.svg",
  13254. extra: 1510 / 1430,
  13255. bottom: 0.025
  13256. }
  13257. },
  13258. clothed: {
  13259. height: math.unit(6 + 2 / 12, "feet"),
  13260. weight: math.unit(265, "lb"),
  13261. name: "Front (Clothed)",
  13262. image: {
  13263. source: "./media/characters/jay/clothed.svg",
  13264. extra: 744 / 699,
  13265. bottom: 0.043
  13266. }
  13267. },
  13268. head: {
  13269. height: math.unit(1.772, "feet"),
  13270. name: "Head",
  13271. image: {
  13272. source: "./media/characters/jay/head.svg"
  13273. }
  13274. },
  13275. sizeRay: {
  13276. height: math.unit(1.331, "feet"),
  13277. name: "Size Ray",
  13278. image: {
  13279. source: "./media/characters/jay/size-ray.svg"
  13280. }
  13281. },
  13282. },
  13283. [
  13284. {
  13285. name: "Micro",
  13286. height: math.unit(1, "inch")
  13287. },
  13288. {
  13289. name: "Normal",
  13290. height: math.unit(6 + 2 / 12, "feet"),
  13291. default: true
  13292. },
  13293. {
  13294. name: "Macro",
  13295. height: math.unit(1, "mile")
  13296. },
  13297. {
  13298. name: "Megamacro",
  13299. height: math.unit(100, "miles")
  13300. },
  13301. ]
  13302. ))
  13303. characterMakers.push(() => makeCharacter(
  13304. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13305. {
  13306. front: {
  13307. height: math.unit(2, "meters"),
  13308. weight: math.unit(500, "kg"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/coatl/front.svg",
  13312. extra: 3948 / 3500,
  13313. bottom: 0.082
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(4, "meters")
  13321. },
  13322. {
  13323. name: "Macro",
  13324. height: math.unit(100, "meters"),
  13325. default: true
  13326. },
  13327. {
  13328. name: "Macro+",
  13329. height: math.unit(300, "meters")
  13330. },
  13331. {
  13332. name: "Megamacro",
  13333. height: math.unit(3, "gigameters")
  13334. },
  13335. {
  13336. name: "Megamacro+",
  13337. height: math.unit(300, "terameters")
  13338. },
  13339. {
  13340. name: "Megamacro++",
  13341. height: math.unit(3, "lightyears")
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(6, "feet"),
  13350. weight: math.unit(50, "kg"),
  13351. name: "front",
  13352. image: {
  13353. source: "./media/characters/shiroryu/front.svg",
  13354. extra: 1990 / 1935
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Mortal Mingling",
  13361. height: math.unit(3, "meters")
  13362. },
  13363. {
  13364. name: "Kaiju-ish",
  13365. height: math.unit(250, "meters")
  13366. },
  13367. {
  13368. name: "Somewhat Godly",
  13369. height: math.unit(400, "km"),
  13370. default: true
  13371. },
  13372. {
  13373. name: "Planetary",
  13374. height: math.unit(300, "megameters")
  13375. },
  13376. {
  13377. name: "Galaxy-dwarfing",
  13378. height: math.unit(450, "kiloparsecs")
  13379. },
  13380. {
  13381. name: "Universe Eater",
  13382. height: math.unit(150, "gigaparsecs")
  13383. },
  13384. {
  13385. name: "Almost Immeasurable",
  13386. height: math.unit(1.3e266, "yottaparsecs")
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13392. {
  13393. front: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/umeko/front.svg",
  13399. extra: 1,
  13400. bottom: 0.019
  13401. }
  13402. },
  13403. frontArmored: {
  13404. height: math.unit(6, "feet"),
  13405. weight: math.unit(150, "lb"),
  13406. name: "Front (Armored)",
  13407. image: {
  13408. source: "./media/characters/umeko/front-armored.svg",
  13409. extra: 1,
  13410. bottom: 0.021
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(220, "feet"),
  13418. default: true
  13419. },
  13420. {
  13421. name: "Guardian Dragon",
  13422. height: math.unit(50, "miles")
  13423. },
  13424. {
  13425. name: "Cosmic",
  13426. height: math.unit(800000, "miles")
  13427. },
  13428. ]
  13429. ))
  13430. characterMakers.push(() => makeCharacter(
  13431. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13432. {
  13433. front: {
  13434. height: math.unit(6, "feet"),
  13435. weight: math.unit(150, "lb"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/cassidy/front.svg",
  13439. extra: 1,
  13440. bottom: 0.043
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Canon Height",
  13447. height: math.unit(120, "feet"),
  13448. default: true
  13449. },
  13450. {
  13451. name: "Macro+",
  13452. height: math.unit(400, "feet")
  13453. },
  13454. {
  13455. name: "Macro++",
  13456. height: math.unit(4000, "feet")
  13457. },
  13458. {
  13459. name: "Megamacro",
  13460. height: math.unit(3, "miles")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(6, "feet"),
  13469. weight: math.unit(150, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/isaac/front.svg",
  13473. extra: 896 / 815,
  13474. bottom: 0.11
  13475. }
  13476. },
  13477. },
  13478. [
  13479. {
  13480. name: "Human Size",
  13481. height: math.unit(8, "feet"),
  13482. default: true
  13483. },
  13484. {
  13485. name: "Macro",
  13486. height: math.unit(400, "feet")
  13487. },
  13488. {
  13489. name: "Megamacro",
  13490. height: math.unit(50, "miles")
  13491. },
  13492. {
  13493. name: "Canon Height",
  13494. height: math.unit(200, "AU")
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(6, "feet"),
  13503. weight: math.unit(72, "kg"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/sleekit/front.svg",
  13507. extra: 4693 / 4487,
  13508. bottom: 0.012
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Minimum Height",
  13515. height: math.unit(10, "meters")
  13516. },
  13517. {
  13518. name: "Smaller",
  13519. height: math.unit(25, "meters")
  13520. },
  13521. {
  13522. name: "Larger",
  13523. height: math.unit(38, "meters"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Maximum height",
  13528. height: math.unit(100, "meters")
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13534. {
  13535. front: {
  13536. height: math.unit(6, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Front",
  13539. image: {
  13540. source: "./media/characters/nillia/front.svg",
  13541. extra: 2195 / 2037,
  13542. bottom: 0.005
  13543. }
  13544. },
  13545. back: {
  13546. height: math.unit(6, "feet"),
  13547. weight: math.unit(150, "lb"),
  13548. name: "Back",
  13549. image: {
  13550. source: "./media/characters/nillia/back.svg",
  13551. extra: 2195 / 2037,
  13552. bottom: 0.005
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Canon Height",
  13559. height: math.unit(489, "feet"),
  13560. default: true
  13561. }
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(6, "feet"),
  13569. weight: math.unit(150, "lb"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/mesmyriza/front.svg",
  13573. extra: 2067 / 1784,
  13574. bottom: 0.035
  13575. }
  13576. },
  13577. foot: {
  13578. height: math.unit(6 / (250 / 35), "feet"),
  13579. name: "Foot",
  13580. image: {
  13581. source: "./media/characters/mesmyriza/foot.svg"
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Macro",
  13588. height: math.unit(457, "meters"),
  13589. default: true
  13590. },
  13591. {
  13592. name: "Megamacro",
  13593. height: math.unit(8, "megameters")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(250, "lb"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/saudade/front.svg",
  13606. extra: 1172 / 1139,
  13607. bottom: 0.035
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Micro",
  13614. height: math.unit(3, "inches")
  13615. },
  13616. {
  13617. name: "Normal",
  13618. height: math.unit(6, "feet"),
  13619. default: true
  13620. },
  13621. {
  13622. name: "Macro",
  13623. height: math.unit(50, "feet")
  13624. },
  13625. {
  13626. name: "Megamacro",
  13627. height: math.unit(2800, "feet")
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(5 + 4 / 12, "feet"),
  13636. weight: math.unit(100, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/keireer/front.svg",
  13640. extra: 716 / 666,
  13641. bottom: 0.05
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(5 + 4 / 12, "feet"),
  13649. default: true
  13650. },
  13651. ]
  13652. ))
  13653. characterMakers.push(() => makeCharacter(
  13654. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13655. {
  13656. front: {
  13657. height: math.unit(6, "feet"),
  13658. weight: math.unit(90, "kg"),
  13659. name: "Front",
  13660. image: {
  13661. source: "./media/characters/mirja/front.svg",
  13662. extra: 1789 / 1683,
  13663. bottom: 0.05
  13664. }
  13665. },
  13666. frontDressed: {
  13667. height: math.unit(6, "feet"),
  13668. weight: math.unit(90, "lb"),
  13669. name: "Front (Dressed)",
  13670. image: {
  13671. source: "./media/characters/mirja/front-dressed.svg",
  13672. extra: 1789 / 1683,
  13673. bottom: 0.05
  13674. }
  13675. },
  13676. back: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(90, "lb"),
  13679. name: "Back",
  13680. image: {
  13681. source: "./media/characters/mirja/back.svg",
  13682. extra: 953 / 917,
  13683. bottom: 0.017
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "\"Incognito\"",
  13690. height: math.unit(3, "meters")
  13691. },
  13692. {
  13693. name: "Strolling Size",
  13694. height: math.unit(15, "km")
  13695. },
  13696. {
  13697. name: "Larger Strolling Size",
  13698. height: math.unit(400, "km")
  13699. },
  13700. {
  13701. name: "Preferred Size",
  13702. height: math.unit(5000, "km")
  13703. },
  13704. {
  13705. name: "True Size",
  13706. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13707. default: true
  13708. },
  13709. ]
  13710. ))
  13711. characterMakers.push(() => makeCharacter(
  13712. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13713. {
  13714. front: {
  13715. height: math.unit(15, "feet"),
  13716. weight: math.unit(880, "kg"),
  13717. name: "Front",
  13718. image: {
  13719. source: "./media/characters/nightraver/front.svg",
  13720. extra: 2444 / 2160,
  13721. bottom: 0.027
  13722. }
  13723. },
  13724. back: {
  13725. height: math.unit(15, "feet"),
  13726. weight: math.unit(880, "kg"),
  13727. name: "Back",
  13728. image: {
  13729. source: "./media/characters/nightraver/back.svg",
  13730. extra: 2309 / 2180,
  13731. bottom: 0.005
  13732. }
  13733. },
  13734. sole: {
  13735. height: math.unit(2.878, "feet"),
  13736. name: "Sole",
  13737. image: {
  13738. source: "./media/characters/nightraver/sole.svg"
  13739. }
  13740. },
  13741. foot: {
  13742. height: math.unit(2.285, "feet"),
  13743. name: "Foot",
  13744. image: {
  13745. source: "./media/characters/nightraver/foot.svg"
  13746. }
  13747. },
  13748. maw: {
  13749. height: math.unit(2.67, "feet"),
  13750. name: "Maw",
  13751. image: {
  13752. source: "./media/characters/nightraver/maw.svg"
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Micro",
  13759. height: math.unit(1, "cm")
  13760. },
  13761. {
  13762. name: "Normal",
  13763. height: math.unit(15, "feet"),
  13764. default: true
  13765. },
  13766. {
  13767. name: "Macro",
  13768. height: math.unit(300, "feet")
  13769. },
  13770. {
  13771. name: "Megamacro",
  13772. height: math.unit(300, "miles")
  13773. },
  13774. {
  13775. name: "Gigamacro",
  13776. height: math.unit(10000, "miles")
  13777. },
  13778. ]
  13779. ))
  13780. characterMakers.push(() => makeCharacter(
  13781. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13782. {
  13783. side: {
  13784. height: math.unit(2, "inches"),
  13785. weight: math.unit(5, "grams"),
  13786. name: "Side",
  13787. image: {
  13788. source: "./media/characters/arc/side.svg"
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Micro",
  13795. height: math.unit(2, "inches"),
  13796. default: true
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(1.1938, "meters"),
  13805. weight: math.unit(54, "kg"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/nebula-shahar/front.svg",
  13809. extra: 1642 / 1436,
  13810. bottom: 0.06
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Megamicro",
  13817. height: math.unit(0.3, "mm")
  13818. },
  13819. {
  13820. name: "Micro",
  13821. height: math.unit(3, "cm")
  13822. },
  13823. {
  13824. name: "Normal",
  13825. height: math.unit(138, "cm"),
  13826. default: true
  13827. },
  13828. {
  13829. name: "Macro",
  13830. height: math.unit(30, "m")
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13836. {
  13837. front: {
  13838. height: math.unit(5.24, "feet"),
  13839. weight: math.unit(150, "lb"),
  13840. name: "Front",
  13841. image: {
  13842. source: "./media/characters/shayla/front.svg",
  13843. extra: 1512 / 1414,
  13844. bottom: 0.01
  13845. }
  13846. },
  13847. back: {
  13848. height: math.unit(5.24, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Back",
  13851. image: {
  13852. source: "./media/characters/shayla/back.svg",
  13853. extra: 1512 / 1414
  13854. }
  13855. },
  13856. hand: {
  13857. height: math.unit(0.7781496062992126, "feet"),
  13858. name: "Hand",
  13859. image: {
  13860. source: "./media/characters/shayla/hand.svg"
  13861. }
  13862. },
  13863. foot: {
  13864. height: math.unit(1.4206036745406823, "feet"),
  13865. name: "Foot",
  13866. image: {
  13867. source: "./media/characters/shayla/foot.svg"
  13868. }
  13869. },
  13870. },
  13871. [
  13872. {
  13873. name: "Micro",
  13874. height: math.unit(0.32, "feet")
  13875. },
  13876. {
  13877. name: "Normal",
  13878. height: math.unit(5.24, "feet"),
  13879. default: true
  13880. },
  13881. {
  13882. name: "Macro",
  13883. height: math.unit(492.12, "feet")
  13884. },
  13885. {
  13886. name: "Megamacro",
  13887. height: math.unit(186.41, "miles")
  13888. },
  13889. ]
  13890. ))
  13891. characterMakers.push(() => makeCharacter(
  13892. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13893. {
  13894. front: {
  13895. height: math.unit(2.2, "m"),
  13896. weight: math.unit(120, "kg"),
  13897. name: "Front",
  13898. image: {
  13899. source: "./media/characters/pia-jr/front.svg",
  13900. extra: 1000 / 970,
  13901. bottom: 0.035
  13902. }
  13903. },
  13904. hand: {
  13905. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13906. name: "Hand",
  13907. image: {
  13908. source: "./media/characters/pia-jr/hand.svg"
  13909. }
  13910. },
  13911. paw: {
  13912. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13913. name: "Paw",
  13914. image: {
  13915. source: "./media/characters/pia-jr/paw.svg"
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Micro",
  13922. height: math.unit(1.2, "cm")
  13923. },
  13924. {
  13925. name: "Normal",
  13926. height: math.unit(2.2, "m"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Macro",
  13931. height: math.unit(180, "m")
  13932. },
  13933. {
  13934. name: "Megamacro",
  13935. height: math.unit(420, "km")
  13936. },
  13937. ]
  13938. ))
  13939. characterMakers.push(() => makeCharacter(
  13940. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13941. {
  13942. front: {
  13943. height: math.unit(2, "m"),
  13944. weight: math.unit(115, "kg"),
  13945. name: "Front",
  13946. image: {
  13947. source: "./media/characters/pia-sr/front.svg",
  13948. extra: 760 / 730,
  13949. bottom: 0.015
  13950. }
  13951. },
  13952. back: {
  13953. height: math.unit(2, "m"),
  13954. weight: math.unit(115, "kg"),
  13955. name: "Back",
  13956. image: {
  13957. source: "./media/characters/pia-sr/back.svg",
  13958. extra: 760 / 730,
  13959. bottom: 0.01
  13960. }
  13961. },
  13962. hand: {
  13963. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13964. name: "Hand",
  13965. image: {
  13966. source: "./media/characters/pia-sr/hand.svg"
  13967. }
  13968. },
  13969. foot: {
  13970. height: math.unit(1.83, "feet"),
  13971. name: "Foot",
  13972. image: {
  13973. source: "./media/characters/pia-sr/foot.svg"
  13974. }
  13975. },
  13976. },
  13977. [
  13978. {
  13979. name: "Micro",
  13980. height: math.unit(88, "mm")
  13981. },
  13982. {
  13983. name: "Normal",
  13984. height: math.unit(2, "m"),
  13985. default: true
  13986. },
  13987. {
  13988. name: "Macro",
  13989. height: math.unit(200, "m")
  13990. },
  13991. {
  13992. name: "Megamacro",
  13993. height: math.unit(420, "km")
  13994. },
  13995. ]
  13996. ))
  13997. characterMakers.push(() => makeCharacter(
  13998. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13999. {
  14000. front: {
  14001. height: math.unit(8 + 2 / 12, "feet"),
  14002. weight: math.unit(300, "lb"),
  14003. name: "Front",
  14004. image: {
  14005. source: "./media/characters/kibibyte/front.svg",
  14006. extra: 2221 / 2098,
  14007. bottom: 0.04
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(8 + 2 / 12, "feet"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Socialable Macro",
  14019. height: math.unit(50, "feet")
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(300, "feet")
  14024. },
  14025. {
  14026. name: "Megamacro",
  14027. height: math.unit(500, "miles")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(6, "feet"),
  14036. weight: math.unit(150, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/felix/front.svg",
  14040. extra: 762 / 722,
  14041. bottom: 0.02
  14042. }
  14043. },
  14044. frontClothed: {
  14045. height: math.unit(6, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front (Clothed)",
  14048. image: {
  14049. source: "./media/characters/felix/front-clothed.svg",
  14050. extra: 762 / 722,
  14051. bottom: 0.02
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Normal",
  14058. height: math.unit(6 + 8 / 12, "feet"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Macro",
  14063. height: math.unit(2600, "feet")
  14064. },
  14065. {
  14066. name: "Megamacro",
  14067. height: math.unit(450, "miles")
  14068. },
  14069. ]
  14070. ))
  14071. characterMakers.push(() => makeCharacter(
  14072. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14073. {
  14074. front: {
  14075. height: math.unit(6 + 1 / 12, "feet"),
  14076. weight: math.unit(250, "lb"),
  14077. name: "Front",
  14078. image: {
  14079. source: "./media/characters/tobo/front.svg",
  14080. extra: 608 / 586,
  14081. bottom: 0.023
  14082. }
  14083. },
  14084. back: {
  14085. height: math.unit(6 + 1 / 12, "feet"),
  14086. weight: math.unit(250, "lb"),
  14087. name: "Back",
  14088. image: {
  14089. source: "./media/characters/tobo/back.svg",
  14090. extra: 608 / 586
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Nano",
  14097. height: math.unit(2, "nm")
  14098. },
  14099. {
  14100. name: "Megamicro",
  14101. height: math.unit(0.1, "mm")
  14102. },
  14103. {
  14104. name: "Micro",
  14105. height: math.unit(1, "inch"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Human-sized",
  14110. height: math.unit(6 + 1 / 12, "feet")
  14111. },
  14112. {
  14113. name: "Macro",
  14114. height: math.unit(250, "feet")
  14115. },
  14116. {
  14117. name: "Megamacro",
  14118. height: math.unit(75, "miles")
  14119. },
  14120. {
  14121. name: "Texas-sized",
  14122. height: math.unit(750, "miles")
  14123. },
  14124. {
  14125. name: "Teramacro",
  14126. height: math.unit(50000, "miles")
  14127. },
  14128. ]
  14129. ))
  14130. characterMakers.push(() => makeCharacter(
  14131. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14132. {
  14133. front: {
  14134. height: math.unit(6, "feet"),
  14135. weight: math.unit(269, "lb"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/danny-kapowsky/front.svg",
  14139. extra: 766 / 736,
  14140. bottom: 0.044
  14141. }
  14142. },
  14143. back: {
  14144. height: math.unit(6, "feet"),
  14145. weight: math.unit(269, "lb"),
  14146. name: "Back",
  14147. image: {
  14148. source: "./media/characters/danny-kapowsky/back.svg",
  14149. extra: 797 / 760,
  14150. bottom: 0.025
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Macro",
  14157. height: math.unit(150, "feet"),
  14158. default: true
  14159. },
  14160. {
  14161. name: "Macro+",
  14162. height: math.unit(200, "feet")
  14163. },
  14164. {
  14165. name: "Macro++",
  14166. height: math.unit(300, "feet")
  14167. },
  14168. {
  14169. name: "Macro+++",
  14170. height: math.unit(400, "feet")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14176. {
  14177. side: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(170, "lb"),
  14180. name: "Side",
  14181. image: {
  14182. source: "./media/characters/finn/side.svg",
  14183. extra: 1953 / 1807,
  14184. bottom: 0.057
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Megamacro",
  14191. height: math.unit(14445, "feet"),
  14192. default: true
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14198. {
  14199. front: {
  14200. height: math.unit(5 + 6 / 12, "feet"),
  14201. weight: math.unit(125, "lb"),
  14202. name: "Front",
  14203. image: {
  14204. source: "./media/characters/roy/front.svg",
  14205. extra: 1,
  14206. bottom: 0.11
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Micro",
  14213. height: math.unit(3, "inches"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Normal",
  14218. height: math.unit(5 + 6 / 12, "feet")
  14219. },
  14220. {
  14221. name: "Lesser Macro",
  14222. height: math.unit(60, "feet")
  14223. },
  14224. {
  14225. name: "Greater Macro",
  14226. height: math.unit(120, "feet")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(100, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/aevsivs/front.svg",
  14239. extra: 1,
  14240. bottom: 0.03
  14241. }
  14242. },
  14243. back: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(100, "lb"),
  14246. name: "Back",
  14247. image: {
  14248. source: "./media/characters/aevsivs/back.svg"
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Micro",
  14255. height: math.unit(2, "inches"),
  14256. default: true
  14257. },
  14258. {
  14259. name: "Normal",
  14260. height: math.unit(5, "feet")
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(5 + 7 / 12, "feet"),
  14269. weight: math.unit(159, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/hildegard/front.svg",
  14273. extra: 289 / 269,
  14274. bottom: 7.63 / 297.8
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(5 + 7 / 12, "feet"),
  14279. weight: math.unit(159, "lb"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/hildegard/back.svg",
  14283. extra: 280 / 260,
  14284. bottom: 2.3 / 282
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Normal",
  14291. height: math.unit(5 + 7 / 12, "feet"),
  14292. default: true
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14298. {
  14299. bernard: {
  14300. height: math.unit(2 + 7 / 12, "feet"),
  14301. weight: math.unit(66, "lb"),
  14302. name: "Bernard",
  14303. rename: true,
  14304. image: {
  14305. source: "./media/characters/bernard-wilder/bernard.svg",
  14306. extra: 192 / 128,
  14307. bottom: 0.05
  14308. }
  14309. },
  14310. wilder: {
  14311. height: math.unit(5 + 8 / 12, "feet"),
  14312. weight: math.unit(143, "lb"),
  14313. name: "Wilder",
  14314. rename: true,
  14315. image: {
  14316. source: "./media/characters/bernard-wilder/wilder.svg",
  14317. extra: 361 / 312,
  14318. bottom: 0.02
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Normal",
  14325. height: math.unit(2 + 7 / 12, "feet"),
  14326. default: true
  14327. },
  14328. ]
  14329. ))
  14330. characterMakers.push(() => makeCharacter(
  14331. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14332. {
  14333. anthro: {
  14334. height: math.unit(6 + 1 / 12, "feet"),
  14335. weight: math.unit(155, "lb"),
  14336. name: "Anthro",
  14337. image: {
  14338. source: "./media/characters/hearth/anthro.svg",
  14339. extra: 260 / 250,
  14340. bottom: 0.02
  14341. }
  14342. },
  14343. feral: {
  14344. height: math.unit(3.78, "feet"),
  14345. weight: math.unit(35, "kg"),
  14346. name: "Feral",
  14347. image: {
  14348. source: "./media/characters/hearth/feral.svg",
  14349. extra: 153 / 135,
  14350. bottom: 0.03
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Normal",
  14357. height: math.unit(6 + 1 / 12, "feet"),
  14358. default: true
  14359. },
  14360. ]
  14361. ))
  14362. characterMakers.push(() => makeCharacter(
  14363. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14364. {
  14365. front: {
  14366. height: math.unit(6, "feet"),
  14367. weight: math.unit(182, "lb"),
  14368. name: "Front",
  14369. image: {
  14370. source: "./media/characters/ingrid/front.svg",
  14371. extra: 294 / 268,
  14372. bottom: 0.027
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(6, "feet"),
  14380. default: true
  14381. },
  14382. ]
  14383. ))
  14384. characterMakers.push(() => makeCharacter(
  14385. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14386. {
  14387. eevee: {
  14388. height: math.unit(2 + 10 / 12, "feet"),
  14389. weight: math.unit(86, "lb"),
  14390. name: "Malgam",
  14391. image: {
  14392. source: "./media/characters/malgam/eevee.svg",
  14393. extra: 218 / 180,
  14394. bottom: 0.2
  14395. }
  14396. },
  14397. sylveon: {
  14398. height: math.unit(4, "feet"),
  14399. weight: math.unit(101, "lb"),
  14400. name: "Future Malgam",
  14401. rename: true,
  14402. image: {
  14403. source: "./media/characters/malgam/sylveon.svg",
  14404. extra: 371 / 325,
  14405. bottom: 0.015
  14406. }
  14407. },
  14408. gigantamax: {
  14409. height: math.unit(50, "feet"),
  14410. name: "Gigantamax Malgam",
  14411. rename: true,
  14412. image: {
  14413. source: "./media/characters/malgam/gigantamax.svg"
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(2 + 10 / 12, "feet"),
  14421. default: true
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14427. {
  14428. front: {
  14429. height: math.unit(5 + 11 / 12, "feet"),
  14430. weight: math.unit(188, "lb"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/fleur/front.svg",
  14434. extra: 309 / 283,
  14435. bottom: 0.007
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(5 + 11 / 12, "feet"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14449. {
  14450. front: {
  14451. height: math.unit(5 + 4 / 12, "feet"),
  14452. weight: math.unit(122, "lb"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/jude/front.svg",
  14456. extra: 288 / 273,
  14457. bottom: 0.03
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(5 + 4 / 12, "feet"),
  14465. default: true
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(5 + 11 / 12, "feet"),
  14474. weight: math.unit(190, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/seara/front.svg",
  14478. extra: 1,
  14479. bottom: 0.05
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(5 + 11 / 12, "feet"),
  14487. default: true
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14493. {
  14494. front: {
  14495. height: math.unit(16 + 5 / 12, "feet"),
  14496. weight: math.unit(524, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/caspian/front.svg",
  14500. extra: 1,
  14501. bottom: 0.04
  14502. }
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Normal",
  14508. height: math.unit(16 + 5 / 12, "feet"),
  14509. default: true
  14510. },
  14511. ]
  14512. ))
  14513. characterMakers.push(() => makeCharacter(
  14514. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14515. {
  14516. front: {
  14517. height: math.unit(5 + 7 / 12, "feet"),
  14518. weight: math.unit(170, "lb"),
  14519. name: "Front",
  14520. image: {
  14521. source: "./media/characters/mika/front.svg",
  14522. extra: 1,
  14523. bottom: 0.016
  14524. }
  14525. },
  14526. },
  14527. [
  14528. {
  14529. name: "Normal",
  14530. height: math.unit(5 + 7 / 12, "feet"),
  14531. default: true
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(6 + 2 / 12, "feet"),
  14540. weight: math.unit(268, "lb"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/sol/front.svg",
  14544. extra: 247 / 231,
  14545. bottom: 0.05
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(6 + 2 / 12, "feet"),
  14553. default: true
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14559. {
  14560. buizel: {
  14561. height: math.unit(2 + 5 / 12, "feet"),
  14562. weight: math.unit(87, "lb"),
  14563. name: "Buizel",
  14564. image: {
  14565. source: "./media/characters/umiko/buizel.svg",
  14566. extra: 172 / 157,
  14567. bottom: 0.01
  14568. }
  14569. },
  14570. floatzel: {
  14571. height: math.unit(5 + 9 / 12, "feet"),
  14572. weight: math.unit(250, "lb"),
  14573. name: "Floatzel",
  14574. image: {
  14575. source: "./media/characters/umiko/floatzel.svg",
  14576. extra: 262 / 248
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Normal",
  14583. height: math.unit(2 + 5 / 12, "feet"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6 + 2 / 12, "feet"),
  14593. weight: math.unit(146, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/iliac/front.svg",
  14597. extra: 389 / 365,
  14598. bottom: 0.035
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(6 + 2 / 12, "feet"),
  14606. default: true
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(6, "feet"),
  14615. weight: math.unit(170, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/topaz/front.svg",
  14619. extra: 317 / 303,
  14620. bottom: 0.055
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(6, "feet"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(5 + 11 / 12, "feet"),
  14637. weight: math.unit(144, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/gabriel/front.svg",
  14641. extra: 285 / 262,
  14642. bottom: 0.004
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(5 + 11 / 12, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14656. {
  14657. side: {
  14658. height: math.unit(6 + 5 / 12, "feet"),
  14659. weight: math.unit(300, "lb"),
  14660. name: "Side",
  14661. image: {
  14662. source: "./media/characters/tempest-suicune/side.svg",
  14663. extra: 195 / 154,
  14664. bottom: 0.04
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(6 + 5 / 12, "feet"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(7 + 2 / 12, "feet"),
  14681. weight: math.unit(322, "lb"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/vulcan/front.svg",
  14685. extra: 154 / 147,
  14686. bottom: 0.04
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(7 + 2 / 12, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(5 + 10 / 12, "feet"),
  14703. weight: math.unit(264, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/gault/front.svg",
  14707. extra: 161 / 140,
  14708. bottom: 0.028
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(5 + 10 / 12, "feet"),
  14716. default: true
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/shard/front.svg",
  14729. extra: 273 / 238,
  14730. bottom: 0.02
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(3 + 6 / 12, "feet"),
  14738. default: true
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14744. {
  14745. front: {
  14746. height: math.unit(5 + 11 / 12, "feet"),
  14747. weight: math.unit(146, "lb"),
  14748. name: "Front",
  14749. image: {
  14750. source: "./media/characters/ashe/front.svg",
  14751. extra: 400 / 373,
  14752. bottom: 0.01
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(5 + 11 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(5 + 5 / 12, "feet"),
  14769. weight: math.unit(135, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/beatrix/front.svg",
  14773. extra: 392 / 379,
  14774. bottom: 0.01
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(6, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14788. {
  14789. front: {
  14790. height: math.unit(6, "feet"),
  14791. weight: math.unit(150, "lb"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/ignatius/front.svg",
  14795. extra: 245 / 222,
  14796. bottom: 0.01
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(5 + 5 / 12, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(6 + 2 / 12, "feet"),
  14813. weight: math.unit(138, "lb"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/mei-li/front.svg",
  14817. extra: 237 / 229,
  14818. bottom: 0.03
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(6 + 2 / 12, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14832. {
  14833. front: {
  14834. height: math.unit(2 + 4 / 12, "feet"),
  14835. weight: math.unit(62, "lb"),
  14836. name: "Front",
  14837. image: {
  14838. source: "./media/characters/puru/front.svg",
  14839. extra: 206 / 149,
  14840. bottom: 0.06
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(2 + 4 / 12, "feet"),
  14848. default: true
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14854. {
  14855. taur: {
  14856. height: math.unit(11, "feet"),
  14857. weight: math.unit(500, "lb"),
  14858. name: "Taur",
  14859. image: {
  14860. source: "./media/characters/kee/taur.svg",
  14861. extra: 1,
  14862. bottom: 0.04
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(11, "feet"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14876. {
  14877. anthro: {
  14878. height: math.unit(7, "feet"),
  14879. weight: math.unit(190, "lb"),
  14880. name: "Anthro",
  14881. image: {
  14882. source: "./media/characters/cobalt-dracha/anthro.svg",
  14883. extra: 231 / 225,
  14884. bottom: 0.04
  14885. }
  14886. },
  14887. feral: {
  14888. height: math.unit(9 + 7 / 12, "feet"),
  14889. weight: math.unit(294, "lb"),
  14890. name: "Feral",
  14891. image: {
  14892. source: "./media/characters/cobalt-dracha/feral.svg",
  14893. extra: 692 / 633,
  14894. bottom: 0.05
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(7, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14908. {
  14909. fallen: {
  14910. height: math.unit(11 + 8 / 12, "feet"),
  14911. weight: math.unit(485, "lb"),
  14912. name: "Java (Fallen)",
  14913. rename: true,
  14914. image: {
  14915. source: "./media/characters/java/fallen.svg",
  14916. extra: 226 / 208,
  14917. bottom: 0.005
  14918. }
  14919. },
  14920. godkin: {
  14921. height: math.unit(10 + 6 / 12, "feet"),
  14922. weight: math.unit(328, "lb"),
  14923. name: "Java (Godkin)",
  14924. rename: true,
  14925. image: {
  14926. source: "./media/characters/java/godkin.svg",
  14927. extra: 270 / 262,
  14928. bottom: 0.02
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(11 + 8 / 12, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(7 + 8 / 12, "feet"),
  14945. weight: math.unit(320, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/skoll/front.svg",
  14949. extra: 232 / 220,
  14950. bottom: 0.02
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(7 + 8 / 12, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(5 + 9 / 12, "feet"),
  14967. weight: math.unit(170, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/purna/front.svg",
  14971. extra: 239 / 229,
  14972. bottom: 0.01
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(5 + 9 / 12, "feet"),
  14980. default: true
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14986. {
  14987. front: {
  14988. height: math.unit(5 + 9 / 12, "feet"),
  14989. weight: math.unit(142, "lb"),
  14990. name: "Front",
  14991. image: {
  14992. source: "./media/characters/kuva/front.svg",
  14993. extra: 281 / 271,
  14994. bottom: 0.006
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(5 + 9 / 12, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15008. {
  15009. anthro: {
  15010. height: math.unit(9 + 2 / 12, "feet"),
  15011. weight: math.unit(270, "lb"),
  15012. name: "Anthro",
  15013. image: {
  15014. source: "./media/characters/embra/anthro.svg",
  15015. extra: 200 / 187,
  15016. bottom: 0.02
  15017. }
  15018. },
  15019. feral: {
  15020. height: math.unit(18 + 8 / 12, "feet"),
  15021. weight: math.unit(576, "lb"),
  15022. name: "Feral",
  15023. image: {
  15024. source: "./media/characters/embra/feral.svg",
  15025. extra: 152 / 137,
  15026. bottom: 0.037
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(9 + 2 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15040. {
  15041. anthro: {
  15042. height: math.unit(10 + 9 / 12, "feet"),
  15043. weight: math.unit(224, "lb"),
  15044. name: "Anthro",
  15045. image: {
  15046. source: "./media/characters/grottos/anthro.svg",
  15047. extra: 350 / 332,
  15048. bottom: 0.045
  15049. }
  15050. },
  15051. feral: {
  15052. height: math.unit(20 + 7 / 12, "feet"),
  15053. weight: math.unit(629, "lb"),
  15054. name: "Feral",
  15055. image: {
  15056. source: "./media/characters/grottos/feral.svg",
  15057. extra: 207 / 190,
  15058. bottom: 0.05
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(10 + 9 / 12, "feet"),
  15066. default: true
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15072. {
  15073. anthro: {
  15074. height: math.unit(9 + 6 / 12, "feet"),
  15075. weight: math.unit(298, "lb"),
  15076. name: "Anthro",
  15077. image: {
  15078. source: "./media/characters/frifna/anthro.svg",
  15079. extra: 282 / 269,
  15080. bottom: 0.015
  15081. }
  15082. },
  15083. feral: {
  15084. height: math.unit(16 + 2 / 12, "feet"),
  15085. weight: math.unit(624, "lb"),
  15086. name: "Feral",
  15087. image: {
  15088. source: "./media/characters/frifna/feral.svg"
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(9 + 6 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(6 + 2 / 12, "feet"),
  15105. weight: math.unit(168, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/elise/front.svg",
  15109. extra: 276 / 271
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Normal",
  15116. height: math.unit(6 + 2 / 12, "feet"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(5 + 10 / 12, "feet"),
  15126. weight: math.unit(210, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/glade/front.svg",
  15130. extra: 258 / 247,
  15131. bottom: 0.008
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Normal",
  15138. height: math.unit(5 + 10 / 12, "feet"),
  15139. default: true
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15145. {
  15146. front: {
  15147. height: math.unit(5 + 10 / 12, "feet"),
  15148. weight: math.unit(129, "lb"),
  15149. name: "Front",
  15150. image: {
  15151. source: "./media/characters/rina/front.svg",
  15152. extra: 266 / 255,
  15153. bottom: 0.005
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(5 + 10 / 12, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6 + 1 / 12, "feet"),
  15170. weight: math.unit(192, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/veronica/front.svg",
  15174. extra: 319 / 309,
  15175. bottom: 0.005
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(6 + 1 / 12, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(9 + 3 / 12, "feet"),
  15192. weight: math.unit(1100, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/braxton/front.svg",
  15196. extra: 1057 / 984,
  15197. bottom: 0.05
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(9 + 3 / 12, "feet")
  15205. },
  15206. {
  15207. name: "Giant",
  15208. height: math.unit(300, "feet"),
  15209. default: true
  15210. },
  15211. {
  15212. name: "Macro",
  15213. height: math.unit(700, "feet")
  15214. },
  15215. {
  15216. name: "Megamacro",
  15217. height: math.unit(6000, "feet")
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6 + 7 / 12, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/blue-feyonics/front.svg",
  15230. extra: 1403 / 1306,
  15231. bottom: 0.047
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(6 + 7 / 12, "feet"),
  15239. default: true
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(1.8, "meters"),
  15248. weight: math.unit(60, "kg"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/maxwell/front.svg",
  15252. extra: 2060 / 1873
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Micro",
  15259. height: math.unit(1, "mm")
  15260. },
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(1.8, "meter"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Macro",
  15268. height: math.unit(30, "meters")
  15269. },
  15270. {
  15271. name: "Megamacro",
  15272. height: math.unit(10, "km")
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15278. {
  15279. front: {
  15280. height: math.unit(6, "feet"),
  15281. weight: math.unit(150, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/jack/front.svg",
  15285. extra: 1754 / 1640,
  15286. bottom: 0.01
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(80000, "feet"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Max size",
  15298. height: math.unit(10, "lightyears")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15304. {
  15305. upright: {
  15306. height: math.unit(7, "feet"),
  15307. weight: math.unit(170, "lb"),
  15308. name: "Upright",
  15309. image: {
  15310. source: "./media/characters/cafat/upright.svg",
  15311. bottom: 0.01
  15312. }
  15313. },
  15314. uprightFull: {
  15315. height: math.unit(7, "feet"),
  15316. weight: math.unit(170, "lb"),
  15317. name: "Upright (Full)",
  15318. image: {
  15319. source: "./media/characters/cafat/upright-full.svg",
  15320. bottom: 0.01
  15321. }
  15322. },
  15323. side: {
  15324. height: math.unit(5, "feet"),
  15325. weight: math.unit(150, "lb"),
  15326. name: "Side",
  15327. image: {
  15328. source: "./media/characters/cafat/side.svg"
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Small",
  15335. height: math.unit(7, "feet"),
  15336. default: true
  15337. },
  15338. {
  15339. name: "Large",
  15340. height: math.unit(15.5, "feet")
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15346. {
  15347. front: {
  15348. height: math.unit(6, "feet"),
  15349. weight: math.unit(150, "lb"),
  15350. name: "Front",
  15351. image: {
  15352. source: "./media/characters/verin-raharra/front.svg",
  15353. extra: 5019 / 4835,
  15354. bottom: 0.023
  15355. }
  15356. },
  15357. },
  15358. [
  15359. {
  15360. name: "Normal",
  15361. height: math.unit(7 + 5 / 12, "feet"),
  15362. default: true
  15363. },
  15364. {
  15365. name: "Upsized",
  15366. height: math.unit(20, "feet")
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15372. {
  15373. front: {
  15374. height: math.unit(7, "feet"),
  15375. weight: math.unit(230, "lb"),
  15376. name: "Front",
  15377. image: {
  15378. source: "./media/characters/nakata/front.svg",
  15379. extra: 1.005,
  15380. bottom: 0.01
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(7, "feet"),
  15388. default: true
  15389. },
  15390. {
  15391. name: "Big",
  15392. height: math.unit(14, "feet")
  15393. },
  15394. {
  15395. name: "Macro",
  15396. height: math.unit(400, "feet")
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(4.91, "feet"),
  15405. weight: math.unit(100, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/lily/front.svg",
  15409. extra: 1585 / 1415,
  15410. bottom: 0.02
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(4.91, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15424. {
  15425. laying: {
  15426. height: math.unit(4 + 4 / 12, "feet"),
  15427. weight: math.unit(600, "lb"),
  15428. name: "Laying",
  15429. image: {
  15430. source: "./media/characters/sheila/laying.svg",
  15431. extra: 1333 / 1265,
  15432. bottom: 0.16
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(4 + 4 / 12, "feet"),
  15440. default: true
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(190, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/sax/front.svg",
  15453. extra: 1187 / 973,
  15454. bottom: 0.042
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Micro",
  15461. height: math.unit(4, "inches"),
  15462. default: true
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15468. {
  15469. front: {
  15470. height: math.unit(6, "feet"),
  15471. weight: math.unit(150, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/pandora/front.svg",
  15475. extra: 2720 / 2556,
  15476. bottom: 0.015
  15477. }
  15478. },
  15479. back: {
  15480. height: math.unit(6, "feet"),
  15481. weight: math.unit(150, "lb"),
  15482. name: "Back",
  15483. image: {
  15484. source: "./media/characters/pandora/back.svg",
  15485. extra: 2720 / 2556,
  15486. bottom: 0.01
  15487. }
  15488. },
  15489. beans: {
  15490. height: math.unit(6 / 8, "feet"),
  15491. name: "Beans",
  15492. image: {
  15493. source: "./media/characters/pandora/beans.svg"
  15494. }
  15495. },
  15496. skirt: {
  15497. height: math.unit(6, "feet"),
  15498. weight: math.unit(150, "lb"),
  15499. name: "Skirt",
  15500. image: {
  15501. source: "./media/characters/pandora/skirt.svg",
  15502. extra: 1622 / 1525,
  15503. bottom: 0.015
  15504. }
  15505. },
  15506. hoodie: {
  15507. height: math.unit(6, "feet"),
  15508. weight: math.unit(150, "lb"),
  15509. name: "Hoodie",
  15510. image: {
  15511. source: "./media/characters/pandora/hoodie.svg",
  15512. extra: 1622 / 1525,
  15513. bottom: 0.015
  15514. }
  15515. },
  15516. casual: {
  15517. height: math.unit(6, "feet"),
  15518. weight: math.unit(150, "lb"),
  15519. name: "Casual",
  15520. image: {
  15521. source: "./media/characters/pandora/casual.svg",
  15522. extra: 1622 / 1525,
  15523. bottom: 0.015
  15524. }
  15525. },
  15526. },
  15527. [
  15528. {
  15529. name: "Normal",
  15530. height: math.unit(6, "feet")
  15531. },
  15532. {
  15533. name: "Big Steppy",
  15534. height: math.unit(1, "km"),
  15535. default: true
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15541. {
  15542. side: {
  15543. height: math.unit(10, "feet"),
  15544. weight: math.unit(800, "kg"),
  15545. name: "Side",
  15546. image: {
  15547. source: "./media/characters/venio-darcony/side.svg",
  15548. extra: 1373 / 1003,
  15549. bottom: 0.037
  15550. }
  15551. },
  15552. front: {
  15553. height: math.unit(19, "feet"),
  15554. weight: math.unit(800, "kg"),
  15555. name: "Front",
  15556. image: {
  15557. source: "./media/characters/venio-darcony/front.svg"
  15558. }
  15559. },
  15560. back: {
  15561. height: math.unit(19, "feet"),
  15562. weight: math.unit(800, "kg"),
  15563. name: "Back",
  15564. image: {
  15565. source: "./media/characters/venio-darcony/back.svg"
  15566. }
  15567. },
  15568. sideNsfw: {
  15569. height: math.unit(10, "feet"),
  15570. weight: math.unit(800, "kg"),
  15571. name: "Side (NSFW)",
  15572. image: {
  15573. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15574. extra: 1373 / 1003,
  15575. bottom: 0.037
  15576. }
  15577. },
  15578. frontNsfw: {
  15579. height: math.unit(19, "feet"),
  15580. weight: math.unit(800, "kg"),
  15581. name: "Front (NSFW)",
  15582. image: {
  15583. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15584. }
  15585. },
  15586. backNsfw: {
  15587. height: math.unit(19, "feet"),
  15588. weight: math.unit(800, "kg"),
  15589. name: "Back (NSFW)",
  15590. image: {
  15591. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15592. }
  15593. },
  15594. sideArmored: {
  15595. height: math.unit(10, "feet"),
  15596. weight: math.unit(800, "kg"),
  15597. name: "Side (Armored)",
  15598. image: {
  15599. source: "./media/characters/venio-darcony/side-armored.svg",
  15600. extra: 1373 / 1003,
  15601. bottom: 0.037
  15602. }
  15603. },
  15604. frontArmored: {
  15605. height: math.unit(19, "feet"),
  15606. weight: math.unit(900, "kg"),
  15607. name: "Front (Armored)",
  15608. image: {
  15609. source: "./media/characters/venio-darcony/front-armored.svg"
  15610. }
  15611. },
  15612. backArmored: {
  15613. height: math.unit(19, "feet"),
  15614. weight: math.unit(900, "kg"),
  15615. name: "Back (Armored)",
  15616. image: {
  15617. source: "./media/characters/venio-darcony/back-armored.svg"
  15618. }
  15619. },
  15620. sword: {
  15621. height: math.unit(10, "feet"),
  15622. weight: math.unit(50, "lb"),
  15623. name: "Sword",
  15624. image: {
  15625. source: "./media/characters/venio-darcony/sword.svg"
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(10, "feet")
  15633. },
  15634. {
  15635. name: "Macro",
  15636. height: math.unit(130, "feet"),
  15637. default: true
  15638. },
  15639. {
  15640. name: "Macro+",
  15641. height: math.unit(240, "feet")
  15642. },
  15643. ]
  15644. ))
  15645. characterMakers.push(() => makeCharacter(
  15646. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15647. {
  15648. front: {
  15649. height: math.unit(6, "feet"),
  15650. weight: math.unit(150, "lb"),
  15651. name: "Front",
  15652. image: {
  15653. source: "./media/characters/veski/front.svg",
  15654. extra: 1299 / 1225,
  15655. bottom: 0.04
  15656. }
  15657. },
  15658. back: {
  15659. height: math.unit(6, "feet"),
  15660. weight: math.unit(150, "lb"),
  15661. name: "Back",
  15662. image: {
  15663. source: "./media/characters/veski/back.svg",
  15664. extra: 1299 / 1225,
  15665. bottom: 0.008
  15666. }
  15667. },
  15668. maw: {
  15669. height: math.unit(1.5 * 1.21, "feet"),
  15670. name: "Maw",
  15671. image: {
  15672. source: "./media/characters/veski/maw.svg"
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Macro",
  15679. height: math.unit(2, "km"),
  15680. default: true
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(5 + 7 / 12, "feet"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/isabelle/front.svg",
  15692. extra: 2130 / 1976,
  15693. bottom: 0.05
  15694. }
  15695. },
  15696. },
  15697. [
  15698. {
  15699. name: "Supermicro",
  15700. height: math.unit(10, "micrometers")
  15701. },
  15702. {
  15703. name: "Micro",
  15704. height: math.unit(1, "inch")
  15705. },
  15706. {
  15707. name: "Tiny",
  15708. height: math.unit(5, "inches")
  15709. },
  15710. {
  15711. name: "Standard",
  15712. height: math.unit(5 + 7 / 12, "inches")
  15713. },
  15714. {
  15715. name: "Macro",
  15716. height: math.unit(80, "meters"),
  15717. default: true
  15718. },
  15719. {
  15720. name: "Megamacro",
  15721. height: math.unit(250, "meters")
  15722. },
  15723. {
  15724. name: "Gigamacro",
  15725. height: math.unit(5, "km")
  15726. },
  15727. {
  15728. name: "Cosmic",
  15729. height: math.unit(2.5e6, "miles")
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15735. {
  15736. front: {
  15737. height: math.unit(6, "feet"),
  15738. weight: math.unit(150, "lb"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/hanzo/front.svg",
  15742. extra: 374 / 344,
  15743. bottom: 0.02
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Normal",
  15750. height: math.unit(8, "feet"),
  15751. default: true
  15752. },
  15753. ]
  15754. ))
  15755. characterMakers.push(() => makeCharacter(
  15756. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15757. {
  15758. front: {
  15759. height: math.unit(7, "feet"),
  15760. weight: math.unit(130, "lb"),
  15761. name: "Front",
  15762. image: {
  15763. source: "./media/characters/anna/front.svg",
  15764. extra: 169 / 145,
  15765. bottom: 0.06
  15766. }
  15767. },
  15768. full: {
  15769. height: math.unit(4.96, "feet"),
  15770. weight: math.unit(220, "lb"),
  15771. name: "Full",
  15772. image: {
  15773. source: "./media/characters/anna/full.svg",
  15774. extra: 138 / 114,
  15775. bottom: 0.15
  15776. }
  15777. },
  15778. tongue: {
  15779. height: math.unit(2.53, "feet"),
  15780. name: "Tongue",
  15781. image: {
  15782. source: "./media/characters/anna/tongue.svg"
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(7, "feet"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(7, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/ian-corvid/front.svg",
  15803. extra: 150 / 142,
  15804. bottom: 0.02
  15805. }
  15806. },
  15807. back: {
  15808. height: math.unit(7, "feet"),
  15809. weight: math.unit(150, "lb"),
  15810. name: "Back",
  15811. image: {
  15812. source: "./media/characters/ian-corvid/back.svg",
  15813. extra: 150 / 143,
  15814. bottom: 0.01
  15815. }
  15816. },
  15817. stomping: {
  15818. height: math.unit(7, "feet"),
  15819. weight: math.unit(150, "lb"),
  15820. name: "Stomping",
  15821. image: {
  15822. source: "./media/characters/ian-corvid/stomping.svg",
  15823. extra: 76 / 72
  15824. }
  15825. },
  15826. sitting: {
  15827. height: math.unit(7 / 1.8, "feet"),
  15828. weight: math.unit(150, "lb"),
  15829. name: "Sitting",
  15830. image: {
  15831. source: "./media/characters/ian-corvid/sitting.svg",
  15832. extra: 1400 / 1269,
  15833. bottom: 0.15
  15834. }
  15835. },
  15836. },
  15837. [
  15838. {
  15839. name: "Tiny Microw",
  15840. height: math.unit(1, "inch")
  15841. },
  15842. {
  15843. name: "Microw",
  15844. height: math.unit(6, "inches")
  15845. },
  15846. {
  15847. name: "Crow",
  15848. height: math.unit(7 + 1 / 12, "feet"),
  15849. default: true
  15850. },
  15851. {
  15852. name: "Macrow",
  15853. height: math.unit(176, "feet")
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(5 + 7 / 12, "feet"),
  15862. weight: math.unit(147, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/natalie-kellon/front.svg",
  15866. extra: 1214 / 1141,
  15867. bottom: 0.02
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Micro",
  15874. height: math.unit(1 / 16, "inch")
  15875. },
  15876. {
  15877. name: "Tiny",
  15878. height: math.unit(4, "inches")
  15879. },
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(5 + 7 / 12, "feet"),
  15883. default: true
  15884. },
  15885. {
  15886. name: "Amazon",
  15887. height: math.unit(12, "feet")
  15888. },
  15889. {
  15890. name: "Giantess",
  15891. height: math.unit(160, "meters")
  15892. },
  15893. {
  15894. name: "Titaness",
  15895. height: math.unit(800, "meters")
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(6, "feet"),
  15904. weight: math.unit(150, "lb"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/alluria/front.svg",
  15908. extra: 806 / 738,
  15909. bottom: 0.01
  15910. }
  15911. },
  15912. side: {
  15913. height: math.unit(6, "feet"),
  15914. weight: math.unit(150, "lb"),
  15915. name: "Side",
  15916. image: {
  15917. source: "./media/characters/alluria/side.svg",
  15918. extra: 800 / 750,
  15919. }
  15920. },
  15921. back: {
  15922. height: math.unit(6, "feet"),
  15923. weight: math.unit(150, "lb"),
  15924. name: "Back",
  15925. image: {
  15926. source: "./media/characters/alluria/back.svg",
  15927. extra: 806 / 738,
  15928. }
  15929. },
  15930. frontMaid: {
  15931. height: math.unit(6, "feet"),
  15932. weight: math.unit(150, "lb"),
  15933. name: "Front (Maid)",
  15934. image: {
  15935. source: "./media/characters/alluria/front-maid.svg",
  15936. extra: 806 / 738,
  15937. bottom: 0.01
  15938. }
  15939. },
  15940. sideMaid: {
  15941. height: math.unit(6, "feet"),
  15942. weight: math.unit(150, "lb"),
  15943. name: "Side (Maid)",
  15944. image: {
  15945. source: "./media/characters/alluria/side-maid.svg",
  15946. extra: 800 / 750,
  15947. bottom: 0.005
  15948. }
  15949. },
  15950. backMaid: {
  15951. height: math.unit(6, "feet"),
  15952. weight: math.unit(150, "lb"),
  15953. name: "Back (Maid)",
  15954. image: {
  15955. source: "./media/characters/alluria/back-maid.svg",
  15956. extra: 806 / 738,
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Micro",
  15963. height: math.unit(6, "inches"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(6, "feet"),
  15973. weight: math.unit(150, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/kyle/front.svg",
  15977. extra: 1069 / 962,
  15978. bottom: 77.228 / 1727.45
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Macro",
  15985. height: math.unit(150, "feet"),
  15986. default: true
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15992. {
  15993. front: {
  15994. height: math.unit(6, "feet"),
  15995. weight: math.unit(300, "lb"),
  15996. name: "Front",
  15997. image: {
  15998. source: "./media/characters/duncan/front.svg",
  15999. extra: 1650 / 1482,
  16000. bottom: 0.05
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Macro",
  16007. height: math.unit(100, "feet"),
  16008. default: true
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16014. {
  16015. front: {
  16016. height: math.unit(5 + 4 / 12, "feet"),
  16017. weight: math.unit(220, "lb"),
  16018. name: "Front",
  16019. image: {
  16020. source: "./media/characters/memory/front.svg",
  16021. extra: 3641 / 3545,
  16022. bottom: 0.03
  16023. }
  16024. },
  16025. back: {
  16026. height: math.unit(5 + 4 / 12, "feet"),
  16027. weight: math.unit(220, "lb"),
  16028. name: "Back",
  16029. image: {
  16030. source: "./media/characters/memory/back.svg",
  16031. extra: 3641 / 3545,
  16032. bottom: 0.025
  16033. }
  16034. },
  16035. frontSkirt: {
  16036. height: math.unit(5 + 4 / 12, "feet"),
  16037. weight: math.unit(220, "lb"),
  16038. name: "Front (Skirt)",
  16039. image: {
  16040. source: "./media/characters/memory/front-skirt.svg",
  16041. extra: 3641 / 3545,
  16042. bottom: 0.03
  16043. }
  16044. },
  16045. frontDress: {
  16046. height: math.unit(5 + 4 / 12, "feet"),
  16047. weight: math.unit(220, "lb"),
  16048. name: "Front (Dress)",
  16049. image: {
  16050. source: "./media/characters/memory/front-dress.svg",
  16051. extra: 3641 / 3545,
  16052. bottom: 0.03
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Micro",
  16059. height: math.unit(6, "inches"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(5 + 4 / 12, "feet")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(4 + 11 / 12, "feet"),
  16073. weight: math.unit(100, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/luno/front.svg",
  16077. extra: 1535 / 1487,
  16078. bottom: 0.03
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Micro",
  16085. height: math.unit(3, "inches")
  16086. },
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(4 + 11 / 12, "feet"),
  16090. default: true
  16091. },
  16092. {
  16093. name: "Macro",
  16094. height: math.unit(300, "feet")
  16095. },
  16096. {
  16097. name: "Megamacro",
  16098. height: math.unit(700, "miles")
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6 + 2 / 12, "feet"),
  16107. weight: math.unit(170, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/jamesy/front.svg",
  16111. extra: 440 / 382,
  16112. bottom: 0.005
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Micro",
  16119. height: math.unit(3, "inches")
  16120. },
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(6 + 2 / 12, "feet"),
  16124. default: true
  16125. },
  16126. {
  16127. name: "Macro",
  16128. height: math.unit(300, "feet")
  16129. },
  16130. {
  16131. name: "Megamacro",
  16132. height: math.unit(700, "miles")
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(6, "feet"),
  16141. weight: math.unit(160, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/mark/front.svg",
  16145. extra: 3300 / 3100,
  16146. bottom: 136.42 / 3440.47
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Macro",
  16153. height: math.unit(120, "meters")
  16154. },
  16155. {
  16156. name: "Bigger Macro",
  16157. height: math.unit(350, "meters")
  16158. },
  16159. {
  16160. name: "Megamacro",
  16161. height: math.unit(8, "km"),
  16162. default: true
  16163. },
  16164. {
  16165. name: "Continental",
  16166. height: math.unit(4550, "km")
  16167. },
  16168. {
  16169. name: "Planetary",
  16170. height: math.unit(65000, "km")
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(6, "feet"),
  16179. weight: math.unit(400, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/mac/front.svg",
  16183. extra: 1048 / 987.7,
  16184. bottom: 60 / 1107.6,
  16185. }
  16186. },
  16187. },
  16188. [
  16189. {
  16190. name: "Macro",
  16191. height: math.unit(500, "feet"),
  16192. default: true
  16193. },
  16194. ]
  16195. ))
  16196. characterMakers.push(() => makeCharacter(
  16197. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16198. {
  16199. front: {
  16200. height: math.unit(5 + 2 / 12, "feet"),
  16201. weight: math.unit(190, "lb"),
  16202. name: "Front",
  16203. image: {
  16204. source: "./media/characters/bari/front.svg",
  16205. extra: 3156 / 2880,
  16206. bottom: 0.03
  16207. }
  16208. },
  16209. back: {
  16210. height: math.unit(5 + 2 / 12, "feet"),
  16211. weight: math.unit(190, "lb"),
  16212. name: "Back",
  16213. image: {
  16214. source: "./media/characters/bari/back.svg",
  16215. extra: 3260 / 2834,
  16216. bottom: 0.025
  16217. }
  16218. },
  16219. frontPlush: {
  16220. height: math.unit(5 + 2 / 12, "feet"),
  16221. weight: math.unit(190, "lb"),
  16222. name: "Front (Plush)",
  16223. image: {
  16224. source: "./media/characters/bari/front-plush.svg",
  16225. extra: 1112 / 1061,
  16226. bottom: 0.002
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Micro",
  16233. height: math.unit(3, "inches")
  16234. },
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(5 + 2 / 12, "feet"),
  16238. default: true
  16239. },
  16240. {
  16241. name: "Macro",
  16242. height: math.unit(20, "feet")
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16248. {
  16249. front: {
  16250. height: math.unit(6 + 1 / 12, "feet"),
  16251. weight: math.unit(275, "lb"),
  16252. name: "Front",
  16253. image: {
  16254. source: "./media/characters/hunter-misha-raven/front.svg"
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Mortal",
  16261. height: math.unit(6 + 1 / 12, "feet")
  16262. },
  16263. {
  16264. name: "Divine",
  16265. height: math.unit(1.12134e34, "parsecs"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(6 + 3 / 12, "feet"),
  16275. weight: math.unit(220, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/max-calore/front.svg",
  16279. extra: 1700 / 1648,
  16280. bottom: 0.01
  16281. }
  16282. },
  16283. back: {
  16284. height: math.unit(6 + 3 / 12, "feet"),
  16285. weight: math.unit(220, "lb"),
  16286. name: "Back",
  16287. image: {
  16288. source: "./media/characters/max-calore/back.svg",
  16289. extra: 1700 / 1648,
  16290. bottom: 0.01
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(6 + 3 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16304. {
  16305. side: {
  16306. height: math.unit(2 + 8 / 12, "feet"),
  16307. weight: math.unit(99, "lb"),
  16308. name: "Side",
  16309. image: {
  16310. source: "./media/characters/aspen/side.svg",
  16311. extra: 152 / 138,
  16312. bottom: 0.032
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(2 + 8 / 12, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16326. {
  16327. side: {
  16328. height: math.unit(3 + 2 / 12, "feet"),
  16329. weight: math.unit(224, "lb"),
  16330. name: "Side",
  16331. image: {
  16332. source: "./media/characters/sheila-feral-wolf/side.svg",
  16333. extra: 179 / 166,
  16334. bottom: 0.03
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(3 + 2 / 12, "feet"),
  16342. default: true
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16348. {
  16349. side: {
  16350. height: math.unit(1 + 9 / 12, "feet"),
  16351. weight: math.unit(38, "lb"),
  16352. name: "Side",
  16353. image: {
  16354. source: "./media/characters/michelle/side.svg",
  16355. extra: 147 / 136.7,
  16356. bottom: 0.03
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(1 + 9 / 12, "feet"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(1 + 1 / 12, "feet"),
  16373. weight: math.unit(18, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/nino/front.svg"
  16377. }
  16378. },
  16379. },
  16380. [
  16381. {
  16382. name: "Normal",
  16383. height: math.unit(1 + 1 / 12, "feet"),
  16384. default: true
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(1, "feet"),
  16393. weight: math.unit(16, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/viola/front.svg"
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(1, "feet"),
  16404. default: true
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(6 + 5 / 12, "feet"),
  16413. weight: math.unit(580, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/atlas/front.svg",
  16417. extra: 298.5 / 290,
  16418. bottom: 0.015
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(6 + 5 / 12, "feet"),
  16426. default: true
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16432. {
  16433. side: {
  16434. height: math.unit(1 + 10 / 12, "feet"),
  16435. weight: math.unit(25, "lb"),
  16436. name: "Side",
  16437. image: {
  16438. source: "./media/characters/davy/side.svg",
  16439. extra: 200 / 170,
  16440. bottom: 0.01
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Normal",
  16447. height: math.unit(1 + 10 / 12, "feet"),
  16448. default: true
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16454. {
  16455. side: {
  16456. height: math.unit(4 + 8 / 12, "feet"),
  16457. weight: math.unit(166, "lb"),
  16458. name: "Side",
  16459. image: {
  16460. source: "./media/characters/fiona/side.svg",
  16461. extra: 232 / 220,
  16462. bottom: 0.03
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(4 + 8 / 12, "feet"),
  16470. default: true
  16471. },
  16472. ]
  16473. ))
  16474. characterMakers.push(() => makeCharacter(
  16475. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16476. {
  16477. front: {
  16478. height: math.unit(2, "feet"),
  16479. weight: math.unit(62, "lb"),
  16480. name: "Front",
  16481. image: {
  16482. source: "./media/characters/lyla/front.svg",
  16483. bottom: 0.1
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(2, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16497. {
  16498. side: {
  16499. height: math.unit(1.8, "feet"),
  16500. weight: math.unit(44, "lb"),
  16501. name: "Side",
  16502. image: {
  16503. source: "./media/characters/perseus/side.svg",
  16504. bottom: 0.21
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(1.8, "feet"),
  16512. default: true
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16518. {
  16519. side: {
  16520. height: math.unit(4 + 2 / 12, "feet"),
  16521. weight: math.unit(20, "lb"),
  16522. name: "Side",
  16523. image: {
  16524. source: "./media/characters/remus/side.svg"
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Normal",
  16531. height: math.unit(4 + 2 / 12, "feet"),
  16532. default: true
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(4 + 11 / 12, "feet"),
  16541. weight: math.unit(114, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/raf/front.svg",
  16545. bottom: 20.5 / 1863
  16546. }
  16547. },
  16548. side: {
  16549. height: math.unit(4 + 11 / 12, "feet"),
  16550. weight: math.unit(114, "lb"),
  16551. name: "Side",
  16552. image: {
  16553. source: "./media/characters/raf/side.svg",
  16554. bottom: 22 / 1822
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Micro",
  16561. height: math.unit(2, "inches")
  16562. },
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(4 + 11 / 12, "feet"),
  16566. default: true
  16567. },
  16568. {
  16569. name: "Macro",
  16570. height: math.unit(70, "feet")
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16576. {
  16577. front: {
  16578. height: math.unit(1.5, "meters"),
  16579. weight: math.unit(68, "kg"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/liam-einarr/front.svg",
  16583. extra: 2822 / 2666
  16584. }
  16585. },
  16586. back: {
  16587. height: math.unit(1.5, "meters"),
  16588. weight: math.unit(68, "kg"),
  16589. name: "Back",
  16590. image: {
  16591. source: "./media/characters/liam-einarr/back.svg",
  16592. extra: 2822 / 2666,
  16593. bottom: 0.015
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(1.5, "meters"),
  16601. default: true
  16602. },
  16603. {
  16604. name: "Macro",
  16605. height: math.unit(150, "meters")
  16606. },
  16607. {
  16608. name: "Megamacro",
  16609. height: math.unit(35, "km")
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16615. {
  16616. front: {
  16617. height: math.unit(6, "feet"),
  16618. weight: math.unit(75, "kg"),
  16619. name: "Front",
  16620. image: {
  16621. source: "./media/characters/linda/front.svg",
  16622. extra: 930 / 874,
  16623. bottom: 0.004
  16624. }
  16625. },
  16626. },
  16627. [
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(6, "feet"),
  16631. default: true
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16637. {
  16638. front: {
  16639. height: math.unit(6 + 8 / 12, "feet"),
  16640. weight: math.unit(220, "lb"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/caylex/front.svg",
  16644. extra: 821 / 772,
  16645. bottom: 0.07
  16646. }
  16647. },
  16648. back: {
  16649. height: math.unit(6 + 8 / 12, "feet"),
  16650. weight: math.unit(220, "lb"),
  16651. name: "Back",
  16652. image: {
  16653. source: "./media/characters/caylex/back.svg",
  16654. extra: 821 / 772,
  16655. bottom: 0.022
  16656. }
  16657. },
  16658. hand: {
  16659. height: math.unit(1.25, "feet"),
  16660. name: "Hand",
  16661. image: {
  16662. source: "./media/characters/caylex/hand.svg"
  16663. }
  16664. },
  16665. foot: {
  16666. height: math.unit(1.6, "feet"),
  16667. name: "Foot",
  16668. image: {
  16669. source: "./media/characters/caylex/foot.svg"
  16670. }
  16671. },
  16672. armored: {
  16673. height: math.unit(6 + 8 / 12, "feet"),
  16674. weight: math.unit(250, "lb"),
  16675. name: "Armored",
  16676. image: {
  16677. source: "./media/characters/caylex/armored.svg",
  16678. extra: 1420 / 1310,
  16679. bottom: 0.045
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(6 + 8 / 12, "feet"),
  16687. default: true
  16688. },
  16689. {
  16690. name: "Normal+",
  16691. height: math.unit(12, "feet")
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16697. {
  16698. front: {
  16699. height: math.unit(7 + 6 / 12, "feet"),
  16700. weight: math.unit(288, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/alana/front.svg",
  16704. extra: 679 / 653,
  16705. bottom: 22.5 / 701
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(7 + 6 / 12, "feet")
  16713. },
  16714. {
  16715. name: "Large",
  16716. height: math.unit(50, "feet")
  16717. },
  16718. {
  16719. name: "Macro",
  16720. height: math.unit(100, "feet"),
  16721. default: true
  16722. },
  16723. {
  16724. name: "Macro+",
  16725. height: math.unit(200, "feet")
  16726. },
  16727. ]
  16728. ))
  16729. characterMakers.push(() => makeCharacter(
  16730. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16731. {
  16732. front: {
  16733. height: math.unit(6 + 1 / 12, "feet"),
  16734. weight: math.unit(210, "lb"),
  16735. name: "Front",
  16736. image: {
  16737. source: "./media/characters/hasani/front.svg",
  16738. extra: 244 / 232,
  16739. bottom: 0.01
  16740. }
  16741. },
  16742. back: {
  16743. height: math.unit(6 + 1 / 12, "feet"),
  16744. weight: math.unit(210, "lb"),
  16745. name: "Back",
  16746. image: {
  16747. source: "./media/characters/hasani/back.svg",
  16748. extra: 244 / 232,
  16749. bottom: 0.01
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(6 + 1 / 12, "feet")
  16757. },
  16758. {
  16759. name: "Macro",
  16760. height: math.unit(175, "feet"),
  16761. default: true
  16762. },
  16763. ]
  16764. ))
  16765. characterMakers.push(() => makeCharacter(
  16766. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16767. {
  16768. front: {
  16769. height: math.unit(1.82, "meters"),
  16770. weight: math.unit(140, "lb"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/nita/front.svg",
  16774. extra: 2473 / 2363,
  16775. bottom: 0.01
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Normal",
  16782. height: math.unit(1.82, "m")
  16783. },
  16784. {
  16785. name: "Macro",
  16786. height: math.unit(300, "m")
  16787. },
  16788. {
  16789. name: "Mistake Canon",
  16790. height: math.unit(0.5, "miles"),
  16791. default: true
  16792. },
  16793. {
  16794. name: "Big Mistake",
  16795. height: math.unit(13, "miles")
  16796. },
  16797. {
  16798. name: "Playing God",
  16799. height: math.unit(2450, "miles")
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(4, "feet"),
  16808. weight: math.unit(120, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/shiriko/front.svg",
  16812. extra: 195 / 188
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Normal",
  16819. height: math.unit(4, "feet"),
  16820. default: true
  16821. },
  16822. ]
  16823. ))
  16824. characterMakers.push(() => makeCharacter(
  16825. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16826. {
  16827. front: {
  16828. height: math.unit(6, "feet"),
  16829. name: "front",
  16830. image: {
  16831. source: "./media/characters/deja/front.svg",
  16832. extra: 926 / 840,
  16833. bottom: 0.07
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Planck Length",
  16840. height: math.unit(1.6e-35, "meters")
  16841. },
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(30.48, "meters"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Universal",
  16849. height: math.unit(8.8e26, "meters")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16855. {
  16856. side: {
  16857. height: math.unit(8, "feet"),
  16858. weight: math.unit(6300, "lb"),
  16859. name: "Side",
  16860. image: {
  16861. source: "./media/characters/anima/side.svg",
  16862. bottom: 0.035
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Normal",
  16869. height: math.unit(8, "feet"),
  16870. default: true
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16876. {
  16877. front: {
  16878. height: math.unit(8, "feet"),
  16879. weight: math.unit(350, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/bianca/front.svg",
  16883. extra: 234 / 225,
  16884. bottom: 0.03
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(8, "feet"),
  16892. default: true
  16893. },
  16894. ]
  16895. ))
  16896. characterMakers.push(() => makeCharacter(
  16897. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16898. {
  16899. front: {
  16900. height: math.unit(6, "feet"),
  16901. weight: math.unit(150, "lb"),
  16902. name: "Front",
  16903. image: {
  16904. source: "./media/characters/adinia/front.svg",
  16905. extra: 1845 / 1672,
  16906. bottom: 0.02
  16907. }
  16908. },
  16909. back: {
  16910. height: math.unit(6, "feet"),
  16911. weight: math.unit(150, "lb"),
  16912. name: "Back",
  16913. image: {
  16914. source: "./media/characters/adinia/back.svg",
  16915. extra: 1845 / 1672,
  16916. bottom: 0.002
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(11 + 5 / 12, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(3, "meters"),
  16933. weight: math.unit(200, "kg"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/lykasa/front.svg",
  16937. extra: 1076 / 976,
  16938. bottom: 0.06
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(3, "meters")
  16946. },
  16947. {
  16948. name: "Kaiju",
  16949. height: math.unit(120, "meters"),
  16950. default: true
  16951. },
  16952. {
  16953. name: "Mega Kaiju",
  16954. height: math.unit(240, "km")
  16955. },
  16956. {
  16957. name: "Giga Kaiju",
  16958. height: math.unit(400, "megameters")
  16959. },
  16960. {
  16961. name: "Tera Kaiju",
  16962. height: math.unit(800, "gigameters")
  16963. },
  16964. {
  16965. name: "Kaiju Dragon Goddess",
  16966. height: math.unit(26, "zettaparsecs")
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16972. {
  16973. side: {
  16974. height: math.unit(283 / 124 * 6, "feet"),
  16975. weight: math.unit(35000, "lb"),
  16976. name: "Side",
  16977. image: {
  16978. source: "./media/characters/malfaren/side.svg",
  16979. extra: 2500 / 1010,
  16980. bottom: 0.01
  16981. }
  16982. },
  16983. front: {
  16984. height: math.unit(22.36, "feet"),
  16985. weight: math.unit(35000, "lb"),
  16986. name: "Front",
  16987. image: {
  16988. source: "./media/characters/malfaren/front.svg",
  16989. extra: 1631 / 1476,
  16990. bottom: 0.01
  16991. }
  16992. },
  16993. maw: {
  16994. height: math.unit(6.9, "feet"),
  16995. name: "Maw",
  16996. image: {
  16997. source: "./media/characters/malfaren/maw.svg"
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Big",
  17004. height: math.unit(283 / 162 * 6, "feet"),
  17005. },
  17006. {
  17007. name: "Bigger",
  17008. height: math.unit(283 / 124 * 6, "feet")
  17009. },
  17010. {
  17011. name: "Massive",
  17012. height: math.unit(283 / 92 * 6, "feet"),
  17013. default: true
  17014. },
  17015. {
  17016. name: "👀💦",
  17017. height: math.unit(283 / 73 * 6, "feet"),
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17023. {
  17024. front: {
  17025. height: math.unit(1.7, "m"),
  17026. weight: math.unit(70, "kg"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/kernel/front.svg",
  17030. extra: 222 / 210,
  17031. bottom: 0.007
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Nano",
  17038. height: math.unit(17, "micrometers")
  17039. },
  17040. {
  17041. name: "Micro",
  17042. height: math.unit(1.7, "mm")
  17043. },
  17044. {
  17045. name: "Small",
  17046. height: math.unit(1.7, "cm")
  17047. },
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(1.7, "m"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(1.75, "meters"),
  17060. weight: math.unit(65, "kg"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/jayne-folest/front.svg",
  17064. extra: 2115 / 2007,
  17065. bottom: 0.02
  17066. }
  17067. },
  17068. back: {
  17069. height: math.unit(1.75, "meters"),
  17070. weight: math.unit(65, "kg"),
  17071. name: "Back",
  17072. image: {
  17073. source: "./media/characters/jayne-folest/back.svg",
  17074. extra: 2115 / 2007,
  17075. bottom: 0.005
  17076. }
  17077. },
  17078. frontClothed: {
  17079. height: math.unit(1.75, "meters"),
  17080. weight: math.unit(65, "kg"),
  17081. name: "Front (Clothed)",
  17082. image: {
  17083. source: "./media/characters/jayne-folest/front-clothed.svg",
  17084. extra: 2115 / 2007,
  17085. bottom: 0.035
  17086. }
  17087. },
  17088. hand: {
  17089. height: math.unit(1 / 1.260, "feet"),
  17090. name: "Hand",
  17091. image: {
  17092. source: "./media/characters/jayne-folest/hand.svg"
  17093. }
  17094. },
  17095. foot: {
  17096. height: math.unit(1 / 0.918, "feet"),
  17097. name: "Foot",
  17098. image: {
  17099. source: "./media/characters/jayne-folest/foot.svg"
  17100. }
  17101. },
  17102. },
  17103. [
  17104. {
  17105. name: "Micro",
  17106. height: math.unit(4, "cm")
  17107. },
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(1.75, "meters")
  17111. },
  17112. {
  17113. name: "Macro",
  17114. height: math.unit(47.5, "meters"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(180, "cm"),
  17124. weight: math.unit(70, "kg"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/algier/front.svg",
  17128. extra: 596 / 572,
  17129. bottom: 0.04
  17130. }
  17131. },
  17132. back: {
  17133. height: math.unit(180, "cm"),
  17134. weight: math.unit(70, "kg"),
  17135. name: "Back",
  17136. image: {
  17137. source: "./media/characters/algier/back.svg",
  17138. extra: 596 / 572,
  17139. bottom: 0.025
  17140. }
  17141. },
  17142. frontdressed: {
  17143. height: math.unit(180, "cm"),
  17144. weight: math.unit(150, "kg"),
  17145. name: "Front-dressed",
  17146. image: {
  17147. source: "./media/characters/algier/front-dressed.svg",
  17148. extra: 596 / 572,
  17149. bottom: 0.038
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Micro",
  17156. height: math.unit(5, "cm")
  17157. },
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(180, "cm"),
  17161. default: true
  17162. },
  17163. {
  17164. name: "Macro",
  17165. height: math.unit(64, "m")
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17171. {
  17172. upright: {
  17173. height: math.unit(7, "feet"),
  17174. weight: math.unit(300, "lb"),
  17175. name: "Upright",
  17176. image: {
  17177. source: "./media/characters/pretzel/upright.svg",
  17178. extra: 534 / 522,
  17179. bottom: 0.065
  17180. }
  17181. },
  17182. sprawling: {
  17183. height: math.unit(3.75, "feet"),
  17184. weight: math.unit(300, "lb"),
  17185. name: "Sprawling",
  17186. image: {
  17187. source: "./media/characters/pretzel/sprawling.svg",
  17188. extra: 314 / 281,
  17189. bottom: 0.1
  17190. }
  17191. },
  17192. tongue: {
  17193. height: math.unit(2, "feet"),
  17194. name: "Tongue",
  17195. image: {
  17196. source: "./media/characters/pretzel/tongue.svg"
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(7, "feet"),
  17204. default: true
  17205. },
  17206. {
  17207. name: "Oversized",
  17208. height: math.unit(15, "feet")
  17209. },
  17210. {
  17211. name: "Huge",
  17212. height: math.unit(30, "feet")
  17213. },
  17214. {
  17215. name: "Macro",
  17216. height: math.unit(250, "feet")
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17222. {
  17223. sideFront: {
  17224. height: math.unit(5 + 2 / 12, "feet"),
  17225. weight: math.unit(120, "lb"),
  17226. name: "Front Side",
  17227. image: {
  17228. source: "./media/characters/roxi/side-front.svg",
  17229. extra: 2924 / 2717,
  17230. bottom: 0.08
  17231. }
  17232. },
  17233. sideBack: {
  17234. height: math.unit(5 + 2 / 12, "feet"),
  17235. weight: math.unit(120, "lb"),
  17236. name: "Back Side",
  17237. image: {
  17238. source: "./media/characters/roxi/side-back.svg",
  17239. extra: 2904 / 2693,
  17240. bottom: 0.06
  17241. }
  17242. },
  17243. front: {
  17244. height: math.unit(5 + 2 / 12, "feet"),
  17245. weight: math.unit(120, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/roxi/front.svg",
  17249. extra: 2028 / 1907,
  17250. bottom: 0.01
  17251. }
  17252. },
  17253. frontAlt: {
  17254. height: math.unit(5 + 2 / 12, "feet"),
  17255. weight: math.unit(120, "lb"),
  17256. name: "Front (Alt)",
  17257. image: {
  17258. source: "./media/characters/roxi/front-alt.svg",
  17259. extra: 1828 / 1798,
  17260. bottom: 0.01
  17261. }
  17262. },
  17263. sitting: {
  17264. height: math.unit(2.8, "feet"),
  17265. weight: math.unit(120, "lb"),
  17266. name: "Sitting",
  17267. image: {
  17268. source: "./media/characters/roxi/sitting.svg",
  17269. extra: 2660 / 2462,
  17270. bottom: 0.1
  17271. }
  17272. },
  17273. },
  17274. [
  17275. {
  17276. name: "Normal",
  17277. height: math.unit(5 + 2 / 12, "feet"),
  17278. default: true
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17284. {
  17285. side: {
  17286. height: math.unit(55, "feet"),
  17287. weight: math.unit(153, "tons"),
  17288. name: "Side",
  17289. image: {
  17290. source: "./media/characters/shadow/side.svg",
  17291. extra: 701 / 628,
  17292. bottom: 0.02
  17293. }
  17294. },
  17295. flying: {
  17296. height: math.unit(145, "feet"),
  17297. weight: math.unit(153, "tons"),
  17298. name: "Flying",
  17299. image: {
  17300. source: "./media/characters/shadow/flying.svg"
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(55, "feet"),
  17308. default: true
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17314. {
  17315. front: {
  17316. height: math.unit(6, "feet"),
  17317. weight: math.unit(200, "lb"),
  17318. name: "Front",
  17319. image: {
  17320. source: "./media/characters/marcie/front.svg",
  17321. extra: 960 / 876,
  17322. bottom: 58 / 1017.87
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Macro",
  17329. height: math.unit(1, "mile"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17336. {
  17337. front: {
  17338. height: math.unit(7, "feet"),
  17339. weight: math.unit(200, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/kachina/front.svg",
  17343. extra: 1290.68 / 1119,
  17344. bottom: 36.5 / 1327.18
  17345. }
  17346. },
  17347. },
  17348. [
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(7, "feet"),
  17352. default: true
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17358. {
  17359. looking: {
  17360. height: math.unit(2, "meters"),
  17361. weight: math.unit(300, "kg"),
  17362. name: "Looking",
  17363. image: {
  17364. source: "./media/characters/kash/looking.svg",
  17365. extra: 474 / 344,
  17366. bottom: 0.03
  17367. }
  17368. },
  17369. side: {
  17370. height: math.unit(2, "meters"),
  17371. weight: math.unit(300, "kg"),
  17372. name: "Side",
  17373. image: {
  17374. source: "./media/characters/kash/side.svg",
  17375. extra: 302 / 251,
  17376. bottom: 0.03
  17377. }
  17378. },
  17379. front: {
  17380. height: math.unit(2, "meters"),
  17381. weight: math.unit(300, "kg"),
  17382. name: "Front",
  17383. image: {
  17384. source: "./media/characters/kash/front.svg",
  17385. extra: 495 / 360,
  17386. bottom: 0.015
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(2, "meters"),
  17394. default: true
  17395. },
  17396. {
  17397. name: "Big",
  17398. height: math.unit(3, "meters")
  17399. },
  17400. {
  17401. name: "Large",
  17402. height: math.unit(5, "meters")
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17408. {
  17409. feeding: {
  17410. height: math.unit(6.7, "feet"),
  17411. weight: math.unit(350, "lb"),
  17412. name: "Feeding",
  17413. image: {
  17414. source: "./media/characters/lalim/feeding.svg",
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(6.7, "feet"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(9.5, "feet"),
  17431. weight: math.unit(600, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/de'vout/front.svg",
  17435. extra: 1443 / 1328,
  17436. bottom: 0.025
  17437. }
  17438. },
  17439. back: {
  17440. height: math.unit(9.5, "feet"),
  17441. weight: math.unit(600, "lb"),
  17442. name: "Back",
  17443. image: {
  17444. source: "./media/characters/de'vout/back.svg",
  17445. extra: 1443 / 1328
  17446. }
  17447. },
  17448. frontDressed: {
  17449. height: math.unit(9.5, "feet"),
  17450. weight: math.unit(600, "lb"),
  17451. name: "Front (Dressed",
  17452. image: {
  17453. source: "./media/characters/de'vout/front-dressed.svg",
  17454. extra: 1443 / 1328,
  17455. bottom: 0.025
  17456. }
  17457. },
  17458. backDressed: {
  17459. height: math.unit(9.5, "feet"),
  17460. weight: math.unit(600, "lb"),
  17461. name: "Back (Dressed",
  17462. image: {
  17463. source: "./media/characters/de'vout/back-dressed.svg",
  17464. extra: 1443 / 1328
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(9.5, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17478. {
  17479. front: {
  17480. height: math.unit(8, "feet"),
  17481. weight: math.unit(225, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/talana/front.svg",
  17485. extra: 1410 / 1300,
  17486. bottom: 0.015
  17487. }
  17488. },
  17489. frontDressed: {
  17490. height: math.unit(8, "feet"),
  17491. weight: math.unit(225, "lb"),
  17492. name: "Front (Dressed",
  17493. image: {
  17494. source: "./media/characters/talana/front-dressed.svg",
  17495. extra: 1410 / 1300,
  17496. bottom: 0.015
  17497. }
  17498. },
  17499. },
  17500. [
  17501. {
  17502. name: "Normal",
  17503. height: math.unit(8, "feet"),
  17504. default: true
  17505. },
  17506. ]
  17507. ))
  17508. characterMakers.push(() => makeCharacter(
  17509. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17510. {
  17511. side: {
  17512. height: math.unit(7.2, "feet"),
  17513. weight: math.unit(150, "lb"),
  17514. name: "Side",
  17515. image: {
  17516. source: "./media/characters/xeauvok/side.svg",
  17517. extra: 1975 / 1523,
  17518. bottom: 0.07
  17519. }
  17520. },
  17521. },
  17522. [
  17523. {
  17524. name: "Normal",
  17525. height: math.unit(7.2, "feet"),
  17526. default: true
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17532. {
  17533. side: {
  17534. height: math.unit(10, "feet"),
  17535. weight: math.unit(900, "kg"),
  17536. name: "Side",
  17537. image: {
  17538. source: "./media/characters/zara/side.svg",
  17539. extra: 504 / 498
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(10, "feet"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17553. {
  17554. side: {
  17555. height: math.unit(6, "feet"),
  17556. weight: math.unit(150, "lb"),
  17557. name: "Side",
  17558. image: {
  17559. source: "./media/characters/richard-dragon/side.svg",
  17560. extra: 845 / 340,
  17561. bottom: 0.017
  17562. }
  17563. },
  17564. maw: {
  17565. height: math.unit(2.97, "feet"),
  17566. name: "Maw",
  17567. image: {
  17568. source: "./media/characters/richard-dragon/maw.svg"
  17569. }
  17570. },
  17571. },
  17572. [
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(4, "feet"),
  17580. weight: math.unit(100, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/richard-smeargle/front.svg",
  17584. extra: 2952 / 2820,
  17585. bottom: 0.028
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Normal",
  17592. height: math.unit(4, "feet"),
  17593. default: true
  17594. },
  17595. {
  17596. name: "Dynamax",
  17597. height: math.unit(20, "meters")
  17598. },
  17599. ]
  17600. ))
  17601. characterMakers.push(() => makeCharacter(
  17602. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17603. {
  17604. front: {
  17605. height: math.unit(6, "feet"),
  17606. weight: math.unit(110, "lb"),
  17607. name: "Front",
  17608. image: {
  17609. source: "./media/characters/klay/front.svg",
  17610. extra: 962 / 883,
  17611. bottom: 0.04
  17612. }
  17613. },
  17614. back: {
  17615. height: math.unit(6, "feet"),
  17616. weight: math.unit(110, "lb"),
  17617. name: "Back",
  17618. image: {
  17619. source: "./media/characters/klay/back.svg",
  17620. extra: 962 / 883
  17621. }
  17622. },
  17623. beans: {
  17624. height: math.unit(1.15, "feet"),
  17625. name: "Beans",
  17626. image: {
  17627. source: "./media/characters/klay/beans.svg"
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Micro",
  17634. height: math.unit(6, "inches")
  17635. },
  17636. {
  17637. name: "Mini",
  17638. height: math.unit(3, "feet")
  17639. },
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(6, "feet"),
  17643. default: true
  17644. },
  17645. {
  17646. name: "Big",
  17647. height: math.unit(25, "feet")
  17648. },
  17649. {
  17650. name: "Macro",
  17651. height: math.unit(100, "feet")
  17652. },
  17653. {
  17654. name: "Megamacro",
  17655. height: math.unit(400, "feet")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17661. {
  17662. front: {
  17663. height: math.unit(6, "feet"),
  17664. weight: math.unit(160, "lb"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/marcus/front.svg",
  17668. extra: 734 / 676,
  17669. bottom: 0.03
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Little",
  17676. height: math.unit(6, "feet")
  17677. },
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(110, "feet"),
  17681. default: true
  17682. },
  17683. {
  17684. name: "Macro",
  17685. height: math.unit(250, "feet")
  17686. },
  17687. {
  17688. name: "Megamacro",
  17689. height: math.unit(1000, "feet")
  17690. },
  17691. ]
  17692. ))
  17693. characterMakers.push(() => makeCharacter(
  17694. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17695. {
  17696. front: {
  17697. height: math.unit(7, "feet"),
  17698. weight: math.unit(275, "lb"),
  17699. name: "Front",
  17700. image: {
  17701. source: "./media/characters/claude-delroute/front.svg",
  17702. extra: 230 / 214,
  17703. bottom: 0.007
  17704. }
  17705. },
  17706. side: {
  17707. height: math.unit(7, "feet"),
  17708. weight: math.unit(275, "lb"),
  17709. name: "Side",
  17710. image: {
  17711. source: "./media/characters/claude-delroute/side.svg",
  17712. extra: 222 / 214,
  17713. bottom: 0.01
  17714. }
  17715. },
  17716. back: {
  17717. height: math.unit(7, "feet"),
  17718. weight: math.unit(275, "lb"),
  17719. name: "Back",
  17720. image: {
  17721. source: "./media/characters/claude-delroute/back.svg",
  17722. extra: 230 / 214,
  17723. bottom: 0.015
  17724. }
  17725. },
  17726. maw: {
  17727. height: math.unit(0.6407, "meters"),
  17728. name: "Maw",
  17729. image: {
  17730. source: "./media/characters/claude-delroute/maw.svg"
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(7, "feet"),
  17738. default: true
  17739. },
  17740. {
  17741. name: "Lorge",
  17742. height: math.unit(20, "feet")
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17748. {
  17749. front: {
  17750. height: math.unit(8 + 4 / 12, "feet"),
  17751. weight: math.unit(600, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/dragonien/front.svg",
  17755. extra: 100 / 94,
  17756. bottom: 3.3 / 103.3445
  17757. }
  17758. },
  17759. back: {
  17760. height: math.unit(8 + 4 / 12, "feet"),
  17761. weight: math.unit(600, "lb"),
  17762. name: "Back",
  17763. image: {
  17764. source: "./media/characters/dragonien/back.svg",
  17765. extra: 776 / 746,
  17766. bottom: 6.4 / 782.0616
  17767. }
  17768. },
  17769. foot: {
  17770. height: math.unit(1.54, "feet"),
  17771. name: "Foot",
  17772. image: {
  17773. source: "./media/characters/dragonien/foot.svg",
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(8 + 4 / 12, "feet"),
  17781. default: true
  17782. },
  17783. {
  17784. name: "Macro",
  17785. height: math.unit(200, "feet")
  17786. },
  17787. {
  17788. name: "Megamacro",
  17789. height: math.unit(1, "mile")
  17790. },
  17791. {
  17792. name: "Gigamacro",
  17793. height: math.unit(1000, "miles")
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(5 + 2 / 12, "feet"),
  17802. weight: math.unit(110, "lb"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/desta/front.svg",
  17806. extra: 767 / 726,
  17807. bottom: 11.7 / 779
  17808. }
  17809. },
  17810. back: {
  17811. height: math.unit(5 + 2 / 12, "feet"),
  17812. weight: math.unit(110, "lb"),
  17813. name: "Back",
  17814. image: {
  17815. source: "./media/characters/desta/back.svg",
  17816. extra: 777 / 728,
  17817. bottom: 6 / 784
  17818. }
  17819. },
  17820. frontAlt: {
  17821. height: math.unit(5 + 2 / 12, "feet"),
  17822. weight: math.unit(110, "lb"),
  17823. name: "Front",
  17824. image: {
  17825. source: "./media/characters/desta/front-alt.svg",
  17826. extra: 1482 / 1417
  17827. }
  17828. },
  17829. side: {
  17830. height: math.unit(5 + 2 / 12, "feet"),
  17831. weight: math.unit(110, "lb"),
  17832. name: "Side",
  17833. image: {
  17834. source: "./media/characters/desta/side.svg",
  17835. extra: 2579 / 2491,
  17836. bottom: 0.053
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Micro",
  17843. height: math.unit(6, "inches")
  17844. },
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(5 + 2 / 12, "feet"),
  17848. default: true
  17849. },
  17850. {
  17851. name: "Macro",
  17852. height: math.unit(62, "feet")
  17853. },
  17854. {
  17855. name: "Megamacro",
  17856. height: math.unit(1800, "feet")
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17862. {
  17863. front: {
  17864. height: math.unit(10, "feet"),
  17865. weight: math.unit(700, "lb"),
  17866. name: "Front",
  17867. image: {
  17868. source: "./media/characters/storm-alystar/front.svg",
  17869. extra: 2112 / 1898,
  17870. bottom: 0.034
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Micro",
  17877. height: math.unit(3.5, "inches")
  17878. },
  17879. {
  17880. name: "Normal",
  17881. height: math.unit(10, "feet"),
  17882. default: true
  17883. },
  17884. {
  17885. name: "Macro",
  17886. height: math.unit(400, "feet")
  17887. },
  17888. {
  17889. name: "Deific",
  17890. height: math.unit(60, "miles")
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(2.35, "meters"),
  17899. weight: math.unit(119, "kg"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/ilia/front.svg",
  17903. extra: 1285 / 1255,
  17904. bottom: 0.06
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(2.35, "meters")
  17912. },
  17913. {
  17914. name: "Macro",
  17915. height: math.unit(140, "meters"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Megamacro",
  17920. height: math.unit(100, "miles")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(6 + 5 / 12, "feet"),
  17929. weight: math.unit(190, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/kingdead/front.svg",
  17933. extra: 1228 / 1177
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Micro",
  17940. height: math.unit(7, "inches")
  17941. },
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(6 + 5 / 12, "feet")
  17945. },
  17946. {
  17947. name: "Macro",
  17948. height: math.unit(150, "feet"),
  17949. default: true
  17950. },
  17951. {
  17952. name: "Megamacro",
  17953. height: math.unit(200, "miles")
  17954. },
  17955. ]
  17956. ))
  17957. characterMakers.push(() => makeCharacter(
  17958. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17959. {
  17960. front: {
  17961. height: math.unit(8, "feet"),
  17962. weight: math.unit(600, "lb"),
  17963. name: "Front",
  17964. image: {
  17965. source: "./media/characters/kyrehx/front.svg",
  17966. extra: 1195 / 1095,
  17967. bottom: 0.034
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Micro",
  17974. height: math.unit(2, "inches")
  17975. },
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(8, "feet"),
  17979. default: true
  17980. },
  17981. {
  17982. name: "Macro",
  17983. height: math.unit(255, "feet")
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17989. {
  17990. front: {
  17991. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17992. weight: math.unit(184, "lb"),
  17993. name: "Front",
  17994. image: {
  17995. source: "./media/characters/xang/front.svg",
  17996. extra: 845 / 755
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Normal",
  18003. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18004. default: true
  18005. },
  18006. {
  18007. name: "Macro",
  18008. height: math.unit(0.935 * 146, "feet")
  18009. },
  18010. {
  18011. name: "Megamacro",
  18012. height: math.unit(0.935 * 3, "miles")
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18018. {
  18019. frontDressed: {
  18020. height: math.unit(5 + 7 / 12, "feet"),
  18021. weight: math.unit(140, "lb"),
  18022. name: "Front (Dressed)",
  18023. image: {
  18024. source: "./media/characters/doc-weardno/front-dressed.svg",
  18025. extra: 263 / 234
  18026. }
  18027. },
  18028. backDressed: {
  18029. height: math.unit(5 + 7 / 12, "feet"),
  18030. weight: math.unit(140, "lb"),
  18031. name: "Back (Dressed)",
  18032. image: {
  18033. source: "./media/characters/doc-weardno/back-dressed.svg",
  18034. extra: 266 / 238
  18035. }
  18036. },
  18037. front: {
  18038. height: math.unit(5 + 7 / 12, "feet"),
  18039. weight: math.unit(140, "lb"),
  18040. name: "Front",
  18041. image: {
  18042. source: "./media/characters/doc-weardno/front.svg",
  18043. extra: 254 / 233
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Micro",
  18050. height: math.unit(3, "inches")
  18051. },
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(5 + 7 / 12, "feet"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(25, "feet")
  18060. },
  18061. {
  18062. name: "Megamacro",
  18063. height: math.unit(2, "miles")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(6 + 2 / 12, "feet"),
  18072. weight: math.unit(153, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/seth-whilst/front.svg",
  18076. bottom: 0.07
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Micro",
  18083. height: math.unit(5, "inches")
  18084. },
  18085. {
  18086. name: "Normal",
  18087. height: math.unit(6 + 2 / 12, "feet"),
  18088. default: true
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18094. {
  18095. front: {
  18096. height: math.unit(3, "inches"),
  18097. weight: math.unit(8, "grams"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/pocket-jabari/front.svg",
  18101. extra: 1024 / 974,
  18102. bottom: 0.039
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Minimicro",
  18109. height: math.unit(8, "mm")
  18110. },
  18111. {
  18112. name: "Micro",
  18113. height: math.unit(3, "inches"),
  18114. default: true
  18115. },
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(3, "feet")
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18124. {
  18125. front: {
  18126. height: math.unit(15, "feet"),
  18127. weight: math.unit(3280, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/sapphy/front.svg",
  18131. extra: 671 / 577,
  18132. bottom: 0.085
  18133. }
  18134. },
  18135. back: {
  18136. height: math.unit(15, "feet"),
  18137. weight: math.unit(3280, "lb"),
  18138. name: "Back",
  18139. image: {
  18140. source: "./media/characters/sapphy/back.svg",
  18141. extra: 631 / 607,
  18142. bottom: 0.045
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(15, "feet")
  18150. },
  18151. {
  18152. name: "Casual Macro",
  18153. height: math.unit(120, "feet")
  18154. },
  18155. {
  18156. name: "Macro",
  18157. height: math.unit(2150, "feet"),
  18158. default: true
  18159. },
  18160. {
  18161. name: "Megamacro",
  18162. height: math.unit(8, "miles")
  18163. },
  18164. {
  18165. name: "Galaxy Mom",
  18166. height: math.unit(6, "megalightyears")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(6, "feet"),
  18175. weight: math.unit(170, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/kiro/front.svg",
  18179. extra: 1064 / 1012,
  18180. bottom: 0.052
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Micro",
  18187. height: math.unit(6, "inches")
  18188. },
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(6, "feet"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Macro",
  18196. height: math.unit(72, "feet")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(5 + 9 / 12, "feet"),
  18205. weight: math.unit(175, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/irishfox/front.svg",
  18209. extra: 1912 / 1680,
  18210. bottom: 0.02
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Nano",
  18217. height: math.unit(1, "mm")
  18218. },
  18219. {
  18220. name: "Micro",
  18221. height: math.unit(2, "inches")
  18222. },
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(5 + 9 / 12, "feet"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Macro",
  18230. height: math.unit(45, "feet")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(6 + 1 / 12, "feet"),
  18239. weight: math.unit(150, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/aronai-sieyes/front.svg",
  18243. extra: 1556 / 1480,
  18244. bottom: 0.015
  18245. }
  18246. },
  18247. side: {
  18248. height: math.unit(6 + 1 / 12, "feet"),
  18249. weight: math.unit(150, "lb"),
  18250. name: "Side",
  18251. image: {
  18252. source: "./media/characters/aronai-sieyes/side.svg",
  18253. extra: 1433 / 1390,
  18254. bottom: 0.0393
  18255. }
  18256. },
  18257. back: {
  18258. height: math.unit(6 + 1 / 12, "feet"),
  18259. weight: math.unit(150, "lb"),
  18260. name: "Back",
  18261. image: {
  18262. source: "./media/characters/aronai-sieyes/back.svg",
  18263. extra: 1544 / 1494,
  18264. bottom: 0.02
  18265. }
  18266. },
  18267. frontClothed: {
  18268. height: math.unit(6 + 1 / 12, "feet"),
  18269. weight: math.unit(150, "lb"),
  18270. name: "Front (Clothed)",
  18271. image: {
  18272. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18273. extra: 1582 / 1527
  18274. }
  18275. },
  18276. feral: {
  18277. height: math.unit(18, "feet"),
  18278. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18279. name: "Feral",
  18280. image: {
  18281. source: "./media/characters/aronai-sieyes/feral.svg",
  18282. extra: 1530 / 1240,
  18283. bottom: 0.035
  18284. }
  18285. },
  18286. },
  18287. [
  18288. {
  18289. name: "Micro",
  18290. height: math.unit(2, "inches")
  18291. },
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(6 + 1 / 12, "feet"),
  18295. default: true
  18296. }
  18297. ]
  18298. ))
  18299. characterMakers.push(() => makeCharacter(
  18300. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18301. {
  18302. front: {
  18303. height: math.unit(12, "feet"),
  18304. weight: math.unit(410, "kg"),
  18305. name: "Front",
  18306. image: {
  18307. source: "./media/characters/xuna/front.svg",
  18308. extra: 2184 / 1980
  18309. }
  18310. },
  18311. side: {
  18312. height: math.unit(12, "feet"),
  18313. weight: math.unit(410, "kg"),
  18314. name: "Side",
  18315. image: {
  18316. source: "./media/characters/xuna/side.svg",
  18317. extra: 2184 / 1980
  18318. }
  18319. },
  18320. back: {
  18321. height: math.unit(12, "feet"),
  18322. weight: math.unit(410, "kg"),
  18323. name: "Back",
  18324. image: {
  18325. source: "./media/characters/xuna/back.svg",
  18326. extra: 2184 / 1980
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Nano glow",
  18333. height: math.unit(10, "nm")
  18334. },
  18335. {
  18336. name: "Micro floof",
  18337. height: math.unit(0.3, "m")
  18338. },
  18339. {
  18340. name: "Huggable softy boi",
  18341. height: math.unit(3.6576, "m"),
  18342. default: true
  18343. },
  18344. {
  18345. name: "Admirable floof",
  18346. height: math.unit(80, "meters")
  18347. },
  18348. {
  18349. name: "Gentle macro",
  18350. height: math.unit(300, "meters")
  18351. },
  18352. {
  18353. name: "Very careful floof",
  18354. height: math.unit(3200, "meters")
  18355. },
  18356. {
  18357. name: "The mega floof",
  18358. height: math.unit(36000, "meters")
  18359. },
  18360. {
  18361. name: "Giga-fur-Wicker",
  18362. height: math.unit(4800000, "meters")
  18363. },
  18364. {
  18365. name: "Licky world",
  18366. height: math.unit(20000000, "meters")
  18367. },
  18368. {
  18369. name: "Floofy cyan sun",
  18370. height: math.unit(1500000000, "meters")
  18371. },
  18372. {
  18373. name: "Milky Wicker",
  18374. height: math.unit(1000000000000000000000, "meters")
  18375. },
  18376. {
  18377. name: "The observing Wicker",
  18378. height: math.unit(999999999999999999999999999, "meters")
  18379. },
  18380. ]
  18381. ))
  18382. characterMakers.push(() => makeCharacter(
  18383. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18384. {
  18385. front: {
  18386. height: math.unit(5 + 9 / 12, "feet"),
  18387. weight: math.unit(150, "lb"),
  18388. name: "Front",
  18389. image: {
  18390. source: "./media/characters/arokha-sieyes/front.svg",
  18391. extra: 1425 / 1284,
  18392. bottom: 0.05
  18393. }
  18394. },
  18395. },
  18396. [
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(5 + 9 / 12, "feet")
  18400. },
  18401. {
  18402. name: "Macro",
  18403. height: math.unit(30, "meters"),
  18404. default: true
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18410. {
  18411. front: {
  18412. height: math.unit(6, "feet"),
  18413. weight: math.unit(180, "lb"),
  18414. name: "Front",
  18415. image: {
  18416. source: "./media/characters/arokh-sieyes/front.svg",
  18417. extra: 1830 / 1769,
  18418. bottom: 0.01
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Normal",
  18425. height: math.unit(6, "feet")
  18426. },
  18427. {
  18428. name: "Macro",
  18429. height: math.unit(30, "meters"),
  18430. default: true
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18436. {
  18437. side: {
  18438. height: math.unit(13 + 1 / 12, "feet"),
  18439. weight: math.unit(8.5, "tonnes"),
  18440. name: "Side",
  18441. image: {
  18442. source: "./media/characters/goldeneye/side.svg",
  18443. extra: 1182 / 778,
  18444. bottom: 0.067
  18445. }
  18446. },
  18447. paw: {
  18448. height: math.unit(3.4, "feet"),
  18449. name: "Paw",
  18450. image: {
  18451. source: "./media/characters/goldeneye/paw.svg"
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(13 + 1 / 12, "feet"),
  18459. default: true
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18465. {
  18466. front: {
  18467. height: math.unit(6 + 1 / 12, "feet"),
  18468. weight: math.unit(210, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/leonardo-lycheborne/front.svg",
  18472. extra: 390 / 365,
  18473. bottom: 0.032
  18474. }
  18475. },
  18476. side: {
  18477. height: math.unit(6 + 1 / 12, "feet"),
  18478. weight: math.unit(210, "lb"),
  18479. name: "Side",
  18480. image: {
  18481. source: "./media/characters/leonardo-lycheborne/side.svg",
  18482. extra: 390 / 365,
  18483. bottom: 0.005
  18484. }
  18485. },
  18486. back: {
  18487. height: math.unit(6 + 1 / 12, "feet"),
  18488. weight: math.unit(210, "lb"),
  18489. name: "Back",
  18490. image: {
  18491. source: "./media/characters/leonardo-lycheborne/back.svg",
  18492. extra: 392 / 366,
  18493. bottom: 0.01
  18494. }
  18495. },
  18496. hand: {
  18497. height: math.unit(1.08, "feet"),
  18498. name: "Hand",
  18499. image: {
  18500. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18501. }
  18502. },
  18503. foot: {
  18504. height: math.unit(1.32, "feet"),
  18505. name: "Foot",
  18506. image: {
  18507. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18508. }
  18509. },
  18510. were: {
  18511. height: math.unit(20, "feet"),
  18512. weight: math.unit(7800, "lb"),
  18513. name: "Were",
  18514. image: {
  18515. source: "./media/characters/leonardo-lycheborne/were.svg",
  18516. extra: 308 / 294,
  18517. bottom: 0.048
  18518. }
  18519. },
  18520. feral: {
  18521. height: math.unit(7.5, "feet"),
  18522. weight: math.unit(600, "lb"),
  18523. name: "Feral",
  18524. image: {
  18525. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18526. extra: 210 / 186,
  18527. bottom: 0.108
  18528. }
  18529. },
  18530. taur: {
  18531. height: math.unit(11, "feet"),
  18532. weight: math.unit(3300, "lb"),
  18533. name: "Taur",
  18534. image: {
  18535. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18536. extra: 320 / 303,
  18537. bottom: 0.025
  18538. }
  18539. },
  18540. barghest: {
  18541. height: math.unit(11, "feet"),
  18542. weight: math.unit(1300, "lb"),
  18543. name: "Barghest",
  18544. image: {
  18545. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18546. extra: 323 / 302,
  18547. bottom: 0.027
  18548. }
  18549. },
  18550. dick: {
  18551. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18552. name: "Dick",
  18553. image: {
  18554. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18555. }
  18556. },
  18557. dickWere: {
  18558. height: math.unit((20) / 3.8, "feet"),
  18559. name: "Dick (Were)",
  18560. image: {
  18561. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(6 + 1 / 12, "feet"),
  18569. default: true
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(10, "feet"),
  18578. weight: math.unit(350, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/jet/front.svg",
  18582. extra: 2050 / 1980,
  18583. bottom: 0.013
  18584. }
  18585. },
  18586. back: {
  18587. height: math.unit(10, "feet"),
  18588. weight: math.unit(350, "lb"),
  18589. name: "Back",
  18590. image: {
  18591. source: "./media/characters/jet/back.svg",
  18592. extra: 2050 / 1980,
  18593. bottom: 0.013
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Micro",
  18600. height: math.unit(6, "inches")
  18601. },
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(10, "feet"),
  18605. default: true
  18606. },
  18607. {
  18608. name: "Macro",
  18609. height: math.unit(100, "feet")
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(15, "feet"),
  18618. weight: math.unit(2800, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/tanarath/front.svg",
  18622. extra: 2392 / 2220,
  18623. bottom: 0.03
  18624. }
  18625. },
  18626. back: {
  18627. height: math.unit(15, "feet"),
  18628. weight: math.unit(2800, "lb"),
  18629. name: "Back",
  18630. image: {
  18631. source: "./media/characters/tanarath/back.svg",
  18632. extra: 2392 / 2220,
  18633. bottom: 0.03
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(15, "feet"),
  18641. default: true
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(7 + 1 / 12, "feet"),
  18650. weight: math.unit(175, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/patty-cattybatty/front.svg",
  18654. extra: 908 / 874,
  18655. bottom: 0.025
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Micro",
  18662. height: math.unit(1, "inch")
  18663. },
  18664. {
  18665. name: "Normal",
  18666. height: math.unit(7 + 1 / 12, "feet")
  18667. },
  18668. {
  18669. name: "Mini Macro",
  18670. height: math.unit(155, "feet")
  18671. },
  18672. {
  18673. name: "Macro",
  18674. height: math.unit(1077, "feet")
  18675. },
  18676. {
  18677. name: "Mega Macro",
  18678. height: math.unit(47650, "feet"),
  18679. default: true
  18680. },
  18681. {
  18682. name: "Giga Macro",
  18683. height: math.unit(440, "miles")
  18684. },
  18685. {
  18686. name: "Tera Macro",
  18687. height: math.unit(8700, "miles")
  18688. },
  18689. {
  18690. name: "Planetary Macro",
  18691. height: math.unit(32700, "miles")
  18692. },
  18693. {
  18694. name: "Solar Macro",
  18695. height: math.unit(550000, "miles")
  18696. },
  18697. {
  18698. name: "Celestial Macro",
  18699. height: math.unit(2.5, "AU")
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18705. {
  18706. front: {
  18707. height: math.unit(4 + 5 / 12, "feet"),
  18708. weight: math.unit(90, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/cappu/front.svg",
  18712. extra: 1247 / 1152,
  18713. bottom: 0.012
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(4 + 5 / 12, "feet"),
  18721. default: true
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18727. {
  18728. frontDressed: {
  18729. height: math.unit(70, "cm"),
  18730. weight: math.unit(6, "kg"),
  18731. name: "Front (Dressed)",
  18732. image: {
  18733. source: "./media/characters/sebi/front-dressed.svg",
  18734. extra: 713.5 / 686.5,
  18735. bottom: 0.003
  18736. }
  18737. },
  18738. front: {
  18739. height: math.unit(70, "cm"),
  18740. weight: math.unit(5, "kg"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/sebi/front.svg",
  18744. extra: 713.5 / 686.5,
  18745. bottom: 0.003
  18746. }
  18747. }
  18748. },
  18749. [
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(70, "cm"),
  18753. default: true
  18754. },
  18755. {
  18756. name: "Macro",
  18757. height: math.unit(8, "meters")
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(6, "feet"),
  18766. weight: math.unit(150, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/typhek/front.svg",
  18770. extra: 1948 / 1929,
  18771. bottom: 0.025
  18772. }
  18773. },
  18774. side: {
  18775. height: math.unit(6, "feet"),
  18776. weight: math.unit(150, "lb"),
  18777. name: "Side",
  18778. image: {
  18779. source: "./media/characters/typhek/side.svg",
  18780. extra: 2034 / 2010,
  18781. bottom: 0.003
  18782. }
  18783. },
  18784. back: {
  18785. height: math.unit(6, "feet"),
  18786. weight: math.unit(150, "lb"),
  18787. name: "Back",
  18788. image: {
  18789. source: "./media/characters/typhek/back.svg",
  18790. extra: 2005 / 1978,
  18791. bottom: 0.004
  18792. }
  18793. },
  18794. palm: {
  18795. height: math.unit(1.2, "feet"),
  18796. name: "Palm",
  18797. image: {
  18798. source: "./media/characters/typhek/palm.svg"
  18799. }
  18800. },
  18801. fist: {
  18802. height: math.unit(1.1, "feet"),
  18803. name: "Fist",
  18804. image: {
  18805. source: "./media/characters/typhek/fist.svg"
  18806. }
  18807. },
  18808. foot: {
  18809. height: math.unit(1.57, "feet"),
  18810. name: "Foot",
  18811. image: {
  18812. source: "./media/characters/typhek/foot.svg"
  18813. }
  18814. },
  18815. sole: {
  18816. height: math.unit(2.05, "feet"),
  18817. name: "Sole",
  18818. image: {
  18819. source: "./media/characters/typhek/sole.svg"
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Macro",
  18826. height: math.unit(40, "stories"),
  18827. default: true
  18828. },
  18829. {
  18830. name: "Megamacro",
  18831. height: math.unit(1, "mile")
  18832. },
  18833. {
  18834. name: "Gigamacro",
  18835. height: math.unit(4000, "solarradii")
  18836. },
  18837. {
  18838. name: "Universal",
  18839. height: math.unit(1.1, "universes")
  18840. }
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18845. {
  18846. side: {
  18847. height: math.unit(5 + 7 / 12, "feet"),
  18848. weight: math.unit(150, "lb"),
  18849. name: "Side",
  18850. image: {
  18851. source: "./media/characters/kassy/side.svg",
  18852. extra: 1280 / 1225,
  18853. bottom: 0.002
  18854. }
  18855. },
  18856. front: {
  18857. height: math.unit(5 + 7 / 12, "feet"),
  18858. weight: math.unit(150, "lb"),
  18859. name: "Front",
  18860. image: {
  18861. source: "./media/characters/kassy/front.svg",
  18862. extra: 1280 / 1225,
  18863. bottom: 0.025
  18864. }
  18865. },
  18866. back: {
  18867. height: math.unit(5 + 7 / 12, "feet"),
  18868. weight: math.unit(150, "lb"),
  18869. name: "Back",
  18870. image: {
  18871. source: "./media/characters/kassy/back.svg",
  18872. extra: 1280 / 1225,
  18873. bottom: 0.002
  18874. }
  18875. },
  18876. foot: {
  18877. height: math.unit(1.266, "feet"),
  18878. name: "Foot",
  18879. image: {
  18880. source: "./media/characters/kassy/foot.svg"
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(5 + 7 / 12, "feet")
  18888. },
  18889. {
  18890. name: "Macro",
  18891. height: math.unit(137, "feet"),
  18892. default: true
  18893. },
  18894. {
  18895. name: "Megamacro",
  18896. height: math.unit(1, "mile")
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(6 + 1 / 12, "feet"),
  18905. weight: math.unit(200, "lb"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/neil/front.svg",
  18909. extra: 1326 / 1250,
  18910. bottom: 0.023
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(6 + 1 / 12, "feet"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Macro",
  18922. height: math.unit(200, "feet")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(5 + 9 / 12, "feet"),
  18931. weight: math.unit(190, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/atticus/front.svg",
  18935. extra: 2934 / 2785,
  18936. bottom: 0.025
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(5 + 9 / 12, "feet"),
  18944. default: true
  18945. },
  18946. {
  18947. name: "Macro",
  18948. height: math.unit(180, "feet")
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18954. {
  18955. side: {
  18956. height: math.unit(9, "feet"),
  18957. weight: math.unit(650, "lb"),
  18958. name: "Side",
  18959. image: {
  18960. source: "./media/characters/milo/side.svg",
  18961. extra: 2644 / 2310,
  18962. bottom: 0.032
  18963. }
  18964. },
  18965. },
  18966. [
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(9, "feet"),
  18970. default: true
  18971. },
  18972. {
  18973. name: "Macro",
  18974. height: math.unit(300, "feet")
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18980. {
  18981. side: {
  18982. height: math.unit(8, "meters"),
  18983. weight: math.unit(90000, "kg"),
  18984. name: "Side",
  18985. image: {
  18986. source: "./media/characters/ijzer/side.svg",
  18987. extra: 2756 / 1600,
  18988. bottom: 0.01
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Small",
  18995. height: math.unit(3, "meters")
  18996. },
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(8, "meters"),
  19000. default: true
  19001. },
  19002. {
  19003. name: "Normal+",
  19004. height: math.unit(10, "meters")
  19005. },
  19006. {
  19007. name: "Bigger",
  19008. height: math.unit(24, "meters")
  19009. },
  19010. {
  19011. name: "Huge",
  19012. height: math.unit(80, "meters")
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(6 + 2 / 12, "feet"),
  19021. weight: math.unit(153, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/luca-cervicum/front.svg",
  19025. extra: 370 / 327,
  19026. bottom: 0.015
  19027. }
  19028. },
  19029. back: {
  19030. height: math.unit(6 + 2 / 12, "feet"),
  19031. weight: math.unit(153, "lb"),
  19032. name: "Back",
  19033. image: {
  19034. source: "./media/characters/luca-cervicum/back.svg",
  19035. extra: 367 / 333,
  19036. bottom: 0.005
  19037. }
  19038. },
  19039. frontGear: {
  19040. height: math.unit(6 + 2 / 12, "feet"),
  19041. weight: math.unit(173, "lb"),
  19042. name: "Front (Gear)",
  19043. image: {
  19044. source: "./media/characters/luca-cervicum/front-gear.svg",
  19045. extra: 377 / 333,
  19046. bottom: 0.006
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(6 + 2 / 12, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(6 + 1 / 12, "feet"),
  19063. weight: math.unit(304, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/oliver/front.svg",
  19067. extra: 157 / 143,
  19068. bottom: 0.08
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(6 + 1 / 12, "feet"),
  19076. default: true
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(5 + 7 / 12, "feet"),
  19085. weight: math.unit(140, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/shane/front.svg",
  19089. extra: 304 / 289,
  19090. bottom: 0.005
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(5 + 7 / 12, "feet"),
  19098. default: true
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19104. {
  19105. front: {
  19106. height: math.unit(5 + 9 / 12, "feet"),
  19107. weight: math.unit(178, "lb"),
  19108. name: "Front",
  19109. image: {
  19110. source: "./media/characters/shin/front.svg",
  19111. extra: 159 / 151,
  19112. bottom: 0.015
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(5 + 9 / 12, "feet"),
  19120. default: true
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(5 + 10 / 12, "feet"),
  19129. weight: math.unit(168, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/xerxes/front.svg",
  19133. extra: 282 / 260,
  19134. bottom: 0.045
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(5 + 10 / 12, "feet"),
  19142. default: true
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19148. {
  19149. front: {
  19150. height: math.unit(6 + 7 / 12, "feet"),
  19151. weight: math.unit(208, "lb"),
  19152. name: "Front",
  19153. image: {
  19154. source: "./media/characters/chaska/front.svg",
  19155. extra: 332 / 319,
  19156. bottom: 0.015
  19157. }
  19158. },
  19159. },
  19160. [
  19161. {
  19162. name: "Normal",
  19163. height: math.unit(6 + 7 / 12, "feet"),
  19164. default: true
  19165. },
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19170. {
  19171. front: {
  19172. height: math.unit(5 + 8 / 12, "feet"),
  19173. weight: math.unit(208, "lb"),
  19174. name: "Front",
  19175. image: {
  19176. source: "./media/characters/enuk/front.svg",
  19177. extra: 437 / 406,
  19178. bottom: 0.02
  19179. }
  19180. },
  19181. },
  19182. [
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(5 + 8 / 12, "feet"),
  19186. default: true
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(5 + 10 / 12, "feet"),
  19195. weight: math.unit(252, "lb"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/bruun/front.svg",
  19199. extra: 197 / 187,
  19200. bottom: 0.012
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(5 + 10 / 12, "feet"),
  19208. default: true
  19209. },
  19210. ]
  19211. ))
  19212. characterMakers.push(() => makeCharacter(
  19213. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19214. {
  19215. front: {
  19216. height: math.unit(6 + 10 / 12, "feet"),
  19217. weight: math.unit(255, "lb"),
  19218. name: "Front",
  19219. image: {
  19220. source: "./media/characters/alexeev/front.svg",
  19221. extra: 213 / 200,
  19222. bottom: 0.05
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(6 + 10 / 12, "feet"),
  19230. default: true
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(2 + 8 / 12, "feet"),
  19239. weight: math.unit(22, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/evelyn/front.svg",
  19243. extra: 208 / 180
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(2 + 8 / 12, "feet"),
  19251. default: true
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19257. {
  19258. front: {
  19259. height: math.unit(5 + 9 / 12, "feet"),
  19260. weight: math.unit(139, "lb"),
  19261. name: "Front",
  19262. image: {
  19263. source: "./media/characters/inca/front.svg",
  19264. extra: 294 / 291,
  19265. bottom: 0.03
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Normal",
  19272. height: math.unit(5 + 9 / 12, "feet"),
  19273. default: true
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19279. {
  19280. front: {
  19281. height: math.unit(5 + 1 / 12, "feet"),
  19282. weight: math.unit(84, "lb"),
  19283. name: "Front",
  19284. image: {
  19285. source: "./media/characters/magdalene/front.svg",
  19286. extra: 293 / 273
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(5 + 1 / 12, "feet"),
  19294. default: true
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19300. {
  19301. front: {
  19302. height: math.unit(6 + 3 / 12, "feet"),
  19303. weight: math.unit(185, "lb"),
  19304. name: "Front",
  19305. image: {
  19306. source: "./media/characters/mera/front.svg",
  19307. extra: 291 / 277,
  19308. bottom: 0.03
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(6 + 3 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(6 + 7 / 12, "feet"),
  19325. weight: math.unit(160, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/ceres/front.svg",
  19329. extra: 1023 / 950,
  19330. bottom: 0.027
  19331. }
  19332. },
  19333. back: {
  19334. height: math.unit(6 + 7 / 12, "feet"),
  19335. weight: math.unit(160, "lb"),
  19336. name: "Back",
  19337. image: {
  19338. source: "./media/characters/ceres/back.svg",
  19339. extra: 1023 / 950
  19340. }
  19341. },
  19342. },
  19343. [
  19344. {
  19345. name: "Normal",
  19346. height: math.unit(6 + 7 / 12, "feet"),
  19347. default: true
  19348. },
  19349. ]
  19350. ))
  19351. characterMakers.push(() => makeCharacter(
  19352. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19353. {
  19354. front: {
  19355. height: math.unit(5 + 10 / 12, "feet"),
  19356. weight: math.unit(150, "lb"),
  19357. name: "Front",
  19358. image: {
  19359. source: "./media/characters/kris/front.svg",
  19360. extra: 885 / 803,
  19361. bottom: 0.03
  19362. }
  19363. },
  19364. },
  19365. [
  19366. {
  19367. name: "Normal",
  19368. height: math.unit(5 + 10 / 12, "feet"),
  19369. default: true
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19375. {
  19376. front: {
  19377. height: math.unit(7, "feet"),
  19378. weight: math.unit(120, "kg"),
  19379. name: "Front",
  19380. image: {
  19381. source: "./media/characters/taluthus/front.svg",
  19382. extra: 903 / 833,
  19383. bottom: 0.015
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(7, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(300, "feet")
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(5 + 9 / 12, "feet"),
  19404. weight: math.unit(145, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/dawn/front.svg",
  19408. extra: 2094 / 2016,
  19409. bottom: 0.025
  19410. }
  19411. },
  19412. back: {
  19413. height: math.unit(5 + 9 / 12, "feet"),
  19414. weight: math.unit(160, "lb"),
  19415. name: "Back",
  19416. image: {
  19417. source: "./media/characters/dawn/back.svg",
  19418. extra: 2112 / 2080,
  19419. bottom: 0.005
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(6 + 7 / 12, "feet"),
  19427. default: true
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19433. {
  19434. anthro: {
  19435. height: math.unit(8 + 3 / 12, "feet"),
  19436. weight: math.unit(450, "lb"),
  19437. name: "Anthro",
  19438. image: {
  19439. source: "./media/characters/arador/anthro.svg",
  19440. extra: 1835 / 1718,
  19441. bottom: 0.025
  19442. }
  19443. },
  19444. feral: {
  19445. height: math.unit(4, "feet"),
  19446. weight: math.unit(200, "lb"),
  19447. name: "Feral",
  19448. image: {
  19449. source: "./media/characters/arador/feral.svg",
  19450. extra: 1683 / 1514,
  19451. bottom: 0.07
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(8 + 3 / 12, "feet")
  19459. },
  19460. {
  19461. name: "Macro",
  19462. height: math.unit(82.5, "feet"),
  19463. default: true
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(5 + 10 / 12, "feet"),
  19472. weight: math.unit(125, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/dharsi/front.svg",
  19476. extra: 716 / 630,
  19477. bottom: 0.035
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Nano",
  19484. height: math.unit(100, "nm")
  19485. },
  19486. {
  19487. name: "Micro",
  19488. height: math.unit(2, "inches")
  19489. },
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(5 + 10 / 12, "feet"),
  19493. default: true
  19494. },
  19495. {
  19496. name: "Macro",
  19497. height: math.unit(1000, "feet")
  19498. },
  19499. {
  19500. name: "Megamacro",
  19501. height: math.unit(10, "miles")
  19502. },
  19503. {
  19504. name: "Gigamacro",
  19505. height: math.unit(3000, "miles")
  19506. },
  19507. {
  19508. name: "Teramacro",
  19509. height: math.unit(500000, "miles")
  19510. },
  19511. {
  19512. name: "Teramacro+",
  19513. height: math.unit(30, "galaxies")
  19514. },
  19515. ]
  19516. ))
  19517. characterMakers.push(() => makeCharacter(
  19518. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19519. {
  19520. front: {
  19521. height: math.unit(6, "feet"),
  19522. weight: math.unit(150, "lb"),
  19523. name: "Front",
  19524. image: {
  19525. source: "./media/characters/deathy/front.svg",
  19526. extra: 1552 / 1463,
  19527. bottom: 0.025
  19528. }
  19529. },
  19530. side: {
  19531. height: math.unit(6, "feet"),
  19532. weight: math.unit(150, "lb"),
  19533. name: "Side",
  19534. image: {
  19535. source: "./media/characters/deathy/side.svg",
  19536. extra: 1604 / 1455,
  19537. bottom: 0.025
  19538. }
  19539. },
  19540. back: {
  19541. height: math.unit(6, "feet"),
  19542. weight: math.unit(150, "lb"),
  19543. name: "Back",
  19544. image: {
  19545. source: "./media/characters/deathy/back.svg",
  19546. extra: 1580 / 1463,
  19547. bottom: 0.005
  19548. }
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Micro",
  19554. height: math.unit(5, "millimeters")
  19555. },
  19556. {
  19557. name: "Normal",
  19558. height: math.unit(6 + 5 / 12, "feet"),
  19559. default: true
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19565. {
  19566. front: {
  19567. height: math.unit(16, "feet"),
  19568. weight: math.unit(4000, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/juniper/front.svg",
  19572. bottom: 0.04
  19573. }
  19574. },
  19575. },
  19576. [
  19577. {
  19578. name: "Normal",
  19579. height: math.unit(16, "feet"),
  19580. default: true
  19581. },
  19582. ]
  19583. ))
  19584. characterMakers.push(() => makeCharacter(
  19585. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19586. {
  19587. front: {
  19588. height: math.unit(6, "feet"),
  19589. weight: math.unit(150, "lb"),
  19590. name: "Front",
  19591. image: {
  19592. source: "./media/characters/hipster/front.svg",
  19593. extra: 1312 / 1209,
  19594. bottom: 0.025
  19595. }
  19596. },
  19597. back: {
  19598. height: math.unit(6, "feet"),
  19599. weight: math.unit(150, "lb"),
  19600. name: "Back",
  19601. image: {
  19602. source: "./media/characters/hipster/back.svg",
  19603. extra: 1281 / 1196,
  19604. bottom: 0.01
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Micro",
  19611. height: math.unit(1, "mm")
  19612. },
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(4, "inches"),
  19616. default: true
  19617. },
  19618. {
  19619. name: "Macro",
  19620. height: math.unit(500, "feet")
  19621. },
  19622. {
  19623. name: "Megamacro",
  19624. height: math.unit(1000, "miles")
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(6, "feet"),
  19633. weight: math.unit(150, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/tendirmuldr/front.svg",
  19637. extra: 1878 / 1772,
  19638. bottom: 0.015
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Megamacro",
  19645. height: math.unit(1500, "miles"),
  19646. default: true
  19647. },
  19648. ]
  19649. ))
  19650. characterMakers.push(() => makeCharacter(
  19651. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19652. {
  19653. front: {
  19654. height: math.unit(14, "feet"),
  19655. weight: math.unit(12000, "lb"),
  19656. name: "Front",
  19657. image: {
  19658. source: "./media/characters/mort/front.svg",
  19659. extra: 365 / 318,
  19660. bottom: 0.01
  19661. }
  19662. },
  19663. side: {
  19664. height: math.unit(14, "feet"),
  19665. weight: math.unit(12000, "lb"),
  19666. name: "Side",
  19667. image: {
  19668. source: "./media/characters/mort/side.svg",
  19669. extra: 365 / 318,
  19670. bottom: 0.052
  19671. },
  19672. default: true
  19673. },
  19674. back: {
  19675. height: math.unit(14, "feet"),
  19676. weight: math.unit(12000, "lb"),
  19677. name: "Back",
  19678. image: {
  19679. source: "./media/characters/mort/back.svg",
  19680. extra: 371 / 332,
  19681. bottom: 0.18
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(14, "feet"),
  19689. default: true
  19690. },
  19691. ]
  19692. ))
  19693. characterMakers.push(() => makeCharacter(
  19694. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19695. {
  19696. front: {
  19697. height: math.unit(8, "feet"),
  19698. weight: math.unit(1, "ton"),
  19699. name: "Front",
  19700. image: {
  19701. source: "./media/characters/lycoa/front.svg",
  19702. extra: 1875 / 1789,
  19703. bottom: 0.022
  19704. }
  19705. },
  19706. back: {
  19707. height: math.unit(8, "feet"),
  19708. weight: math.unit(1, "ton"),
  19709. name: "Back",
  19710. image: {
  19711. source: "./media/characters/lycoa/back.svg",
  19712. extra: 1835 / 1781,
  19713. bottom: 0.03
  19714. }
  19715. },
  19716. head: {
  19717. height: math.unit(2.1, "feet"),
  19718. name: "Head",
  19719. image: {
  19720. source: "./media/characters/lycoa/head.svg"
  19721. }
  19722. },
  19723. tailmaw: {
  19724. height: math.unit(1.9, "feet"),
  19725. name: "Tailmaw",
  19726. image: {
  19727. source: "./media/characters/lycoa/tailmaw.svg"
  19728. }
  19729. },
  19730. tentacles: {
  19731. height: math.unit(2.1, "feet"),
  19732. name: "Tentacles",
  19733. image: {
  19734. source: "./media/characters/lycoa/tentacles.svg"
  19735. }
  19736. },
  19737. dick: {
  19738. height: math.unit(1.73, "feet"),
  19739. name: "Dick",
  19740. image: {
  19741. source: "./media/characters/lycoa/dick.svg"
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(8, "feet"),
  19749. default: true
  19750. },
  19751. {
  19752. name: "Macro",
  19753. height: math.unit(30, "feet")
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19759. {
  19760. front: {
  19761. height: math.unit(4 + 2 / 12, "feet"),
  19762. weight: math.unit(70, "lb"),
  19763. name: "Front",
  19764. image: {
  19765. source: "./media/characters/naldara/front.svg",
  19766. extra: 841 / 720,
  19767. bottom: 0.04
  19768. }
  19769. },
  19770. naga: {
  19771. height: math.unit(23, "feet"),
  19772. weight: math.unit(15000, "kg"),
  19773. name: "Naga",
  19774. image: {
  19775. source: "./media/characters/naldara/naga.svg",
  19776. extra: 3290 / 2959,
  19777. bottom: 124 / 3432
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(4 + 2 / 12, "feet"),
  19785. default: true
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(13 + 7 / 12, "feet"),
  19794. weight: math.unit(1500, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/briar/front.svg",
  19798. extra: 626 / 596,
  19799. bottom: 0.08
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(13 + 7 / 12, "feet"),
  19807. default: true
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19813. {
  19814. side: {
  19815. height: math.unit(10, "feet"),
  19816. weight: math.unit(500, "lb"),
  19817. name: "Side",
  19818. image: {
  19819. source: "./media/characters/vanguard/side.svg",
  19820. extra: 502 / 425,
  19821. bottom: 0.087
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(10, "feet"),
  19829. default: true
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(7.5, "feet"),
  19838. weight: math.unit(2, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/artemis/front.svg",
  19842. extra: 1192 / 1075,
  19843. bottom: 0.07
  19844. }
  19845. },
  19846. frontNsfw: {
  19847. height: math.unit(7.5, "feet"),
  19848. weight: math.unit(2, "lb"),
  19849. name: "Front (NSFW)",
  19850. image: {
  19851. source: "./media/characters/artemis/front-nsfw.svg",
  19852. extra: 1192 / 1075,
  19853. bottom: 0.07
  19854. }
  19855. },
  19856. frontNsfwer: {
  19857. height: math.unit(7.5, "feet"),
  19858. weight: math.unit(2, "lb"),
  19859. name: "Front (NSFW-er)",
  19860. image: {
  19861. source: "./media/characters/artemis/front-nsfwer.svg",
  19862. extra: 1192 / 1075,
  19863. bottom: 0.07
  19864. }
  19865. },
  19866. side: {
  19867. height: math.unit(7.5, "feet"),
  19868. weight: math.unit(2, "lb"),
  19869. name: "Side",
  19870. image: {
  19871. source: "./media/characters/artemis/side.svg",
  19872. extra: 1192 / 1075,
  19873. bottom: 0.07
  19874. }
  19875. },
  19876. sideNsfw: {
  19877. height: math.unit(7.5, "feet"),
  19878. weight: math.unit(2, "lb"),
  19879. name: "Side (NSFW)",
  19880. image: {
  19881. source: "./media/characters/artemis/side-nsfw.svg",
  19882. extra: 1192 / 1075,
  19883. bottom: 0.07
  19884. }
  19885. },
  19886. sideNsfwer: {
  19887. height: math.unit(7.5, "feet"),
  19888. weight: math.unit(2, "lb"),
  19889. name: "Side (NSFW-er)",
  19890. image: {
  19891. source: "./media/characters/artemis/side-nsfwer.svg",
  19892. extra: 1192 / 1075,
  19893. bottom: 0.07
  19894. }
  19895. },
  19896. maw: {
  19897. height: math.unit(1.1, "feet"),
  19898. name: "Maw",
  19899. image: {
  19900. source: "./media/characters/artemis/maw.svg"
  19901. }
  19902. },
  19903. stomach: {
  19904. height: math.unit(0.95, "feet"),
  19905. name: "Stomach",
  19906. image: {
  19907. source: "./media/characters/artemis/stomach.svg"
  19908. }
  19909. },
  19910. dickCanine: {
  19911. height: math.unit(1, "feet"),
  19912. name: "Dick (Canine)",
  19913. image: {
  19914. source: "./media/characters/artemis/dick-canine.svg"
  19915. }
  19916. },
  19917. dickEquine: {
  19918. height: math.unit(0.85, "feet"),
  19919. name: "Dick (Equine)",
  19920. image: {
  19921. source: "./media/characters/artemis/dick-equine.svg"
  19922. }
  19923. },
  19924. dickExotic: {
  19925. height: math.unit(0.85, "feet"),
  19926. name: "Dick (Exotic)",
  19927. image: {
  19928. source: "./media/characters/artemis/dick-exotic.svg"
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(7.5, "feet"),
  19936. default: true
  19937. },
  19938. {
  19939. name: "Enlarged",
  19940. height: math.unit(12, "feet")
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19946. {
  19947. front: {
  19948. height: math.unit(5 + 3 / 12, "feet"),
  19949. weight: math.unit(160, "lb"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/kira/front.svg",
  19953. extra: 906 / 786,
  19954. bottom: 0.01
  19955. }
  19956. },
  19957. back: {
  19958. height: math.unit(5 + 3 / 12, "feet"),
  19959. weight: math.unit(160, "lb"),
  19960. name: "Back",
  19961. image: {
  19962. source: "./media/characters/kira/back.svg",
  19963. extra: 882 / 757,
  19964. bottom: 0.005
  19965. }
  19966. },
  19967. frontDressed: {
  19968. height: math.unit(5 + 3 / 12, "feet"),
  19969. weight: math.unit(160, "lb"),
  19970. name: "Front (Dressed)",
  19971. image: {
  19972. source: "./media/characters/kira/front-dressed.svg",
  19973. extra: 906 / 786,
  19974. bottom: 0.01
  19975. }
  19976. },
  19977. beans: {
  19978. height: math.unit(0.92, "feet"),
  19979. name: "Beans",
  19980. image: {
  19981. source: "./media/characters/kira/beans.svg"
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(5 + 3 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(5 + 4 / 12, "feet"),
  19998. weight: math.unit(145, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/scramble/front.svg",
  20002. extra: 763 / 727,
  20003. bottom: 0.05
  20004. }
  20005. },
  20006. back: {
  20007. height: math.unit(5 + 4 / 12, "feet"),
  20008. weight: math.unit(145, "lb"),
  20009. name: "Back",
  20010. image: {
  20011. source: "./media/characters/scramble/back.svg",
  20012. extra: 826 / 737,
  20013. bottom: 0.002
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(5 + 4 / 12, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20027. {
  20028. side: {
  20029. height: math.unit(6 + 2 / 12, "feet"),
  20030. weight: math.unit(190, "lb"),
  20031. name: "Side",
  20032. image: {
  20033. source: "./media/characters/biscuit/side.svg",
  20034. extra: 858 / 791,
  20035. bottom: 0.044
  20036. }
  20037. },
  20038. },
  20039. [
  20040. {
  20041. name: "Normal",
  20042. height: math.unit(6 + 2 / 12, "feet"),
  20043. default: true
  20044. },
  20045. ]
  20046. ))
  20047. characterMakers.push(() => makeCharacter(
  20048. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20049. {
  20050. front: {
  20051. height: math.unit(5 + 2 / 12, "feet"),
  20052. weight: math.unit(120, "lb"),
  20053. name: "Front",
  20054. image: {
  20055. source: "./media/characters/poffin/front.svg",
  20056. extra: 786 / 680,
  20057. bottom: 0.005
  20058. }
  20059. },
  20060. },
  20061. [
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(5 + 2 / 12, "feet"),
  20065. default: true
  20066. },
  20067. ]
  20068. ))
  20069. characterMakers.push(() => makeCharacter(
  20070. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20071. {
  20072. front: {
  20073. height: math.unit(6 + 3 / 12, "feet"),
  20074. weight: math.unit(519, "lb"),
  20075. name: "Front",
  20076. image: {
  20077. source: "./media/characters/dhari/front.svg",
  20078. extra: 1048 / 946,
  20079. bottom: 0.015
  20080. }
  20081. },
  20082. back: {
  20083. height: math.unit(6 + 3 / 12, "feet"),
  20084. weight: math.unit(519, "lb"),
  20085. name: "Back",
  20086. image: {
  20087. source: "./media/characters/dhari/back.svg",
  20088. extra: 1048 / 931,
  20089. bottom: 0.005
  20090. }
  20091. },
  20092. frontDressed: {
  20093. height: math.unit(6 + 3 / 12, "feet"),
  20094. weight: math.unit(519, "lb"),
  20095. name: "Front (Dressed)",
  20096. image: {
  20097. source: "./media/characters/dhari/front-dressed.svg",
  20098. extra: 1713 / 1546,
  20099. bottom: 0.02
  20100. }
  20101. },
  20102. backDressed: {
  20103. height: math.unit(6 + 3 / 12, "feet"),
  20104. weight: math.unit(519, "lb"),
  20105. name: "Back (Dressed)",
  20106. image: {
  20107. source: "./media/characters/dhari/back-dressed.svg",
  20108. extra: 1699 / 1537,
  20109. bottom: 0.01
  20110. }
  20111. },
  20112. maw: {
  20113. height: math.unit(0.95, "feet"),
  20114. name: "Maw",
  20115. image: {
  20116. source: "./media/characters/dhari/maw.svg"
  20117. }
  20118. },
  20119. wereFront: {
  20120. height: math.unit(12 + 8 / 12, "feet"),
  20121. weight: math.unit(4000, "lb"),
  20122. name: "Front (Were)",
  20123. image: {
  20124. source: "./media/characters/dhari/were-front.svg",
  20125. extra: 1065 / 969,
  20126. bottom: 0.015
  20127. }
  20128. },
  20129. wereBack: {
  20130. height: math.unit(12 + 8 / 12, "feet"),
  20131. weight: math.unit(4000, "lb"),
  20132. name: "Back (Were)",
  20133. image: {
  20134. source: "./media/characters/dhari/were-back.svg",
  20135. extra: 1065 / 969,
  20136. bottom: 0.012
  20137. }
  20138. },
  20139. wereMaw: {
  20140. height: math.unit(0.625, "meters"),
  20141. name: "Maw (Were)",
  20142. image: {
  20143. source: "./media/characters/dhari/were-maw.svg"
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(6 + 3 / 12, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20157. {
  20158. anthro: {
  20159. height: math.unit(5 + 7 / 12, "feet"),
  20160. weight: math.unit(175, "lb"),
  20161. name: "Anthro",
  20162. image: {
  20163. source: "./media/characters/rena-dyne/anthro.svg",
  20164. extra: 1849 / 1785,
  20165. bottom: 0.005
  20166. }
  20167. },
  20168. taur: {
  20169. height: math.unit(15 + 6 / 12, "feet"),
  20170. weight: math.unit(8000, "lb"),
  20171. name: "Taur",
  20172. image: {
  20173. source: "./media/characters/rena-dyne/taur.svg",
  20174. extra: 2315 / 2234,
  20175. bottom: 0.033
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Normal",
  20182. height: math.unit(5 + 7 / 12, "feet"),
  20183. default: true
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20189. {
  20190. front: {
  20191. height: math.unit(8, "feet"),
  20192. weight: math.unit(600, "lb"),
  20193. name: "Front",
  20194. image: {
  20195. source: "./media/characters/weremeep/front.svg",
  20196. extra: 967 / 862,
  20197. bottom: 0.01
  20198. }
  20199. },
  20200. },
  20201. [
  20202. {
  20203. name: "Normal",
  20204. height: math.unit(8, "feet"),
  20205. default: true
  20206. },
  20207. {
  20208. name: "Lorg",
  20209. height: math.unit(12, "feet")
  20210. },
  20211. {
  20212. name: "Oh Lawd She Comin'",
  20213. height: math.unit(20, "feet")
  20214. },
  20215. ]
  20216. ))
  20217. characterMakers.push(() => makeCharacter(
  20218. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20219. {
  20220. front: {
  20221. height: math.unit(4, "feet"),
  20222. weight: math.unit(90, "lb"),
  20223. name: "Front",
  20224. image: {
  20225. source: "./media/characters/reza/front.svg",
  20226. extra: 1183 / 1111,
  20227. bottom: 0.017
  20228. }
  20229. },
  20230. back: {
  20231. height: math.unit(4, "feet"),
  20232. weight: math.unit(90, "lb"),
  20233. name: "Back",
  20234. image: {
  20235. source: "./media/characters/reza/back.svg",
  20236. extra: 1183 / 1111,
  20237. bottom: 0.01
  20238. }
  20239. },
  20240. drake: {
  20241. height: math.unit(30, "feet"),
  20242. weight: math.unit(246960, "lb"),
  20243. name: "Drake",
  20244. image: {
  20245. source: "./media/characters/reza/drake.svg",
  20246. extra: 2350 / 2024,
  20247. bottom: 60.7 / 2403
  20248. }
  20249. },
  20250. },
  20251. [
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(4, "feet"),
  20255. default: true
  20256. },
  20257. ]
  20258. ))
  20259. characterMakers.push(() => makeCharacter(
  20260. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20261. {
  20262. side: {
  20263. height: math.unit(15, "feet"),
  20264. weight: math.unit(14, "tons"),
  20265. name: "Side",
  20266. image: {
  20267. source: "./media/characters/athea/side.svg",
  20268. extra: 960 / 540,
  20269. bottom: 0.003
  20270. }
  20271. },
  20272. sitting: {
  20273. height: math.unit(6 * 2.85, "feet"),
  20274. weight: math.unit(14, "tons"),
  20275. name: "Sitting",
  20276. image: {
  20277. source: "./media/characters/athea/sitting.svg",
  20278. extra: 621 / 581,
  20279. bottom: 0.075
  20280. }
  20281. },
  20282. maw: {
  20283. height: math.unit(7.59498031496063, "feet"),
  20284. name: "Maw",
  20285. image: {
  20286. source: "./media/characters/athea/maw.svg"
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Lap Cat",
  20293. height: math.unit(2.5, "feet")
  20294. },
  20295. {
  20296. name: "Minimacro",
  20297. height: math.unit(15, "feet"),
  20298. default: true
  20299. },
  20300. {
  20301. name: "Macro",
  20302. height: math.unit(120, "feet")
  20303. },
  20304. {
  20305. name: "Macro+",
  20306. height: math.unit(640, "feet")
  20307. },
  20308. {
  20309. name: "Colossus",
  20310. height: math.unit(2.2, "miles")
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(8 + 8 / 12, "feet"),
  20319. weight: math.unit(130, "kg"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/seroko/front.svg",
  20323. extra: 1385 / 1280,
  20324. bottom: 0.025
  20325. }
  20326. },
  20327. back: {
  20328. height: math.unit(8 + 8 / 12, "feet"),
  20329. weight: math.unit(130, "kg"),
  20330. name: "Back",
  20331. image: {
  20332. source: "./media/characters/seroko/back.svg",
  20333. extra: 1369 / 1238,
  20334. bottom: 0.018
  20335. }
  20336. },
  20337. frontDressed: {
  20338. height: math.unit(8 + 8 / 12, "feet"),
  20339. weight: math.unit(130, "kg"),
  20340. name: "Front (Dressed)",
  20341. image: {
  20342. source: "./media/characters/seroko/front-dressed.svg",
  20343. extra: 1366 / 1275,
  20344. bottom: 0.03
  20345. }
  20346. },
  20347. },
  20348. [
  20349. {
  20350. name: "Normal",
  20351. height: math.unit(8 + 8 / 12, "feet"),
  20352. default: true
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20358. {
  20359. front: {
  20360. height: math.unit(5.5, "feet"),
  20361. weight: math.unit(160, "lb"),
  20362. name: "Front",
  20363. image: {
  20364. source: "./media/characters/quatzi/front.svg",
  20365. extra: 2346 / 2242,
  20366. bottom: 0.015
  20367. }
  20368. },
  20369. },
  20370. [
  20371. {
  20372. name: "Normal",
  20373. height: math.unit(5.5, "feet"),
  20374. default: true
  20375. },
  20376. {
  20377. name: "Big",
  20378. height: math.unit(7.7, "feet")
  20379. },
  20380. ]
  20381. ))
  20382. characterMakers.push(() => makeCharacter(
  20383. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20384. {
  20385. front: {
  20386. height: math.unit(5 + 11 / 12, "feet"),
  20387. weight: math.unit(180, "lb"),
  20388. name: "Front",
  20389. image: {
  20390. source: "./media/characters/sen/front.svg",
  20391. extra: 1321 / 1254,
  20392. bottom: 0.015
  20393. }
  20394. },
  20395. side: {
  20396. height: math.unit(5 + 11 / 12, "feet"),
  20397. weight: math.unit(180, "lb"),
  20398. name: "Side",
  20399. image: {
  20400. source: "./media/characters/sen/side.svg",
  20401. extra: 1321 / 1254,
  20402. bottom: 0.007
  20403. }
  20404. },
  20405. back: {
  20406. height: math.unit(5 + 11 / 12, "feet"),
  20407. weight: math.unit(180, "lb"),
  20408. name: "Back",
  20409. image: {
  20410. source: "./media/characters/sen/back.svg",
  20411. extra: 1321 / 1254
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(5 + 11 / 12, "feet"),
  20419. default: true
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20425. {
  20426. front: {
  20427. height: math.unit(166.6, "cm"),
  20428. weight: math.unit(66.6, "kg"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/fruity/front.svg",
  20432. extra: 1510 / 1386,
  20433. bottom: 0.04
  20434. }
  20435. },
  20436. back: {
  20437. height: math.unit(166.6, "cm"),
  20438. weight: math.unit(66.6, "lb"),
  20439. name: "Back",
  20440. image: {
  20441. source: "./media/characters/fruity/back.svg",
  20442. extra: 1563 / 1435,
  20443. bottom: 0.005
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(166.6, "cm"),
  20451. default: true
  20452. },
  20453. {
  20454. name: "Demonic",
  20455. height: math.unit(166.6, "feet")
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20461. {
  20462. side: {
  20463. height: math.unit(10, "feet"),
  20464. weight: math.unit(500, "lb"),
  20465. name: "Side",
  20466. image: {
  20467. source: "./media/characters/zost/side.svg",
  20468. extra: 966 / 880,
  20469. bottom: 0.075
  20470. }
  20471. },
  20472. mawFront: {
  20473. height: math.unit(1.08, "meters"),
  20474. name: "Maw (Front)",
  20475. image: {
  20476. source: "./media/characters/zost/maw-front.svg"
  20477. }
  20478. },
  20479. mawSide: {
  20480. height: math.unit(2.66, "feet"),
  20481. name: "Maw (Side)",
  20482. image: {
  20483. source: "./media/characters/zost/maw-side.svg"
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Normal",
  20490. height: math.unit(10, "feet"),
  20491. default: true
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20497. {
  20498. front: {
  20499. height: math.unit(5 + 4 / 12, "feet"),
  20500. weight: math.unit(120, "lb"),
  20501. name: "Front",
  20502. image: {
  20503. source: "./media/characters/luci/front.svg",
  20504. extra: 1985 / 1884,
  20505. bottom: 0.04
  20506. }
  20507. },
  20508. back: {
  20509. height: math.unit(5 + 4 / 12, "feet"),
  20510. weight: math.unit(120, "lb"),
  20511. name: "Back",
  20512. image: {
  20513. source: "./media/characters/luci/back.svg",
  20514. extra: 1892 / 1791,
  20515. bottom: 0.002
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(5 + 4 / 12, "feet"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(1500, "feet"),
  20532. weight: math.unit(3.8e6, "tons"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/2th/front.svg",
  20536. extra: 3489 / 3350,
  20537. bottom: 0.1
  20538. }
  20539. },
  20540. foot: {
  20541. height: math.unit(461, "feet"),
  20542. name: "Foot",
  20543. image: {
  20544. source: "./media/characters/2th/foot.svg"
  20545. }
  20546. },
  20547. },
  20548. [
  20549. {
  20550. name: "\"Micro\"",
  20551. height: math.unit(15 + 7 / 12, "feet")
  20552. },
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(1500, "feet"),
  20556. default: true
  20557. },
  20558. {
  20559. name: "Macro",
  20560. height: math.unit(5000, "feet")
  20561. },
  20562. {
  20563. name: "Megamacro",
  20564. height: math.unit(15, "miles")
  20565. },
  20566. {
  20567. name: "Gigamacro",
  20568. height: math.unit(4000, "miles")
  20569. },
  20570. {
  20571. name: "Galactic",
  20572. height: math.unit(50, "AU")
  20573. },
  20574. ]
  20575. ))
  20576. characterMakers.push(() => makeCharacter(
  20577. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20578. {
  20579. front: {
  20580. height: math.unit(5 + 6 / 12, "feet"),
  20581. weight: math.unit(220, "lb"),
  20582. name: "Front",
  20583. image: {
  20584. source: "./media/characters/amethyst/front.svg",
  20585. extra: 2078 / 2040,
  20586. bottom: 0.045
  20587. }
  20588. },
  20589. back: {
  20590. height: math.unit(5 + 6 / 12, "feet"),
  20591. weight: math.unit(220, "lb"),
  20592. name: "Back",
  20593. image: {
  20594. source: "./media/characters/amethyst/back.svg",
  20595. extra: 2021 / 1989,
  20596. bottom: 0.02
  20597. }
  20598. },
  20599. },
  20600. [
  20601. {
  20602. name: "Normal",
  20603. height: math.unit(5 + 6 / 12, "feet"),
  20604. default: true
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(4 + 11 / 12, "feet"),
  20613. weight: math.unit(120, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/yumi-akiyama/front.svg",
  20617. extra: 1327 / 1235,
  20618. bottom: 0.02
  20619. }
  20620. },
  20621. back: {
  20622. height: math.unit(4 + 11 / 12, "feet"),
  20623. weight: math.unit(120, "lb"),
  20624. name: "Back",
  20625. image: {
  20626. source: "./media/characters/yumi-akiyama/back.svg",
  20627. extra: 1287 / 1245,
  20628. bottom: 0.002
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Galactic",
  20635. height: math.unit(50, "galaxies"),
  20636. default: true
  20637. },
  20638. {
  20639. name: "Universal",
  20640. height: math.unit(100, "universes")
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(8, "feet"),
  20649. weight: math.unit(500, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/rifter-yrmori/front.svg",
  20653. extra: 1180 / 1125,
  20654. bottom: 0.02
  20655. }
  20656. },
  20657. back: {
  20658. height: math.unit(8, "feet"),
  20659. weight: math.unit(500, "lb"),
  20660. name: "Back",
  20661. image: {
  20662. source: "./media/characters/rifter-yrmori/back.svg",
  20663. extra: 1190 / 1145,
  20664. bottom: 0.001
  20665. }
  20666. },
  20667. wings: {
  20668. height: math.unit(7.75, "feet"),
  20669. weight: math.unit(500, "lb"),
  20670. name: "Wings",
  20671. image: {
  20672. source: "./media/characters/rifter-yrmori/wings.svg",
  20673. extra: 1357 / 1285
  20674. }
  20675. },
  20676. maw: {
  20677. height: math.unit(0.8, "feet"),
  20678. name: "Maw",
  20679. image: {
  20680. source: "./media/characters/rifter-yrmori/maw.svg"
  20681. }
  20682. },
  20683. mawfront: {
  20684. height: math.unit(1.45, "feet"),
  20685. name: "Maw (Front)",
  20686. image: {
  20687. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20688. }
  20689. },
  20690. },
  20691. [
  20692. {
  20693. name: "Normal",
  20694. height: math.unit(8, "feet"),
  20695. default: true
  20696. },
  20697. {
  20698. name: "Macro",
  20699. height: math.unit(42, "meters")
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20705. {
  20706. were: {
  20707. height: math.unit(25 + 6 / 12, "feet"),
  20708. weight: math.unit(10000, "lb"),
  20709. name: "Were",
  20710. image: {
  20711. source: "./media/characters/tahajin/were.svg",
  20712. extra: 801 / 770,
  20713. bottom: 0.042
  20714. }
  20715. },
  20716. aquatic: {
  20717. height: math.unit(6 + 4 / 12, "feet"),
  20718. weight: math.unit(160, "lb"),
  20719. name: "Aquatic",
  20720. image: {
  20721. source: "./media/characters/tahajin/aquatic.svg",
  20722. extra: 572 / 542,
  20723. bottom: 0.04
  20724. }
  20725. },
  20726. chow: {
  20727. height: math.unit(8 + 11 / 12, "feet"),
  20728. weight: math.unit(450, "lb"),
  20729. name: "Chow",
  20730. image: {
  20731. source: "./media/characters/tahajin/chow.svg",
  20732. extra: 660 / 640,
  20733. bottom: 0.015
  20734. }
  20735. },
  20736. demiNaga: {
  20737. height: math.unit(6 + 8 / 12, "feet"),
  20738. weight: math.unit(300, "lb"),
  20739. name: "Demi Naga",
  20740. image: {
  20741. source: "./media/characters/tahajin/demi-naga.svg",
  20742. extra: 643 / 615,
  20743. bottom: 0.1
  20744. }
  20745. },
  20746. data: {
  20747. height: math.unit(5, "inches"),
  20748. weight: math.unit(0.1, "lb"),
  20749. name: "Data",
  20750. image: {
  20751. source: "./media/characters/tahajin/data.svg"
  20752. }
  20753. },
  20754. fluu: {
  20755. height: math.unit(5 + 7 / 12, "feet"),
  20756. weight: math.unit(140, "lb"),
  20757. name: "Fluu",
  20758. image: {
  20759. source: "./media/characters/tahajin/fluu.svg",
  20760. extra: 628 / 592,
  20761. bottom: 0.02
  20762. }
  20763. },
  20764. starWarrior: {
  20765. height: math.unit(4 + 5 / 12, "feet"),
  20766. weight: math.unit(50, "lb"),
  20767. name: "Star Warrior",
  20768. image: {
  20769. source: "./media/characters/tahajin/star-warrior.svg"
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Normal",
  20776. height: math.unit(25 + 6 / 12, "feet"),
  20777. default: true
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20783. {
  20784. front: {
  20785. height: math.unit(8, "feet"),
  20786. weight: math.unit(350, "lb"),
  20787. name: "Front",
  20788. image: {
  20789. source: "./media/characters/gabira/front.svg",
  20790. extra: 608 / 580,
  20791. bottom: 0.03
  20792. }
  20793. },
  20794. back: {
  20795. height: math.unit(8, "feet"),
  20796. weight: math.unit(350, "lb"),
  20797. name: "Back",
  20798. image: {
  20799. source: "./media/characters/gabira/back.svg",
  20800. extra: 608 / 580,
  20801. bottom: 0.03
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(8, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(5 + 3 / 12, "feet"),
  20818. weight: math.unit(137, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/sasha-katraine/front.svg",
  20822. bottom: 0.045
  20823. }
  20824. },
  20825. },
  20826. [
  20827. {
  20828. name: "Micro",
  20829. height: math.unit(5, "inches")
  20830. },
  20831. {
  20832. name: "Normal",
  20833. height: math.unit(5 + 3 / 12, "feet"),
  20834. default: true
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20840. {
  20841. side: {
  20842. height: math.unit(4, "inches"),
  20843. weight: math.unit(200, "grams"),
  20844. name: "Side",
  20845. image: {
  20846. source: "./media/characters/der/side.svg",
  20847. extra: 719 / 400,
  20848. bottom: 30.6 / 749.9187
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Micro",
  20855. height: math.unit(4, "inches"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20862. {
  20863. side: {
  20864. height: math.unit(30, "meters"),
  20865. weight: math.unit(700, "tonnes"),
  20866. name: "Side",
  20867. image: {
  20868. source: "./media/characters/fixerdragon/side.svg",
  20869. extra: (1293.0514 - 116.03) / 1106.86,
  20870. bottom: 116.03 / 1293.0514
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Planck",
  20877. height: math.unit(1.6e-35, "meters")
  20878. },
  20879. {
  20880. name: "Micro",
  20881. height: math.unit(0.4, "meters")
  20882. },
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(30, "meters"),
  20886. default: true
  20887. },
  20888. {
  20889. name: "Megamacro",
  20890. height: math.unit(1.2, "megameters")
  20891. },
  20892. {
  20893. name: "Teramacro",
  20894. height: math.unit(130, "terameters")
  20895. },
  20896. {
  20897. name: "Yottamacro",
  20898. height: math.unit(6200, "yottameters")
  20899. },
  20900. ]
  20901. ));
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20904. {
  20905. front: {
  20906. height: math.unit(8, "feet"),
  20907. weight: math.unit(250, "lb"),
  20908. name: "Front",
  20909. image: {
  20910. source: "./media/characters/kite/front.svg",
  20911. extra: 2796 / 2659,
  20912. bottom: 0.002
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(8, "feet"),
  20920. default: true
  20921. },
  20922. {
  20923. name: "Macro",
  20924. height: math.unit(360, "feet")
  20925. },
  20926. {
  20927. name: "Megamacro",
  20928. height: math.unit(1500, "feet")
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(5 + 10 / 12, "feet"),
  20937. weight: math.unit(150, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/poojawa-vynar/front.svg",
  20941. extra: (1506.1547 - 55) / 1356.6,
  20942. bottom: 55 / 1506.1547
  20943. }
  20944. },
  20945. frontTailless: {
  20946. height: math.unit(5 + 10 / 12, "feet"),
  20947. weight: math.unit(150, "lb"),
  20948. name: "Front (Tailless)",
  20949. image: {
  20950. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20951. extra: (1506.1547 - 55) / 1356.6,
  20952. bottom: 55 / 1506.1547
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(5 + 10 / 12, "feet"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(293, "meters"),
  20969. weight: math.unit(70400, "tons"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/violette/front.svg",
  20973. extra: 1227 / 1180,
  20974. bottom: 0.005
  20975. }
  20976. },
  20977. back: {
  20978. height: math.unit(293, "meters"),
  20979. weight: math.unit(70400, "tons"),
  20980. name: "Back",
  20981. image: {
  20982. source: "./media/characters/violette/back.svg",
  20983. extra: 1227 / 1180,
  20984. bottom: 0.005
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Macro",
  20991. height: math.unit(293, "meters"),
  20992. default: true
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20998. {
  20999. front: {
  21000. height: math.unit(1050, "feet"),
  21001. weight: math.unit(200000, "tons"),
  21002. name: "Front",
  21003. image: {
  21004. source: "./media/characters/alessandra/front.svg",
  21005. extra: 960 / 912,
  21006. bottom: 0.06
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "Macro",
  21013. height: math.unit(1050, "feet")
  21014. },
  21015. {
  21016. name: "Macro+",
  21017. height: math.unit(900, "meters"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21024. {
  21025. front: {
  21026. height: math.unit(5, "feet"),
  21027. weight: math.unit(187, "lb"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/person/front.svg",
  21031. extra: 3087 / 2945,
  21032. bottom: 91 / 3181
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Micro",
  21039. height: math.unit(3, "inches")
  21040. },
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(5, "feet"),
  21044. default: true
  21045. },
  21046. {
  21047. name: "Macro",
  21048. height: math.unit(90, "feet")
  21049. },
  21050. {
  21051. name: "Max Size",
  21052. height: math.unit(280, "feet")
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(4.5, "meters"),
  21061. weight: math.unit(3200, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/ty/front.svg",
  21065. extra: 1038 / 960,
  21066. bottom: 31.156 / 1068
  21067. }
  21068. },
  21069. back: {
  21070. height: math.unit(4.5, "meters"),
  21071. weight: math.unit(3200, "lb"),
  21072. name: "Back",
  21073. image: {
  21074. source: "./media/characters/ty/back.svg",
  21075. extra: 1044 / 966,
  21076. bottom: 7.48 / 1049
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Normal",
  21083. height: math.unit(4.5, "meters"),
  21084. default: true
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(5 + 4 / 12, "feet"),
  21093. weight: math.unit(115, "lb"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/rocky/front.svg",
  21097. extra: 1012 / 975,
  21098. bottom: 54 / 1066
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(5 + 4 / 12, "feet"),
  21106. default: true
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21112. {
  21113. upright: {
  21114. height: math.unit(6, "meters"),
  21115. weight: math.unit(4000, "kg"),
  21116. name: "Upright",
  21117. image: {
  21118. source: "./media/characters/ruin/upright.svg",
  21119. extra: 668 / 661,
  21120. bottom: 42 / 799.8396
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(6, "meters"),
  21128. default: true
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(5, "feet"),
  21137. weight: math.unit(106, "lb"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/robin/front.svg",
  21141. extra: 862 / 799,
  21142. bottom: 42.4 / 914.8856
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Normal",
  21149. height: math.unit(5, "feet"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21156. {
  21157. side: {
  21158. height: math.unit(3, "feet"),
  21159. weight: math.unit(225, "lb"),
  21160. name: "Side",
  21161. image: {
  21162. source: "./media/characters/saian/side.svg",
  21163. extra: 566 / 356,
  21164. bottom: 79.7 / 643
  21165. }
  21166. },
  21167. maw: {
  21168. height: math.unit(2.85, "feet"),
  21169. name: "Maw",
  21170. image: {
  21171. source: "./media/characters/saian/maw.svg"
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Normal",
  21178. height: math.unit(3, "feet"),
  21179. default: true
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21185. {
  21186. side: {
  21187. height: math.unit(8, "feet"),
  21188. weight: math.unit(300, "lb"),
  21189. name: "Side",
  21190. image: {
  21191. source: "./media/characters/equus-silvermane/side.svg",
  21192. extra: 2176 / 2050,
  21193. bottom: 65.7 / 2245
  21194. }
  21195. },
  21196. front: {
  21197. height: math.unit(8, "feet"),
  21198. weight: math.unit(300, "lb"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/equus-silvermane/front.svg",
  21202. extra: 4633 / 4400,
  21203. bottom: 71.3 / 4706.915
  21204. }
  21205. },
  21206. sideStepping: {
  21207. height: math.unit(8, "feet"),
  21208. weight: math.unit(300, "lb"),
  21209. name: "Side (Stepping)",
  21210. image: {
  21211. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21212. extra: 1968 / 1860,
  21213. bottom: 16.4 / 1989
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(8, "feet")
  21221. },
  21222. {
  21223. name: "Minimacro",
  21224. height: math.unit(75, "feet"),
  21225. default: true
  21226. },
  21227. {
  21228. name: "Macro",
  21229. height: math.unit(150, "feet")
  21230. },
  21231. {
  21232. name: "Macro+",
  21233. height: math.unit(1000, "feet")
  21234. },
  21235. {
  21236. name: "Megamacro",
  21237. height: math.unit(1, "mile")
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21243. {
  21244. side: {
  21245. height: math.unit(20, "feet"),
  21246. weight: math.unit(30000, "kg"),
  21247. name: "Side",
  21248. image: {
  21249. source: "./media/characters/windar/side.svg",
  21250. extra: 1491 / 1248,
  21251. bottom: 82.56 / 1568
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(20, "feet"),
  21259. default: true
  21260. },
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21265. {
  21266. side: {
  21267. height: math.unit(15.66, "feet"),
  21268. weight: math.unit(150, "lb"),
  21269. name: "Side",
  21270. image: {
  21271. source: "./media/characters/melody/side.svg",
  21272. extra: 1097 / 944,
  21273. bottom: 11.8 / 1109
  21274. }
  21275. },
  21276. sideOutfit: {
  21277. height: math.unit(15.66, "feet"),
  21278. weight: math.unit(150, "lb"),
  21279. name: "Side (Outfit)",
  21280. image: {
  21281. source: "./media/characters/melody/side-outfit.svg",
  21282. extra: 1097 / 944,
  21283. bottom: 11.8 / 1109
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Normal",
  21290. height: math.unit(15.66, "feet"),
  21291. default: true
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21297. {
  21298. front: {
  21299. height: math.unit(8, "feet"),
  21300. weight: math.unit(325, "lb"),
  21301. name: "Front",
  21302. image: {
  21303. source: "./media/characters/windera/front.svg",
  21304. extra: 3180 / 2845,
  21305. bottom: 178 / 3365
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(8, "feet"),
  21313. default: true
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21319. {
  21320. front: {
  21321. height: math.unit(28.75, "feet"),
  21322. weight: math.unit(2000, "kg"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/sonear/front.svg",
  21326. extra: 1041.1 / 964.9,
  21327. bottom: 53.7 / 1096.6
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(28.75, "feet"),
  21335. default: true
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21341. {
  21342. side: {
  21343. height: math.unit(25.5, "feet"),
  21344. weight: math.unit(23000, "kg"),
  21345. name: "Side",
  21346. image: {
  21347. source: "./media/characters/kanara/side.svg"
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(25.5, "feet"),
  21355. default: true
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21361. {
  21362. side: {
  21363. height: math.unit(10, "feet"),
  21364. weight: math.unit(1000, "kg"),
  21365. name: "Side",
  21366. image: {
  21367. source: "./media/characters/ereus/side.svg",
  21368. extra: 1157 / 959,
  21369. bottom: 153 / 1312.5
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(10, "feet"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21383. {
  21384. side: {
  21385. height: math.unit(4.5, "feet"),
  21386. weight: math.unit(500, "lb"),
  21387. name: "Side",
  21388. image: {
  21389. source: "./media/characters/e-ter/side.svg",
  21390. extra: 1550 / 1248,
  21391. bottom: 146 / 1694
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(4.5, "feet"),
  21399. default: true
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21405. {
  21406. side: {
  21407. height: math.unit(9.7, "feet"),
  21408. weight: math.unit(4000, "kg"),
  21409. name: "Side",
  21410. image: {
  21411. source: "./media/characters/yamie/side.svg"
  21412. }
  21413. },
  21414. },
  21415. [
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(9.7, "feet"),
  21419. default: true
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(50, "feet"),
  21428. weight: math.unit(50000, "kg"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/anders/front.svg",
  21432. extra: 570 / 539,
  21433. bottom: 14.7 / 586.7
  21434. }
  21435. },
  21436. },
  21437. [
  21438. {
  21439. name: "Large",
  21440. height: math.unit(50, "feet")
  21441. },
  21442. {
  21443. name: "Macro",
  21444. height: math.unit(2000, "feet"),
  21445. default: true
  21446. },
  21447. {
  21448. name: "Megamacro",
  21449. height: math.unit(12, "miles")
  21450. },
  21451. ]
  21452. ))
  21453. characterMakers.push(() => makeCharacter(
  21454. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21455. {
  21456. front: {
  21457. height: math.unit(7 + 2 / 12, "feet"),
  21458. weight: math.unit(300, "lb"),
  21459. name: "Front",
  21460. image: {
  21461. source: "./media/characters/reban/front.svg",
  21462. extra: 516 / 487,
  21463. bottom: 42.82 / 558.356
  21464. }
  21465. },
  21466. dick: {
  21467. height: math.unit(7 / 5, "feet"),
  21468. name: "Dick",
  21469. image: {
  21470. source: "./media/characters/reban/dick.svg"
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Natural Height",
  21477. height: math.unit(7 + 2 / 12, "feet")
  21478. },
  21479. {
  21480. name: "Macro",
  21481. height: math.unit(500, "feet"),
  21482. default: true
  21483. },
  21484. {
  21485. name: "Canon Height",
  21486. height: math.unit(50, "AU")
  21487. },
  21488. ]
  21489. ))
  21490. characterMakers.push(() => makeCharacter(
  21491. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21492. {
  21493. front: {
  21494. height: math.unit(6, "feet"),
  21495. weight: math.unit(150, "lb"),
  21496. name: "Front",
  21497. image: {
  21498. source: "./media/characters/terrance-keayes/front.svg",
  21499. extra: 1.005,
  21500. bottom: 151 / 1615
  21501. }
  21502. },
  21503. side: {
  21504. height: math.unit(6, "feet"),
  21505. weight: math.unit(150, "lb"),
  21506. name: "Side",
  21507. image: {
  21508. source: "./media/characters/terrance-keayes/side.svg",
  21509. extra: 1.005,
  21510. bottom: 129.4 / 1544
  21511. }
  21512. },
  21513. back: {
  21514. height: math.unit(6, "feet"),
  21515. weight: math.unit(150, "lb"),
  21516. name: "Back",
  21517. image: {
  21518. source: "./media/characters/terrance-keayes/back.svg",
  21519. extra: 1.005,
  21520. bottom: 58.4 / 1557.3
  21521. }
  21522. },
  21523. dick: {
  21524. height: math.unit(6 * 0.208, "feet"),
  21525. name: "Dick",
  21526. image: {
  21527. source: "./media/characters/terrance-keayes/dick.svg"
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Canon Height",
  21534. height: math.unit(35, "miles"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(6, "feet"),
  21544. weight: math.unit(150, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/ofelia/front.svg",
  21548. extra: 546 / 541,
  21549. bottom: 39 / 583
  21550. }
  21551. },
  21552. back: {
  21553. height: math.unit(6, "feet"),
  21554. weight: math.unit(150, "lb"),
  21555. name: "Back",
  21556. image: {
  21557. source: "./media/characters/ofelia/back.svg",
  21558. extra: 564 / 559.5,
  21559. bottom: 8.69 / 573.02
  21560. }
  21561. },
  21562. maw: {
  21563. height: math.unit(1, "feet"),
  21564. name: "Maw",
  21565. image: {
  21566. source: "./media/characters/ofelia/maw.svg"
  21567. }
  21568. },
  21569. foot: {
  21570. height: math.unit(1.949, "feet"),
  21571. name: "Foot",
  21572. image: {
  21573. source: "./media/characters/ofelia/foot.svg"
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Canon Height",
  21580. height: math.unit(2000, "miles"),
  21581. default: true
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21587. {
  21588. front: {
  21589. height: math.unit(6, "feet"),
  21590. weight: math.unit(150, "lb"),
  21591. name: "Front",
  21592. image: {
  21593. source: "./media/characters/samuel/front.svg",
  21594. extra: 265 / 258,
  21595. bottom: 2 / 266.1566
  21596. }
  21597. },
  21598. },
  21599. [
  21600. {
  21601. name: "Macro",
  21602. height: math.unit(100, "feet"),
  21603. default: true
  21604. },
  21605. {
  21606. name: "Full Size",
  21607. height: math.unit(1000, "miles")
  21608. },
  21609. ]
  21610. ))
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21613. {
  21614. front: {
  21615. height: math.unit(6, "feet"),
  21616. weight: math.unit(300, "lb"),
  21617. name: "Front",
  21618. image: {
  21619. source: "./media/characters/beishir-kiel/front.svg",
  21620. extra: 569 / 547,
  21621. bottom: 41.9 / 609
  21622. }
  21623. },
  21624. maw: {
  21625. height: math.unit(6 * 0.202, "feet"),
  21626. name: "Maw",
  21627. image: {
  21628. source: "./media/characters/beishir-kiel/maw.svg"
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Macro",
  21635. height: math.unit(300, "feet"),
  21636. default: true
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21642. {
  21643. front: {
  21644. height: math.unit(5 + 8 / 12, "feet"),
  21645. weight: math.unit(120, "lb"),
  21646. name: "Front",
  21647. image: {
  21648. source: "./media/characters/logan-grey/front.svg",
  21649. extra: 2539 / 2393,
  21650. bottom: 97.6 / 2636.37
  21651. }
  21652. },
  21653. frontAlt: {
  21654. height: math.unit(5 + 8 / 12, "feet"),
  21655. weight: math.unit(120, "lb"),
  21656. name: "Front (Alt)",
  21657. image: {
  21658. source: "./media/characters/logan-grey/front-alt.svg",
  21659. extra: 958 / 893,
  21660. bottom: 15 / 970.768
  21661. }
  21662. },
  21663. back: {
  21664. height: math.unit(5 + 8 / 12, "feet"),
  21665. weight: math.unit(120, "lb"),
  21666. name: "Back",
  21667. image: {
  21668. source: "./media/characters/logan-grey/back.svg",
  21669. extra: 958 / 893,
  21670. bottom: 2.1881 / 970.9788
  21671. }
  21672. },
  21673. dick: {
  21674. height: math.unit(1.437, "feet"),
  21675. name: "Dick",
  21676. image: {
  21677. source: "./media/characters/logan-grey/dick.svg"
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(5 + 8 / 12, "feet")
  21685. },
  21686. {
  21687. name: "The 500 Foot Femboy",
  21688. height: math.unit(500, "feet"),
  21689. default: true
  21690. },
  21691. {
  21692. name: "Megmacro",
  21693. height: math.unit(20, "miles")
  21694. },
  21695. ]
  21696. ))
  21697. characterMakers.push(() => makeCharacter(
  21698. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21699. {
  21700. front: {
  21701. height: math.unit(8 + 2 / 12, "feet"),
  21702. weight: math.unit(275, "lb"),
  21703. name: "Front",
  21704. image: {
  21705. source: "./media/characters/draganta/front.svg",
  21706. extra: 1177 / 1135,
  21707. bottom: 33.46 / 1212.1
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(8 + 6 / 12, "feet"),
  21715. default: true
  21716. },
  21717. {
  21718. name: "Macro",
  21719. height: math.unit(150, "feet")
  21720. },
  21721. {
  21722. name: "Megamacro",
  21723. height: math.unit(1000, "miles")
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(1.72, "m"),
  21732. weight: math.unit(80, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/voski/front.svg",
  21736. extra: 2076.22 / 2022.4,
  21737. bottom: 102.7 / 2177.3866
  21738. }
  21739. },
  21740. frontNsfw: {
  21741. height: math.unit(1.72, "m"),
  21742. weight: math.unit(80, "lb"),
  21743. name: "Front (NSFW)",
  21744. image: {
  21745. source: "./media/characters/voski/front-nsfw.svg",
  21746. extra: 2076.22 / 2022.4,
  21747. bottom: 102.7 / 2177.3866
  21748. }
  21749. },
  21750. back: {
  21751. height: math.unit(1.72, "m"),
  21752. weight: math.unit(80, "lb"),
  21753. name: "Back",
  21754. image: {
  21755. source: "./media/characters/voski/back.svg",
  21756. extra: 2104 / 2051,
  21757. bottom: 10.45 / 2113.63
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(1.72, "m")
  21765. },
  21766. {
  21767. name: "Macro",
  21768. height: math.unit(55, "m"),
  21769. default: true
  21770. },
  21771. {
  21772. name: "Macro+",
  21773. height: math.unit(300, "m")
  21774. },
  21775. {
  21776. name: "Macro++",
  21777. height: math.unit(700, "m")
  21778. },
  21779. {
  21780. name: "Macro+++",
  21781. height: math.unit(4500, "m")
  21782. },
  21783. {
  21784. name: "Macro++++",
  21785. height: math.unit(45, "km")
  21786. },
  21787. {
  21788. name: "Macro+++++",
  21789. height: math.unit(1220, "km")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(2.3, "m"),
  21798. weight: math.unit(304, "kg"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/icowom-lee/front.svg",
  21802. extra: 985 / 955,
  21803. bottom: 25.4 / 1012
  21804. }
  21805. },
  21806. fronttentacles: {
  21807. height: math.unit(2.3, "m"),
  21808. weight: math.unit(304, "kg"),
  21809. name: "Front-tentacles",
  21810. image: {
  21811. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21812. extra: 985 / 955,
  21813. bottom: 25.4 / 1012
  21814. }
  21815. },
  21816. back: {
  21817. height: math.unit(2.3, "m"),
  21818. weight: math.unit(304, "kg"),
  21819. name: "Back",
  21820. image: {
  21821. source: "./media/characters/icowom-lee/back.svg",
  21822. extra: 975 / 954,
  21823. bottom: 9.5 / 985
  21824. }
  21825. },
  21826. backtentacles: {
  21827. height: math.unit(2.3, "m"),
  21828. weight: math.unit(304, "kg"),
  21829. name: "Back-tentacles",
  21830. image: {
  21831. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21832. extra: 975 / 954,
  21833. bottom: 9.5 / 985
  21834. }
  21835. },
  21836. frontDressed: {
  21837. height: math.unit(2.3, "m"),
  21838. weight: math.unit(304, "kg"),
  21839. name: "Front (Dressed)",
  21840. image: {
  21841. source: "./media/characters/icowom-lee/front-dressed.svg",
  21842. extra: 3076 / 2933,
  21843. bottom: 51.4 / 3125.1889
  21844. }
  21845. },
  21846. rump: {
  21847. height: math.unit(0.776, "meters"),
  21848. name: "Rump",
  21849. image: {
  21850. source: "./media/characters/icowom-lee/rump.svg"
  21851. }
  21852. },
  21853. genitals: {
  21854. height: math.unit(0.78, "meters"),
  21855. name: "Genitals",
  21856. image: {
  21857. source: "./media/characters/icowom-lee/genitals.svg"
  21858. }
  21859. },
  21860. },
  21861. [
  21862. {
  21863. name: "Normal",
  21864. height: math.unit(2.3, "meters"),
  21865. default: true
  21866. },
  21867. {
  21868. name: "Macro",
  21869. height: math.unit(94, "meters"),
  21870. default: true
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21876. {
  21877. front: {
  21878. height: math.unit(22, "meters"),
  21879. weight: math.unit(21000, "kg"),
  21880. name: "Front",
  21881. image: {
  21882. source: "./media/characters/shock-diamond/front.svg",
  21883. extra: 2204 / 2053,
  21884. bottom: 65 / 2239.47
  21885. }
  21886. },
  21887. frontNude: {
  21888. height: math.unit(22, "meters"),
  21889. weight: math.unit(21000, "kg"),
  21890. name: "Front (Nude)",
  21891. image: {
  21892. source: "./media/characters/shock-diamond/front-nude.svg",
  21893. extra: 2514 / 2285,
  21894. bottom: 13 / 2527.56
  21895. }
  21896. },
  21897. },
  21898. [
  21899. {
  21900. name: "Normal",
  21901. height: math.unit(3, "meters")
  21902. },
  21903. {
  21904. name: "Macro",
  21905. height: math.unit(22, "meters"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(5 + 4 / 12, "feet"),
  21915. weight: math.unit(120, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/rory/front.svg",
  21919. extra: 589 / 556,
  21920. bottom: 45.7 / 635.76
  21921. }
  21922. },
  21923. frontNude: {
  21924. height: math.unit(5 + 4 / 12, "feet"),
  21925. weight: math.unit(120, "lb"),
  21926. name: "Front (Nude)",
  21927. image: {
  21928. source: "./media/characters/rory/front-nude.svg",
  21929. extra: 589 / 556,
  21930. bottom: 45.7 / 635.76
  21931. }
  21932. },
  21933. side: {
  21934. height: math.unit(5 + 4 / 12, "feet"),
  21935. weight: math.unit(120, "lb"),
  21936. name: "Side",
  21937. image: {
  21938. source: "./media/characters/rory/side.svg",
  21939. extra: 597 / 564,
  21940. bottom: 55 / 653
  21941. }
  21942. },
  21943. back: {
  21944. height: math.unit(5 + 4 / 12, "feet"),
  21945. weight: math.unit(120, "lb"),
  21946. name: "Back",
  21947. image: {
  21948. source: "./media/characters/rory/back.svg",
  21949. extra: 620 / 585,
  21950. bottom: 8.86 / 630.43
  21951. }
  21952. },
  21953. dick: {
  21954. height: math.unit(0.86, "feet"),
  21955. name: "Dick",
  21956. image: {
  21957. source: "./media/characters/rory/dick.svg"
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(5 + 4 / 12, "feet"),
  21965. default: true
  21966. },
  21967. {
  21968. name: "Macro",
  21969. height: math.unit(100, "feet")
  21970. },
  21971. {
  21972. name: "Macro+",
  21973. height: math.unit(140, "feet")
  21974. },
  21975. {
  21976. name: "Macro++",
  21977. height: math.unit(300, "feet")
  21978. },
  21979. ]
  21980. ))
  21981. characterMakers.push(() => makeCharacter(
  21982. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21983. {
  21984. front: {
  21985. height: math.unit(5 + 9 / 12, "feet"),
  21986. weight: math.unit(190, "lb"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/sprisk/front.svg",
  21990. extra: 1225 / 1180,
  21991. bottom: 42.7 / 1266.4
  21992. }
  21993. },
  21994. frontNsfw: {
  21995. height: math.unit(5 + 9 / 12, "feet"),
  21996. weight: math.unit(190, "lb"),
  21997. name: "Front (NSFW)",
  21998. image: {
  21999. source: "./media/characters/sprisk/front-nsfw.svg",
  22000. extra: 1225 / 1180,
  22001. bottom: 42.7 / 1266.4
  22002. }
  22003. },
  22004. back: {
  22005. height: math.unit(5 + 9 / 12, "feet"),
  22006. weight: math.unit(190, "lb"),
  22007. name: "Back",
  22008. image: {
  22009. source: "./media/characters/sprisk/back.svg",
  22010. extra: 1247 / 1200,
  22011. bottom: 5.6 / 1253.04
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Tiny",
  22018. height: math.unit(2, "inches")
  22019. },
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(5 + 9 / 12, "feet"),
  22023. default: true
  22024. },
  22025. {
  22026. name: "Mini Macro",
  22027. height: math.unit(18, "feet")
  22028. },
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(100, "feet")
  22032. },
  22033. {
  22034. name: "MACRO",
  22035. height: math.unit(50, "miles")
  22036. },
  22037. {
  22038. name: "M A C R O",
  22039. height: math.unit(300, "miles")
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22045. {
  22046. side: {
  22047. height: math.unit(15.6, "meters"),
  22048. weight: math.unit(700000, "kg"),
  22049. name: "Side",
  22050. image: {
  22051. source: "./media/characters/bunsen/side.svg",
  22052. extra: 1644 / 358
  22053. }
  22054. },
  22055. foot: {
  22056. height: math.unit(1.611 * 1644 / 358, "meter"),
  22057. name: "Foot",
  22058. image: {
  22059. source: "./media/characters/bunsen/foot.svg"
  22060. }
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Small",
  22066. height: math.unit(10, "feet")
  22067. },
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(15.6, "meters"),
  22071. default: true
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22077. {
  22078. front: {
  22079. height: math.unit(4 + 11 / 12, "feet"),
  22080. weight: math.unit(140, "lb"),
  22081. name: "Front",
  22082. image: {
  22083. source: "./media/characters/sesh/front.svg",
  22084. extra: 3420 / 3231,
  22085. bottom: 72 / 3949.5
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(4 + 11 / 12, "feet")
  22093. },
  22094. {
  22095. name: "Grown",
  22096. height: math.unit(15, "feet"),
  22097. default: true
  22098. },
  22099. {
  22100. name: "Macro",
  22101. height: math.unit(1500, "feet")
  22102. },
  22103. {
  22104. name: "Megamacro",
  22105. height: math.unit(30, "miles")
  22106. },
  22107. {
  22108. name: "Continental",
  22109. height: math.unit(3000, "miles")
  22110. },
  22111. {
  22112. name: "Gravity Mass",
  22113. height: math.unit(300000, "miles")
  22114. },
  22115. {
  22116. name: "Planet Buster",
  22117. height: math.unit(30000000, "miles")
  22118. },
  22119. {
  22120. name: "Big",
  22121. height: math.unit(3000000000, "miles")
  22122. },
  22123. ]
  22124. ))
  22125. characterMakers.push(() => makeCharacter(
  22126. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22127. {
  22128. front: {
  22129. height: math.unit(9, "feet"),
  22130. weight: math.unit(350, "lb"),
  22131. name: "Front",
  22132. image: {
  22133. source: "./media/characters/pepper/front.svg",
  22134. extra: 1448 / 1312,
  22135. bottom: 9.4 / 1457.88
  22136. }
  22137. },
  22138. back: {
  22139. height: math.unit(9, "feet"),
  22140. weight: math.unit(350, "lb"),
  22141. name: "Back",
  22142. image: {
  22143. source: "./media/characters/pepper/back.svg",
  22144. extra: 1423 / 1300,
  22145. bottom: 4.6 / 1429
  22146. }
  22147. },
  22148. maw: {
  22149. height: math.unit(0.932, "feet"),
  22150. name: "Maw",
  22151. image: {
  22152. source: "./media/characters/pepper/maw.svg"
  22153. }
  22154. },
  22155. },
  22156. [
  22157. {
  22158. name: "Normal",
  22159. height: math.unit(9, "feet"),
  22160. default: true
  22161. },
  22162. ]
  22163. ))
  22164. characterMakers.push(() => makeCharacter(
  22165. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22166. {
  22167. front: {
  22168. height: math.unit(6, "feet"),
  22169. weight: math.unit(150, "lb"),
  22170. name: "Front",
  22171. image: {
  22172. source: "./media/characters/maelstrom/front.svg",
  22173. extra: 2100 / 1883,
  22174. bottom: 94 / 2196.7
  22175. }
  22176. },
  22177. },
  22178. [
  22179. {
  22180. name: "Less Kaiju",
  22181. height: math.unit(200, "feet")
  22182. },
  22183. {
  22184. name: "Kaiju",
  22185. height: math.unit(400, "feet"),
  22186. default: true
  22187. },
  22188. {
  22189. name: "Kaiju-er",
  22190. height: math.unit(600, "feet")
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(6 + 5 / 12, "feet"),
  22199. weight: math.unit(180, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/lexir/front.svg",
  22203. extra: 180 / 172,
  22204. bottom: 12 / 192
  22205. }
  22206. },
  22207. back: {
  22208. height: math.unit(6 + 5 / 12, "feet"),
  22209. weight: math.unit(180, "lb"),
  22210. name: "Back",
  22211. image: {
  22212. source: "./media/characters/lexir/back.svg",
  22213. extra: 183.84 / 175.5,
  22214. bottom: 3.1 / 187
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Very Smal",
  22221. height: math.unit(1, "nm")
  22222. },
  22223. {
  22224. name: "Normal",
  22225. height: math.unit(6 + 5 / 12, "feet"),
  22226. default: true
  22227. },
  22228. {
  22229. name: "Macro",
  22230. height: math.unit(1, "mile")
  22231. },
  22232. {
  22233. name: "Megamacro",
  22234. height: math.unit(50, "miles")
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(1.5, "meters"),
  22243. weight: math.unit(100, "lb"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/maksio/front.svg",
  22247. extra: 1549 / 1531,
  22248. bottom: 123.7 / 1674.5429
  22249. }
  22250. },
  22251. back: {
  22252. height: math.unit(1.5, "meters"),
  22253. weight: math.unit(100, "lb"),
  22254. name: "Back",
  22255. image: {
  22256. source: "./media/characters/maksio/back.svg",
  22257. extra: 1541 / 1509,
  22258. bottom: 97 / 1639
  22259. }
  22260. },
  22261. hand: {
  22262. height: math.unit(0.621, "feet"),
  22263. name: "Hand",
  22264. image: {
  22265. source: "./media/characters/maksio/hand.svg"
  22266. }
  22267. },
  22268. foot: {
  22269. height: math.unit(1.611, "feet"),
  22270. name: "Foot",
  22271. image: {
  22272. source: "./media/characters/maksio/foot.svg"
  22273. }
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Shrunken",
  22279. height: math.unit(10, "cm")
  22280. },
  22281. {
  22282. name: "Normal",
  22283. height: math.unit(150, "cm"),
  22284. default: true
  22285. },
  22286. ]
  22287. ))
  22288. characterMakers.push(() => makeCharacter(
  22289. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22290. {
  22291. front: {
  22292. height: math.unit(100, "feet"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/erza-bear/front.svg",
  22296. extra: 2449 / 2390,
  22297. bottom: 46 / 2494
  22298. }
  22299. },
  22300. back: {
  22301. height: math.unit(100, "feet"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/erza-bear/back.svg",
  22305. extra: 2489 / 2430,
  22306. bottom: 85.4 / 2480
  22307. }
  22308. },
  22309. tail: {
  22310. height: math.unit(42, "feet"),
  22311. name: "Tail",
  22312. image: {
  22313. source: "./media/characters/erza-bear/tail.svg"
  22314. }
  22315. },
  22316. tongue: {
  22317. height: math.unit(8, "feet"),
  22318. name: "Tongue",
  22319. image: {
  22320. source: "./media/characters/erza-bear/tongue.svg"
  22321. }
  22322. },
  22323. dick: {
  22324. height: math.unit(10.5, "feet"),
  22325. name: "Dick",
  22326. image: {
  22327. source: "./media/characters/erza-bear/dick.svg"
  22328. }
  22329. },
  22330. dickVertical: {
  22331. height: math.unit(16.9, "feet"),
  22332. name: "Dick (Vertical)",
  22333. image: {
  22334. source: "./media/characters/erza-bear/dick-vertical.svg"
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Macro",
  22341. height: math.unit(100, "feet"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(172, "cm"),
  22351. weight: math.unit(73, "kg"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/violet-flor/front.svg",
  22355. extra: 1530 / 1442,
  22356. bottom: 61.9 / 1588.8
  22357. }
  22358. },
  22359. back: {
  22360. height: math.unit(180, "cm"),
  22361. weight: math.unit(73, "kg"),
  22362. name: "Back",
  22363. image: {
  22364. source: "./media/characters/violet-flor/back.svg",
  22365. extra: 1692 / 1630,
  22366. bottom: 20 / 1712
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Normal",
  22373. height: math.unit(172, "cm"),
  22374. default: true
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22380. {
  22381. front: {
  22382. height: math.unit(6, "feet"),
  22383. weight: math.unit(220, "lb"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/lynn-rhea/front.svg",
  22387. extra: 310 / 273
  22388. }
  22389. },
  22390. back: {
  22391. height: math.unit(6, "feet"),
  22392. weight: math.unit(220, "lb"),
  22393. name: "Back",
  22394. image: {
  22395. source: "./media/characters/lynn-rhea/back.svg",
  22396. extra: 310 / 273
  22397. }
  22398. },
  22399. dicks: {
  22400. height: math.unit(0.9, "feet"),
  22401. name: "Dicks",
  22402. image: {
  22403. source: "./media/characters/lynn-rhea/dicks.svg"
  22404. }
  22405. },
  22406. slit: {
  22407. height: math.unit(0.4, "feet"),
  22408. name: "Slit",
  22409. image: {
  22410. source: "./media/characters/lynn-rhea/slit.svg"
  22411. }
  22412. },
  22413. },
  22414. [
  22415. {
  22416. name: "Micro",
  22417. height: math.unit(1, "inch")
  22418. },
  22419. {
  22420. name: "Macro",
  22421. height: math.unit(60, "feet"),
  22422. default: true
  22423. },
  22424. {
  22425. name: "Megamacro",
  22426. height: math.unit(2, "miles")
  22427. },
  22428. {
  22429. name: "Gigamacro",
  22430. height: math.unit(3, "earths")
  22431. },
  22432. {
  22433. name: "Galactic",
  22434. height: math.unit(0.8, "galaxies")
  22435. },
  22436. ]
  22437. ))
  22438. characterMakers.push(() => makeCharacter(
  22439. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22440. {
  22441. front: {
  22442. height: math.unit(1600, "feet"),
  22443. weight: math.unit(85758785169, "kg"),
  22444. name: "Front",
  22445. image: {
  22446. source: "./media/characters/valathos/front.svg",
  22447. extra: 1451 / 1339
  22448. }
  22449. },
  22450. },
  22451. [
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(1600, "feet"),
  22455. default: true
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(7 + 5 / 12, "feet"),
  22464. weight: math.unit(300, "lb"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/azula/front.svg",
  22468. extra: 3208 / 2880,
  22469. bottom: 80.2 / 3277
  22470. }
  22471. },
  22472. back: {
  22473. height: math.unit(7 + 5 / 12, "feet"),
  22474. weight: math.unit(300, "lb"),
  22475. name: "Back",
  22476. image: {
  22477. source: "./media/characters/azula/back.svg",
  22478. extra: 3169 / 2822,
  22479. bottom: 150.6 / 3321
  22480. }
  22481. },
  22482. },
  22483. [
  22484. {
  22485. name: "Normal",
  22486. height: math.unit(7 + 5 / 12, "feet"),
  22487. default: true
  22488. },
  22489. {
  22490. name: "Big",
  22491. height: math.unit(20, "feet")
  22492. },
  22493. ]
  22494. ))
  22495. characterMakers.push(() => makeCharacter(
  22496. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22497. {
  22498. front: {
  22499. height: math.unit(5 + 1 / 12, "feet"),
  22500. weight: math.unit(110, "lb"),
  22501. name: "Front",
  22502. image: {
  22503. source: "./media/characters/rupert/front.svg",
  22504. extra: 1549 / 1495,
  22505. bottom: 54.2 / 1604.4
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Normal",
  22512. height: math.unit(5 + 1 / 12, "feet"),
  22513. default: true
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(8 + 4 / 12, "feet"),
  22522. weight: math.unit(350, "lb"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/sheera-castellar/front.svg",
  22526. extra: 1957 / 1894,
  22527. bottom: 26.97 / 1975.017
  22528. }
  22529. },
  22530. side: {
  22531. height: math.unit(8 + 4 / 12, "feet"),
  22532. weight: math.unit(350, "lb"),
  22533. name: "Side",
  22534. image: {
  22535. source: "./media/characters/sheera-castellar/side.svg",
  22536. extra: 1957 / 1894
  22537. }
  22538. },
  22539. back: {
  22540. height: math.unit(8 + 4 / 12, "feet"),
  22541. weight: math.unit(350, "lb"),
  22542. name: "Back",
  22543. image: {
  22544. source: "./media/characters/sheera-castellar/back.svg",
  22545. extra: 1957 / 1894
  22546. }
  22547. },
  22548. angled: {
  22549. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22550. weight: math.unit(350, "lb"),
  22551. name: "Angled",
  22552. image: {
  22553. source: "./media/characters/sheera-castellar/angled.svg",
  22554. extra: 1807 / 1707,
  22555. bottom: 68 / 1875
  22556. }
  22557. },
  22558. genitals: {
  22559. height: math.unit(2.2, "feet"),
  22560. name: "Genitals",
  22561. image: {
  22562. source: "./media/characters/sheera-castellar/genitals.svg"
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Normal",
  22569. height: math.unit(8 + 4 / 12, "feet")
  22570. },
  22571. {
  22572. name: "Macro",
  22573. height: math.unit(150, "feet"),
  22574. default: true
  22575. },
  22576. {
  22577. name: "Macro+",
  22578. height: math.unit(800, "feet")
  22579. },
  22580. ]
  22581. ))
  22582. characterMakers.push(() => makeCharacter(
  22583. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22584. {
  22585. front: {
  22586. height: math.unit(6, "feet"),
  22587. weight: math.unit(150, "lb"),
  22588. name: "Front",
  22589. image: {
  22590. source: "./media/characters/jaipur/front.svg",
  22591. extra: 3860 / 3731,
  22592. bottom: 287 / 4140
  22593. }
  22594. },
  22595. back: {
  22596. height: math.unit(6, "feet"),
  22597. weight: math.unit(150, "lb"),
  22598. name: "Back",
  22599. image: {
  22600. source: "./media/characters/jaipur/back.svg",
  22601. extra: 4060 / 3930,
  22602. bottom: 151 / 4200
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Normal",
  22609. height: math.unit(1.85, "meters"),
  22610. default: true
  22611. },
  22612. {
  22613. name: "Macro",
  22614. height: math.unit(150, "meters")
  22615. },
  22616. {
  22617. name: "Macro+",
  22618. height: math.unit(0.5, "miles")
  22619. },
  22620. {
  22621. name: "Macro++",
  22622. height: math.unit(2.5, "miles")
  22623. },
  22624. {
  22625. name: "Macro+++",
  22626. height: math.unit(12, "miles")
  22627. },
  22628. {
  22629. name: "Macro++++",
  22630. height: math.unit(120, "miles")
  22631. },
  22632. {
  22633. name: "Macro+++++",
  22634. height: math.unit(1200, "miles")
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22640. {
  22641. front: {
  22642. height: math.unit(6, "feet"),
  22643. weight: math.unit(150, "lb"),
  22644. name: "Front",
  22645. image: {
  22646. source: "./media/characters/sheila-wolf/front.svg",
  22647. extra: 1931 / 1808,
  22648. bottom: 29.5 / 1960
  22649. }
  22650. },
  22651. dick: {
  22652. height: math.unit(1.464, "feet"),
  22653. name: "Dick",
  22654. image: {
  22655. source: "./media/characters/sheila-wolf/dick.svg"
  22656. }
  22657. },
  22658. muzzle: {
  22659. height: math.unit(0.513, "feet"),
  22660. name: "Muzzle",
  22661. image: {
  22662. source: "./media/characters/sheila-wolf/muzzle.svg"
  22663. }
  22664. },
  22665. },
  22666. [
  22667. {
  22668. name: "Macro",
  22669. height: math.unit(70, "feet"),
  22670. default: true
  22671. },
  22672. ]
  22673. ))
  22674. characterMakers.push(() => makeCharacter(
  22675. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22676. {
  22677. front: {
  22678. height: math.unit(32, "meters"),
  22679. weight: math.unit(300000, "kg"),
  22680. name: "Front",
  22681. image: {
  22682. source: "./media/characters/almor/front.svg",
  22683. extra: 1408 / 1322,
  22684. bottom: 94.6 / 1506.5
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Macro",
  22691. height: math.unit(32, "meters"),
  22692. default: true
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22698. {
  22699. front: {
  22700. height: math.unit(7, "feet"),
  22701. weight: math.unit(200, "lb"),
  22702. name: "Front",
  22703. image: {
  22704. source: "./media/characters/silver/front.svg",
  22705. extra: 472.1 / 450.5,
  22706. bottom: 26.5 / 499.424
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Normal",
  22713. height: math.unit(7, "feet"),
  22714. default: true
  22715. },
  22716. {
  22717. name: "Macro",
  22718. height: math.unit(800, "feet")
  22719. },
  22720. {
  22721. name: "Megamacro",
  22722. height: math.unit(250, "miles")
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22728. {
  22729. front: {
  22730. height: math.unit(6, "feet"),
  22731. weight: math.unit(150, "lb"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/pliskin/front.svg",
  22735. extra: 1469 / 1359,
  22736. bottom: 70 / 1540
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Micro",
  22743. height: math.unit(3, "inches")
  22744. },
  22745. {
  22746. name: "Normal",
  22747. height: math.unit(5 + 11 / 12, "feet"),
  22748. default: true
  22749. },
  22750. {
  22751. name: "Macro",
  22752. height: math.unit(120, "feet")
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(6, "feet"),
  22761. weight: math.unit(150, "lb"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/sammy/front.svg",
  22765. extra: 1193 / 1089,
  22766. bottom: 30.5 / 1226
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Macro",
  22773. height: math.unit(1700, "feet"),
  22774. default: true
  22775. },
  22776. {
  22777. name: "Examacro",
  22778. height: math.unit(2.5e9, "lightyears")
  22779. },
  22780. ]
  22781. ))
  22782. characterMakers.push(() => makeCharacter(
  22783. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22784. {
  22785. front: {
  22786. height: math.unit(21, "meters"),
  22787. weight: math.unit(12, "tonnes"),
  22788. name: "Front",
  22789. image: {
  22790. source: "./media/characters/kuru/front.svg",
  22791. extra: 4301 / 3785,
  22792. bottom: 371.3 / 4691
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Macro",
  22799. height: math.unit(21, "meters"),
  22800. default: true
  22801. },
  22802. ]
  22803. ))
  22804. characterMakers.push(() => makeCharacter(
  22805. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22806. {
  22807. front: {
  22808. height: math.unit(23, "meters"),
  22809. weight: math.unit(12.2, "tonnes"),
  22810. name: "Front",
  22811. image: {
  22812. source: "./media/characters/rakka/front.svg",
  22813. extra: 4670 / 4169,
  22814. bottom: 301 / 4968.7
  22815. }
  22816. },
  22817. },
  22818. [
  22819. {
  22820. name: "Macro",
  22821. height: math.unit(23, "meters"),
  22822. default: true
  22823. },
  22824. ]
  22825. ))
  22826. characterMakers.push(() => makeCharacter(
  22827. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22828. {
  22829. front: {
  22830. height: math.unit(6, "feet"),
  22831. weight: math.unit(150, "lb"),
  22832. name: "Front",
  22833. image: {
  22834. source: "./media/characters/rhys-feline/front.svg",
  22835. extra: 2488 / 2308,
  22836. bottom: 35.67 / 2519.19
  22837. }
  22838. },
  22839. },
  22840. [
  22841. {
  22842. name: "Really Small",
  22843. height: math.unit(1, "nm")
  22844. },
  22845. {
  22846. name: "Micro",
  22847. height: math.unit(4, "inches")
  22848. },
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(4 + 10 / 12, "feet"),
  22852. default: true
  22853. },
  22854. {
  22855. name: "Macro",
  22856. height: math.unit(100, "feet")
  22857. },
  22858. {
  22859. name: "Megamacto",
  22860. height: math.unit(50, "miles")
  22861. },
  22862. ]
  22863. ))
  22864. characterMakers.push(() => makeCharacter(
  22865. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22866. {
  22867. side: {
  22868. height: math.unit(30, "feet"),
  22869. weight: math.unit(35000, "kg"),
  22870. name: "Side",
  22871. image: {
  22872. source: "./media/characters/alydar/side.svg",
  22873. extra: 234 / 222,
  22874. bottom: 6.5 / 241
  22875. }
  22876. },
  22877. front: {
  22878. height: math.unit(30, "feet"),
  22879. weight: math.unit(35000, "kg"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/alydar/front.svg",
  22883. extra: 223.37 / 210.2,
  22884. bottom: 22.3 / 246.76
  22885. }
  22886. },
  22887. top: {
  22888. height: math.unit(64.54, "feet"),
  22889. weight: math.unit(35000, "kg"),
  22890. name: "Top",
  22891. image: {
  22892. source: "./media/characters/alydar/top.svg"
  22893. }
  22894. },
  22895. anthro: {
  22896. height: math.unit(30, "feet"),
  22897. weight: math.unit(9000, "kg"),
  22898. name: "Anthro",
  22899. image: {
  22900. source: "./media/characters/alydar/anthro.svg",
  22901. extra: 432 / 421,
  22902. bottom: 7.18 / 440
  22903. }
  22904. },
  22905. maw: {
  22906. height: math.unit(11.693, "feet"),
  22907. name: "Maw",
  22908. image: {
  22909. source: "./media/characters/alydar/maw.svg"
  22910. }
  22911. },
  22912. head: {
  22913. height: math.unit(11.693, "feet"),
  22914. name: "Head",
  22915. image: {
  22916. source: "./media/characters/alydar/head.svg"
  22917. }
  22918. },
  22919. headAlt: {
  22920. height: math.unit(12.861, "feet"),
  22921. name: "Head (Alt)",
  22922. image: {
  22923. source: "./media/characters/alydar/head-alt.svg"
  22924. }
  22925. },
  22926. wing: {
  22927. height: math.unit(20.712, "feet"),
  22928. name: "Wing",
  22929. image: {
  22930. source: "./media/characters/alydar/wing.svg"
  22931. }
  22932. },
  22933. wingFeather: {
  22934. height: math.unit(9.662, "feet"),
  22935. name: "Wing Feather",
  22936. image: {
  22937. source: "./media/characters/alydar/wing-feather.svg"
  22938. }
  22939. },
  22940. countourFeather: {
  22941. height: math.unit(4.154, "feet"),
  22942. name: "Contour Feather",
  22943. image: {
  22944. source: "./media/characters/alydar/contour-feather.svg"
  22945. }
  22946. },
  22947. },
  22948. [
  22949. {
  22950. name: "Diplomatic",
  22951. height: math.unit(13, "feet"),
  22952. default: true
  22953. },
  22954. {
  22955. name: "Small",
  22956. height: math.unit(30, "feet")
  22957. },
  22958. {
  22959. name: "Normal",
  22960. height: math.unit(95, "feet"),
  22961. default: true
  22962. },
  22963. {
  22964. name: "Large",
  22965. height: math.unit(285, "feet")
  22966. },
  22967. {
  22968. name: "Incomprehensible",
  22969. height: math.unit(450, "megameters")
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22975. {
  22976. side: {
  22977. height: math.unit(11, "feet"),
  22978. weight: math.unit(1750, "kg"),
  22979. name: "Side",
  22980. image: {
  22981. source: "./media/characters/selicia/side.svg",
  22982. extra: 440 / 396,
  22983. bottom: 24.8 / 465.979
  22984. }
  22985. },
  22986. maw: {
  22987. height: math.unit(4.665, "feet"),
  22988. name: "Maw",
  22989. image: {
  22990. source: "./media/characters/selicia/maw.svg"
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Normal",
  22997. height: math.unit(11, "feet"),
  22998. default: true
  22999. },
  23000. ]
  23001. ))
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23004. {
  23005. side: {
  23006. height: math.unit(2 + 6 / 12, "feet"),
  23007. weight: math.unit(30, "lb"),
  23008. name: "Side",
  23009. image: {
  23010. source: "./media/characters/layla/side.svg",
  23011. extra: 244 / 188,
  23012. bottom: 18.2 / 262.1
  23013. }
  23014. },
  23015. back: {
  23016. height: math.unit(2 + 6 / 12, "feet"),
  23017. weight: math.unit(30, "lb"),
  23018. name: "Back",
  23019. image: {
  23020. source: "./media/characters/layla/back.svg",
  23021. extra: 308 / 241.5,
  23022. bottom: 8.9 / 316.8
  23023. }
  23024. },
  23025. cumming: {
  23026. height: math.unit(2 + 6 / 12, "feet"),
  23027. weight: math.unit(30, "lb"),
  23028. name: "Cumming",
  23029. image: {
  23030. source: "./media/characters/layla/cumming.svg",
  23031. extra: 342 / 279,
  23032. bottom: 595 / 938
  23033. }
  23034. },
  23035. dickFlaccid: {
  23036. height: math.unit(2.595, "feet"),
  23037. name: "Flaccid Genitals",
  23038. image: {
  23039. source: "./media/characters/layla/dick-flaccid.svg"
  23040. }
  23041. },
  23042. dickErect: {
  23043. height: math.unit(2.359, "feet"),
  23044. name: "Erect Genitals",
  23045. image: {
  23046. source: "./media/characters/layla/dick-erect.svg"
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Micro",
  23053. height: math.unit(1, "inch")
  23054. },
  23055. {
  23056. name: "Small",
  23057. height: math.unit(1, "foot")
  23058. },
  23059. {
  23060. name: "Normal",
  23061. height: math.unit(2 + 6 / 12, "feet"),
  23062. default: true
  23063. },
  23064. {
  23065. name: "Macro",
  23066. height: math.unit(200, "feet")
  23067. },
  23068. {
  23069. name: "Megamacro",
  23070. height: math.unit(1000, "miles")
  23071. },
  23072. {
  23073. name: "Planetary",
  23074. height: math.unit(8000, "miles")
  23075. },
  23076. {
  23077. name: "True Layla",
  23078. height: math.unit(200000 * 7, "multiverses")
  23079. },
  23080. ]
  23081. ))
  23082. characterMakers.push(() => makeCharacter(
  23083. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23084. {
  23085. back: {
  23086. height: math.unit(10.5, "feet"),
  23087. weight: math.unit(800, "lb"),
  23088. name: "Back",
  23089. image: {
  23090. source: "./media/characters/knox/back.svg",
  23091. extra: 1486 / 1089,
  23092. bottom: 107 / 1601.4
  23093. }
  23094. },
  23095. side: {
  23096. height: math.unit(10.5, "feet"),
  23097. weight: math.unit(800, "lb"),
  23098. name: "Side",
  23099. image: {
  23100. source: "./media/characters/knox/side.svg",
  23101. extra: 244 / 218,
  23102. bottom: 14 / 260
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Compact",
  23109. height: math.unit(10.5, "feet"),
  23110. default: true
  23111. },
  23112. {
  23113. name: "Dynamax",
  23114. height: math.unit(210, "feet")
  23115. },
  23116. {
  23117. name: "Full Macro",
  23118. height: math.unit(850, "feet")
  23119. },
  23120. ]
  23121. ))
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23124. {
  23125. front: {
  23126. height: math.unit(6, "feet"),
  23127. weight: math.unit(152, "lb"),
  23128. name: "Front",
  23129. image: {
  23130. source: "./media/characters/shin-pikachu/front.svg",
  23131. extra: 1574 / 1480,
  23132. bottom: 53.3 / 1626
  23133. }
  23134. },
  23135. hand: {
  23136. height: math.unit(1.055, "feet"),
  23137. name: "Hand",
  23138. image: {
  23139. source: "./media/characters/shin-pikachu/hand.svg"
  23140. }
  23141. },
  23142. foot: {
  23143. height: math.unit(1.1, "feet"),
  23144. name: "Foot",
  23145. image: {
  23146. source: "./media/characters/shin-pikachu/foot.svg"
  23147. }
  23148. },
  23149. collar: {
  23150. height: math.unit(0.386, "feet"),
  23151. name: "Collar",
  23152. image: {
  23153. source: "./media/characters/shin-pikachu/collar.svg"
  23154. }
  23155. },
  23156. },
  23157. [
  23158. {
  23159. name: "Smallest",
  23160. height: math.unit(0.5, "inches")
  23161. },
  23162. {
  23163. name: "Micro",
  23164. height: math.unit(6, "inches")
  23165. },
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(6, "feet"),
  23169. default: true
  23170. },
  23171. {
  23172. name: "Macro",
  23173. height: math.unit(150, "feet")
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(28, "feet"),
  23182. weight: math.unit(10500, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/kayda/front.svg",
  23186. extra: 1536 / 1428,
  23187. bottom: 68.7 / 1603
  23188. }
  23189. },
  23190. back: {
  23191. height: math.unit(28, "feet"),
  23192. weight: math.unit(10500, "lb"),
  23193. name: "Back",
  23194. image: {
  23195. source: "./media/characters/kayda/back.svg",
  23196. extra: 1557 / 1464,
  23197. bottom: 39.5 / 1597.49
  23198. }
  23199. },
  23200. dick: {
  23201. height: math.unit(3.858, "feet"),
  23202. name: "Dick",
  23203. image: {
  23204. source: "./media/characters/kayda/dick.svg"
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Macro",
  23211. height: math.unit(28, "feet"),
  23212. default: true
  23213. },
  23214. ]
  23215. ))
  23216. characterMakers.push(() => makeCharacter(
  23217. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23218. {
  23219. front: {
  23220. height: math.unit(10 + 11 / 12, "feet"),
  23221. weight: math.unit(1400, "lb"),
  23222. name: "Front",
  23223. image: {
  23224. source: "./media/characters/brian/front.svg",
  23225. extra: 737 / 692,
  23226. bottom: 55.4 / 785
  23227. }
  23228. },
  23229. },
  23230. [
  23231. {
  23232. name: "Normal",
  23233. height: math.unit(10 + 11 / 12, "feet"),
  23234. default: true
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23240. {
  23241. front: {
  23242. height: math.unit(5 + 8 / 12, "feet"),
  23243. weight: math.unit(140, "lb"),
  23244. name: "Front",
  23245. image: {
  23246. source: "./media/characters/khemri/front.svg",
  23247. extra: 4780 / 4059,
  23248. bottom: 80.1 / 4859.25
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Micro",
  23255. height: math.unit(6, "inches")
  23256. },
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(5 + 8 / 12, "feet"),
  23260. default: true
  23261. },
  23262. ]
  23263. ))
  23264. characterMakers.push(() => makeCharacter(
  23265. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23266. {
  23267. front: {
  23268. height: math.unit(13, "feet"),
  23269. weight: math.unit(1700, "lb"),
  23270. name: "Front",
  23271. image: {
  23272. source: "./media/characters/felix-braveheart/front.svg",
  23273. extra: 1222 / 1157,
  23274. bottom: 53.2 / 1280
  23275. }
  23276. },
  23277. back: {
  23278. height: math.unit(13, "feet"),
  23279. weight: math.unit(1700, "lb"),
  23280. name: "Back",
  23281. image: {
  23282. source: "./media/characters/felix-braveheart/back.svg",
  23283. extra: 1277 / 1203,
  23284. bottom: 50.2 / 1327
  23285. }
  23286. },
  23287. feral: {
  23288. height: math.unit(6, "feet"),
  23289. weight: math.unit(400, "lb"),
  23290. name: "Feral",
  23291. image: {
  23292. source: "./media/characters/felix-braveheart/feral.svg",
  23293. extra: 682 / 625,
  23294. bottom: 6.9 / 688
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(13, "feet"),
  23302. default: true
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23308. {
  23309. side: {
  23310. height: math.unit(5 + 11 / 12, "feet"),
  23311. weight: math.unit(1400, "lb"),
  23312. name: "Side",
  23313. image: {
  23314. source: "./media/characters/shadow-blade/side.svg",
  23315. extra: 1726 / 1267,
  23316. bottom: 58.4 / 1785
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Normal",
  23323. height: math.unit(5 + 11 / 12, "feet"),
  23324. default: true
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23330. {
  23331. front: {
  23332. height: math.unit(1 + 6 / 12, "feet"),
  23333. weight: math.unit(25, "lb"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/karla-halldor/front.svg",
  23337. extra: 1459 / 1383,
  23338. bottom: 12 / 1472
  23339. }
  23340. },
  23341. },
  23342. [
  23343. {
  23344. name: "Normal",
  23345. height: math.unit(1 + 6 / 12, "feet"),
  23346. default: true
  23347. },
  23348. ]
  23349. ))
  23350. characterMakers.push(() => makeCharacter(
  23351. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23352. {
  23353. front: {
  23354. height: math.unit(6 + 2 / 12, "feet"),
  23355. weight: math.unit(160, "lb"),
  23356. name: "Front",
  23357. image: {
  23358. source: "./media/characters/ariam/front.svg",
  23359. extra: 714 / 617,
  23360. bottom: 23.4 / 737,
  23361. }
  23362. },
  23363. squatting: {
  23364. height: math.unit(4.1, "feet"),
  23365. weight: math.unit(160, "lb"),
  23366. name: "Squatting",
  23367. image: {
  23368. source: "./media/characters/ariam/squatting.svg",
  23369. extra: 2617 / 2112,
  23370. bottom: 61.2 / 2681,
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(6 + 2 / 12, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Normal+",
  23382. height: math.unit(4, "meters")
  23383. },
  23384. {
  23385. name: "Macro",
  23386. height: math.unit(50, "meters")
  23387. },
  23388. {
  23389. name: "Macro+",
  23390. height: math.unit(100, "meters")
  23391. },
  23392. {
  23393. name: "Megamacro",
  23394. height: math.unit(20, "km")
  23395. },
  23396. ]
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23400. {
  23401. front: {
  23402. height: math.unit(1.67, "meters"),
  23403. weight: math.unit(140, "lb"),
  23404. name: "Front",
  23405. image: {
  23406. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23407. extra: 438 / 410,
  23408. bottom: 0.75 / 439
  23409. }
  23410. },
  23411. },
  23412. [
  23413. {
  23414. name: "Shrunken",
  23415. height: math.unit(7.6, "cm")
  23416. },
  23417. {
  23418. name: "Human Scale",
  23419. height: math.unit(1.67, "meters")
  23420. },
  23421. {
  23422. name: "Wolxi Scale",
  23423. height: math.unit(36.7, "meters"),
  23424. default: true
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23430. {
  23431. front: {
  23432. height: math.unit(1.73, "meters"),
  23433. weight: math.unit(240, "lb"),
  23434. name: "Front",
  23435. image: {
  23436. source: "./media/characters/izue-two-mothers/front.svg",
  23437. extra: 469 / 437,
  23438. bottom: 1.24 / 470.6
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Shrunken",
  23445. height: math.unit(7.86, "cm")
  23446. },
  23447. {
  23448. name: "Human Scale",
  23449. height: math.unit(1.73, "meters")
  23450. },
  23451. {
  23452. name: "Wolxi Scale",
  23453. height: math.unit(38, "meters"),
  23454. default: true
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23460. {
  23461. front: {
  23462. height: math.unit(1.55, "meters"),
  23463. weight: math.unit(120, "lb"),
  23464. name: "Front",
  23465. image: {
  23466. source: "./media/characters/teeku-love-shack/front.svg",
  23467. extra: 387 / 362,
  23468. bottom: 1.51 / 388
  23469. }
  23470. },
  23471. },
  23472. [
  23473. {
  23474. name: "Shrunken",
  23475. height: math.unit(7, "cm")
  23476. },
  23477. {
  23478. name: "Human Scale",
  23479. height: math.unit(1.55, "meters")
  23480. },
  23481. {
  23482. name: "Wolxi Scale",
  23483. height: math.unit(34.1, "meters"),
  23484. default: true
  23485. },
  23486. ]
  23487. ))
  23488. characterMakers.push(() => makeCharacter(
  23489. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23490. {
  23491. front: {
  23492. height: math.unit(1.83, "meters"),
  23493. weight: math.unit(135, "lb"),
  23494. name: "Front",
  23495. image: {
  23496. source: "./media/characters/dejma-the-red/front.svg",
  23497. extra: 480 / 458,
  23498. bottom: 1.8 / 482
  23499. }
  23500. },
  23501. },
  23502. [
  23503. {
  23504. name: "Shrunken",
  23505. height: math.unit(8.3, "cm")
  23506. },
  23507. {
  23508. name: "Human Scale",
  23509. height: math.unit(1.83, "meters")
  23510. },
  23511. {
  23512. name: "Wolxi Scale",
  23513. height: math.unit(40, "meters"),
  23514. default: true
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(1.78, "meters"),
  23523. weight: math.unit(65, "kg"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/aki/front.svg",
  23527. extra: 452 / 415
  23528. }
  23529. },
  23530. frontNsfw: {
  23531. height: math.unit(1.78, "meters"),
  23532. weight: math.unit(65, "kg"),
  23533. name: "Front (NSFW)",
  23534. image: {
  23535. source: "./media/characters/aki/front-nsfw.svg",
  23536. extra: 452 / 415
  23537. }
  23538. },
  23539. back: {
  23540. height: math.unit(1.78, "meters"),
  23541. weight: math.unit(65, "kg"),
  23542. name: "Back",
  23543. image: {
  23544. source: "./media/characters/aki/back.svg",
  23545. extra: 452 / 415
  23546. }
  23547. },
  23548. rump: {
  23549. height: math.unit(2.05, "feet"),
  23550. name: "Rump",
  23551. image: {
  23552. source: "./media/characters/aki/rump.svg"
  23553. }
  23554. },
  23555. dick: {
  23556. height: math.unit(0.95, "feet"),
  23557. name: "Dick",
  23558. image: {
  23559. source: "./media/characters/aki/dick.svg"
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Micro",
  23566. height: math.unit(15, "cm")
  23567. },
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(178, "cm"),
  23571. default: true
  23572. },
  23573. {
  23574. name: "Macro",
  23575. height: math.unit(214, "m")
  23576. },
  23577. {
  23578. name: "Macro+",
  23579. height: math.unit(534, "m")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(5 + 5 / 12, "feet"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/ari/front.svg",
  23592. extra: 714.5 / 682,
  23593. bottom: 8 / 722.5
  23594. }
  23595. },
  23596. },
  23597. [
  23598. {
  23599. name: "Normal",
  23600. height: math.unit(5 + 5 / 12, "feet")
  23601. },
  23602. {
  23603. name: "Macro",
  23604. height: math.unit(100, "feet"),
  23605. default: true
  23606. },
  23607. {
  23608. name: "Megamacro",
  23609. height: math.unit(100, "miles")
  23610. },
  23611. {
  23612. name: "Gigamacro",
  23613. height: math.unit(80000, "miles")
  23614. },
  23615. ]
  23616. ))
  23617. characterMakers.push(() => makeCharacter(
  23618. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23619. {
  23620. side: {
  23621. height: math.unit(9, "feet"),
  23622. weight: math.unit(400, "kg"),
  23623. name: "Side",
  23624. image: {
  23625. source: "./media/characters/bolt/side.svg",
  23626. extra: 1126 / 896,
  23627. bottom: 60 / 1187.3,
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Micro",
  23634. height: math.unit(5, "inches")
  23635. },
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(9, "feet"),
  23639. default: true
  23640. },
  23641. {
  23642. name: "Macro",
  23643. height: math.unit(700, "feet")
  23644. },
  23645. {
  23646. name: "Max Size",
  23647. height: math.unit(1.52e22, "yottameters")
  23648. },
  23649. ]
  23650. ))
  23651. characterMakers.push(() => makeCharacter(
  23652. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23653. {
  23654. front: {
  23655. height: math.unit(4.53, "meters"),
  23656. weight: math.unit(3, "tons"),
  23657. name: "Front",
  23658. image: {
  23659. source: "./media/characters/draekon-sylviar/front.svg",
  23660. extra: 1228 / 1068,
  23661. bottom: 41 / 1270
  23662. }
  23663. },
  23664. tail: {
  23665. height: math.unit(1.772, "meter"),
  23666. name: "Tail",
  23667. image: {
  23668. source: "./media/characters/draekon-sylviar/tail.svg"
  23669. }
  23670. },
  23671. head: {
  23672. height: math.unit(1.331, "meter"),
  23673. name: "Head",
  23674. image: {
  23675. source: "./media/characters/draekon-sylviar/head.svg"
  23676. }
  23677. },
  23678. hand: {
  23679. height: math.unit(0.564, "meter"),
  23680. name: "Hand",
  23681. image: {
  23682. source: "./media/characters/draekon-sylviar/hand.svg"
  23683. }
  23684. },
  23685. foot: {
  23686. height: math.unit(0.621, "meter"),
  23687. name: "Foot",
  23688. image: {
  23689. source: "./media/characters/draekon-sylviar/foot.svg",
  23690. bottom: 32 / 324
  23691. }
  23692. },
  23693. dick: {
  23694. height: math.unit(61, "cm"),
  23695. name: "Dick",
  23696. image: {
  23697. source: "./media/characters/draekon-sylviar/dick.svg"
  23698. }
  23699. },
  23700. dickseparated: {
  23701. height: math.unit(61, "cm"),
  23702. name: "Dick-separated",
  23703. image: {
  23704. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Small",
  23711. height: math.unit(4.53 / 2, "meters"),
  23712. default: true
  23713. },
  23714. {
  23715. name: "Normal",
  23716. height: math.unit(4.53, "meters"),
  23717. default: true
  23718. },
  23719. {
  23720. name: "Large",
  23721. height: math.unit(4.53 * 2, "meters"),
  23722. },
  23723. ]
  23724. ))
  23725. characterMakers.push(() => makeCharacter(
  23726. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23727. {
  23728. front: {
  23729. height: math.unit(6 + 2 / 12, "feet"),
  23730. weight: math.unit(180, "lb"),
  23731. name: "Front",
  23732. image: {
  23733. source: "./media/characters/brawler/front.svg",
  23734. extra: 3301 / 3027,
  23735. bottom: 138 / 3439
  23736. }
  23737. },
  23738. },
  23739. [
  23740. {
  23741. name: "Normal",
  23742. height: math.unit(6 + 2 / 12, "feet"),
  23743. default: true
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23749. {
  23750. front: {
  23751. height: math.unit(11, "feet"),
  23752. weight: math.unit(1000, "lb"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/alex/front.svg",
  23756. bottom: 44.5 / 620
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Micro",
  23763. height: math.unit(5, "inches")
  23764. },
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(11, "feet"),
  23768. default: true
  23769. },
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(9.5e9, "feet")
  23773. },
  23774. {
  23775. name: "Max Size",
  23776. height: math.unit(1.4e283, "yottameters")
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23782. {
  23783. female: {
  23784. height: math.unit(29.9, "m"),
  23785. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23786. name: "Female",
  23787. image: {
  23788. source: "./media/characters/zenari/female.svg",
  23789. extra: 3281.6 / 3217,
  23790. bottom: 72.2 / 3353
  23791. }
  23792. },
  23793. male: {
  23794. height: math.unit(27.7, "m"),
  23795. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23796. name: "Male",
  23797. image: {
  23798. source: "./media/characters/zenari/male.svg",
  23799. extra: 3008 / 2991,
  23800. bottom: 54.6 / 3069
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Macro",
  23807. height: math.unit(29.7, "meters"),
  23808. default: true
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23814. {
  23815. female: {
  23816. height: math.unit(23.8, "m"),
  23817. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23818. name: "Female",
  23819. image: {
  23820. source: "./media/characters/mactarian/female.svg",
  23821. extra: 2662 / 2569,
  23822. bottom: 73 / 2736
  23823. }
  23824. },
  23825. male: {
  23826. height: math.unit(23.8, "m"),
  23827. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23828. name: "Male",
  23829. image: {
  23830. source: "./media/characters/mactarian/male.svg",
  23831. extra: 2673 / 2600,
  23832. bottom: 76 / 2750
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(23.8, "meters"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23846. {
  23847. female: {
  23848. height: math.unit(19.3, "m"),
  23849. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23850. name: "Female",
  23851. image: {
  23852. source: "./media/characters/umok/female.svg",
  23853. extra: 2186 / 2078,
  23854. bottom: 87 / 2277
  23855. }
  23856. },
  23857. male: {
  23858. height: math.unit(19.5, "m"),
  23859. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23860. name: "Male",
  23861. image: {
  23862. source: "./media/characters/umok/male.svg",
  23863. extra: 2233 / 2140,
  23864. bottom: 24.4 / 2258
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(19.3, "meters"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23878. {
  23879. female: {
  23880. height: math.unit(26.15, "m"),
  23881. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23882. name: "Female",
  23883. image: {
  23884. source: "./media/characters/joraxian/female.svg",
  23885. extra: 2912 / 2824,
  23886. bottom: 36 / 2956
  23887. }
  23888. },
  23889. male: {
  23890. height: math.unit(25.4, "m"),
  23891. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23892. name: "Male",
  23893. image: {
  23894. source: "./media/characters/joraxian/male.svg",
  23895. extra: 2877 / 2721,
  23896. bottom: 82 / 2967
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(26.15, "meters"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23910. {
  23911. female: {
  23912. height: math.unit(21.6, "m"),
  23913. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23914. name: "Female",
  23915. image: {
  23916. source: "./media/characters/sthara/female.svg",
  23917. extra: 2516 / 2347,
  23918. bottom: 21.5 / 2537
  23919. }
  23920. },
  23921. male: {
  23922. height: math.unit(24, "m"),
  23923. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23924. name: "Male",
  23925. image: {
  23926. source: "./media/characters/sthara/male.svg",
  23927. extra: 2732 / 2607,
  23928. bottom: 23 / 2732
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Macro",
  23935. height: math.unit(21.6, "meters"),
  23936. default: true
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23942. {
  23943. front: {
  23944. height: math.unit(6 + 4 / 12, "feet"),
  23945. weight: math.unit(175, "lb"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/luka-bryzant/front.svg",
  23949. extra: 311 / 289,
  23950. bottom: 4 / 315
  23951. }
  23952. },
  23953. back: {
  23954. height: math.unit(6 + 4 / 12, "feet"),
  23955. weight: math.unit(175, "lb"),
  23956. name: "Back",
  23957. image: {
  23958. source: "./media/characters/luka-bryzant/back.svg",
  23959. extra: 311 / 289,
  23960. bottom: 3.8 / 313.7
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "Micro",
  23967. height: math.unit(10, "inches")
  23968. },
  23969. {
  23970. name: "Normal",
  23971. height: math.unit(6 + 4 / 12, "feet"),
  23972. default: true
  23973. },
  23974. {
  23975. name: "Large",
  23976. height: math.unit(12, "feet")
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23982. {
  23983. front: {
  23984. height: math.unit(5 + 7 / 12, "feet"),
  23985. weight: math.unit(185, "lb"),
  23986. name: "Front",
  23987. image: {
  23988. source: "./media/characters/aman-aquila/front.svg",
  23989. extra: 1013 / 976,
  23990. bottom: 45.6 / 1057
  23991. }
  23992. },
  23993. side: {
  23994. height: math.unit(5 + 7 / 12, "feet"),
  23995. weight: math.unit(185, "lb"),
  23996. name: "Side",
  23997. image: {
  23998. source: "./media/characters/aman-aquila/side.svg",
  23999. extra: 1054 / 1011,
  24000. bottom: 15 / 1070
  24001. }
  24002. },
  24003. back: {
  24004. height: math.unit(5 + 7 / 12, "feet"),
  24005. weight: math.unit(185, "lb"),
  24006. name: "Back",
  24007. image: {
  24008. source: "./media/characters/aman-aquila/back.svg",
  24009. extra: 1026 / 970,
  24010. bottom: 12 / 1039
  24011. }
  24012. },
  24013. head: {
  24014. height: math.unit(1.211, "feet"),
  24015. name: "Head",
  24016. image: {
  24017. source: "./media/characters/aman-aquila/head.svg",
  24018. }
  24019. },
  24020. },
  24021. [
  24022. {
  24023. name: "Minimicro",
  24024. height: math.unit(0.057, "inches")
  24025. },
  24026. {
  24027. name: "Micro",
  24028. height: math.unit(7, "inches")
  24029. },
  24030. {
  24031. name: "Mini",
  24032. height: math.unit(3 + 7 / 12, "feet")
  24033. },
  24034. {
  24035. name: "Normal",
  24036. height: math.unit(5 + 7 / 12, "feet"),
  24037. default: true
  24038. },
  24039. {
  24040. name: "Macro",
  24041. height: math.unit(157 + 7 / 12, "feet")
  24042. },
  24043. {
  24044. name: "Megamacro",
  24045. height: math.unit(1557 + 7 / 12, "feet")
  24046. },
  24047. {
  24048. name: "Gigamacro",
  24049. height: math.unit(15557 + 7 / 12, "feet")
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24055. {
  24056. front: {
  24057. height: math.unit(3 + 2 / 12, "inches"),
  24058. weight: math.unit(0.3, "ounces"),
  24059. name: "Front",
  24060. image: {
  24061. source: "./media/characters/hiphae/front.svg",
  24062. extra: 1931 / 1683,
  24063. bottom: 24 / 1955
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Normal",
  24070. height: math.unit(3 + 1 / 2, "inches"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24077. {
  24078. front: {
  24079. height: math.unit(5 + 10 / 12, "feet"),
  24080. weight: math.unit(165, "lb"),
  24081. name: "Front",
  24082. image: {
  24083. source: "./media/characters/nicky/front.svg",
  24084. extra: 3144 / 2886,
  24085. bottom: 45.6 / 3192
  24086. }
  24087. },
  24088. back: {
  24089. height: math.unit(5 + 10 / 12, "feet"),
  24090. weight: math.unit(165, "lb"),
  24091. name: "Back",
  24092. image: {
  24093. source: "./media/characters/nicky/back.svg",
  24094. extra: 3055 / 2804,
  24095. bottom: 28.4 / 3087
  24096. }
  24097. },
  24098. frontclothed: {
  24099. height: math.unit(5 + 10 / 12, "feet"),
  24100. weight: math.unit(165, "lb"),
  24101. name: "Front-clothed",
  24102. image: {
  24103. source: "./media/characters/nicky/front-clothed.svg",
  24104. extra: 3184.9 / 2926.9,
  24105. bottom: 86.5 / 3239.9
  24106. }
  24107. },
  24108. foot: {
  24109. height: math.unit(1.16, "feet"),
  24110. name: "Foot",
  24111. image: {
  24112. source: "./media/characters/nicky/foot.svg"
  24113. }
  24114. },
  24115. feet: {
  24116. height: math.unit(1.34, "feet"),
  24117. name: "Feet",
  24118. image: {
  24119. source: "./media/characters/nicky/feet.svg"
  24120. }
  24121. },
  24122. maw: {
  24123. height: math.unit(0.9, "feet"),
  24124. name: "Maw",
  24125. image: {
  24126. source: "./media/characters/nicky/maw.svg"
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Normal",
  24133. height: math.unit(5 + 10 / 12, "feet"),
  24134. default: true
  24135. },
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(60, "feet")
  24139. },
  24140. {
  24141. name: "Megamacro",
  24142. height: math.unit(1, "mile")
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24148. {
  24149. side: {
  24150. height: math.unit(10, "feet"),
  24151. weight: math.unit(600, "lb"),
  24152. name: "Side",
  24153. image: {
  24154. source: "./media/characters/blair/side.svg",
  24155. bottom: 16.6 / 475,
  24156. extra: 458 / 431
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Micro",
  24163. height: math.unit(8, "inches")
  24164. },
  24165. {
  24166. name: "Normal",
  24167. height: math.unit(10, "feet"),
  24168. default: true
  24169. },
  24170. {
  24171. name: "Macro",
  24172. height: math.unit(180, "feet")
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(5 + 4 / 12, "feet"),
  24181. weight: math.unit(125, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/fisher/front.svg",
  24185. extra: 444 / 390,
  24186. bottom: 2 / 444.8
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Micro",
  24193. height: math.unit(4, "inches")
  24194. },
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(5 + 4 / 12, "feet"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Macro",
  24202. height: math.unit(100, "feet")
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24208. {
  24209. front: {
  24210. height: math.unit(6.71, "feet"),
  24211. weight: math.unit(200, "lb"),
  24212. capacity: math.unit(1000000, "people"),
  24213. name: "Front",
  24214. image: {
  24215. source: "./media/characters/gliss/front.svg",
  24216. extra: 2347 / 2231,
  24217. bottom: 113 / 2462
  24218. }
  24219. },
  24220. hammerspaceSize: {
  24221. height: math.unit(6.71 * 717, "feet"),
  24222. weight: math.unit(200, "lb"),
  24223. capacity: math.unit(1000000, "people"),
  24224. name: "Hammerspace Size",
  24225. image: {
  24226. source: "./media/characters/gliss/front.svg",
  24227. extra: 2347 / 2231,
  24228. bottom: 113 / 2462
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(6.71, "feet"),
  24236. default: true
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24242. {
  24243. side: {
  24244. height: math.unit(1.44, "m"),
  24245. weight: math.unit(80, "kg"),
  24246. name: "Side",
  24247. image: {
  24248. source: "./media/characters/dune-anderson/side.svg",
  24249. bottom: 49 / 1426
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Wolf-sized",
  24256. height: math.unit(1.44, "meters")
  24257. },
  24258. {
  24259. name: "Normal",
  24260. height: math.unit(5.05, "meters"),
  24261. default: true
  24262. },
  24263. {
  24264. name: "Big",
  24265. height: math.unit(14.4, "meters")
  24266. },
  24267. {
  24268. name: "Huge",
  24269. height: math.unit(144, "meters")
  24270. },
  24271. ]
  24272. ))
  24273. characterMakers.push(() => makeCharacter(
  24274. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24275. {
  24276. front: {
  24277. height: math.unit(7, "feet"),
  24278. weight: math.unit(425, "lb"),
  24279. name: "Front",
  24280. image: {
  24281. source: "./media/characters/hind/front.svg",
  24282. extra: 2091 / 1860,
  24283. bottom: 129 / 2220
  24284. }
  24285. },
  24286. back: {
  24287. height: math.unit(7, "feet"),
  24288. weight: math.unit(425, "lb"),
  24289. name: "Back",
  24290. image: {
  24291. source: "./media/characters/hind/back.svg",
  24292. extra: 2091 / 1860,
  24293. bottom: 24.6 / 2309
  24294. }
  24295. },
  24296. tail: {
  24297. height: math.unit(2.8, "feet"),
  24298. name: "Tail",
  24299. image: {
  24300. source: "./media/characters/hind/tail.svg"
  24301. }
  24302. },
  24303. head: {
  24304. height: math.unit(2.55, "feet"),
  24305. name: "Head",
  24306. image: {
  24307. source: "./media/characters/hind/head.svg"
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "XS",
  24314. height: math.unit(0.7, "feet")
  24315. },
  24316. {
  24317. name: "Normal",
  24318. height: math.unit(7, "feet"),
  24319. default: true
  24320. },
  24321. {
  24322. name: "XL",
  24323. height: math.unit(70, "feet")
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24329. {
  24330. front: {
  24331. height: math.unit(6, "feet"),
  24332. weight: math.unit(150, "lb"),
  24333. name: "Front",
  24334. image: {
  24335. source: "./media/characters/dylan-skaven/front.svg",
  24336. extra: 2318 / 2063,
  24337. bottom: 93.4 / 2410
  24338. }
  24339. },
  24340. },
  24341. [
  24342. {
  24343. name: "Nano",
  24344. height: math.unit(1, "mm")
  24345. },
  24346. {
  24347. name: "Micro",
  24348. height: math.unit(1, "cm")
  24349. },
  24350. {
  24351. name: "Normal",
  24352. height: math.unit(2.1, "meters"),
  24353. default: true
  24354. },
  24355. ]
  24356. ))
  24357. characterMakers.push(() => makeCharacter(
  24358. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24359. {
  24360. front: {
  24361. height: math.unit(7 + 5 / 12, "feet"),
  24362. weight: math.unit(357, "lb"),
  24363. name: "Front",
  24364. image: {
  24365. source: "./media/characters/solex-draconov/front.svg",
  24366. extra: 1993 / 1865,
  24367. bottom: 117 / 2111
  24368. }
  24369. },
  24370. },
  24371. [
  24372. {
  24373. name: "Natural Height",
  24374. height: math.unit(7 + 5 / 12, "feet"),
  24375. default: true
  24376. },
  24377. {
  24378. name: "Macro",
  24379. height: math.unit(350, "feet")
  24380. },
  24381. {
  24382. name: "Macro+",
  24383. height: math.unit(1000, "feet")
  24384. },
  24385. {
  24386. name: "Megamacro",
  24387. height: math.unit(20, "km")
  24388. },
  24389. {
  24390. name: "Megamacro+",
  24391. height: math.unit(1000, "km")
  24392. },
  24393. {
  24394. name: "Gigamacro",
  24395. height: math.unit(2.5, "Gm")
  24396. },
  24397. {
  24398. name: "Teramacro",
  24399. height: math.unit(15, "Tm")
  24400. },
  24401. {
  24402. name: "Galactic",
  24403. height: math.unit(30, "Zm")
  24404. },
  24405. {
  24406. name: "Universal",
  24407. height: math.unit(21000, "Ym")
  24408. },
  24409. {
  24410. name: "Omniversal",
  24411. height: math.unit(9.861e50, "Ym")
  24412. },
  24413. {
  24414. name: "Existential",
  24415. height: math.unit(1e300, "meters")
  24416. },
  24417. ]
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24421. {
  24422. side: {
  24423. height: math.unit(25, "feet"),
  24424. weight: math.unit(90000, "lb"),
  24425. name: "Side",
  24426. image: {
  24427. source: "./media/characters/mandarax/side.svg",
  24428. extra: 614 / 332,
  24429. bottom: 55 / 630
  24430. }
  24431. },
  24432. head: {
  24433. height: math.unit(11.4, "feet"),
  24434. name: "Head",
  24435. image: {
  24436. source: "./media/characters/mandarax/head.svg"
  24437. }
  24438. },
  24439. belly: {
  24440. height: math.unit(33, "feet"),
  24441. name: "Belly",
  24442. capacity: math.unit(500, "people"),
  24443. image: {
  24444. source: "./media/characters/mandarax/belly.svg"
  24445. }
  24446. },
  24447. dick: {
  24448. height: math.unit(8.46, "feet"),
  24449. name: "Dick",
  24450. image: {
  24451. source: "./media/characters/mandarax/dick.svg"
  24452. }
  24453. },
  24454. top: {
  24455. height: math.unit(28, "meters"),
  24456. name: "Top",
  24457. image: {
  24458. source: "./media/characters/mandarax/top.svg"
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(25, "feet"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(5, "feet"),
  24475. weight: math.unit(90, "lb"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/pixil/front.svg",
  24479. extra: 2000 / 1618,
  24480. bottom: 12.3 / 2011
  24481. }
  24482. },
  24483. },
  24484. [
  24485. {
  24486. name: "Normal",
  24487. height: math.unit(5, "feet"),
  24488. default: true
  24489. },
  24490. {
  24491. name: "Megamacro",
  24492. height: math.unit(10, "miles"),
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(7 + 2 / 12, "feet"),
  24501. weight: math.unit(200, "lb"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/angel/front.svg",
  24505. extra: 1830 / 1737,
  24506. bottom: 22.6 / 1854,
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(7 + 2 / 12, "feet"),
  24514. default: true
  24515. },
  24516. {
  24517. name: "Macro",
  24518. height: math.unit(1000, "feet")
  24519. },
  24520. {
  24521. name: "Megamacro",
  24522. height: math.unit(2, "miles")
  24523. },
  24524. {
  24525. name: "Gigamacro",
  24526. height: math.unit(20, "earths")
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(5, "feet"),
  24535. weight: math.unit(180, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/mekana/front.svg",
  24539. extra: 1671 / 1605,
  24540. bottom: 3.5 / 1691
  24541. }
  24542. },
  24543. side: {
  24544. height: math.unit(5, "feet"),
  24545. weight: math.unit(180, "lb"),
  24546. name: "Side",
  24547. image: {
  24548. source: "./media/characters/mekana/side.svg",
  24549. extra: 1671 / 1605,
  24550. bottom: 3.5 / 1691
  24551. }
  24552. },
  24553. back: {
  24554. height: math.unit(5, "feet"),
  24555. weight: math.unit(180, "lb"),
  24556. name: "Back",
  24557. image: {
  24558. source: "./media/characters/mekana/back.svg",
  24559. extra: 1671 / 1605,
  24560. bottom: 3.5 / 1691
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Normal",
  24567. height: math.unit(5, "feet"),
  24568. default: true
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(4 + 6 / 12, "feet"),
  24577. weight: math.unit(80, "lb"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/pixie/front.svg",
  24581. extra: 1924 / 1825,
  24582. bottom: 22.4 / 1946
  24583. }
  24584. },
  24585. },
  24586. [
  24587. {
  24588. name: "Normal",
  24589. height: math.unit(4 + 6 / 12, "feet"),
  24590. default: true
  24591. },
  24592. {
  24593. name: "Macro",
  24594. height: math.unit(40, "feet")
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24600. {
  24601. front: {
  24602. height: math.unit(2.1, "meters"),
  24603. weight: math.unit(200, "lb"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/the-lascivious/front.svg",
  24607. extra: 1 / 0.893,
  24608. bottom: 3.5 / 573.7
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Human Scale",
  24615. height: math.unit(2.1, "meters")
  24616. },
  24617. {
  24618. name: "Wolxi Scale",
  24619. height: math.unit(46.2, "m"),
  24620. default: true
  24621. },
  24622. {
  24623. name: "Boinker of Buildings",
  24624. height: math.unit(10, "km")
  24625. },
  24626. {
  24627. name: "Shagger of Skyscrapers",
  24628. height: math.unit(40, "km")
  24629. },
  24630. {
  24631. name: "Banger of Boroughs",
  24632. height: math.unit(4000, "km")
  24633. },
  24634. {
  24635. name: "Screwer of States",
  24636. height: math.unit(100000, "km")
  24637. },
  24638. {
  24639. name: "Pounder of Planets",
  24640. height: math.unit(2000000, "km")
  24641. },
  24642. ]
  24643. ))
  24644. characterMakers.push(() => makeCharacter(
  24645. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24646. {
  24647. front: {
  24648. height: math.unit(6, "feet"),
  24649. weight: math.unit(150, "lb"),
  24650. name: "Front",
  24651. image: {
  24652. source: "./media/characters/aj/front.svg",
  24653. extra: 2039 / 1562,
  24654. bottom: 40 / 2079
  24655. }
  24656. },
  24657. },
  24658. [
  24659. {
  24660. name: "Normal",
  24661. height: math.unit(11 + 6 / 12, "feet"),
  24662. default: true
  24663. },
  24664. {
  24665. name: "Megamacro",
  24666. height: math.unit(60, "megameters")
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24672. {
  24673. side: {
  24674. height: math.unit(31 + 8 / 12, "feet"),
  24675. weight: math.unit(75000, "kg"),
  24676. name: "Side",
  24677. image: {
  24678. source: "./media/characters/koros/side.svg",
  24679. extra: 1442 / 1297,
  24680. bottom: 122.7 / 1562
  24681. }
  24682. },
  24683. dicksKingsCrown: {
  24684. height: math.unit(6, "feet"),
  24685. name: "Dicks (King's Crown)",
  24686. image: {
  24687. source: "./media/characters/koros/dicks-kings-crown.svg"
  24688. }
  24689. },
  24690. dicksTailSet: {
  24691. height: math.unit(3, "feet"),
  24692. name: "Dicks (Tail Set)",
  24693. image: {
  24694. source: "./media/characters/koros/dicks-tail-set.svg"
  24695. }
  24696. },
  24697. dickCumming: {
  24698. height: math.unit(7.98, "feet"),
  24699. name: "Dick (Cumming)",
  24700. image: {
  24701. source: "./media/characters/koros/dick-cumming.svg"
  24702. }
  24703. },
  24704. dicksBack: {
  24705. height: math.unit(5.9, "feet"),
  24706. name: "Dicks (Back)",
  24707. image: {
  24708. source: "./media/characters/koros/dicks-back.svg"
  24709. }
  24710. },
  24711. dicksFront: {
  24712. height: math.unit(3.72, "feet"),
  24713. name: "Dicks (Front)",
  24714. image: {
  24715. source: "./media/characters/koros/dicks-front.svg"
  24716. }
  24717. },
  24718. dicksPeeking: {
  24719. height: math.unit(3.0, "feet"),
  24720. name: "Dicks (Peeking)",
  24721. image: {
  24722. source: "./media/characters/koros/dicks-peeking.svg"
  24723. }
  24724. },
  24725. eye: {
  24726. height: math.unit(1.7, "feet"),
  24727. name: "Eye",
  24728. image: {
  24729. source: "./media/characters/koros/eye.svg"
  24730. }
  24731. },
  24732. headFront: {
  24733. height: math.unit(11.69, "feet"),
  24734. name: "Head (Front)",
  24735. image: {
  24736. source: "./media/characters/koros/head-front.svg"
  24737. }
  24738. },
  24739. headSide: {
  24740. height: math.unit(14, "feet"),
  24741. name: "Head (Side)",
  24742. image: {
  24743. source: "./media/characters/koros/head-side.svg"
  24744. }
  24745. },
  24746. leg: {
  24747. height: math.unit(17, "feet"),
  24748. name: "Leg",
  24749. image: {
  24750. source: "./media/characters/koros/leg.svg"
  24751. }
  24752. },
  24753. mawSide: {
  24754. height: math.unit(12.8, "feet"),
  24755. name: "Maw (Side)",
  24756. image: {
  24757. source: "./media/characters/koros/maw-side.svg"
  24758. }
  24759. },
  24760. mawSpitting: {
  24761. height: math.unit(17, "feet"),
  24762. name: "Maw (Spitting)",
  24763. image: {
  24764. source: "./media/characters/koros/maw-spitting.svg"
  24765. }
  24766. },
  24767. slit: {
  24768. height: math.unit(2.8, "feet"),
  24769. name: "Slit",
  24770. image: {
  24771. source: "./media/characters/koros/slit.svg"
  24772. }
  24773. },
  24774. stomach: {
  24775. height: math.unit(6.8, "feet"),
  24776. capacity: math.unit(20, "people"),
  24777. name: "Stomach",
  24778. image: {
  24779. source: "./media/characters/koros/stomach.svg"
  24780. }
  24781. },
  24782. wingspanBottom: {
  24783. height: math.unit(114, "feet"),
  24784. name: "Wingspan (Bottom)",
  24785. image: {
  24786. source: "./media/characters/koros/wingspan-bottom.svg"
  24787. }
  24788. },
  24789. wingspanTop: {
  24790. height: math.unit(104, "feet"),
  24791. name: "Wingspan (Top)",
  24792. image: {
  24793. source: "./media/characters/koros/wingspan-top.svg"
  24794. }
  24795. },
  24796. },
  24797. [
  24798. {
  24799. name: "Normal",
  24800. height: math.unit(31 + 8 / 12, "feet"),
  24801. default: true
  24802. },
  24803. ]
  24804. ))
  24805. characterMakers.push(() => makeCharacter(
  24806. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24807. {
  24808. front: {
  24809. height: math.unit(18 + 5 / 12, "feet"),
  24810. weight: math.unit(3750, "kg"),
  24811. name: "Front",
  24812. image: {
  24813. source: "./media/characters/vexx/front.svg",
  24814. extra: 426 / 396,
  24815. bottom: 31.5 / 458
  24816. }
  24817. },
  24818. maw: {
  24819. height: math.unit(6, "feet"),
  24820. name: "Maw",
  24821. image: {
  24822. source: "./media/characters/vexx/maw.svg"
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Normal",
  24829. height: math.unit(18 + 5 / 12, "feet"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(17 + 6 / 12, "feet"),
  24839. weight: math.unit(150, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/baadra/front.svg",
  24843. extra: 3137 / 2890,
  24844. bottom: 168.4 / 3305
  24845. }
  24846. },
  24847. back: {
  24848. height: math.unit(17 + 6 / 12, "feet"),
  24849. weight: math.unit(150, "lb"),
  24850. name: "Back",
  24851. image: {
  24852. source: "./media/characters/baadra/back.svg",
  24853. extra: 3142 / 2890,
  24854. bottom: 220 / 3371
  24855. }
  24856. },
  24857. head: {
  24858. height: math.unit(5.45, "feet"),
  24859. name: "Head",
  24860. image: {
  24861. source: "./media/characters/baadra/head.svg"
  24862. }
  24863. },
  24864. headAngry: {
  24865. height: math.unit(4.95, "feet"),
  24866. name: "Head (Angry)",
  24867. image: {
  24868. source: "./media/characters/baadra/head-angry.svg"
  24869. }
  24870. },
  24871. headOpen: {
  24872. height: math.unit(6, "feet"),
  24873. name: "Head (Open)",
  24874. image: {
  24875. source: "./media/characters/baadra/head-open.svg"
  24876. }
  24877. },
  24878. },
  24879. [
  24880. {
  24881. name: "Normal",
  24882. height: math.unit(17 + 6 / 12, "feet"),
  24883. default: true
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24889. {
  24890. front: {
  24891. height: math.unit(7 + 3 / 12, "feet"),
  24892. weight: math.unit(180, "lb"),
  24893. name: "Front",
  24894. image: {
  24895. source: "./media/characters/juri/front.svg",
  24896. extra: 1401 / 1237,
  24897. bottom: 18.5 / 1418
  24898. }
  24899. },
  24900. side: {
  24901. height: math.unit(7 + 3 / 12, "feet"),
  24902. weight: math.unit(180, "lb"),
  24903. name: "Side",
  24904. image: {
  24905. source: "./media/characters/juri/side.svg",
  24906. extra: 1424 / 1242,
  24907. bottom: 18.5 / 1447
  24908. }
  24909. },
  24910. sitting: {
  24911. height: math.unit(6, "feet"),
  24912. weight: math.unit(180, "lb"),
  24913. name: "Sitting",
  24914. image: {
  24915. source: "./media/characters/juri/sitting.svg",
  24916. extra: 1270 / 1143,
  24917. bottom: 100 / 1343
  24918. }
  24919. },
  24920. back: {
  24921. height: math.unit(7 + 3 / 12, "feet"),
  24922. weight: math.unit(180, "lb"),
  24923. name: "Back",
  24924. image: {
  24925. source: "./media/characters/juri/back.svg",
  24926. extra: 1377 / 1240,
  24927. bottom: 23.7 / 1405
  24928. }
  24929. },
  24930. maw: {
  24931. height: math.unit(2.8, "feet"),
  24932. name: "Maw",
  24933. image: {
  24934. source: "./media/characters/juri/maw.svg"
  24935. }
  24936. },
  24937. stomach: {
  24938. height: math.unit(0.89, "feet"),
  24939. capacity: math.unit(4, "liters"),
  24940. name: "Stomach",
  24941. image: {
  24942. source: "./media/characters/juri/stomach.svg"
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(7 + 3 / 12, "feet"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24956. {
  24957. fox: {
  24958. height: math.unit(5 + 6 / 12, "feet"),
  24959. weight: math.unit(140, "lb"),
  24960. name: "Fox",
  24961. image: {
  24962. source: "./media/characters/maxene-sita/fox.svg",
  24963. extra: 146 / 138,
  24964. bottom: 2.1 / 148.19
  24965. }
  24966. },
  24967. foxLaying: {
  24968. height: math.unit(1.70, "feet"),
  24969. weight: math.unit(140, "lb"),
  24970. name: "Fox (Laying)",
  24971. image: {
  24972. source: "./media/characters/maxene-sita/fox-laying.svg",
  24973. extra: 910 / 572,
  24974. bottom: 71 / 981
  24975. }
  24976. },
  24977. kitsune: {
  24978. height: math.unit(10, "feet"),
  24979. weight: math.unit(800, "lb"),
  24980. name: "Kitsune",
  24981. image: {
  24982. source: "./media/characters/maxene-sita/kitsune.svg",
  24983. extra: 185 / 176,
  24984. bottom: 4.7 / 189.9
  24985. }
  24986. },
  24987. hellhound: {
  24988. height: math.unit(10, "feet"),
  24989. weight: math.unit(700, "lb"),
  24990. name: "Hellhound",
  24991. image: {
  24992. source: "./media/characters/maxene-sita/hellhound.svg",
  24993. extra: 1600 / 1545,
  24994. bottom: 81 / 1681
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Normal",
  25001. height: math.unit(5 + 6 / 12, "feet"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25008. {
  25009. front: {
  25010. height: math.unit(3 + 4 / 12, "feet"),
  25011. weight: math.unit(70, "lb"),
  25012. name: "Front",
  25013. image: {
  25014. source: "./media/characters/maia/front.svg",
  25015. extra: 227 / 219.5,
  25016. bottom: 40 / 267
  25017. }
  25018. },
  25019. back: {
  25020. height: math.unit(3 + 4 / 12, "feet"),
  25021. weight: math.unit(70, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/maia/back.svg",
  25025. extra: 237 / 225
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Normal",
  25032. height: math.unit(3 + 4 / 12, "feet"),
  25033. default: true
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(5 + 10 / 12, "feet"),
  25042. weight: math.unit(197, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/jabaro/front.svg",
  25046. extra: 225 / 216,
  25047. bottom: 5.06 / 230
  25048. }
  25049. },
  25050. back: {
  25051. height: math.unit(5 + 10 / 12, "feet"),
  25052. weight: math.unit(197, "lb"),
  25053. name: "Back",
  25054. image: {
  25055. source: "./media/characters/jabaro/back.svg",
  25056. extra: 225 / 219,
  25057. bottom: 1.9 / 227
  25058. }
  25059. },
  25060. },
  25061. [
  25062. {
  25063. name: "Normal",
  25064. height: math.unit(5 + 10 / 12, "feet"),
  25065. default: true
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25071. {
  25072. front: {
  25073. height: math.unit(5 + 8 / 12, "feet"),
  25074. weight: math.unit(139, "lb"),
  25075. name: "Front",
  25076. image: {
  25077. source: "./media/characters/risa/front.svg",
  25078. extra: 270 / 260,
  25079. bottom: 11.2 / 282
  25080. }
  25081. },
  25082. back: {
  25083. height: math.unit(5 + 8 / 12, "feet"),
  25084. weight: math.unit(139, "lb"),
  25085. name: "Back",
  25086. image: {
  25087. source: "./media/characters/risa/back.svg",
  25088. extra: 264 / 255,
  25089. bottom: 4 / 268
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(5 + 8 / 12, "feet"),
  25097. default: true
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25103. {
  25104. front: {
  25105. height: math.unit(2 + 11 / 12, "feet"),
  25106. weight: math.unit(30, "lb"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/weatley/front.svg",
  25110. bottom: 10.7 / 414,
  25111. extra: 403.5 / 362
  25112. }
  25113. },
  25114. back: {
  25115. height: math.unit(2 + 11 / 12, "feet"),
  25116. weight: math.unit(30, "lb"),
  25117. name: "Back",
  25118. image: {
  25119. source: "./media/characters/weatley/back.svg",
  25120. bottom: 10.7 / 414,
  25121. extra: 403.5 / 362
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Normal",
  25128. height: math.unit(2 + 11 / 12, "feet"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(5 + 2 / 12, "feet"),
  25138. weight: math.unit(50, "kg"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/mercury-crescent/front.svg",
  25142. extra: 1088 / 1033,
  25143. bottom: 18.9 / 1109
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Normal",
  25150. height: math.unit(5 + 2 / 12, "feet"),
  25151. default: true
  25152. },
  25153. ]
  25154. ))
  25155. characterMakers.push(() => makeCharacter(
  25156. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25157. {
  25158. front: {
  25159. height: math.unit(2, "feet"),
  25160. weight: math.unit(15, "kg"),
  25161. name: "Front",
  25162. image: {
  25163. source: "./media/characters/diamond-jones/front.svg",
  25164. bottom: 16 / 568
  25165. }
  25166. },
  25167. },
  25168. [
  25169. {
  25170. name: "Normal",
  25171. height: math.unit(2, "feet"),
  25172. default: true
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25178. {
  25179. front: {
  25180. height: math.unit(3, "feet"),
  25181. weight: math.unit(30, "kg"),
  25182. name: "Front",
  25183. image: {
  25184. source: "./media/characters/sweet-bit/front.svg",
  25185. extra: 675 / 567,
  25186. bottom: 27.7 / 703
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(3, "feet"),
  25194. default: true
  25195. },
  25196. ]
  25197. ))
  25198. characterMakers.push(() => makeCharacter(
  25199. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25200. {
  25201. side: {
  25202. height: math.unit(9.178, "feet"),
  25203. weight: math.unit(500, "lb"),
  25204. name: "Side",
  25205. image: {
  25206. source: "./media/characters/umbrazen/side.svg",
  25207. extra: 1730 / 1473,
  25208. bottom: 34.6 / 1765
  25209. }
  25210. },
  25211. },
  25212. [
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(9.178, "feet"),
  25216. default: true
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25222. {
  25223. front: {
  25224. height: math.unit(10, "feet"),
  25225. weight: math.unit(750, "lb"),
  25226. name: "Front",
  25227. image: {
  25228. source: "./media/characters/arlist/front.svg",
  25229. extra: 961 / 778,
  25230. bottom: 6.2 / 986
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(10, "feet"),
  25238. default: true
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(5 + 1 / 12, "feet"),
  25247. weight: math.unit(110, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/aradel/front.svg",
  25251. extra: 324 / 303,
  25252. bottom: 3.6 / 329.4
  25253. }
  25254. },
  25255. },
  25256. [
  25257. {
  25258. name: "Normal",
  25259. height: math.unit(5 + 1 / 12, "feet"),
  25260. default: true
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(3 + 8 / 12, "feet"),
  25269. weight: math.unit(50, "lb"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/serryn/front.svg",
  25273. extra: 1792 / 1656,
  25274. bottom: 43.5 / 1840
  25275. }
  25276. },
  25277. },
  25278. [
  25279. {
  25280. name: "Normal",
  25281. height: math.unit(3 + 8 / 12, "feet"),
  25282. default: true
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Xavier Thyme" },
  25288. {
  25289. front: {
  25290. height: math.unit(7 + 10 / 12, "feet"),
  25291. weight: math.unit(255, "lb"),
  25292. name: "Front",
  25293. image: {
  25294. source: "./media/characters/xavier-thyme/front.svg",
  25295. extra: 3733 / 3642,
  25296. bottom: 131 / 3869
  25297. }
  25298. },
  25299. frontRaven: {
  25300. height: math.unit(7 + 10 / 12, "feet"),
  25301. weight: math.unit(255, "lb"),
  25302. name: "Front (Raven)",
  25303. image: {
  25304. source: "./media/characters/xavier-thyme/front-raven.svg",
  25305. extra: 4385 / 3642,
  25306. bottom: 131 / 4517
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Normal",
  25313. height: math.unit(7 + 10 / 12, "feet"),
  25314. default: true
  25315. },
  25316. ]
  25317. ))
  25318. characterMakers.push(() => makeCharacter(
  25319. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25320. {
  25321. front: {
  25322. height: math.unit(1.6, "m"),
  25323. weight: math.unit(50, "kg"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/kiki/front.svg",
  25327. extra: 4682 / 3610,
  25328. bottom: 115 / 4777
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(1.6, "meters"),
  25336. default: true
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(50, "m"),
  25345. weight: math.unit(500, "tonnes"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/ryoko/front.svg",
  25349. extra: 4632 / 3926,
  25350. bottom: 193 / 4823
  25351. }
  25352. },
  25353. },
  25354. [
  25355. {
  25356. name: "Normal",
  25357. height: math.unit(50, "meters"),
  25358. default: true
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25364. {
  25365. front: {
  25366. height: math.unit(30, "m"),
  25367. weight: math.unit(22, "tonnes"),
  25368. name: "Front",
  25369. image: {
  25370. source: "./media/characters/elio/front.svg",
  25371. extra: 4582 / 3720,
  25372. bottom: 236 / 4828
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Normal",
  25379. height: math.unit(30, "meters"),
  25380. default: true
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(6 + 3 / 12, "feet"),
  25389. weight: math.unit(120, "lb"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/azura/front.svg",
  25393. extra: 1149 / 1135,
  25394. bottom: 45 / 1194
  25395. }
  25396. },
  25397. frontClothed: {
  25398. height: math.unit(6 + 3 / 12, "feet"),
  25399. weight: math.unit(120, "lb"),
  25400. name: "Front (Clothed)",
  25401. image: {
  25402. source: "./media/characters/azura/front-clothed.svg",
  25403. extra: 1149 / 1135,
  25404. bottom: 45 / 1194
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(6 + 3 / 12, "feet"),
  25412. default: true
  25413. },
  25414. {
  25415. name: "Macro",
  25416. height: math.unit(20 + 6 / 12, "feet")
  25417. },
  25418. {
  25419. name: "Megamacro",
  25420. height: math.unit(12, "miles")
  25421. },
  25422. {
  25423. name: "Gigamacro",
  25424. height: math.unit(10000, "miles")
  25425. },
  25426. {
  25427. name: "Teramacro",
  25428. height: math.unit(900000, "miles")
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25434. {
  25435. front: {
  25436. height: math.unit(12, "feet"),
  25437. weight: math.unit(1, "ton"),
  25438. capacity: math.unit(660000, "gallons"),
  25439. name: "Front",
  25440. image: {
  25441. source: "./media/characters/zeus/front.svg",
  25442. extra: 5005 / 4717,
  25443. bottom: 363 / 5388
  25444. }
  25445. },
  25446. },
  25447. [
  25448. {
  25449. name: "Normal",
  25450. height: math.unit(12, "feet")
  25451. },
  25452. {
  25453. name: "Preferred Size",
  25454. height: math.unit(0.5, "miles"),
  25455. default: true
  25456. },
  25457. {
  25458. name: "Giga Horse",
  25459. height: math.unit(300, "miles")
  25460. },
  25461. {
  25462. name: "Riding Planets",
  25463. height: math.unit(30, "megameters")
  25464. },
  25465. {
  25466. name: "Cosmic Giant",
  25467. height: math.unit(3, "zettameters")
  25468. },
  25469. {
  25470. name: "Breeding God",
  25471. height: math.unit(9.92e22, "yottameters")
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25477. {
  25478. side: {
  25479. height: math.unit(9, "feet"),
  25480. weight: math.unit(1500, "kg"),
  25481. name: "Side",
  25482. image: {
  25483. source: "./media/characters/fang/side.svg",
  25484. extra: 924 / 866,
  25485. bottom: 47.5 / 972.3
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Normal",
  25492. height: math.unit(9, "feet"),
  25493. default: true
  25494. },
  25495. {
  25496. name: "Macro",
  25497. height: math.unit(75 + 6 / 12, "feet")
  25498. },
  25499. {
  25500. name: "Teramacro",
  25501. height: math.unit(50000, "miles")
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25507. {
  25508. front: {
  25509. height: math.unit(10, "feet"),
  25510. weight: math.unit(2, "tons"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/rekhit/front.svg",
  25514. extra: 2796 / 2590,
  25515. bottom: 225 / 3022
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(10, "feet"),
  25523. default: true
  25524. },
  25525. {
  25526. name: "Macro",
  25527. height: math.unit(500, "feet")
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Dahlia Verrick" },
  25533. {
  25534. front: {
  25535. height: math.unit(7 + 6.451 / 12, "feet"),
  25536. weight: math.unit(310, "lb"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/dahlia-verrick/front.svg",
  25540. extra: 1488 / 1365,
  25541. bottom: 6.2 / 1495
  25542. }
  25543. },
  25544. back: {
  25545. height: math.unit(7 + 6.451 / 12, "feet"),
  25546. weight: math.unit(310, "lb"),
  25547. name: "Back",
  25548. image: {
  25549. source: "./media/characters/dahlia-verrick/back.svg",
  25550. extra: 1472 / 1351,
  25551. bottom: 5.28 / 1477
  25552. }
  25553. },
  25554. frontBusiness: {
  25555. height: math.unit(7 + 6.451 / 12, "feet"),
  25556. weight: math.unit(200, "lb"),
  25557. name: "Front (Business)",
  25558. image: {
  25559. source: "./media/characters/dahlia-verrick/front-business.svg",
  25560. extra: 1478 / 1381,
  25561. bottom: 5.5 / 1484
  25562. }
  25563. },
  25564. frontCasual: {
  25565. height: math.unit(7 + 6.451 / 12, "feet"),
  25566. weight: math.unit(200, "lb"),
  25567. name: "Front (Casual)",
  25568. image: {
  25569. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25570. extra: 1478 / 1381,
  25571. bottom: 5.5 / 1484
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Travel-Sized",
  25578. height: math.unit(7.45, "inches")
  25579. },
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(7 + 6.451 / 12, "feet"),
  25583. default: true
  25584. },
  25585. {
  25586. name: "Hitting the Town",
  25587. height: math.unit(37 + 8 / 12, "feet")
  25588. },
  25589. {
  25590. name: "Stomp in the Suburbs",
  25591. height: math.unit(964 + 9.728 / 12, "feet")
  25592. },
  25593. {
  25594. name: "Sit on the City",
  25595. height: math.unit(61747 + 10.592 / 12, "feet")
  25596. },
  25597. {
  25598. name: "Glomp the Globe",
  25599. height: math.unit(252919327 + 4.832 / 12, "feet")
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25605. {
  25606. front: {
  25607. height: math.unit(6 + 4 / 12, "feet"),
  25608. weight: math.unit(320, "lb"),
  25609. name: "Front",
  25610. image: {
  25611. source: "./media/characters/balina-mahigan/front.svg",
  25612. extra: 447 / 428,
  25613. bottom: 18 / 466
  25614. }
  25615. },
  25616. back: {
  25617. height: math.unit(6 + 4 / 12, "feet"),
  25618. weight: math.unit(320, "lb"),
  25619. name: "Back",
  25620. image: {
  25621. source: "./media/characters/balina-mahigan/back.svg",
  25622. extra: 445 / 428,
  25623. bottom: 4.07 / 448
  25624. }
  25625. },
  25626. arm: {
  25627. height: math.unit(1.88, "feet"),
  25628. name: "Arm",
  25629. image: {
  25630. source: "./media/characters/balina-mahigan/arm.svg"
  25631. }
  25632. },
  25633. backPort: {
  25634. height: math.unit(0.685, "feet"),
  25635. name: "Back Port",
  25636. image: {
  25637. source: "./media/characters/balina-mahigan/back-port.svg"
  25638. }
  25639. },
  25640. hoofpaw: {
  25641. height: math.unit(1.41, "feet"),
  25642. name: "Hoofpaw",
  25643. image: {
  25644. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25645. }
  25646. },
  25647. leftHandBack: {
  25648. height: math.unit(0.938, "feet"),
  25649. name: "Left Hand (Back)",
  25650. image: {
  25651. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25652. }
  25653. },
  25654. leftHandFront: {
  25655. height: math.unit(0.938, "feet"),
  25656. name: "Left Hand (Front)",
  25657. image: {
  25658. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25659. }
  25660. },
  25661. rightHandBack: {
  25662. height: math.unit(0.95, "feet"),
  25663. name: "Right Hand (Back)",
  25664. image: {
  25665. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25666. }
  25667. },
  25668. rightHandFront: {
  25669. height: math.unit(0.95, "feet"),
  25670. name: "Right Hand (Front)",
  25671. image: {
  25672. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(6 + 4 / 12, "feet"),
  25680. default: true
  25681. },
  25682. ]
  25683. ))
  25684. characterMakers.push(() => makeCharacter(
  25685. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25686. {
  25687. front: {
  25688. height: math.unit(6, "feet"),
  25689. weight: math.unit(320, "lb"),
  25690. name: "Front",
  25691. image: {
  25692. source: "./media/characters/balina-mejeri/front.svg",
  25693. extra: 517 / 488,
  25694. bottom: 44.2 / 561
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Normal",
  25701. height: math.unit(6 + 4 / 12, "feet")
  25702. },
  25703. {
  25704. name: "Business",
  25705. height: math.unit(155, "feet"),
  25706. default: true
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25712. {
  25713. kneeling: {
  25714. height: math.unit(6 + 4 / 12, "feet"),
  25715. weight: math.unit(300 * 20, "lb"),
  25716. name: "Kneeling",
  25717. image: {
  25718. source: "./media/characters/balbarian/kneeling.svg",
  25719. extra: 922 / 862,
  25720. bottom: 42.4 / 965
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Normal",
  25727. height: math.unit(6 + 4 / 12, "feet")
  25728. },
  25729. {
  25730. name: "Treasured",
  25731. height: math.unit(18 + 9 / 12, "feet"),
  25732. default: true
  25733. },
  25734. {
  25735. name: "Macro",
  25736. height: math.unit(900, "feet")
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(6 + 4 / 12, "feet"),
  25745. weight: math.unit(325, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/balina-amarini/front.svg",
  25749. extra: 415 / 403,
  25750. bottom: 19 / 433.4
  25751. }
  25752. },
  25753. back: {
  25754. height: math.unit(6 + 4 / 12, "feet"),
  25755. weight: math.unit(325, "lb"),
  25756. name: "Back",
  25757. image: {
  25758. source: "./media/characters/balina-amarini/back.svg",
  25759. extra: 415 / 403,
  25760. bottom: 13.5 / 432
  25761. }
  25762. },
  25763. overdrive: {
  25764. height: math.unit(6 + 4 / 12, "feet"),
  25765. weight: math.unit(400, "lb"),
  25766. name: "Overdrive",
  25767. image: {
  25768. source: "./media/characters/balina-amarini/overdrive.svg",
  25769. extra: 269 / 259,
  25770. bottom: 12 / 282
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Boom",
  25777. height: math.unit(9 + 10 / 12, "feet"),
  25778. default: true
  25779. },
  25780. {
  25781. name: "Macro",
  25782. height: math.unit(280, "feet")
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25788. {
  25789. goddess: {
  25790. height: math.unit(600, "feet"),
  25791. weight: math.unit(2000000, "tons"),
  25792. name: "Goddess",
  25793. image: {
  25794. source: "./media/characters/lady-kubwa/goddess.svg",
  25795. extra: 1240.5 / 1223,
  25796. bottom: 22 / 1263
  25797. }
  25798. },
  25799. goddesser: {
  25800. height: math.unit(900, "feet"),
  25801. weight: math.unit(20000000, "lb"),
  25802. name: "Goddess-er",
  25803. image: {
  25804. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25805. extra: 899 / 888,
  25806. bottom: 12.6 / 912
  25807. }
  25808. },
  25809. },
  25810. [
  25811. {
  25812. name: "Macro",
  25813. height: math.unit(600, "feet"),
  25814. default: true
  25815. },
  25816. {
  25817. name: "Megamacro",
  25818. height: math.unit(250, "miles")
  25819. },
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25824. {
  25825. front: {
  25826. height: math.unit(7 + 7 / 12, "feet"),
  25827. weight: math.unit(250, "lb"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/tala-grovehorn/front.svg",
  25831. extra: 2636 / 2525,
  25832. bottom: 147 / 2781
  25833. }
  25834. },
  25835. back: {
  25836. height: math.unit(7 + 7 / 12, "feet"),
  25837. weight: math.unit(250, "lb"),
  25838. name: "Back",
  25839. image: {
  25840. source: "./media/characters/tala-grovehorn/back.svg",
  25841. extra: 2635 / 2539,
  25842. bottom: 100 / 2732.8
  25843. }
  25844. },
  25845. mouth: {
  25846. height: math.unit(1.15, "feet"),
  25847. name: "Mouth",
  25848. image: {
  25849. source: "./media/characters/tala-grovehorn/mouth.svg"
  25850. }
  25851. },
  25852. dick: {
  25853. height: math.unit(2.36, "feet"),
  25854. name: "Dick",
  25855. image: {
  25856. source: "./media/characters/tala-grovehorn/dick.svg"
  25857. }
  25858. },
  25859. slit: {
  25860. height: math.unit(0.61, "feet"),
  25861. name: "Slit",
  25862. image: {
  25863. source: "./media/characters/tala-grovehorn/slit.svg"
  25864. }
  25865. },
  25866. },
  25867. [
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25872. {
  25873. front: {
  25874. height: math.unit(7 + 7 / 12, "feet"),
  25875. weight: math.unit(225, "lb"),
  25876. name: "Front",
  25877. image: {
  25878. source: "./media/characters/epona/front.svg",
  25879. extra: 2445 / 2290,
  25880. bottom: 251 / 2696
  25881. }
  25882. },
  25883. back: {
  25884. height: math.unit(7 + 7 / 12, "feet"),
  25885. weight: math.unit(225, "lb"),
  25886. name: "Back",
  25887. image: {
  25888. source: "./media/characters/epona/back.svg",
  25889. extra: 2546 / 2408,
  25890. bottom: 44 / 2589
  25891. }
  25892. },
  25893. genitals: {
  25894. height: math.unit(1.5, "feet"),
  25895. name: "Genitals",
  25896. image: {
  25897. source: "./media/characters/epona/genitals.svg"
  25898. }
  25899. },
  25900. },
  25901. [
  25902. {
  25903. name: "Normal",
  25904. height: math.unit(7 + 7 / 12, "feet"),
  25905. default: true
  25906. },
  25907. ]
  25908. ))
  25909. characterMakers.push(() => makeCharacter(
  25910. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25911. {
  25912. front: {
  25913. height: math.unit(7, "feet"),
  25914. weight: math.unit(518, "lb"),
  25915. name: "Front",
  25916. image: {
  25917. source: "./media/characters/avia-bloodbourn/front.svg",
  25918. extra: 1466 / 1350,
  25919. bottom: 65 / 1527
  25920. }
  25921. },
  25922. },
  25923. [
  25924. ]
  25925. ))
  25926. characterMakers.push(() => makeCharacter(
  25927. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25928. {
  25929. front: {
  25930. height: math.unit(9.35, "feet"),
  25931. weight: math.unit(600, "lb"),
  25932. name: "Front",
  25933. image: {
  25934. source: "./media/characters/amera/front.svg",
  25935. extra: 891 / 818,
  25936. bottom: 30 / 922.7
  25937. }
  25938. },
  25939. back: {
  25940. height: math.unit(9.35, "feet"),
  25941. weight: math.unit(600, "lb"),
  25942. name: "Back",
  25943. image: {
  25944. source: "./media/characters/amera/back.svg",
  25945. extra: 876 / 824,
  25946. bottom: 6.8 / 884
  25947. }
  25948. },
  25949. dick: {
  25950. height: math.unit(2.14, "feet"),
  25951. name: "Dick",
  25952. image: {
  25953. source: "./media/characters/amera/dick.svg"
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Normal",
  25960. height: math.unit(9.35, "feet"),
  25961. default: true
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25967. {
  25968. kneeling: {
  25969. height: math.unit(3 + 4 / 12, "feet"),
  25970. weight: math.unit(90, "lb"),
  25971. name: "Kneeling",
  25972. image: {
  25973. source: "./media/characters/rosewen/kneeling.svg",
  25974. extra: 1835 / 1571,
  25975. bottom: 27.7 / 1862
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(3 + 4 / 12, "feet"),
  25983. default: true
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(5 + 10 / 12, "feet"),
  25992. weight: math.unit(200, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/sabah/front.svg",
  25996. extra: 849 / 763,
  25997. bottom: 33.9 / 881
  25998. }
  25999. },
  26000. },
  26001. [
  26002. {
  26003. name: "Normal",
  26004. height: math.unit(5 + 10 / 12, "feet"),
  26005. default: true
  26006. },
  26007. ]
  26008. ))
  26009. characterMakers.push(() => makeCharacter(
  26010. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26011. {
  26012. front: {
  26013. height: math.unit(3 + 5 / 12, "feet"),
  26014. weight: math.unit(40, "kg"),
  26015. name: "Front",
  26016. image: {
  26017. source: "./media/characters/purple-flame/front.svg",
  26018. extra: 1577 / 1412,
  26019. bottom: 97 / 1694
  26020. }
  26021. },
  26022. frontDressed: {
  26023. height: math.unit(3 + 5 / 12, "feet"),
  26024. weight: math.unit(40, "kg"),
  26025. name: "Front (Dressed)",
  26026. image: {
  26027. source: "./media/characters/purple-flame/front-dressed.svg",
  26028. extra: 1577 / 1412,
  26029. bottom: 97 / 1694
  26030. }
  26031. },
  26032. headphones: {
  26033. height: math.unit(0.85, "feet"),
  26034. name: "Headphones",
  26035. image: {
  26036. source: "./media/characters/purple-flame/headphones.svg"
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Really Small",
  26043. height: math.unit(5, "cm")
  26044. },
  26045. {
  26046. name: "Micro",
  26047. height: math.unit(1 + 5 / 12, "feet")
  26048. },
  26049. {
  26050. name: "Normal",
  26051. height: math.unit(3 + 5 / 12, "feet"),
  26052. default: true
  26053. },
  26054. {
  26055. name: "Minimacro",
  26056. height: math.unit(125, "feet")
  26057. },
  26058. {
  26059. name: "Macro",
  26060. height: math.unit(0.5, "miles")
  26061. },
  26062. {
  26063. name: "Megamacro",
  26064. height: math.unit(50, "miles")
  26065. },
  26066. {
  26067. name: "Gigantic",
  26068. height: math.unit(750, "miles")
  26069. },
  26070. {
  26071. name: "Planetary",
  26072. height: math.unit(15000, "miles")
  26073. },
  26074. ]
  26075. ))
  26076. characterMakers.push(() => makeCharacter(
  26077. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26078. {
  26079. front: {
  26080. height: math.unit(14, "feet"),
  26081. weight: math.unit(959, "lb"),
  26082. name: "Front",
  26083. image: {
  26084. source: "./media/characters/arsenal/front.svg",
  26085. extra: 2357 / 2157,
  26086. bottom: 93 / 2458
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(14, "feet"),
  26094. default: true
  26095. },
  26096. ]
  26097. ))
  26098. characterMakers.push(() => makeCharacter(
  26099. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26100. {
  26101. front: {
  26102. height: math.unit(6, "feet"),
  26103. weight: math.unit(150, "lb"),
  26104. name: "Front",
  26105. image: {
  26106. source: "./media/characters/adira/front.svg",
  26107. extra: 1078 / 1029,
  26108. bottom: 87 / 1166
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Micro",
  26115. height: math.unit(4, "inches"),
  26116. default: true
  26117. },
  26118. {
  26119. name: "Macro",
  26120. height: math.unit(50, "feet")
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(16, "feet"),
  26129. weight: math.unit(1000, "lb"),
  26130. name: "Front",
  26131. image: {
  26132. source: "./media/characters/grim/front.svg",
  26133. extra: 622 / 614,
  26134. bottom: 18.1 / 642
  26135. }
  26136. },
  26137. back: {
  26138. height: math.unit(16, "feet"),
  26139. weight: math.unit(1000, "lb"),
  26140. name: "Back",
  26141. image: {
  26142. source: "./media/characters/grim/back.svg",
  26143. extra: 610.6 / 602,
  26144. bottom: 40.8 / 652
  26145. }
  26146. },
  26147. hunched: {
  26148. height: math.unit(9.75, "feet"),
  26149. weight: math.unit(1000, "lb"),
  26150. name: "Hunched",
  26151. image: {
  26152. source: "./media/characters/grim/hunched.svg",
  26153. extra: 304 / 297,
  26154. bottom: 35.4 / 394
  26155. }
  26156. },
  26157. },
  26158. [
  26159. {
  26160. name: "Normal",
  26161. height: math.unit(16, "feet"),
  26162. default: true
  26163. },
  26164. ]
  26165. ))
  26166. characterMakers.push(() => makeCharacter(
  26167. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26168. {
  26169. front: {
  26170. height: math.unit(2.3, "meters"),
  26171. weight: math.unit(300, "lb"),
  26172. name: "Front",
  26173. image: {
  26174. source: "./media/characters/sinja/front-sfw.svg",
  26175. extra: 1393 / 1294,
  26176. bottom: 70 / 1463
  26177. }
  26178. },
  26179. frontNsfw: {
  26180. height: math.unit(2.3, "meters"),
  26181. weight: math.unit(300, "lb"),
  26182. name: "Front (NSFW)",
  26183. image: {
  26184. source: "./media/characters/sinja/front-nsfw.svg",
  26185. extra: 1393 / 1294,
  26186. bottom: 70 / 1463
  26187. }
  26188. },
  26189. back: {
  26190. height: math.unit(2.3, "meters"),
  26191. weight: math.unit(300, "lb"),
  26192. name: "Back",
  26193. image: {
  26194. source: "./media/characters/sinja/back.svg",
  26195. extra: 1393 / 1294,
  26196. bottom: 70 / 1463
  26197. }
  26198. },
  26199. head: {
  26200. height: math.unit(1.771, "feet"),
  26201. name: "Head",
  26202. image: {
  26203. source: "./media/characters/sinja/head.svg"
  26204. }
  26205. },
  26206. slit: {
  26207. height: math.unit(0.8, "feet"),
  26208. name: "Slit",
  26209. image: {
  26210. source: "./media/characters/sinja/slit.svg"
  26211. }
  26212. },
  26213. },
  26214. [
  26215. {
  26216. name: "Normal",
  26217. height: math.unit(2.3, "meters")
  26218. },
  26219. {
  26220. name: "Macro",
  26221. height: math.unit(91, "meters"),
  26222. default: true
  26223. },
  26224. {
  26225. name: "Megamacro",
  26226. height: math.unit(91440, "meters")
  26227. },
  26228. {
  26229. name: "Gigamacro",
  26230. height: math.unit(60960000, "meters")
  26231. },
  26232. {
  26233. name: "Teramacro",
  26234. height: math.unit(9144000000, "meters")
  26235. },
  26236. ]
  26237. ))
  26238. characterMakers.push(() => makeCharacter(
  26239. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26240. {
  26241. front: {
  26242. height: math.unit(1.7, "meters"),
  26243. weight: math.unit(130, "lb"),
  26244. name: "Front",
  26245. image: {
  26246. source: "./media/characters/kyu/front.svg",
  26247. extra: 415 / 395,
  26248. bottom: 5 / 420
  26249. }
  26250. },
  26251. head: {
  26252. height: math.unit(1.75, "feet"),
  26253. name: "Head",
  26254. image: {
  26255. source: "./media/characters/kyu/head.svg"
  26256. }
  26257. },
  26258. foot: {
  26259. height: math.unit(0.81, "feet"),
  26260. name: "Foot",
  26261. image: {
  26262. source: "./media/characters/kyu/foot.svg"
  26263. }
  26264. },
  26265. },
  26266. [
  26267. {
  26268. name: "Normal",
  26269. height: math.unit(1.7, "meters")
  26270. },
  26271. {
  26272. name: "Macro",
  26273. height: math.unit(131, "feet"),
  26274. default: true
  26275. },
  26276. {
  26277. name: "Megamacro",
  26278. height: math.unit(91440, "meters")
  26279. },
  26280. {
  26281. name: "Gigamacro",
  26282. height: math.unit(60960000, "meters")
  26283. },
  26284. {
  26285. name: "Teramacro",
  26286. height: math.unit(9144000000, "meters")
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26292. {
  26293. front: {
  26294. height: math.unit(7 + 1 / 12, "feet"),
  26295. weight: math.unit(250, "lb"),
  26296. name: "Front",
  26297. image: {
  26298. source: "./media/characters/joey/front.svg",
  26299. extra: 1791 / 1537,
  26300. bottom: 28 / 1816
  26301. }
  26302. },
  26303. },
  26304. [
  26305. {
  26306. name: "Micro",
  26307. height: math.unit(3, "inches")
  26308. },
  26309. {
  26310. name: "Normal",
  26311. height: math.unit(7 + 1 / 12, "feet"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(165, "cm"),
  26321. weight: math.unit(140, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/sam-evans/front.svg",
  26325. extra: 3417 / 3230,
  26326. bottom: 41.3 / 3417
  26327. }
  26328. },
  26329. frontSixTails: {
  26330. height: math.unit(165, "cm"),
  26331. weight: math.unit(140, "lb"),
  26332. name: "Front-six-tails",
  26333. image: {
  26334. source: "./media/characters/sam-evans/front-six-tails.svg",
  26335. extra: 3417 / 3230,
  26336. bottom: 41.3 / 3417
  26337. }
  26338. },
  26339. back: {
  26340. height: math.unit(165, "cm"),
  26341. weight: math.unit(140, "lb"),
  26342. name: "Back",
  26343. image: {
  26344. source: "./media/characters/sam-evans/back.svg",
  26345. extra: 3227 / 3032,
  26346. bottom: 6.8 / 3234
  26347. }
  26348. },
  26349. face: {
  26350. height: math.unit(0.68, "feet"),
  26351. name: "Face",
  26352. image: {
  26353. source: "./media/characters/sam-evans/face.svg"
  26354. }
  26355. },
  26356. },
  26357. [
  26358. {
  26359. name: "Normal",
  26360. height: math.unit(165, "cm"),
  26361. default: true
  26362. },
  26363. {
  26364. name: "Macro",
  26365. height: math.unit(100, "meters")
  26366. },
  26367. {
  26368. name: "Macro+",
  26369. height: math.unit(800, "meters")
  26370. },
  26371. {
  26372. name: "Macro++",
  26373. height: math.unit(3, "km")
  26374. },
  26375. {
  26376. name: "Macro+++",
  26377. height: math.unit(30, "km")
  26378. },
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26383. {
  26384. front: {
  26385. height: math.unit(10, "feet"),
  26386. weight: math.unit(750, "lb"),
  26387. name: "Front",
  26388. image: {
  26389. source: "./media/characters/juliet-a/front.svg",
  26390. extra: 1766 / 1720,
  26391. bottom: 43 / 1809
  26392. }
  26393. },
  26394. back: {
  26395. height: math.unit(10, "feet"),
  26396. weight: math.unit(750, "lb"),
  26397. name: "Back",
  26398. image: {
  26399. source: "./media/characters/juliet-a/back.svg",
  26400. extra: 1781 / 1734,
  26401. bottom: 35 / 1810,
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(10, "feet"),
  26409. default: true
  26410. },
  26411. {
  26412. name: "Dragon Form",
  26413. height: math.unit(250, "feet")
  26414. },
  26415. {
  26416. name: "Macro",
  26417. height: math.unit(1000, "feet")
  26418. },
  26419. {
  26420. name: "Megamacro",
  26421. height: math.unit(10000, "feet")
  26422. }
  26423. ]
  26424. ))
  26425. characterMakers.push(() => makeCharacter(
  26426. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26427. {
  26428. regular: {
  26429. height: math.unit(7 + 3 / 12, "feet"),
  26430. weight: math.unit(260, "lb"),
  26431. name: "Regular",
  26432. image: {
  26433. source: "./media/characters/wild/regular.svg",
  26434. extra: 97.45 / 92,
  26435. bottom: 6.8 / 104.3
  26436. }
  26437. },
  26438. biggums: {
  26439. height: math.unit(8 + 6 / 12, "feet"),
  26440. weight: math.unit(425, "lb"),
  26441. name: "Biggums",
  26442. image: {
  26443. source: "./media/characters/wild/biggums.svg",
  26444. extra: 97.45 / 92,
  26445. bottom: 7.5 / 132.34
  26446. }
  26447. },
  26448. mawRegular: {
  26449. height: math.unit(1.24, "feet"),
  26450. name: "Maw (Regular)",
  26451. image: {
  26452. source: "./media/characters/wild/maw.svg"
  26453. }
  26454. },
  26455. mawBiggums: {
  26456. height: math.unit(1.47, "feet"),
  26457. name: "Maw (Biggums)",
  26458. image: {
  26459. source: "./media/characters/wild/maw.svg"
  26460. }
  26461. },
  26462. },
  26463. [
  26464. {
  26465. name: "Normal",
  26466. height: math.unit(7 + 3 / 12, "feet"),
  26467. default: true
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26473. {
  26474. front: {
  26475. height: math.unit(2.5, "meters"),
  26476. weight: math.unit(200, "kg"),
  26477. name: "Front",
  26478. image: {
  26479. source: "./media/characters/vidar/front.svg",
  26480. extra: 2994 / 2795,
  26481. bottom: 56 / 3061
  26482. }
  26483. },
  26484. back: {
  26485. height: math.unit(2.5, "meters"),
  26486. weight: math.unit(200, "kg"),
  26487. name: "Back",
  26488. image: {
  26489. source: "./media/characters/vidar/back.svg",
  26490. extra: 3131 / 2928,
  26491. bottom: 13.5 / 3141.5
  26492. }
  26493. },
  26494. feral: {
  26495. height: math.unit(2.5, "meters"),
  26496. weight: math.unit(2000, "kg"),
  26497. name: "Feral",
  26498. image: {
  26499. source: "./media/characters/vidar/feral.svg",
  26500. extra: 2790 / 1765,
  26501. bottom: 6 / 2796
  26502. }
  26503. },
  26504. },
  26505. [
  26506. {
  26507. name: "Normal",
  26508. height: math.unit(2.5, "meters"),
  26509. default: true
  26510. },
  26511. {
  26512. name: "Macro",
  26513. height: math.unit(100, "meters")
  26514. },
  26515. ]
  26516. ))
  26517. characterMakers.push(() => makeCharacter(
  26518. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26519. {
  26520. front: {
  26521. height: math.unit(5 + 9 / 12, "feet"),
  26522. weight: math.unit(120, "lb"),
  26523. name: "Front",
  26524. image: {
  26525. source: "./media/characters/ash/front.svg",
  26526. extra: 2189 / 1961,
  26527. bottom: 5.2 / 2194
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(5 + 9 / 12, "feet"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(9, "feet"),
  26544. weight: math.unit(10000, "lb"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/gygabite/front.svg",
  26548. bottom: 31.7 / 537.8,
  26549. extra: 505 / 370
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Normal",
  26556. height: math.unit(9, "feet"),
  26557. default: true
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(12, "feet"),
  26566. weight: math.unit(35000, "lb"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/p0tat0/front.svg",
  26570. extra: 1065 / 921,
  26571. bottom: 55.7 / 1121.25
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Normal",
  26578. height: math.unit(12, "feet"),
  26579. default: true
  26580. },
  26581. ]
  26582. ))
  26583. characterMakers.push(() => makeCharacter(
  26584. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26585. {
  26586. side: {
  26587. height: math.unit(6.5, "feet"),
  26588. weight: math.unit(800, "lb"),
  26589. name: "Side",
  26590. image: {
  26591. source: "./media/characters/dusk/side.svg",
  26592. extra: 615 / 373,
  26593. bottom: 53 / 664
  26594. }
  26595. },
  26596. sitting: {
  26597. height: math.unit(7, "feet"),
  26598. weight: math.unit(800, "lb"),
  26599. name: "Sitting",
  26600. image: {
  26601. source: "./media/characters/dusk/sitting.svg",
  26602. extra: 753 / 425,
  26603. bottom: 33 / 774
  26604. }
  26605. },
  26606. head: {
  26607. height: math.unit(6.1, "feet"),
  26608. name: "Head",
  26609. image: {
  26610. source: "./media/characters/dusk/head.svg"
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(7, "feet"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26624. {
  26625. front: {
  26626. height: math.unit(15, "feet"),
  26627. weight: math.unit(7000, "lb"),
  26628. name: "Front",
  26629. image: {
  26630. source: "./media/characters/jay-direwolf/front.svg",
  26631. extra: 1810 / 1732,
  26632. bottom: 66 / 1892
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Normal",
  26639. height: math.unit(15, "feet"),
  26640. default: true
  26641. },
  26642. ]
  26643. ))
  26644. characterMakers.push(() => makeCharacter(
  26645. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26646. {
  26647. front: {
  26648. height: math.unit(4 + 9 / 12, "feet"),
  26649. weight: math.unit(130, "lb"),
  26650. name: "Front",
  26651. image: {
  26652. source: "./media/characters/anchovie/front.svg",
  26653. extra: 382 / 350,
  26654. bottom: 25 / 409
  26655. }
  26656. },
  26657. back: {
  26658. height: math.unit(4 + 9 / 12, "feet"),
  26659. weight: math.unit(130, "lb"),
  26660. name: "Back",
  26661. image: {
  26662. source: "./media/characters/anchovie/back.svg",
  26663. extra: 385 / 352,
  26664. bottom: 16.6 / 402
  26665. }
  26666. },
  26667. frontDressed: {
  26668. height: math.unit(4 + 9 / 12, "feet"),
  26669. weight: math.unit(130, "lb"),
  26670. name: "Front (Dressed)",
  26671. image: {
  26672. source: "./media/characters/anchovie/front-dressed.svg",
  26673. extra: 382 / 350,
  26674. bottom: 25 / 409
  26675. }
  26676. },
  26677. backDressed: {
  26678. height: math.unit(4 + 9 / 12, "feet"),
  26679. weight: math.unit(130, "lb"),
  26680. name: "Back (Dressed)",
  26681. image: {
  26682. source: "./media/characters/anchovie/back-dressed.svg",
  26683. extra: 385 / 352,
  26684. bottom: 16.6 / 402
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Micro",
  26691. height: math.unit(6.4, "inches")
  26692. },
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(4 + 9 / 12, "feet"),
  26696. default: true
  26697. },
  26698. ]
  26699. ))
  26700. characterMakers.push(() => makeCharacter(
  26701. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26702. {
  26703. front: {
  26704. height: math.unit(2, "meters"),
  26705. weight: math.unit(180, "lb"),
  26706. name: "Front",
  26707. image: {
  26708. source: "./media/characters/acidrenamon/front.svg",
  26709. extra: 987 / 890,
  26710. bottom: 22.8 / 1009
  26711. }
  26712. },
  26713. back: {
  26714. height: math.unit(2, "meters"),
  26715. weight: math.unit(180, "lb"),
  26716. name: "Back",
  26717. image: {
  26718. source: "./media/characters/acidrenamon/back.svg",
  26719. extra: 983 / 891,
  26720. bottom: 8.4 / 992
  26721. }
  26722. },
  26723. head: {
  26724. height: math.unit(1.92, "feet"),
  26725. name: "Head",
  26726. image: {
  26727. source: "./media/characters/acidrenamon/head.svg"
  26728. }
  26729. },
  26730. rump: {
  26731. height: math.unit(1.72, "feet"),
  26732. name: "Rump",
  26733. image: {
  26734. source: "./media/characters/acidrenamon/rump.svg"
  26735. }
  26736. },
  26737. tail: {
  26738. height: math.unit(4.2, "feet"),
  26739. name: "Tail",
  26740. image: {
  26741. source: "./media/characters/acidrenamon/tail.svg"
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Normal",
  26748. height: math.unit(2, "meters"),
  26749. default: true
  26750. },
  26751. {
  26752. name: "Minimacro",
  26753. height: math.unit(7, "meters")
  26754. },
  26755. {
  26756. name: "Macro",
  26757. height: math.unit(200, "meters")
  26758. },
  26759. {
  26760. name: "Gigamacro",
  26761. height: math.unit(0.2, "earths")
  26762. },
  26763. ]
  26764. ))
  26765. characterMakers.push(() => makeCharacter(
  26766. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26767. {
  26768. front: {
  26769. height: math.unit(6, "feet"),
  26770. weight: math.unit(150, "lb"),
  26771. name: "Front",
  26772. image: {
  26773. source: "./media/characters/kenzie-lee/front.svg",
  26774. extra: 1525 / 1465,
  26775. bottom: 45 / 1570
  26776. }
  26777. },
  26778. side: {
  26779. height: math.unit(6, "feet"),
  26780. weight: math.unit(150, "lb"),
  26781. name: "Side",
  26782. image: {
  26783. source: "./media/characters/kenzie-lee/side.svg",
  26784. extra: 5505 / 5383,
  26785. bottom: 60 / 5573
  26786. }
  26787. },
  26788. paw: {
  26789. height: math.unit(6, "feet"),
  26790. name: "Paw",
  26791. image: {
  26792. source: "./media/characters/kenzie-lee/paw.svg"
  26793. }
  26794. },
  26795. },
  26796. [
  26797. {
  26798. name: "Normal",
  26799. height: math.unit(152, "feet"),
  26800. default: true
  26801. },
  26802. {
  26803. name: "Megamacro",
  26804. height: math.unit(7, "miles")
  26805. },
  26806. {
  26807. name: "Gigamacro",
  26808. height: math.unit(8000, "miles")
  26809. },
  26810. ]
  26811. ))
  26812. characterMakers.push(() => makeCharacter(
  26813. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26814. {
  26815. side: {
  26816. height: math.unit(6, "feet"),
  26817. weight: math.unit(150, "lb"),
  26818. name: "Side",
  26819. image: {
  26820. source: "./media/characters/withers/side.svg",
  26821. extra: 1830 / 1728,
  26822. bottom: 96 / 1927
  26823. }
  26824. },
  26825. front: {
  26826. height: math.unit(6, "feet"),
  26827. weight: math.unit(150, "lb"),
  26828. name: "Front",
  26829. image: {
  26830. source: "./media/characters/withers/front.svg",
  26831. extra: 1514 / 1438,
  26832. bottom: 118 / 1632
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Macro",
  26839. height: math.unit(168, "feet"),
  26840. default: true
  26841. },
  26842. {
  26843. name: "Megamacro",
  26844. height: math.unit(15, "miles")
  26845. }
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(6 + 7 / 12, "feet"),
  26853. weight: math.unit(250, "lb"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/nemoskii/front.svg",
  26857. extra: 2270 / 1734,
  26858. bottom: 86 / 2354
  26859. }
  26860. },
  26861. back: {
  26862. height: math.unit(6 + 7 / 12, "feet"),
  26863. weight: math.unit(250, "lb"),
  26864. name: "Back",
  26865. image: {
  26866. source: "./media/characters/nemoskii/back.svg",
  26867. extra: 1845 / 1788,
  26868. bottom: 10.5 / 1852
  26869. }
  26870. },
  26871. head: {
  26872. height: math.unit(1.31, "feet"),
  26873. name: "Head",
  26874. image: {
  26875. source: "./media/characters/nemoskii/head.svg"
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(6 + 7 / 12, "feet"),
  26883. default: true
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26889. {
  26890. front: {
  26891. height: math.unit(1, "mile"),
  26892. weight: math.unit(265261.9, "lb"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/shui/front.svg",
  26896. extra: 1633 / 1564,
  26897. bottom: 91.5 / 1726
  26898. }
  26899. },
  26900. },
  26901. [
  26902. {
  26903. name: "Macro",
  26904. height: math.unit(1, "mile"),
  26905. default: true
  26906. },
  26907. ]
  26908. ))
  26909. characterMakers.push(() => makeCharacter(
  26910. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26911. {
  26912. front: {
  26913. height: math.unit(12 + 6 / 12, "feet"),
  26914. weight: math.unit(1342, "lb"),
  26915. name: "Front",
  26916. image: {
  26917. source: "./media/characters/arokh-takakura/front.svg",
  26918. extra: 1089 / 1043,
  26919. bottom: 77.4 / 1176.7
  26920. }
  26921. },
  26922. back: {
  26923. height: math.unit(12 + 6 / 12, "feet"),
  26924. weight: math.unit(1342, "lb"),
  26925. name: "Back",
  26926. image: {
  26927. source: "./media/characters/arokh-takakura/back.svg",
  26928. extra: 1046 / 1019,
  26929. bottom: 102 / 1150
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Big",
  26936. height: math.unit(12 + 6 / 12, "feet"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(5 + 6 / 12, "feet"),
  26946. weight: math.unit(150, "lb"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/theo/front.svg",
  26950. extra: 1184 / 1131,
  26951. bottom: 7.4 / 1191
  26952. }
  26953. },
  26954. },
  26955. [
  26956. {
  26957. name: "Micro",
  26958. height: math.unit(5, "inches")
  26959. },
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(5 + 6 / 12, "feet"),
  26963. default: true
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26969. {
  26970. front: {
  26971. height: math.unit(5 + 9 / 12, "feet"),
  26972. weight: math.unit(130, "lb"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/cecelia-swift/front.svg",
  26976. extra: 502 / 484,
  26977. bottom: 23 / 523
  26978. }
  26979. },
  26980. back: {
  26981. height: math.unit(5 + 9 / 12, "feet"),
  26982. weight: math.unit(130, "lb"),
  26983. name: "Back",
  26984. image: {
  26985. source: "./media/characters/cecelia-swift/back.svg",
  26986. extra: 499 / 485,
  26987. bottom: 12 / 511
  26988. }
  26989. },
  26990. head: {
  26991. height: math.unit(0.90, "feet"),
  26992. name: "Head",
  26993. image: {
  26994. source: "./media/characters/cecelia-swift/head.svg"
  26995. }
  26996. },
  26997. rump: {
  26998. height: math.unit(1.75, "feet"),
  26999. name: "Rump",
  27000. image: {
  27001. source: "./media/characters/cecelia-swift/rump.svg"
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(5 + 9 / 12, "feet"),
  27009. default: true
  27010. },
  27011. {
  27012. name: "Big",
  27013. height: math.unit(50, "feet")
  27014. },
  27015. {
  27016. name: "Macro",
  27017. height: math.unit(100, "feet")
  27018. },
  27019. {
  27020. name: "Macro+",
  27021. height: math.unit(500, "feet")
  27022. },
  27023. {
  27024. name: "Macro++",
  27025. height: math.unit(1000, "feet")
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(6, "feet"),
  27034. weight: math.unit(150, "lb"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/kaunan/front.svg",
  27038. extra: 2890 / 2523,
  27039. bottom: 49 / 2939
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Macro",
  27046. height: math.unit(150, "feet"),
  27047. default: true
  27048. },
  27049. ]
  27050. ))
  27051. characterMakers.push(() => makeCharacter(
  27052. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27053. {
  27054. front: {
  27055. height: math.unit(175, "cm"),
  27056. weight: math.unit(60, "kg"),
  27057. name: "Front",
  27058. image: {
  27059. source: "./media/characters/fei/front.svg",
  27060. extra: 2581 / 2400,
  27061. bottom: 82.2 / 2663
  27062. }
  27063. },
  27064. },
  27065. [
  27066. {
  27067. name: "Mortal",
  27068. height: math.unit(175, "cm")
  27069. },
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(3500, "m"),
  27073. default: true
  27074. },
  27075. {
  27076. name: "Stroll",
  27077. height: math.unit(17.5, "km")
  27078. },
  27079. {
  27080. name: "Showoff",
  27081. height: math.unit(175, "km")
  27082. },
  27083. ]
  27084. ))
  27085. characterMakers.push(() => makeCharacter(
  27086. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27087. {
  27088. front: {
  27089. height: math.unit(7, "feet"),
  27090. weight: math.unit(1000, "kg"),
  27091. name: "Front",
  27092. image: {
  27093. source: "./media/characters/edrax/front.svg",
  27094. extra: 2838 / 2550,
  27095. bottom: 130 / 2968
  27096. }
  27097. },
  27098. },
  27099. [
  27100. {
  27101. name: "Small",
  27102. height: math.unit(7, "feet")
  27103. },
  27104. {
  27105. name: "Normal",
  27106. height: math.unit(1500, "meters")
  27107. },
  27108. {
  27109. name: "Mega",
  27110. height: math.unit(12000000, "km"),
  27111. default: true
  27112. },
  27113. {
  27114. name: "Megamacro",
  27115. height: math.unit(10600000, "lightyears")
  27116. },
  27117. {
  27118. name: "Hypermacro",
  27119. height: math.unit(256, "yottameters")
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27125. {
  27126. front: {
  27127. height: math.unit(10, "feet"),
  27128. weight: math.unit(750, "lb"),
  27129. name: "Front",
  27130. image: {
  27131. source: "./media/characters/clove/front.svg",
  27132. extra: 2031 / 1860,
  27133. bottom: 47.8 / 2080
  27134. }
  27135. },
  27136. back: {
  27137. height: math.unit(10, "feet"),
  27138. weight: math.unit(750, "lb"),
  27139. name: "Back",
  27140. image: {
  27141. source: "./media/characters/clove/back.svg",
  27142. extra: 2025 / 1859,
  27143. bottom: 46 / 2071
  27144. }
  27145. },
  27146. },
  27147. [
  27148. {
  27149. name: "Normal",
  27150. height: math.unit(10, "feet"),
  27151. default: true
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27157. {
  27158. front: {
  27159. height: math.unit(4, "feet"),
  27160. weight: math.unit(50, "lb"),
  27161. name: "Front",
  27162. image: {
  27163. source: "./media/characters/alex-rabbit/front.svg",
  27164. extra: 507 / 458,
  27165. bottom: 18.5 / 527
  27166. }
  27167. },
  27168. back: {
  27169. height: math.unit(4, "feet"),
  27170. weight: math.unit(50, "lb"),
  27171. name: "Back",
  27172. image: {
  27173. source: "./media/characters/alex-rabbit/back.svg",
  27174. extra: 502 / 460,
  27175. bottom: 18.9 / 521
  27176. }
  27177. },
  27178. },
  27179. [
  27180. {
  27181. name: "Normal",
  27182. height: math.unit(4, "feet"),
  27183. default: true
  27184. },
  27185. ]
  27186. ))
  27187. characterMakers.push(() => makeCharacter(
  27188. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27189. {
  27190. front: {
  27191. height: math.unit(1 + 3 / 12, "feet"),
  27192. weight: math.unit(80, "lb"),
  27193. name: "Front",
  27194. image: {
  27195. source: "./media/characters/zander-rose/front.svg",
  27196. extra: 916 / 797,
  27197. bottom: 17 / 933
  27198. }
  27199. },
  27200. back: {
  27201. height: math.unit(1 + 3 / 12, "feet"),
  27202. weight: math.unit(80, "lb"),
  27203. name: "Back",
  27204. image: {
  27205. source: "./media/characters/zander-rose/back.svg",
  27206. extra: 903 / 779,
  27207. bottom: 31 / 934
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(1 + 3 / 12, "feet"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27221. {
  27222. anthro: {
  27223. height: math.unit(6, "feet"),
  27224. weight: math.unit(150, "lb"),
  27225. name: "Anthro",
  27226. image: {
  27227. source: "./media/characters/razz/anthro.svg",
  27228. extra: 1437 / 1343,
  27229. bottom: 48 / 1485
  27230. }
  27231. },
  27232. feral: {
  27233. height: math.unit(6, "feet"),
  27234. weight: math.unit(150, "lb"),
  27235. name: "Feral",
  27236. image: {
  27237. source: "./media/characters/razz/feral.svg",
  27238. extra: 2569 / 1385,
  27239. bottom: 95 / 2664
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(6, "feet"),
  27247. default: true
  27248. },
  27249. ]
  27250. ))
  27251. characterMakers.push(() => makeCharacter(
  27252. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27253. {
  27254. front: {
  27255. height: math.unit(9 + 4 / 12, "feet"),
  27256. weight: math.unit(500, "lb"),
  27257. name: "Front",
  27258. image: {
  27259. source: "./media/characters/morrigan/front.svg",
  27260. extra: 2707 / 2579,
  27261. bottom: 156 / 2863
  27262. }
  27263. },
  27264. },
  27265. [
  27266. {
  27267. name: "Normal",
  27268. height: math.unit(9 + 4 / 12, "feet"),
  27269. default: true
  27270. },
  27271. ]
  27272. ))
  27273. characterMakers.push(() => makeCharacter(
  27274. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27275. {
  27276. front: {
  27277. height: math.unit(5, "stories"),
  27278. weight: math.unit(4000, "lb"),
  27279. name: "Front",
  27280. image: {
  27281. source: "./media/characters/jenene/front.svg",
  27282. extra: 1780 / 1710,
  27283. bottom: 57 / 1837
  27284. }
  27285. },
  27286. },
  27287. [
  27288. {
  27289. name: "Normal",
  27290. height: math.unit(5, "stories"),
  27291. default: true
  27292. },
  27293. ]
  27294. ))
  27295. characterMakers.push(() => makeCharacter(
  27296. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27297. {
  27298. front: {
  27299. height: math.unit(6, "feet"),
  27300. weight: math.unit(150, "lb"),
  27301. name: "Front",
  27302. image: {
  27303. source: "./media/characters/vix-archaser/front.svg",
  27304. extra: 2767 / 2562,
  27305. bottom: 36 / 2803
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Micro",
  27312. height: math.unit(1, "foot")
  27313. },
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(6 + 5 / 12, "feet")
  27317. },
  27318. {
  27319. name: "Minimacro",
  27320. height: math.unit(500, "feet")
  27321. },
  27322. {
  27323. name: "Macro",
  27324. height: math.unit(4, "miles")
  27325. },
  27326. {
  27327. name: "Megamacro",
  27328. height: math.unit(250, "miles"),
  27329. default: true
  27330. },
  27331. {
  27332. name: "Gigamacro",
  27333. height: math.unit(1, "universe")
  27334. },
  27335. {
  27336. name: "Endgame",
  27337. height: math.unit(100, "multiverses")
  27338. }
  27339. ]
  27340. ))
  27341. characterMakers.push(() => makeCharacter(
  27342. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27343. {
  27344. taurSfw: {
  27345. height: math.unit(10, "meters"),
  27346. weight: math.unit(17500, "kg"),
  27347. name: "Taur",
  27348. image: {
  27349. source: "./media/characters/faey/taur-sfw.svg",
  27350. extra: 1200 / 968,
  27351. bottom: 41 / 1241
  27352. }
  27353. },
  27354. chestmaw: {
  27355. height: math.unit(2.01, "meters"),
  27356. name: "Chestmaw",
  27357. image: {
  27358. source: "./media/characters/faey/chestmaw.svg"
  27359. }
  27360. },
  27361. foot: {
  27362. height: math.unit(2.43, "meters"),
  27363. name: "Foot",
  27364. image: {
  27365. source: "./media/characters/faey/foot.svg"
  27366. }
  27367. },
  27368. jaws: {
  27369. height: math.unit(1.66, "meters"),
  27370. name: "Jaws",
  27371. image: {
  27372. source: "./media/characters/faey/jaws.svg"
  27373. }
  27374. },
  27375. tongues: {
  27376. height: math.unit(2.01, "meters"),
  27377. name: "Tongues",
  27378. image: {
  27379. source: "./media/characters/faey/tongues.svg"
  27380. }
  27381. },
  27382. },
  27383. [
  27384. {
  27385. name: "Small",
  27386. height: math.unit(10, "meters"),
  27387. default: true
  27388. },
  27389. {
  27390. name: "Big",
  27391. height: math.unit(500000, "km")
  27392. },
  27393. ]
  27394. ))
  27395. characterMakers.push(() => makeCharacter(
  27396. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27397. {
  27398. front: {
  27399. height: math.unit(7, "feet"),
  27400. weight: math.unit(275, "lb"),
  27401. name: "Front",
  27402. image: {
  27403. source: "./media/characters/roku/front.svg",
  27404. extra: 903 / 878,
  27405. bottom: 37 / 940
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(7, "feet"),
  27413. default: true
  27414. },
  27415. {
  27416. name: "Macro",
  27417. height: math.unit(500, "feet")
  27418. },
  27419. {
  27420. name: "Megamacro",
  27421. height: math.unit(200, "miles")
  27422. },
  27423. ]
  27424. ))
  27425. characterMakers.push(() => makeCharacter(
  27426. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27427. {
  27428. front: {
  27429. height: math.unit(6 + 2 / 12, "feet"),
  27430. weight: math.unit(150, "lb"),
  27431. name: "Front",
  27432. image: {
  27433. source: "./media/characters/lira/front.svg",
  27434. extra: 1727 / 1605,
  27435. bottom: 26 / 1753
  27436. }
  27437. },
  27438. back: {
  27439. height: math.unit(6 + 2 / 12, "feet"),
  27440. weight: math.unit(150, "lb"),
  27441. name: "Back",
  27442. image: {
  27443. source: "./media/characters/lira/back.svg",
  27444. extra: 1713 / 159,
  27445. bottom: 20 / 1733
  27446. }
  27447. },
  27448. hand: {
  27449. height: math.unit(0.75, "feet"),
  27450. name: "Hand",
  27451. image: {
  27452. source: "./media/characters/lira/hand.svg"
  27453. }
  27454. },
  27455. maw: {
  27456. height: math.unit(0.65, "feet"),
  27457. name: "Maw",
  27458. image: {
  27459. source: "./media/characters/lira/maw.svg"
  27460. }
  27461. },
  27462. pawDigi: {
  27463. height: math.unit(1.6, "feet"),
  27464. name: "Paw Digi",
  27465. image: {
  27466. source: "./media/characters/lira/paw-digi.svg"
  27467. }
  27468. },
  27469. pawPlanti: {
  27470. height: math.unit(1.4, "feet"),
  27471. name: "Paw Planti",
  27472. image: {
  27473. source: "./media/characters/lira/paw-planti.svg"
  27474. }
  27475. },
  27476. },
  27477. [
  27478. {
  27479. name: "Normal",
  27480. height: math.unit(6 + 2 / 12, "feet"),
  27481. default: true
  27482. },
  27483. {
  27484. name: "Macro",
  27485. height: math.unit(100, "feet")
  27486. },
  27487. {
  27488. name: "Macro²",
  27489. height: math.unit(1600, "feet")
  27490. },
  27491. {
  27492. name: "Planetary",
  27493. height: math.unit(20, "earths")
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27499. {
  27500. front: {
  27501. height: math.unit(6, "feet"),
  27502. weight: math.unit(150, "lb"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/hadjet/front.svg",
  27506. extra: 1480 / 1346,
  27507. bottom: 26 / 1506
  27508. }
  27509. },
  27510. frontNsfw: {
  27511. height: math.unit(6, "feet"),
  27512. weight: math.unit(150, "lb"),
  27513. name: "Front (NSFW)",
  27514. image: {
  27515. source: "./media/characters/hadjet/front-nsfw.svg",
  27516. extra: 1440 / 1358,
  27517. bottom: 52 / 1492
  27518. }
  27519. },
  27520. },
  27521. [
  27522. {
  27523. name: "Macro",
  27524. height: math.unit(10, "stories"),
  27525. default: true
  27526. },
  27527. {
  27528. name: "Megamacro",
  27529. height: math.unit(1.5, "miles")
  27530. },
  27531. {
  27532. name: "Megamacro+",
  27533. height: math.unit(5, "miles")
  27534. },
  27535. ]
  27536. ))
  27537. characterMakers.push(() => makeCharacter(
  27538. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27539. {
  27540. side: {
  27541. height: math.unit(106, "feet"),
  27542. weight: math.unit(500, "tonnes"),
  27543. name: "Side",
  27544. image: {
  27545. source: "./media/characters/kodran/side.svg",
  27546. extra: 553 / 480,
  27547. bottom: 33 / 586
  27548. }
  27549. },
  27550. front: {
  27551. height: math.unit(132, "feet"),
  27552. weight: math.unit(500, "tonnes"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/kodran/front.svg",
  27556. extra: 667 / 643,
  27557. bottom: 42 / 709
  27558. }
  27559. },
  27560. flying: {
  27561. height: math.unit(350, "feet"),
  27562. weight: math.unit(500, "tonnes"),
  27563. name: "Flying",
  27564. image: {
  27565. source: "./media/characters/kodran/flying.svg"
  27566. }
  27567. },
  27568. foot: {
  27569. height: math.unit(33, "feet"),
  27570. name: "Foot",
  27571. image: {
  27572. source: "./media/characters/kodran/foot.svg"
  27573. }
  27574. },
  27575. footFront: {
  27576. height: math.unit(19, "feet"),
  27577. name: "Foot (Front)",
  27578. image: {
  27579. source: "./media/characters/kodran/foot-front.svg",
  27580. extra: 261 / 261,
  27581. bottom: 91 / 352
  27582. }
  27583. },
  27584. headFront: {
  27585. height: math.unit(53, "feet"),
  27586. name: "Head (Front)",
  27587. image: {
  27588. source: "./media/characters/kodran/head-front.svg"
  27589. }
  27590. },
  27591. headSide: {
  27592. height: math.unit(65, "feet"),
  27593. name: "Head (Side)",
  27594. image: {
  27595. source: "./media/characters/kodran/head-side.svg"
  27596. }
  27597. },
  27598. throat: {
  27599. height: math.unit(79, "feet"),
  27600. name: "Throat",
  27601. image: {
  27602. source: "./media/characters/kodran/throat.svg"
  27603. }
  27604. },
  27605. },
  27606. [
  27607. {
  27608. name: "Large",
  27609. height: math.unit(106, "feet"),
  27610. default: true
  27611. },
  27612. ]
  27613. ))
  27614. characterMakers.push(() => makeCharacter(
  27615. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27616. {
  27617. side: {
  27618. height: math.unit(11, "feet"),
  27619. weight: math.unit(150, "lb"),
  27620. name: "Side",
  27621. image: {
  27622. source: "./media/characters/pyxaron/side.svg",
  27623. extra: 305 / 195,
  27624. bottom: 17 / 322
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Normal",
  27631. height: math.unit(11, "feet"),
  27632. default: true
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(6, "feet"),
  27641. weight: math.unit(150, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/meep/front.svg",
  27645. extra: 88 / 80,
  27646. bottom: 6 / 94
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Fun Sized",
  27653. height: math.unit(2, "inches"),
  27654. default: true
  27655. },
  27656. {
  27657. name: "Friend Sized",
  27658. height: math.unit(8, "inches")
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27664. {
  27665. front: {
  27666. height: math.unit(15, "feet"),
  27667. weight: math.unit(2500, "lb"),
  27668. name: "Front",
  27669. image: {
  27670. source: "./media/characters/holly-rabbit/front.svg",
  27671. extra: 1433 / 1233,
  27672. bottom: 125 / 1558
  27673. }
  27674. },
  27675. dick: {
  27676. height: math.unit(4.6, "feet"),
  27677. name: "Dick",
  27678. image: {
  27679. source: "./media/characters/holly-rabbit/dick.svg"
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Normal",
  27686. height: math.unit(15, "feet"),
  27687. default: true
  27688. },
  27689. {
  27690. name: "Macro",
  27691. height: math.unit(250, "feet")
  27692. },
  27693. {
  27694. name: "Macro+",
  27695. height: math.unit(2500, "feet")
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27701. {
  27702. front: {
  27703. height: math.unit(3.02, "meters"),
  27704. weight: math.unit(500, "kg"),
  27705. name: "Front",
  27706. image: {
  27707. source: "./media/characters/drena/front.svg",
  27708. extra: 282 / 243,
  27709. bottom: 8 / 290
  27710. }
  27711. },
  27712. side: {
  27713. height: math.unit(3.02, "meters"),
  27714. weight: math.unit(500, "kg"),
  27715. name: "Side",
  27716. image: {
  27717. source: "./media/characters/drena/side.svg",
  27718. extra: 280 / 245,
  27719. bottom: 10 / 290
  27720. }
  27721. },
  27722. back: {
  27723. height: math.unit(3.02, "meters"),
  27724. weight: math.unit(500, "kg"),
  27725. name: "Back",
  27726. image: {
  27727. source: "./media/characters/drena/back.svg",
  27728. extra: 278 / 243,
  27729. bottom: 2 / 280
  27730. }
  27731. },
  27732. foot: {
  27733. height: math.unit(0.75, "meters"),
  27734. name: "Foot",
  27735. image: {
  27736. source: "./media/characters/drena/foot.svg"
  27737. }
  27738. },
  27739. maw: {
  27740. height: math.unit(0.82, "meters"),
  27741. name: "Maw",
  27742. image: {
  27743. source: "./media/characters/drena/maw.svg"
  27744. }
  27745. },
  27746. rump: {
  27747. height: math.unit(0.93, "meters"),
  27748. name: "Rump",
  27749. image: {
  27750. source: "./media/characters/drena/rump.svg"
  27751. }
  27752. },
  27753. },
  27754. [
  27755. {
  27756. name: "Normal",
  27757. height: math.unit(3.02, "meters"),
  27758. default: true
  27759. },
  27760. ]
  27761. ))
  27762. characterMakers.push(() => makeCharacter(
  27763. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27764. {
  27765. front: {
  27766. height: math.unit(6 + 4 / 12, "feet"),
  27767. weight: math.unit(250, "lb"),
  27768. name: "Front",
  27769. image: {
  27770. source: "./media/characters/remmyzilla/front.svg",
  27771. extra: 4033 / 3588,
  27772. bottom: 123 / 4156
  27773. }
  27774. },
  27775. back: {
  27776. height: math.unit(6 + 4 / 12, "feet"),
  27777. weight: math.unit(250, "lb"),
  27778. name: "Back",
  27779. image: {
  27780. source: "./media/characters/remmyzilla/back.svg",
  27781. extra: 2687 / 2555,
  27782. bottom: 48 / 2735
  27783. }
  27784. },
  27785. frontFancy: {
  27786. height: math.unit(6 + 4 / 12, "feet"),
  27787. weight: math.unit(250, "lb"),
  27788. name: "Front (Fancy)",
  27789. image: {
  27790. source: "./media/characters/remmyzilla/front-fancy.svg",
  27791. extra: 4119 / 3419,
  27792. bottom: 237 / 4356
  27793. }
  27794. },
  27795. paw: {
  27796. height: math.unit(1.73, "feet"),
  27797. name: "Paw",
  27798. image: {
  27799. source: "./media/characters/remmyzilla/paw.svg"
  27800. }
  27801. },
  27802. maw: {
  27803. height: math.unit(1.73, "feet"),
  27804. name: "Maw",
  27805. image: {
  27806. source: "./media/characters/remmyzilla/maw.svg"
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(6 + 4 / 12, "feet")
  27814. },
  27815. {
  27816. name: "Minimacro",
  27817. height: math.unit(12 + 8 / 12, "feet")
  27818. },
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(640, "feet"),
  27822. default: true
  27823. },
  27824. {
  27825. name: "Megamacro",
  27826. height: math.unit(6400, "feet")
  27827. },
  27828. {
  27829. name: "Gigamacro",
  27830. height: math.unit(64000, "miles")
  27831. },
  27832. ]
  27833. ))
  27834. characterMakers.push(() => makeCharacter(
  27835. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27836. {
  27837. front: {
  27838. height: math.unit(2.5, "meters"),
  27839. weight: math.unit(300, "lb"),
  27840. name: "Front",
  27841. image: {
  27842. source: "./media/characters/lawrence/front.svg",
  27843. extra: 357 / 335,
  27844. bottom: 30 / 387
  27845. }
  27846. },
  27847. back: {
  27848. height: math.unit(2.5, "meters"),
  27849. weight: math.unit(300, "lb"),
  27850. name: "Back",
  27851. image: {
  27852. source: "./media/characters/lawrence/back.svg",
  27853. extra: 357 / 338,
  27854. bottom: 16 / 373
  27855. }
  27856. },
  27857. head: {
  27858. height: math.unit(0.9, "meter"),
  27859. name: "Head",
  27860. image: {
  27861. source: "./media/characters/lawrence/head.svg"
  27862. }
  27863. },
  27864. maw: {
  27865. height: math.unit(0.7, "meter"),
  27866. name: "Maw",
  27867. image: {
  27868. source: "./media/characters/lawrence/maw.svg"
  27869. }
  27870. },
  27871. footBottom: {
  27872. height: math.unit(0.5, "meter"),
  27873. name: "Foot (Bottom)",
  27874. image: {
  27875. source: "./media/characters/lawrence/foot-bottom.svg"
  27876. }
  27877. },
  27878. footTop: {
  27879. height: math.unit(0.5, "meter"),
  27880. name: "Foot (Top)",
  27881. image: {
  27882. source: "./media/characters/lawrence/foot-top.svg"
  27883. }
  27884. },
  27885. },
  27886. [
  27887. {
  27888. name: "Normal",
  27889. height: math.unit(2.5, "meters"),
  27890. default: true
  27891. },
  27892. {
  27893. name: "Macro",
  27894. height: math.unit(95, "meters")
  27895. },
  27896. {
  27897. name: "Megamacro",
  27898. height: math.unit(150, "km")
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27904. {
  27905. front: {
  27906. height: math.unit(4.2, "meters"),
  27907. name: "Front",
  27908. image: {
  27909. source: "./media/characters/sydney/front.svg",
  27910. extra: 1323 / 1277,
  27911. bottom: 111 / 1434
  27912. }
  27913. },
  27914. },
  27915. [
  27916. {
  27917. name: "Normal",
  27918. height: math.unit(4.2, "meters"),
  27919. default: true
  27920. },
  27921. ]
  27922. ))
  27923. characterMakers.push(() => makeCharacter(
  27924. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27925. {
  27926. back: {
  27927. height: math.unit(201, "feet"),
  27928. name: "Back",
  27929. image: {
  27930. source: "./media/characters/jessica/back.svg",
  27931. extra: 273 / 259,
  27932. bottom: 7 / 280
  27933. }
  27934. },
  27935. },
  27936. [
  27937. {
  27938. name: "Normal",
  27939. height: math.unit(201, "feet"),
  27940. default: true
  27941. },
  27942. {
  27943. name: "Megamacro",
  27944. height: math.unit(8, "miles")
  27945. },
  27946. ]
  27947. ))
  27948. characterMakers.push(() => makeCharacter(
  27949. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27950. {
  27951. side: {
  27952. height: math.unit(320, "cm"),
  27953. name: "Side",
  27954. image: {
  27955. source: "./media/characters/victoria/side.svg",
  27956. extra: 778 / 346,
  27957. bottom: 56 / 834
  27958. }
  27959. },
  27960. maw: {
  27961. height: math.unit(5.9, "feet"),
  27962. name: "Maw",
  27963. image: {
  27964. source: "./media/characters/victoria/maw.svg"
  27965. }
  27966. },
  27967. },
  27968. [
  27969. {
  27970. name: "Normal",
  27971. height: math.unit(320, "cm"),
  27972. default: true
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27978. {
  27979. front: {
  27980. height: math.unit(5 + 6 / 12, "feet"),
  27981. name: "Front",
  27982. image: {
  27983. source: "./media/characters/cat/front.svg",
  27984. extra: 1374 / 1257,
  27985. bottom: 59 / 1433
  27986. }
  27987. },
  27988. back: {
  27989. height: math.unit(5 + 6 / 12, "feet"),
  27990. name: "Back",
  27991. image: {
  27992. source: "./media/characters/cat/back.svg",
  27993. extra: 1337 / 1226,
  27994. bottom: 34 / 1371
  27995. }
  27996. },
  27997. taur: {
  27998. height: math.unit(7, "feet"),
  27999. name: "Taur",
  28000. image: {
  28001. source: "./media/characters/cat/taur.svg",
  28002. extra: 1345 / 1231,
  28003. bottom: 66 / 1411
  28004. }
  28005. },
  28006. lucario: {
  28007. height: math.unit(4, "feet"),
  28008. name: "Lucario",
  28009. image: {
  28010. source: "./media/characters/cat/lucario.svg",
  28011. extra: 1470 / 1318,
  28012. bottom: 65 / 1535
  28013. }
  28014. },
  28015. megaLucario: {
  28016. height: math.unit(4, "feet"),
  28017. name: "Mega Lucario",
  28018. image: {
  28019. source: "./media/characters/cat/mega-lucario.svg",
  28020. extra: 1515 / 1319,
  28021. bottom: 63 / 1578
  28022. }
  28023. },
  28024. nickit: {
  28025. height: math.unit(2, "feet"),
  28026. name: "Nickit",
  28027. image: {
  28028. source: "./media/characters/cat/nickit.svg",
  28029. extra: 1980 / 1585,
  28030. bottom: 102 / 2082
  28031. }
  28032. },
  28033. lopunnyFront: {
  28034. height: math.unit(5, "feet"),
  28035. name: "Lopunny (Front)",
  28036. image: {
  28037. source: "./media/characters/cat/lopunny-front.svg",
  28038. extra: 1782 / 1469,
  28039. bottom: 38 / 1820
  28040. }
  28041. },
  28042. lopunnyBack: {
  28043. height: math.unit(5, "feet"),
  28044. name: "Lopunny (Back)",
  28045. image: {
  28046. source: "./media/characters/cat/lopunny-back.svg",
  28047. extra: 1660 / 1490,
  28048. bottom: 25 / 1685
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Really small",
  28055. height: math.unit(1, "nm")
  28056. },
  28057. {
  28058. name: "Micro",
  28059. height: math.unit(5, "inches")
  28060. },
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(5 + 6 / 12, "feet"),
  28064. default: true
  28065. },
  28066. {
  28067. name: "Macro",
  28068. height: math.unit(50, "feet")
  28069. },
  28070. {
  28071. name: "Macro+",
  28072. height: math.unit(150, "feet")
  28073. },
  28074. {
  28075. name: "Megamacro",
  28076. height: math.unit(100, "miles")
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(63.4, "meters"),
  28085. weight: math.unit(3.28349e+6, "kilograms"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/kirina-violet/front.svg",
  28089. extra: 2812 / 2725,
  28090. bottom: 0 / 2812
  28091. }
  28092. },
  28093. back: {
  28094. height: math.unit(63.4, "meters"),
  28095. weight: math.unit(3.28349e+6, "kilograms"),
  28096. name: "Back",
  28097. image: {
  28098. source: "./media/characters/kirina-violet/back.svg",
  28099. extra: 2812 / 2725,
  28100. bottom: 0 / 2812
  28101. }
  28102. },
  28103. mouth: {
  28104. height: math.unit(4.35, "meters"),
  28105. name: "Mouth",
  28106. image: {
  28107. source: "./media/characters/kirina-violet/mouth.svg"
  28108. }
  28109. },
  28110. paw: {
  28111. height: math.unit(5.6, "meters"),
  28112. name: "Paw",
  28113. image: {
  28114. source: "./media/characters/kirina-violet/paw.svg"
  28115. }
  28116. },
  28117. tail: {
  28118. height: math.unit(18, "meters"),
  28119. name: "Tail",
  28120. image: {
  28121. source: "./media/characters/kirina-violet/tail.svg"
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Macro",
  28128. height: math.unit(63.4, "meters"),
  28129. default: true
  28130. },
  28131. ]
  28132. ))
  28133. characterMakers.push(() => makeCharacter(
  28134. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28135. {
  28136. front: {
  28137. height: math.unit(60, "feet"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/cat-gigachu/front.svg",
  28141. extra: 1024 / 780,
  28142. bottom: 23 / 1047
  28143. }
  28144. },
  28145. back: {
  28146. height: math.unit(60, "feet"),
  28147. name: "Back",
  28148. image: {
  28149. source: "./media/characters/cat-gigachu/back.svg",
  28150. extra: 1024 / 780,
  28151. bottom: 23 / 1047
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Dynamax",
  28158. height: math.unit(60, "feet"),
  28159. default: true
  28160. },
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28165. {
  28166. front: {
  28167. height: math.unit(6, "feet"),
  28168. weight: math.unit(150, "lb"),
  28169. name: "Front",
  28170. image: {
  28171. source: "./media/characters/sfaiyan/front.svg",
  28172. extra: 999 / 978,
  28173. bottom: 5 / 1004
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Normal",
  28180. height: math.unit(1.82, "meters")
  28181. },
  28182. {
  28183. name: "Giant",
  28184. height: math.unit(2.27, "km"),
  28185. default: true
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28191. {
  28192. front: {
  28193. height: math.unit(179, "cm"),
  28194. weight: math.unit(100, "kg"),
  28195. name: "Front",
  28196. image: {
  28197. source: "./media/characters/raunehkeli/front.svg",
  28198. extra: 1934 / 1926,
  28199. bottom: 0 / 1934
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(179, "cm")
  28207. },
  28208. {
  28209. name: "Maximum",
  28210. height: math.unit(575, "meters"),
  28211. default: true
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(6, "feet"),
  28220. weight: math.unit(150, "lb"),
  28221. name: "Front",
  28222. image: {
  28223. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28224. extra: 2625 / 2518,
  28225. bottom: 60 / 2685
  28226. }
  28227. },
  28228. },
  28229. [
  28230. {
  28231. name: "Normal",
  28232. height: math.unit(6 + 2 / 12, "feet"),
  28233. default: true
  28234. },
  28235. {
  28236. name: "Macro",
  28237. height: math.unit(1180, "feet")
  28238. },
  28239. ]
  28240. ))
  28241. characterMakers.push(() => makeCharacter(
  28242. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28243. {
  28244. front: {
  28245. height: math.unit(5 + 6 / 12, "feet"),
  28246. weight: math.unit(108, "lb"),
  28247. name: "Front",
  28248. image: {
  28249. source: "./media/characters/lilith-zott/front.svg",
  28250. extra: 2510 / 2238,
  28251. bottom: 100 / 2610
  28252. }
  28253. },
  28254. frontDressed: {
  28255. height: math.unit(5 + 6 / 12, "feet"),
  28256. weight: math.unit(108, "lb"),
  28257. name: "Front (Dressed)",
  28258. image: {
  28259. source: "./media/characters/lilith-zott/front-dressed.svg",
  28260. extra: 2510 / 2238,
  28261. bottom: 100 / 2610
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Normal",
  28268. height: math.unit(5 + 6 / 12, "feet")
  28269. },
  28270. {
  28271. name: "Macro",
  28272. height: math.unit(200, "feet"),
  28273. default: true
  28274. },
  28275. {
  28276. name: "Macro+",
  28277. height: math.unit(1030, "feet")
  28278. },
  28279. ]
  28280. ))
  28281. characterMakers.push(() => makeCharacter(
  28282. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28283. {
  28284. front: {
  28285. height: math.unit(6, "feet"),
  28286. weight: math.unit(150, "lb"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28290. extra: 2567 / 2435,
  28291. bottom: 39 / 2606
  28292. }
  28293. },
  28294. frontSuper: {
  28295. height: math.unit(6, "feet"),
  28296. name: "Front (Super)",
  28297. image: {
  28298. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28299. extra: 2567 / 2435,
  28300. bottom: 39 / 2606
  28301. }
  28302. },
  28303. },
  28304. [
  28305. {
  28306. name: "Normal",
  28307. height: math.unit(5 + 10 / 12, "feet")
  28308. },
  28309. {
  28310. name: "Macro",
  28311. height: math.unit(220, "feet"),
  28312. default: true
  28313. },
  28314. {
  28315. name: "Macro+",
  28316. height: math.unit(1100, "feet")
  28317. },
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28322. {
  28323. front: {
  28324. height: math.unit(100, "miles"),
  28325. name: "Front",
  28326. image: {
  28327. source: "./media/characters/sona/front.svg",
  28328. extra: 2433 / 2201,
  28329. bottom: 53 / 2486
  28330. }
  28331. },
  28332. foot: {
  28333. height: math.unit(16.1, "miles"),
  28334. name: "Foot",
  28335. image: {
  28336. source: "./media/characters/sona/foot.svg"
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Macro",
  28343. height: math.unit(100, "miles"),
  28344. default: true
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(6, "feet"),
  28353. weight: math.unit(150, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/bailey/front.svg",
  28357. extra: 1778 / 1724,
  28358. bottom: 30 / 1808
  28359. }
  28360. },
  28361. },
  28362. [
  28363. {
  28364. name: "Micro",
  28365. height: math.unit(4, "inches")
  28366. },
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(5 + 5 / 12, "feet"),
  28370. default: true
  28371. },
  28372. {
  28373. name: "Macro",
  28374. height: math.unit(250, "feet")
  28375. },
  28376. {
  28377. name: "Megamacro",
  28378. height: math.unit(100, "miles")
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28384. {
  28385. front: {
  28386. height: math.unit(5 + 2 / 12, "feet"),
  28387. weight: math.unit(120, "lb"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/snaps/front.svg",
  28391. extra: 2370 / 2177,
  28392. bottom: 48 / 2418
  28393. }
  28394. },
  28395. back: {
  28396. height: math.unit(5 + 2 / 12, "feet"),
  28397. weight: math.unit(120, "lb"),
  28398. name: "Back",
  28399. image: {
  28400. source: "./media/characters/snaps/back.svg",
  28401. extra: 2408 / 2258,
  28402. bottom: 15 / 2423
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Micro",
  28409. height: math.unit(9, "inches")
  28410. },
  28411. {
  28412. name: "Normal",
  28413. height: math.unit(5 + 2 / 12, "feet"),
  28414. default: true
  28415. },
  28416. {
  28417. name: "Mini Macro",
  28418. height: math.unit(10, "feet")
  28419. },
  28420. ]
  28421. ))
  28422. characterMakers.push(() => makeCharacter(
  28423. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28424. {
  28425. front: {
  28426. height: math.unit(1.8, "meters"),
  28427. weight: math.unit(85, "kg"),
  28428. name: "Front",
  28429. image: {
  28430. source: "./media/characters/azteck/front.svg",
  28431. extra: 2815 / 2625,
  28432. bottom: 89 / 2904
  28433. }
  28434. },
  28435. back: {
  28436. height: math.unit(1.8, "meters"),
  28437. weight: math.unit(85, "kg"),
  28438. name: "Back",
  28439. image: {
  28440. source: "./media/characters/azteck/back.svg",
  28441. extra: 2856 / 2648,
  28442. bottom: 85 / 2941
  28443. }
  28444. },
  28445. frontDressed: {
  28446. height: math.unit(1.8, "meters"),
  28447. weight: math.unit(85, "kg"),
  28448. name: "Front (Dressed)",
  28449. image: {
  28450. source: "./media/characters/azteck/front-dressed.svg",
  28451. extra: 2147 / 2003,
  28452. bottom: 68 / 2215
  28453. }
  28454. },
  28455. head: {
  28456. height: math.unit(0.47, "meters"),
  28457. weight: math.unit(85, "kg"),
  28458. name: "Head",
  28459. image: {
  28460. source: "./media/characters/azteck/head.svg"
  28461. }
  28462. },
  28463. },
  28464. [
  28465. {
  28466. name: "Bite sized",
  28467. height: math.unit(16, "cm")
  28468. },
  28469. {
  28470. name: "Normal",
  28471. height: math.unit(1.8, "meters"),
  28472. default: true
  28473. },
  28474. ]
  28475. ))
  28476. characterMakers.push(() => makeCharacter(
  28477. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28478. {
  28479. front: {
  28480. height: math.unit(6, "feet"),
  28481. weight: math.unit(150, "lb"),
  28482. name: "Front",
  28483. image: {
  28484. source: "./media/characters/pidge/front.svg",
  28485. extra: 620 / 588,
  28486. bottom: 9 / 629
  28487. }
  28488. },
  28489. back: {
  28490. height: math.unit(6, "feet"),
  28491. weight: math.unit(150, "lb"),
  28492. name: "Back",
  28493. image: {
  28494. source: "./media/characters/pidge/back.svg",
  28495. extra: 620 / 588,
  28496. bottom: 9 / 629
  28497. }
  28498. },
  28499. },
  28500. [
  28501. {
  28502. name: "Macro",
  28503. height: math.unit(1, "mile"),
  28504. default: true
  28505. },
  28506. ]
  28507. ))
  28508. characterMakers.push(() => makeCharacter(
  28509. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28510. {
  28511. front: {
  28512. height: math.unit(6, "feet"),
  28513. weight: math.unit(150, "lb"),
  28514. name: "Front",
  28515. image: {
  28516. source: "./media/characters/en/front.svg",
  28517. extra: 1697 / 1563,
  28518. bottom: 103 / 1800
  28519. }
  28520. },
  28521. back: {
  28522. height: math.unit(6, "feet"),
  28523. weight: math.unit(150, "lb"),
  28524. name: "Back",
  28525. image: {
  28526. source: "./media/characters/en/back.svg",
  28527. extra: 1700 / 1570,
  28528. bottom: 51 / 1751
  28529. }
  28530. },
  28531. frontDressed: {
  28532. height: math.unit(6, "feet"),
  28533. weight: math.unit(150, "lb"),
  28534. name: "Front (Dressed)",
  28535. image: {
  28536. source: "./media/characters/en/front-dressed.svg",
  28537. extra: 1697 / 1563,
  28538. bottom: 103 / 1800
  28539. }
  28540. },
  28541. backDressed: {
  28542. height: math.unit(6, "feet"),
  28543. weight: math.unit(150, "lb"),
  28544. name: "Back (Dressed)",
  28545. image: {
  28546. source: "./media/characters/en/back-dressed.svg",
  28547. extra: 1700 / 1570,
  28548. bottom: 51 / 1751
  28549. }
  28550. },
  28551. },
  28552. [
  28553. {
  28554. name: "Macro",
  28555. height: math.unit(210, "feet"),
  28556. default: true
  28557. },
  28558. ]
  28559. ))
  28560. characterMakers.push(() => makeCharacter(
  28561. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28562. {
  28563. front: {
  28564. height: math.unit(6, "feet"),
  28565. weight: math.unit(150, "lb"),
  28566. name: "Front",
  28567. image: {
  28568. source: "./media/characters/haze-orris/front.svg",
  28569. extra: 3975 / 3525,
  28570. bottom: 137 / 4112
  28571. }
  28572. },
  28573. },
  28574. [
  28575. {
  28576. name: "Micro",
  28577. height: math.unit(150, "mm"),
  28578. default: true
  28579. },
  28580. ]
  28581. ))
  28582. characterMakers.push(() => makeCharacter(
  28583. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28584. {
  28585. front: {
  28586. height: math.unit(6, "feet"),
  28587. weight: math.unit(150, "lb"),
  28588. name: "Front",
  28589. image: {
  28590. source: "./media/characters/casselene-yaro/front.svg",
  28591. extra: 4721 / 4541,
  28592. bottom: 82 / 4803
  28593. }
  28594. },
  28595. back: {
  28596. height: math.unit(6, "feet"),
  28597. weight: math.unit(150, "lb"),
  28598. name: "Back",
  28599. image: {
  28600. source: "./media/characters/casselene-yaro/back.svg",
  28601. extra: 4569 / 4377,
  28602. bottom: 69 / 4638
  28603. }
  28604. },
  28605. frontDressed: {
  28606. height: math.unit(6, "feet"),
  28607. weight: math.unit(150, "lb"),
  28608. name: "Front-dressed",
  28609. image: {
  28610. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28611. extra: 4721 / 4541,
  28612. bottom: 82 / 4803
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Macro",
  28619. height: math.unit(190, "feet"),
  28620. default: true
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28626. {
  28627. front: {
  28628. height: math.unit(6, "feet"),
  28629. weight: math.unit(150, "lb"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/myra-rue-delore/front.svg",
  28633. extra: 1340 / 1308,
  28634. bottom: 67 / 1407
  28635. }
  28636. },
  28637. back: {
  28638. height: math.unit(6, "feet"),
  28639. weight: math.unit(150, "lb"),
  28640. name: "Back",
  28641. image: {
  28642. source: "./media/characters/myra-rue-delore/back.svg",
  28643. extra: 1341 / 1310,
  28644. bottom: 40 / 1381
  28645. }
  28646. },
  28647. frontDressed: {
  28648. height: math.unit(6, "feet"),
  28649. weight: math.unit(150, "lb"),
  28650. name: "Front (Dressed)",
  28651. image: {
  28652. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28653. extra: 1340 / 1308,
  28654. bottom: 67 / 1407
  28655. }
  28656. },
  28657. },
  28658. [
  28659. {
  28660. name: "Macro",
  28661. height: math.unit(150, "feet"),
  28662. default: true
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(10, "feet"),
  28671. weight: math.unit(15015, "lb"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/fem!plat/front.svg",
  28675. extra: 2799 / 2604,
  28676. bottom: 149 / 2948
  28677. }
  28678. },
  28679. },
  28680. [
  28681. {
  28682. name: "Normal",
  28683. height: math.unit(10, "feet"),
  28684. default: true
  28685. },
  28686. {
  28687. name: "Macro",
  28688. height: math.unit(100, "feet")
  28689. },
  28690. {
  28691. name: "Megamacro",
  28692. height: math.unit(1000, "feet")
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28698. {
  28699. front: {
  28700. height: math.unit(15 + 5 / 12, "feet"),
  28701. weight: math.unit(4600, "lb"),
  28702. name: "Front",
  28703. image: {
  28704. source: "./media/characters/neapolitan-ananassa/front.svg",
  28705. extra: 2903 / 2736,
  28706. bottom: 0 / 2903
  28707. }
  28708. },
  28709. side: {
  28710. height: math.unit(15 + 5 / 12, "feet"),
  28711. weight: math.unit(4600, "lb"),
  28712. name: "Side",
  28713. image: {
  28714. source: "./media/characters/neapolitan-ananassa/side.svg",
  28715. extra: 2925 / 2719,
  28716. bottom: 0 / 2925
  28717. }
  28718. },
  28719. back: {
  28720. height: math.unit(15 + 5 / 12, "feet"),
  28721. weight: math.unit(4600, "lb"),
  28722. name: "Back",
  28723. image: {
  28724. source: "./media/characters/neapolitan-ananassa/back.svg",
  28725. extra: 2903 / 2736,
  28726. bottom: 0 / 2903
  28727. }
  28728. },
  28729. },
  28730. [
  28731. {
  28732. name: "Normal",
  28733. height: math.unit(15 + 5 / 12, "feet"),
  28734. default: true
  28735. },
  28736. {
  28737. name: "Post-Millenium",
  28738. height: math.unit(35 + 5 / 12, "feet")
  28739. },
  28740. {
  28741. name: "Post-Era",
  28742. height: math.unit(450 + 5 / 12, "feet")
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(300, "meters"),
  28751. weight: math.unit(125000, "tonnes"),
  28752. name: "Front",
  28753. image: {
  28754. source: "./media/characters/pazuzu/front.svg",
  28755. extra: 877 / 794,
  28756. bottom: 47 / 924
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Macro",
  28763. height: math.unit(300, "meters"),
  28764. default: true
  28765. },
  28766. ]
  28767. ))
  28768. characterMakers.push(() => makeCharacter(
  28769. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28770. {
  28771. side: {
  28772. height: math.unit(10 + 7 / 12, "feet"),
  28773. weight: math.unit(2.5, "tons"),
  28774. name: "Side",
  28775. image: {
  28776. source: "./media/characters/aasha/side.svg",
  28777. extra: 1345 / 1245,
  28778. bottom: 111 / 1456
  28779. }
  28780. },
  28781. back: {
  28782. height: math.unit(10 + 7 / 12, "feet"),
  28783. weight: math.unit(2.5, "tons"),
  28784. name: "Back",
  28785. image: {
  28786. source: "./media/characters/aasha/back.svg",
  28787. extra: 1133 / 1057,
  28788. bottom: 257 / 1390
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Normal",
  28795. height: math.unit(10 + 7 / 12, "feet"),
  28796. default: true
  28797. },
  28798. ]
  28799. ))
  28800. characterMakers.push(() => makeCharacter(
  28801. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28802. {
  28803. front: {
  28804. height: math.unit(6 + 3 / 12, "feet"),
  28805. name: "Front",
  28806. image: {
  28807. source: "./media/characters/nevan/front.svg",
  28808. extra: 704 / 704,
  28809. bottom: 28 / 732
  28810. }
  28811. },
  28812. back: {
  28813. height: math.unit(6 + 3 / 12, "feet"),
  28814. name: "Back",
  28815. image: {
  28816. source: "./media/characters/nevan/back.svg",
  28817. extra: 714 / 714,
  28818. bottom: 21 / 735
  28819. }
  28820. },
  28821. frontFlaccid: {
  28822. height: math.unit(6 + 3 / 12, "feet"),
  28823. name: "Front (Flaccid)",
  28824. image: {
  28825. source: "./media/characters/nevan/front-flaccid.svg",
  28826. extra: 704 / 704,
  28827. bottom: 28 / 732
  28828. }
  28829. },
  28830. frontErect: {
  28831. height: math.unit(6 + 3 / 12, "feet"),
  28832. name: "Front (Erect)",
  28833. image: {
  28834. source: "./media/characters/nevan/front-erect.svg",
  28835. extra: 704 / 704,
  28836. bottom: 28 / 732
  28837. }
  28838. },
  28839. backFlaccid: {
  28840. height: math.unit(6 + 3 / 12, "feet"),
  28841. name: "Back (Flaccid)",
  28842. image: {
  28843. source: "./media/characters/nevan/back-flaccid.svg",
  28844. extra: 714 / 714,
  28845. bottom: 21 / 735
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Normal",
  28852. height: math.unit(6 + 3 / 12, "feet"),
  28853. default: true
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(4, "feet"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/arhan/front.svg",
  28865. extra: 3368 / 3133,
  28866. bottom: 0 / 3368
  28867. }
  28868. },
  28869. side: {
  28870. height: math.unit(4, "feet"),
  28871. name: "Side",
  28872. image: {
  28873. source: "./media/characters/arhan/side.svg",
  28874. extra: 3347 / 3105,
  28875. bottom: 0 / 3347
  28876. }
  28877. },
  28878. tongue: {
  28879. height: math.unit(1.42, "feet"),
  28880. name: "Tongue",
  28881. image: {
  28882. source: "./media/characters/arhan/tongue.svg"
  28883. }
  28884. },
  28885. head: {
  28886. height: math.unit(0.85, "feet"),
  28887. name: "Head",
  28888. image: {
  28889. source: "./media/characters/arhan/head.svg"
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(4, "feet"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(5 + 7.5 / 12, "feet"),
  28906. weight: math.unit(120, "lb"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/digi-duncan/front.svg",
  28910. extra: 330 / 326,
  28911. bottom: 16 / 346
  28912. }
  28913. },
  28914. side: {
  28915. height: math.unit(5 + 7.5 / 12, "feet"),
  28916. weight: math.unit(120, "lb"),
  28917. name: "Side",
  28918. image: {
  28919. source: "./media/characters/digi-duncan/side.svg",
  28920. extra: 341 / 337,
  28921. bottom: 1 / 342
  28922. }
  28923. },
  28924. back: {
  28925. height: math.unit(5 + 7.5 / 12, "feet"),
  28926. weight: math.unit(120, "lb"),
  28927. name: "Back",
  28928. image: {
  28929. source: "./media/characters/digi-duncan/back.svg",
  28930. extra: 330 / 326,
  28931. bottom: 12 / 342
  28932. }
  28933. },
  28934. },
  28935. [
  28936. {
  28937. name: "Speck",
  28938. height: math.unit(0.25, "mm")
  28939. },
  28940. {
  28941. name: "Micro",
  28942. height: math.unit(5, "mm")
  28943. },
  28944. {
  28945. name: "Tiny",
  28946. height: math.unit(0.5, "inches"),
  28947. default: true
  28948. },
  28949. {
  28950. name: "Human",
  28951. height: math.unit(5 + 7.5 / 12, "feet")
  28952. },
  28953. {
  28954. name: "Minigiant",
  28955. height: math.unit(8 + 5.25, "feet")
  28956. },
  28957. {
  28958. name: "Giant",
  28959. height: math.unit(2000, "feet")
  28960. },
  28961. {
  28962. name: "Mega",
  28963. height: math.unit(371.1, "miles")
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(2, "meters"),
  28972. weight: math.unit(350, "kg"),
  28973. name: "Front",
  28974. image: {
  28975. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28976. extra: 898 / 838,
  28977. bottom: 9 / 907
  28978. }
  28979. },
  28980. },
  28981. [
  28982. {
  28983. name: "Micro",
  28984. height: math.unit(8, "meters")
  28985. },
  28986. {
  28987. name: "Normal",
  28988. height: math.unit(50, "meters"),
  28989. default: true
  28990. },
  28991. {
  28992. name: "Macro",
  28993. height: math.unit(500, "meters")
  28994. },
  28995. ]
  28996. ))
  28997. characterMakers.push(() => makeCharacter(
  28998. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28999. {
  29000. front: {
  29001. height: math.unit(6 + 6 / 12, "feet"),
  29002. name: "Front",
  29003. image: {
  29004. source: "./media/characters/khardesh/front.svg",
  29005. extra: 888 / 797,
  29006. bottom: 25 / 913
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Normal",
  29013. height: math.unit(6 + 6 / 12, "feet"),
  29014. default: true
  29015. },
  29016. {
  29017. name: "Normal+",
  29018. height: math.unit(4, "meters")
  29019. },
  29020. {
  29021. name: "Macro",
  29022. height: math.unit(50, "meters")
  29023. },
  29024. {
  29025. name: "Macro+",
  29026. height: math.unit(100, "meters")
  29027. },
  29028. {
  29029. name: "Megamacro",
  29030. height: math.unit(20, "km")
  29031. },
  29032. ]
  29033. ))
  29034. characterMakers.push(() => makeCharacter(
  29035. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29036. {
  29037. front: {
  29038. height: math.unit(6, "feet"),
  29039. weight: math.unit(150, "lb"),
  29040. name: "Front",
  29041. image: {
  29042. source: "./media/characters/kosho/front.svg",
  29043. extra: 1847 / 1847,
  29044. bottom: 86 / 1933
  29045. }
  29046. },
  29047. },
  29048. [
  29049. {
  29050. name: "Second-stage micro",
  29051. height: math.unit(0.5, "inches")
  29052. },
  29053. {
  29054. name: "First-stage micro",
  29055. height: math.unit(6, "inches")
  29056. },
  29057. {
  29058. name: "Normal",
  29059. height: math.unit(6, "feet"),
  29060. default: true
  29061. },
  29062. {
  29063. name: "First-stage macro",
  29064. height: math.unit(72, "feet")
  29065. },
  29066. {
  29067. name: "Second-stage macro",
  29068. height: math.unit(864, "feet")
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29074. {
  29075. normal: {
  29076. height: math.unit(4 + 6 / 12, "feet"),
  29077. name: "Normal",
  29078. image: {
  29079. source: "./media/characters/hydra/normal.svg",
  29080. extra: 2833 / 2634,
  29081. bottom: 68 / 2901
  29082. }
  29083. },
  29084. smol: {
  29085. height: math.unit(0.705, "inches"),
  29086. name: "Smol",
  29087. image: {
  29088. source: "./media/characters/hydra/smol.svg",
  29089. extra: 2715 / 2540,
  29090. bottom: 0 / 2715
  29091. }
  29092. },
  29093. },
  29094. [
  29095. {
  29096. name: "Normal",
  29097. height: math.unit(4 + 6 / 12, "feet"),
  29098. default: true
  29099. }
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29104. {
  29105. front: {
  29106. height: math.unit(0.6, "cm"),
  29107. name: "Front",
  29108. image: {
  29109. source: "./media/characters/daz/front.svg",
  29110. extra: 1682 / 1164,
  29111. bottom: 42 / 1724
  29112. }
  29113. },
  29114. },
  29115. [
  29116. {
  29117. name: "Normal",
  29118. height: math.unit(0.6, "cm"),
  29119. default: true
  29120. },
  29121. ]
  29122. ))
  29123. characterMakers.push(() => makeCharacter(
  29124. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29125. {
  29126. front: {
  29127. height: math.unit(6, "feet"),
  29128. weight: math.unit(235, "lb"),
  29129. name: "Front",
  29130. image: {
  29131. source: "./media/characters/theo-pangolin/front.svg",
  29132. extra: 1996 / 1969,
  29133. bottom: 115 / 2111
  29134. }
  29135. },
  29136. back: {
  29137. height: math.unit(6, "feet"),
  29138. weight: math.unit(235, "lb"),
  29139. name: "Back",
  29140. image: {
  29141. source: "./media/characters/theo-pangolin/back.svg",
  29142. extra: 1979 / 1979,
  29143. bottom: 40 / 2019
  29144. }
  29145. },
  29146. feral: {
  29147. height: math.unit(2, "feet"),
  29148. weight: math.unit(30, "lb"),
  29149. name: "Feral",
  29150. image: {
  29151. source: "./media/characters/theo-pangolin/feral.svg",
  29152. extra: 803 / 791,
  29153. bottom: 181 / 984
  29154. }
  29155. },
  29156. footFive: {
  29157. height: math.unit(1.43, "feet"),
  29158. name: "Foot (Five Toes)",
  29159. image: {
  29160. source: "./media/characters/theo-pangolin/foot-five.svg"
  29161. }
  29162. },
  29163. footFour: {
  29164. height: math.unit(1.43, "feet"),
  29165. name: "Foot (Four Toes)",
  29166. image: {
  29167. source: "./media/characters/theo-pangolin/foot-four.svg"
  29168. }
  29169. },
  29170. handFour: {
  29171. height: math.unit(0.81, "feet"),
  29172. name: "Hand (Four Fingers)",
  29173. image: {
  29174. source: "./media/characters/theo-pangolin/hand-four.svg"
  29175. }
  29176. },
  29177. handThree: {
  29178. height: math.unit(0.81, "feet"),
  29179. name: "Hand (Three Fingers)",
  29180. image: {
  29181. source: "./media/characters/theo-pangolin/hand-three.svg"
  29182. }
  29183. },
  29184. headFront: {
  29185. height: math.unit(1.37, "feet"),
  29186. name: "Head (Front)",
  29187. image: {
  29188. source: "./media/characters/theo-pangolin/head-front.svg"
  29189. }
  29190. },
  29191. headSide: {
  29192. height: math.unit(1.43, "feet"),
  29193. name: "Head (Side)",
  29194. image: {
  29195. source: "./media/characters/theo-pangolin/head-side.svg"
  29196. }
  29197. },
  29198. tongue: {
  29199. height: math.unit(2.29, "feet"),
  29200. name: "Tongue",
  29201. image: {
  29202. source: "./media/characters/theo-pangolin/tongue.svg"
  29203. }
  29204. },
  29205. },
  29206. [
  29207. {
  29208. name: "Normal",
  29209. height: math.unit(6, "feet")
  29210. },
  29211. {
  29212. name: "Macro",
  29213. height: math.unit(400, "feet"),
  29214. default: true
  29215. },
  29216. ]
  29217. ))
  29218. characterMakers.push(() => makeCharacter(
  29219. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29220. {
  29221. front: {
  29222. height: math.unit(6, "inches"),
  29223. weight: math.unit(0.036, "kg"),
  29224. name: "Front",
  29225. image: {
  29226. source: "./media/characters/renée/front.svg",
  29227. extra: 900 / 886,
  29228. bottom: 8 / 908
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Nano",
  29235. height: math.unit(1, "nm")
  29236. },
  29237. {
  29238. name: "Micro",
  29239. height: math.unit(1, "mm")
  29240. },
  29241. {
  29242. name: "Normal",
  29243. height: math.unit(6, "inches")
  29244. },
  29245. {
  29246. name: "Macro",
  29247. height: math.unit(2000, "feet"),
  29248. default: true
  29249. },
  29250. {
  29251. name: "Megamacro",
  29252. height: math.unit(2, "km")
  29253. },
  29254. {
  29255. name: "Gigamacro",
  29256. height: math.unit(2000, "km")
  29257. },
  29258. {
  29259. name: "Teramacro",
  29260. height: math.unit(250000, "km")
  29261. },
  29262. ]
  29263. ))
  29264. characterMakers.push(() => makeCharacter(
  29265. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29266. {
  29267. front: {
  29268. height: math.unit(4, "meters"),
  29269. weight: math.unit(150, "kg"),
  29270. name: "Front",
  29271. image: {
  29272. source: "./media/characters/caledvwlch/front.svg",
  29273. extra: 1760 / 1551,
  29274. bottom: 28 / 1788
  29275. }
  29276. },
  29277. side: {
  29278. height: math.unit(4, "meters"),
  29279. weight: math.unit(150, "kg"),
  29280. name: "Side",
  29281. image: {
  29282. source: "./media/characters/caledvwlch/side.svg",
  29283. extra: 1605 / 1536,
  29284. bottom: 31 / 1636
  29285. }
  29286. },
  29287. back: {
  29288. height: math.unit(4, "meters"),
  29289. weight: math.unit(150, "kg"),
  29290. name: "Back",
  29291. image: {
  29292. source: "./media/characters/caledvwlch/back.svg",
  29293. extra: 1635 / 1565,
  29294. bottom: 27 / 1662
  29295. }
  29296. },
  29297. },
  29298. [
  29299. {
  29300. name: "\"Incognito\"",
  29301. height: math.unit(4, "meters")
  29302. },
  29303. {
  29304. name: "Small rampage",
  29305. height: math.unit(600, "meters")
  29306. },
  29307. {
  29308. name: "Mega",
  29309. height: math.unit(30, "km")
  29310. },
  29311. {
  29312. name: "Home-size",
  29313. height: math.unit(50, "km"),
  29314. default: true
  29315. },
  29316. {
  29317. name: "Giga",
  29318. height: math.unit(300, "km")
  29319. },
  29320. {
  29321. name: "Lounging",
  29322. height: math.unit(11000, "km")
  29323. },
  29324. {
  29325. name: "Planet snacking",
  29326. height: math.unit(2000000, "km")
  29327. },
  29328. ]
  29329. ))
  29330. characterMakers.push(() => makeCharacter(
  29331. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29332. {
  29333. front: {
  29334. height: math.unit(6, "feet"),
  29335. weight: math.unit(215, "lb"),
  29336. name: "Front",
  29337. image: {
  29338. source: "./media/characters/sapphire-svell/front.svg",
  29339. extra: 495 / 455,
  29340. bottom: 20 / 515
  29341. }
  29342. },
  29343. back: {
  29344. height: math.unit(6, "feet"),
  29345. weight: math.unit(216, "lb"),
  29346. name: "Back",
  29347. image: {
  29348. source: "./media/characters/sapphire-svell/back.svg",
  29349. extra: 497 / 477,
  29350. bottom: 7 / 504
  29351. }
  29352. },
  29353. maw: {
  29354. height: math.unit(1.57, "feet"),
  29355. name: "Maw",
  29356. image: {
  29357. source: "./media/characters/sapphire-svell/maw.svg"
  29358. }
  29359. },
  29360. foot: {
  29361. height: math.unit(1.07, "feet"),
  29362. name: "Foot",
  29363. image: {
  29364. source: "./media/characters/sapphire-svell/foot.svg"
  29365. }
  29366. },
  29367. toering: {
  29368. height: math.unit(1.7, "inch"),
  29369. name: "Toering",
  29370. image: {
  29371. source: "./media/characters/sapphire-svell/toering.svg"
  29372. }
  29373. },
  29374. },
  29375. [
  29376. {
  29377. name: "Normal",
  29378. height: math.unit(300, "feet"),
  29379. default: true
  29380. },
  29381. {
  29382. name: "Augmented",
  29383. height: math.unit(1250, "feet")
  29384. },
  29385. {
  29386. name: "Unleashed",
  29387. height: math.unit(3000, "feet")
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29393. {
  29394. side: {
  29395. height: math.unit(2 + 3 / 12, "feet"),
  29396. weight: math.unit(110, "lb"),
  29397. name: "Side",
  29398. image: {
  29399. source: "./media/characters/glitch-flux/side.svg",
  29400. extra: 997 / 805,
  29401. bottom: 20 / 1017
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(2 + 3 / 12, "feet"),
  29409. default: true
  29410. },
  29411. ]
  29412. ))
  29413. characterMakers.push(() => makeCharacter(
  29414. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29415. {
  29416. front: {
  29417. height: math.unit(4, "meters"),
  29418. name: "Front",
  29419. image: {
  29420. source: "./media/characters/mid/front.svg",
  29421. extra: 507 / 476,
  29422. bottom: 17 / 524
  29423. }
  29424. },
  29425. back: {
  29426. height: math.unit(4, "meters"),
  29427. name: "Back",
  29428. image: {
  29429. source: "./media/characters/mid/back.svg",
  29430. extra: 519 / 487,
  29431. bottom: 7 / 526
  29432. }
  29433. },
  29434. stuck: {
  29435. height: math.unit(2.2, "meters"),
  29436. name: "Stuck",
  29437. image: {
  29438. source: "./media/characters/mid/stuck.svg",
  29439. extra: 1951 / 1869,
  29440. bottom: 88 / 2039
  29441. }
  29442. }
  29443. },
  29444. [
  29445. {
  29446. name: "Normal",
  29447. height: math.unit(4, "meters"),
  29448. default: true
  29449. },
  29450. {
  29451. name: "Big",
  29452. height: math.unit(10, "meters")
  29453. },
  29454. {
  29455. name: "Macro",
  29456. height: math.unit(800, "meters")
  29457. },
  29458. {
  29459. name: "Megamacro",
  29460. height: math.unit(100, "km")
  29461. },
  29462. {
  29463. name: "Overgrown",
  29464. height: math.unit(1, "parsec")
  29465. },
  29466. ]
  29467. ))
  29468. characterMakers.push(() => makeCharacter(
  29469. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29470. {
  29471. front: {
  29472. height: math.unit(2.5, "meters"),
  29473. weight: math.unit(225, "kg"),
  29474. name: "Front",
  29475. image: {
  29476. source: "./media/characters/iris/front.svg",
  29477. extra: 3348 / 3251,
  29478. bottom: 205 / 3553
  29479. }
  29480. },
  29481. maw: {
  29482. height: math.unit(0.56, "meter"),
  29483. name: "Maw",
  29484. image: {
  29485. source: "./media/characters/iris/maw.svg"
  29486. }
  29487. },
  29488. },
  29489. [
  29490. {
  29491. name: "Mewter cat",
  29492. height: math.unit(1.2, "meters")
  29493. },
  29494. {
  29495. name: "Minimacro",
  29496. height: math.unit(2.5, "meters"),
  29497. default: true
  29498. },
  29499. {
  29500. name: "Macro",
  29501. height: math.unit(180, "meters")
  29502. },
  29503. {
  29504. name: "Megamacro",
  29505. height: math.unit(2746, "meters")
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(6, "feet"),
  29514. weight: math.unit(135, "lb"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/axel/front.svg",
  29518. extra: 908 / 908,
  29519. bottom: 58 / 966
  29520. }
  29521. },
  29522. side: {
  29523. height: math.unit(6, "feet"),
  29524. weight: math.unit(135, "lb"),
  29525. name: "Side",
  29526. image: {
  29527. source: "./media/characters/axel/side.svg",
  29528. extra: 958 / 958,
  29529. bottom: 11 / 969
  29530. }
  29531. },
  29532. back: {
  29533. height: math.unit(6, "feet"),
  29534. weight: math.unit(135, "lb"),
  29535. name: "Back",
  29536. image: {
  29537. source: "./media/characters/axel/back.svg",
  29538. extra: 887 / 887,
  29539. bottom: 34 / 921
  29540. }
  29541. },
  29542. head: {
  29543. height: math.unit(1.07, "feet"),
  29544. name: "Head",
  29545. image: {
  29546. source: "./media/characters/axel/head.svg"
  29547. }
  29548. },
  29549. beak: {
  29550. height: math.unit(1.4, "feet"),
  29551. name: "Beak",
  29552. image: {
  29553. source: "./media/characters/axel/beak.svg"
  29554. }
  29555. },
  29556. beakSide: {
  29557. height: math.unit(1.4, "feet"),
  29558. name: "Beak Side",
  29559. image: {
  29560. source: "./media/characters/axel/beak-side.svg"
  29561. }
  29562. },
  29563. sheath: {
  29564. height: math.unit(0.5, "feet"),
  29565. name: "Sheath",
  29566. image: {
  29567. source: "./media/characters/axel/sheath.svg"
  29568. }
  29569. },
  29570. dick: {
  29571. height: math.unit(0.98, "feet"),
  29572. name: "Dick",
  29573. image: {
  29574. source: "./media/characters/axel/dick.svg"
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Macro",
  29581. height: math.unit(68, "meters"),
  29582. default: true
  29583. },
  29584. ]
  29585. ))
  29586. characterMakers.push(() => makeCharacter(
  29587. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29588. {
  29589. front: {
  29590. height: math.unit(3.5, "meters"),
  29591. weight: math.unit(1200, "kg"),
  29592. name: "Front",
  29593. image: {
  29594. source: "./media/characters/joanna/front.svg",
  29595. extra: 1596 / 1488,
  29596. bottom: 29 / 1625
  29597. }
  29598. },
  29599. back: {
  29600. height: math.unit(3.5, "meters"),
  29601. weight: math.unit(1200, "kg"),
  29602. name: "Back",
  29603. image: {
  29604. source: "./media/characters/joanna/back.svg",
  29605. extra: 1594 / 1495,
  29606. bottom: 26 / 1620
  29607. }
  29608. },
  29609. frontShorts: {
  29610. height: math.unit(3.5, "meters"),
  29611. weight: math.unit(1200, "kg"),
  29612. name: "Front (Shorts)",
  29613. image: {
  29614. source: "./media/characters/joanna/front-shorts.svg",
  29615. extra: 1596 / 1488,
  29616. bottom: 29 / 1625
  29617. }
  29618. },
  29619. frontBiker: {
  29620. height: math.unit(3.5, "meters"),
  29621. weight: math.unit(1200, "kg"),
  29622. name: "Front (Biker)",
  29623. image: {
  29624. source: "./media/characters/joanna/front-biker.svg",
  29625. extra: 1596 / 1488,
  29626. bottom: 29 / 1625
  29627. }
  29628. },
  29629. backBiker: {
  29630. height: math.unit(3.5, "meters"),
  29631. weight: math.unit(1200, "kg"),
  29632. name: "Back (Biker)",
  29633. image: {
  29634. source: "./media/characters/joanna/back-biker.svg",
  29635. extra: 1594 / 1495,
  29636. bottom: 88 / 1682
  29637. }
  29638. },
  29639. bikeLeft: {
  29640. height: math.unit(2.4, "meters"),
  29641. weight: math.unit(1600, "kg"),
  29642. name: "Bike (Left)",
  29643. image: {
  29644. source: "./media/characters/joanna/bike-left.svg",
  29645. extra: 720 / 720,
  29646. bottom: 8 / 728
  29647. }
  29648. },
  29649. bikeRight: {
  29650. height: math.unit(2.4, "meters"),
  29651. weight: math.unit(1600, "kg"),
  29652. name: "Bike (Right)",
  29653. image: {
  29654. source: "./media/characters/joanna/bike-right.svg",
  29655. extra: 720 / 720,
  29656. bottom: 8 / 728
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Incognito",
  29663. height: math.unit(3.5, "meters")
  29664. },
  29665. {
  29666. name: "Casual Big",
  29667. height: math.unit(200, "meters")
  29668. },
  29669. {
  29670. name: "Macro",
  29671. height: math.unit(600, "meters")
  29672. },
  29673. {
  29674. name: "Original",
  29675. height: math.unit(20, "km"),
  29676. default: true
  29677. },
  29678. {
  29679. name: "Giga",
  29680. height: math.unit(400, "km")
  29681. },
  29682. {
  29683. name: "Lounging",
  29684. height: math.unit(1500, "km")
  29685. },
  29686. {
  29687. name: "Planetary",
  29688. height: math.unit(200000, "km")
  29689. },
  29690. ]
  29691. ))
  29692. characterMakers.push(() => makeCharacter(
  29693. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29694. {
  29695. front: {
  29696. height: math.unit(6, "feet"),
  29697. weight: math.unit(150, "lb"),
  29698. name: "Front",
  29699. image: {
  29700. source: "./media/characters/hugo-sigil/front.svg",
  29701. extra: 522 / 500,
  29702. bottom: 2 / 524
  29703. }
  29704. },
  29705. back: {
  29706. height: math.unit(6, "feet"),
  29707. weight: math.unit(150, "lb"),
  29708. name: "Back",
  29709. image: {
  29710. source: "./media/characters/hugo-sigil/back.svg",
  29711. extra: 519 / 495,
  29712. bottom: 5 / 524
  29713. }
  29714. },
  29715. maw: {
  29716. height: math.unit(1.4, "feet"),
  29717. weight: math.unit(150, "lb"),
  29718. name: "Maw",
  29719. image: {
  29720. source: "./media/characters/hugo-sigil/maw.svg"
  29721. }
  29722. },
  29723. feet: {
  29724. height: math.unit(1.56, "feet"),
  29725. weight: math.unit(150, "lb"),
  29726. name: "Feet",
  29727. image: {
  29728. source: "./media/characters/hugo-sigil/feet.svg",
  29729. extra: 177 / 177,
  29730. bottom: 12 / 189
  29731. }
  29732. },
  29733. },
  29734. [
  29735. {
  29736. name: "Normal",
  29737. height: math.unit(6, "feet")
  29738. },
  29739. {
  29740. name: "Macro",
  29741. height: math.unit(200, "feet"),
  29742. default: true
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(6, "feet"),
  29751. weight: math.unit(150, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/peri/front.svg",
  29755. extra: 2354 / 2233,
  29756. bottom: 49 / 2403
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Really Small",
  29763. height: math.unit(1, "nm")
  29764. },
  29765. {
  29766. name: "Micro",
  29767. height: math.unit(4, "inches")
  29768. },
  29769. {
  29770. name: "Normal",
  29771. height: math.unit(7, "inches"),
  29772. default: true
  29773. },
  29774. {
  29775. name: "Macro",
  29776. height: math.unit(400, "feet")
  29777. },
  29778. {
  29779. name: "Megamacro",
  29780. height: math.unit(100, "miles")
  29781. },
  29782. ]
  29783. ))
  29784. characterMakers.push(() => makeCharacter(
  29785. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29786. {
  29787. frontSlim: {
  29788. height: math.unit(7, "feet"),
  29789. name: "Front (Slim)",
  29790. image: {
  29791. source: "./media/characters/issilora/front-slim.svg",
  29792. extra: 529 / 449,
  29793. bottom: 53 / 582
  29794. }
  29795. },
  29796. sideSlim: {
  29797. height: math.unit(7, "feet"),
  29798. name: "Side (Slim)",
  29799. image: {
  29800. source: "./media/characters/issilora/side-slim.svg",
  29801. extra: 570 / 480,
  29802. bottom: 30 / 600
  29803. }
  29804. },
  29805. backSlim: {
  29806. height: math.unit(7, "feet"),
  29807. name: "Back (Slim)",
  29808. image: {
  29809. source: "./media/characters/issilora/back-slim.svg",
  29810. extra: 537 / 455,
  29811. bottom: 46 / 583
  29812. }
  29813. },
  29814. frontBuff: {
  29815. height: math.unit(7, "feet"),
  29816. name: "Front (Buff)",
  29817. image: {
  29818. source: "./media/characters/issilora/front-buff.svg",
  29819. extra: 2310 / 2035,
  29820. bottom: 335 / 2645
  29821. }
  29822. },
  29823. head: {
  29824. height: math.unit(1.94, "feet"),
  29825. name: "Head",
  29826. image: {
  29827. source: "./media/characters/issilora/head.svg"
  29828. }
  29829. },
  29830. },
  29831. [
  29832. {
  29833. name: "Minimum",
  29834. height: math.unit(7, "feet")
  29835. },
  29836. {
  29837. name: "Comfortable",
  29838. height: math.unit(17, "feet")
  29839. },
  29840. {
  29841. name: "Fun Size",
  29842. height: math.unit(47, "feet")
  29843. },
  29844. {
  29845. name: "Natural Macro",
  29846. height: math.unit(137, "feet"),
  29847. default: true
  29848. },
  29849. {
  29850. name: "Maximum Kaiju",
  29851. height: math.unit(397, "feet")
  29852. },
  29853. ]
  29854. ))
  29855. characterMakers.push(() => makeCharacter(
  29856. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29857. {
  29858. front: {
  29859. height: math.unit(50 + 9/12, "feet"),
  29860. weight: math.unit(32.8, "tons"),
  29861. name: "Front",
  29862. image: {
  29863. source: "./media/characters/irb'iiritaahn/front.svg",
  29864. extra: 1878/1826,
  29865. bottom: 326/2204
  29866. }
  29867. },
  29868. back: {
  29869. height: math.unit(50 + 9/12, "feet"),
  29870. weight: math.unit(32.8, "tons"),
  29871. name: "Back",
  29872. image: {
  29873. source: "./media/characters/irb'iiritaahn/back.svg",
  29874. extra: 2052/2018,
  29875. bottom: 152/2204
  29876. }
  29877. },
  29878. head: {
  29879. height: math.unit(12.86, "feet"),
  29880. name: "Head",
  29881. image: {
  29882. source: "./media/characters/irb'iiritaahn/head.svg"
  29883. }
  29884. },
  29885. maw: {
  29886. height: math.unit(9.66, "feet"),
  29887. name: "Maw",
  29888. image: {
  29889. source: "./media/characters/irb'iiritaahn/maw.svg"
  29890. }
  29891. },
  29892. frontDick: {
  29893. height: math.unit(8.78461, "feet"),
  29894. name: "Front Dick",
  29895. image: {
  29896. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29897. }
  29898. },
  29899. rearDick: {
  29900. height: math.unit(8.78461, "feet"),
  29901. name: "Rear Dick",
  29902. image: {
  29903. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29904. }
  29905. },
  29906. rearDickUnfolded: {
  29907. height: math.unit(8.78, "feet"),
  29908. name: "Rear Dick (Unfolded)",
  29909. image: {
  29910. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29911. }
  29912. },
  29913. wings: {
  29914. height: math.unit(43, "feet"),
  29915. name: "Wings",
  29916. image: {
  29917. source: "./media/characters/irb'iiritaahn/wings.svg"
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Macro",
  29924. height: math.unit(50 + 9/12, "feet"),
  29925. default: true
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(205, "cm"),
  29934. weight: math.unit(102, "kg"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/irbisgreif/front.svg",
  29938. extra: 785/706,
  29939. bottom: 13/798
  29940. }
  29941. },
  29942. back: {
  29943. height: math.unit(205, "cm"),
  29944. weight: math.unit(102, "kg"),
  29945. name: "Back",
  29946. image: {
  29947. source: "./media/characters/irbisgreif/back.svg",
  29948. extra: 713/701,
  29949. bottom: 26/739
  29950. }
  29951. },
  29952. frontDressed: {
  29953. height: math.unit(216, "cm"),
  29954. weight: math.unit(102, "kg"),
  29955. name: "Front-dressed",
  29956. image: {
  29957. source: "./media/characters/irbisgreif/front-dressed.svg",
  29958. extra: 902/776,
  29959. bottom: 14/916
  29960. }
  29961. },
  29962. sideDressed: {
  29963. height: math.unit(195, "cm"),
  29964. weight: math.unit(102, "kg"),
  29965. name: "Side-dressed",
  29966. image: {
  29967. source: "./media/characters/irbisgreif/side-dressed.svg",
  29968. extra: 788/688,
  29969. bottom: 21/809
  29970. }
  29971. },
  29972. backDressed: {
  29973. height: math.unit(216, "cm"),
  29974. weight: math.unit(102, "kg"),
  29975. name: "Back-dressed",
  29976. image: {
  29977. source: "./media/characters/irbisgreif/back-dressed.svg",
  29978. extra: 901/783,
  29979. bottom: 10/911
  29980. }
  29981. },
  29982. dick: {
  29983. height: math.unit(0.49, "feet"),
  29984. name: "Dick",
  29985. image: {
  29986. source: "./media/characters/irbisgreif/dick.svg"
  29987. }
  29988. },
  29989. wingTop: {
  29990. height: math.unit(1.93 , "feet"),
  29991. name: "Wing-top",
  29992. image: {
  29993. source: "./media/characters/irbisgreif/wing-top.svg"
  29994. }
  29995. },
  29996. wingBottom: {
  29997. height: math.unit(1.93 , "feet"),
  29998. name: "Wing-bottom",
  29999. image: {
  30000. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Normal",
  30007. height: math.unit(216, "cm"),
  30008. default: true
  30009. },
  30010. ]
  30011. ))
  30012. characterMakers.push(() => makeCharacter(
  30013. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30014. {
  30015. front: {
  30016. height: math.unit(6, "feet"),
  30017. weight: math.unit(150, "lb"),
  30018. name: "Front",
  30019. image: {
  30020. source: "./media/characters/pride/front.svg",
  30021. extra: 1299/1230,
  30022. bottom: 18/1317
  30023. }
  30024. },
  30025. },
  30026. [
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(7, "feet")
  30030. },
  30031. {
  30032. name: "Mini-macro",
  30033. height: math.unit(11, "feet")
  30034. },
  30035. {
  30036. name: "Macro",
  30037. height: math.unit(15, "meters"),
  30038. default: true
  30039. },
  30040. {
  30041. name: "Macro+",
  30042. height: math.unit(40, "meters")
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30048. {
  30049. front: {
  30050. height: math.unit(4 + 2 / 12, "feet"),
  30051. weight: math.unit(95, "lb"),
  30052. name: "Front",
  30053. image: {
  30054. source: "./media/characters/vaelophis-nyx/front.svg",
  30055. extra: 2532/2330,
  30056. bottom: 0/2532
  30057. }
  30058. },
  30059. back: {
  30060. height: math.unit(4 + 2 / 12, "feet"),
  30061. weight: math.unit(95, "lb"),
  30062. name: "Back",
  30063. image: {
  30064. source: "./media/characters/vaelophis-nyx/back.svg",
  30065. extra: 2484/2361,
  30066. bottom: 0/2484
  30067. }
  30068. },
  30069. feralSide: {
  30070. height: math.unit(2 + 1/12, "feet"),
  30071. weight: math.unit(20, "lb"),
  30072. name: "Feral (Side)",
  30073. image: {
  30074. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30075. extra: 1721/1581,
  30076. bottom: 70/1791
  30077. }
  30078. },
  30079. feralLazing: {
  30080. height: math.unit(1.08, "feet"),
  30081. weight: math.unit(20, "lb"),
  30082. name: "Feral (Lazing)",
  30083. image: {
  30084. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30085. extra: 822/822,
  30086. bottom: 248/1070
  30087. }
  30088. },
  30089. ear: {
  30090. height: math.unit(0.416, "feet"),
  30091. name: "Ear",
  30092. image: {
  30093. source: "./media/characters/vaelophis-nyx/ear.svg"
  30094. }
  30095. },
  30096. eye: {
  30097. height: math.unit(0.0748, "feet"),
  30098. name: "Eye",
  30099. image: {
  30100. source: "./media/characters/vaelophis-nyx/eye.svg"
  30101. }
  30102. },
  30103. mouth: {
  30104. height: math.unit(0.378, "feet"),
  30105. name: "Mouth",
  30106. image: {
  30107. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30108. }
  30109. },
  30110. spade: {
  30111. height: math.unit(0.55, "feet"),
  30112. name: "Spade",
  30113. image: {
  30114. source: "./media/characters/vaelophis-nyx/spade.svg"
  30115. }
  30116. },
  30117. },
  30118. [
  30119. {
  30120. name: "Normal",
  30121. height: math.unit(4 + 2/12, "feet"),
  30122. default: true
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30128. {
  30129. front: {
  30130. height: math.unit(7, "feet"),
  30131. weight: math.unit(231, "lb"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/flux/front.svg",
  30135. extra: 919/871,
  30136. bottom: 0/919
  30137. }
  30138. },
  30139. back: {
  30140. height: math.unit(7, "feet"),
  30141. weight: math.unit(231, "lb"),
  30142. name: "Back",
  30143. image: {
  30144. source: "./media/characters/flux/back.svg",
  30145. extra: 1040/992,
  30146. bottom: 0/1040
  30147. }
  30148. },
  30149. frontDressed: {
  30150. height: math.unit(7, "feet"),
  30151. weight: math.unit(231, "lb"),
  30152. name: "Front (Dressed)",
  30153. image: {
  30154. source: "./media/characters/flux/front-dressed.svg",
  30155. extra: 919/871,
  30156. bottom: 0/919
  30157. }
  30158. },
  30159. feralSide: {
  30160. height: math.unit(5, "feet"),
  30161. weight: math.unit(150, "lb"),
  30162. name: "Feral (Side)",
  30163. image: {
  30164. source: "./media/characters/flux/feral-side.svg",
  30165. extra: 598/528,
  30166. bottom: 28/626
  30167. }
  30168. },
  30169. head: {
  30170. height: math.unit(1.585, "feet"),
  30171. name: "Head",
  30172. image: {
  30173. source: "./media/characters/flux/head.svg"
  30174. }
  30175. },
  30176. headSide: {
  30177. height: math.unit(1.74, "feet"),
  30178. name: "Head (Side)",
  30179. image: {
  30180. source: "./media/characters/flux/head-side.svg"
  30181. }
  30182. },
  30183. headSideFire: {
  30184. height: math.unit(1.76, "feet"),
  30185. name: "Head (Side, Fire)",
  30186. image: {
  30187. source: "./media/characters/flux/head-side-fire.svg"
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Normal",
  30194. height: math.unit(7, "feet"),
  30195. default: true
  30196. },
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30201. {
  30202. front: {
  30203. height: math.unit(9, "feet"),
  30204. weight: math.unit(1012, "lb"),
  30205. name: "Front",
  30206. image: {
  30207. source: "./media/characters/ulfra-lupae/front.svg",
  30208. extra: 1083/1011,
  30209. bottom: 67/1150
  30210. }
  30211. },
  30212. },
  30213. [
  30214. {
  30215. name: "Micro",
  30216. height: math.unit(6, "inches")
  30217. },
  30218. {
  30219. name: "Socializing",
  30220. height: math.unit(6 + 5/12, "feet")
  30221. },
  30222. {
  30223. name: "Normal",
  30224. height: math.unit(9, "feet"),
  30225. default: true
  30226. },
  30227. {
  30228. name: "Macro",
  30229. height: math.unit(150, "feet")
  30230. },
  30231. ]
  30232. ))
  30233. characterMakers.push(() => makeCharacter(
  30234. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30235. {
  30236. front: {
  30237. height: math.unit(5 + 2/12, "feet"),
  30238. weight: math.unit(120, "lb"),
  30239. name: "Front",
  30240. image: {
  30241. source: "./media/characters/timber/front.svg",
  30242. extra: 2814/2705,
  30243. bottom: 181/2995
  30244. }
  30245. },
  30246. },
  30247. [
  30248. {
  30249. name: "Normal",
  30250. height: math.unit(5 + 2/12, "feet"),
  30251. default: true
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30257. {
  30258. front: {
  30259. height: math.unit(5 + 7/12, "feet"),
  30260. weight: math.unit(220, "lb"),
  30261. name: "Front",
  30262. image: {
  30263. source: "./media/characters/nicki/front.svg",
  30264. extra: 453/419,
  30265. bottom: 7/460
  30266. }
  30267. },
  30268. frontAlt: {
  30269. height: math.unit(5 + 7/12, "feet"),
  30270. weight: math.unit(220, "lb"),
  30271. name: "Front-alt",
  30272. image: {
  30273. source: "./media/characters/nicki/front-alt.svg",
  30274. extra: 435/411,
  30275. bottom: 12/447
  30276. }
  30277. },
  30278. back: {
  30279. height: math.unit(5 + 7/12, "feet"),
  30280. weight: math.unit(220, "lb"),
  30281. name: "Back",
  30282. image: {
  30283. source: "./media/characters/nicki/back.svg",
  30284. extra: 440/413,
  30285. bottom: 19/459
  30286. }
  30287. },
  30288. taur: {
  30289. height: math.unit(7 + 6/12, "feet"),
  30290. weight: math.unit(700, "lb"),
  30291. name: "Taur",
  30292. image: {
  30293. source: "./media/characters/nicki/taur.svg",
  30294. extra: 975/773,
  30295. bottom: 0/975
  30296. }
  30297. },
  30298. frontNsfw: {
  30299. height: math.unit(5 + 7/12, "feet"),
  30300. weight: math.unit(220, "lb"),
  30301. name: "Front (NSFW)",
  30302. image: {
  30303. source: "./media/characters/nicki/front-nsfw.svg",
  30304. extra: 453/419,
  30305. bottom: 7/460
  30306. }
  30307. },
  30308. frontNsfwAlt: {
  30309. height: math.unit(5 + 7/12, "feet"),
  30310. weight: math.unit(220, "lb"),
  30311. name: "Front (Alt, NSFW)",
  30312. image: {
  30313. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30314. extra: 435/411,
  30315. bottom: 12/447
  30316. }
  30317. },
  30318. backNsfw: {
  30319. height: math.unit(5 + 7/12, "feet"),
  30320. weight: math.unit(220, "lb"),
  30321. name: "Back (NSFW)",
  30322. image: {
  30323. source: "./media/characters/nicki/back-nsfw.svg",
  30324. extra: 440/413,
  30325. bottom: 19/459
  30326. }
  30327. },
  30328. head: {
  30329. height: math.unit(2.1, "feet"),
  30330. name: "Head",
  30331. image: {
  30332. source: "./media/characters/nicki/head.svg"
  30333. }
  30334. },
  30335. paw: {
  30336. height: math.unit(1.88, "feet"),
  30337. name: "Paw",
  30338. image: {
  30339. source: "./media/characters/nicki/paw.svg"
  30340. }
  30341. },
  30342. },
  30343. [
  30344. {
  30345. name: "Normal",
  30346. height: math.unit(5 + 7/12, "feet"),
  30347. default: true
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30353. {
  30354. front: {
  30355. height: math.unit(7 + 10/12, "feet"),
  30356. weight: math.unit(3.5, "tons"),
  30357. name: "Front",
  30358. image: {
  30359. source: "./media/characters/lee/front.svg",
  30360. extra: 1773/1615,
  30361. bottom: 86/1859
  30362. }
  30363. },
  30364. hand: {
  30365. height: math.unit(1.78, "feet"),
  30366. name: "Hand",
  30367. image: {
  30368. source: "./media/characters/lee/hand.svg"
  30369. }
  30370. },
  30371. maw: {
  30372. height: math.unit(1.18, "feet"),
  30373. name: "Maw",
  30374. image: {
  30375. source: "./media/characters/lee/maw.svg"
  30376. }
  30377. },
  30378. },
  30379. [
  30380. {
  30381. name: "Normal",
  30382. height: math.unit(7 + 10/12, "feet"),
  30383. default: true
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30389. {
  30390. front: {
  30391. height: math.unit(9, "feet"),
  30392. name: "Front",
  30393. image: {
  30394. source: "./media/characters/guti/front.svg",
  30395. extra: 4551/4355,
  30396. bottom: 123/4674
  30397. }
  30398. },
  30399. tongue: {
  30400. height: math.unit(1, "feet"),
  30401. name: "Tongue",
  30402. image: {
  30403. source: "./media/characters/guti/tongue.svg"
  30404. }
  30405. },
  30406. paw: {
  30407. height: math.unit(1.18, "feet"),
  30408. name: "Paw",
  30409. image: {
  30410. source: "./media/characters/guti/paw.svg"
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Normal",
  30417. height: math.unit(9, "feet"),
  30418. default: true
  30419. },
  30420. ]
  30421. ))
  30422. characterMakers.push(() => makeCharacter(
  30423. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30424. {
  30425. side: {
  30426. height: math.unit(5, "meters"),
  30427. name: "Side",
  30428. image: {
  30429. source: "./media/characters/vesper/side.svg",
  30430. extra: 1605/1518,
  30431. bottom: 0/1605
  30432. }
  30433. },
  30434. },
  30435. [
  30436. {
  30437. name: "Small",
  30438. height: math.unit(5, "meters")
  30439. },
  30440. {
  30441. name: "Sage",
  30442. height: math.unit(100, "meters"),
  30443. default: true
  30444. },
  30445. {
  30446. name: "Fun Size",
  30447. height: math.unit(600, "meters")
  30448. },
  30449. {
  30450. name: "Goddess",
  30451. height: math.unit(20000, "km")
  30452. },
  30453. {
  30454. name: "Maximum",
  30455. height: math.unit(5, "galaxies")
  30456. },
  30457. ]
  30458. ))
  30459. characterMakers.push(() => makeCharacter(
  30460. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30461. {
  30462. front: {
  30463. height: math.unit(6 + 3/12, "feet"),
  30464. weight: math.unit(190, "lb"),
  30465. name: "Front",
  30466. image: {
  30467. source: "./media/characters/gawain/front.svg",
  30468. extra: 2222/2139,
  30469. bottom: 90/2312
  30470. }
  30471. },
  30472. back: {
  30473. height: math.unit(6 + 3/12, "feet"),
  30474. weight: math.unit(190, "lb"),
  30475. name: "Back",
  30476. image: {
  30477. source: "./media/characters/gawain/back.svg",
  30478. extra: 2199/2111,
  30479. bottom: 73/2272
  30480. }
  30481. },
  30482. },
  30483. [
  30484. {
  30485. name: "Normal",
  30486. height: math.unit(6 + 3/12, "feet"),
  30487. default: true
  30488. },
  30489. ]
  30490. ))
  30491. characterMakers.push(() => makeCharacter(
  30492. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30493. {
  30494. side: {
  30495. height: math.unit(3.5, "meters"),
  30496. weight: math.unit(16000, "lb"),
  30497. name: "Side",
  30498. image: {
  30499. source: "./media/characters/dascalti/side.svg",
  30500. extra: 392/273,
  30501. bottom: 47/439
  30502. }
  30503. },
  30504. breath: {
  30505. height: math.unit(7.4, "feet"),
  30506. name: "Breath",
  30507. image: {
  30508. source: "./media/characters/dascalti/breath.svg"
  30509. }
  30510. },
  30511. fed: {
  30512. height: math.unit(3.6, "meters"),
  30513. weight: math.unit(16000, "lb"),
  30514. name: "Fed",
  30515. image: {
  30516. source: "./media/characters/dascalti/fed.svg",
  30517. extra: 1419/820,
  30518. bottom: 95/1514
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(3.5, "meters"),
  30526. default: true
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30532. {
  30533. front: {
  30534. height: math.unit(3 + 5/12, "feet"),
  30535. name: "Front",
  30536. image: {
  30537. source: "./media/characters/mauve/front.svg",
  30538. extra: 1126/1033,
  30539. bottom: 65/1191
  30540. }
  30541. },
  30542. side: {
  30543. height: math.unit(3 + 5/12, "feet"),
  30544. name: "Side",
  30545. image: {
  30546. source: "./media/characters/mauve/side.svg",
  30547. extra: 1089/1001,
  30548. bottom: 29/1118
  30549. }
  30550. },
  30551. back: {
  30552. height: math.unit(3 + 5/12, "feet"),
  30553. name: "Back",
  30554. image: {
  30555. source: "./media/characters/mauve/back.svg",
  30556. extra: 1173/1053,
  30557. bottom: 109/1282
  30558. }
  30559. },
  30560. },
  30561. [
  30562. {
  30563. name: "Normal",
  30564. height: math.unit(3 + 5/12, "feet"),
  30565. default: true
  30566. },
  30567. ]
  30568. ))
  30569. characterMakers.push(() => makeCharacter(
  30570. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30571. {
  30572. front: {
  30573. height: math.unit(6 + 3/12, "feet"),
  30574. weight: math.unit(430, "lb"),
  30575. name: "Front",
  30576. image: {
  30577. source: "./media/characters/carlos/front.svg",
  30578. extra: 1964/1913,
  30579. bottom: 70/2034
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(6 + 3/12, "feet"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30593. {
  30594. back: {
  30595. height: math.unit(5 + 10/12, "feet"),
  30596. weight: math.unit(200, "lb"),
  30597. name: "Back",
  30598. image: {
  30599. source: "./media/characters/jax/back.svg",
  30600. extra: 764/739,
  30601. bottom: 25/789
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Normal",
  30608. height: math.unit(5 + 10/12, "feet"),
  30609. default: true
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(8, "feet"),
  30618. weight: math.unit(250, "lb"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/eikthynir/front.svg",
  30622. extra: 1332/1166,
  30623. bottom: 82/1414
  30624. }
  30625. },
  30626. back: {
  30627. height: math.unit(8, "feet"),
  30628. weight: math.unit(250, "lb"),
  30629. name: "Back",
  30630. image: {
  30631. source: "./media/characters/eikthynir/back.svg",
  30632. extra: 1342/1190,
  30633. bottom: 19/1361
  30634. }
  30635. },
  30636. dick: {
  30637. height: math.unit(2.35, "feet"),
  30638. name: "Dick",
  30639. image: {
  30640. source: "./media/characters/eikthynir/dick.svg"
  30641. }
  30642. },
  30643. },
  30644. [
  30645. {
  30646. name: "Normal",
  30647. height: math.unit(8, "feet"),
  30648. default: true
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(99, "meters"),
  30657. weight: math.unit(13000, "tons"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/zlmos/front.svg",
  30661. extra: 2202/1992,
  30662. bottom: 315/2517
  30663. }
  30664. },
  30665. },
  30666. [
  30667. {
  30668. name: "Macro",
  30669. height: math.unit(99, "meters"),
  30670. default: true
  30671. },
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30676. {
  30677. front: {
  30678. height: math.unit(6 + 5/12, "feet"),
  30679. name: "Front",
  30680. image: {
  30681. source: "./media/characters/purri/front.svg",
  30682. extra: 1698/1610,
  30683. bottom: 32/1730
  30684. }
  30685. },
  30686. frontAlt: {
  30687. height: math.unit(6 + 5/12, "feet"),
  30688. name: "Front (Alt)",
  30689. image: {
  30690. source: "./media/characters/purri/front-alt.svg",
  30691. extra: 450/420,
  30692. bottom: 26/476
  30693. }
  30694. },
  30695. boots: {
  30696. height: math.unit(5.5, "feet"),
  30697. name: "Boots",
  30698. image: {
  30699. source: "./media/characters/purri/boots.svg",
  30700. extra: 905/853,
  30701. bottom: 18/923
  30702. }
  30703. },
  30704. lying: {
  30705. height: math.unit(2, "feet"),
  30706. name: "Lying",
  30707. image: {
  30708. source: "./media/characters/purri/lying.svg",
  30709. extra: 940/843,
  30710. bottom: 146/1086
  30711. }
  30712. },
  30713. devious: {
  30714. height: math.unit(1.77, "feet"),
  30715. name: "Devious",
  30716. image: {
  30717. source: "./media/characters/purri/devious.svg",
  30718. extra: 1440/1155,
  30719. bottom: 147/1587
  30720. }
  30721. },
  30722. bean: {
  30723. height: math.unit(1.94, "feet"),
  30724. name: "Bean",
  30725. image: {
  30726. source: "./media/characters/purri/bean.svg"
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Micro",
  30733. height: math.unit(1, "mm")
  30734. },
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(6 + 5/12, "feet"),
  30738. default: true
  30739. },
  30740. {
  30741. name: "Macro :3c",
  30742. height: math.unit(2, "miles")
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30748. {
  30749. front: {
  30750. height: math.unit(6 + 2/12, "feet"),
  30751. weight: math.unit(250, "lb"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/moonlight/front.svg",
  30755. extra: 1044/908,
  30756. bottom: 56/1100
  30757. }
  30758. },
  30759. paw: {
  30760. height: math.unit(1, "feet"),
  30761. name: "Paw",
  30762. image: {
  30763. source: "./media/characters/moonlight/paw.svg"
  30764. }
  30765. },
  30766. paws: {
  30767. height: math.unit(0.98, "feet"),
  30768. name: "Paws",
  30769. image: {
  30770. source: "./media/characters/moonlight/paws.svg",
  30771. extra: 939/939,
  30772. bottom: 50/989
  30773. }
  30774. },
  30775. mouth: {
  30776. height: math.unit(0.48, "feet"),
  30777. name: "Mouth",
  30778. image: {
  30779. source: "./media/characters/moonlight/mouth.svg"
  30780. }
  30781. },
  30782. dick: {
  30783. height: math.unit(1.46, "feet"),
  30784. name: "Dick",
  30785. image: {
  30786. source: "./media/characters/moonlight/dick.svg"
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "Normal",
  30793. height: math.unit(6 + 2/12, "feet"),
  30794. default: true
  30795. },
  30796. {
  30797. name: "Macro",
  30798. height: math.unit(300, "feet")
  30799. },
  30800. {
  30801. name: "Macro+",
  30802. height: math.unit(1, "mile")
  30803. },
  30804. {
  30805. name: "Mt. Moon",
  30806. height: math.unit(5, "miles")
  30807. },
  30808. {
  30809. name: "Megamacro",
  30810. height: math.unit(15, "miles")
  30811. },
  30812. ]
  30813. ))
  30814. characterMakers.push(() => makeCharacter(
  30815. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30816. {
  30817. back: {
  30818. height: math.unit(6, "feet"),
  30819. weight: math.unit(150, "lb"),
  30820. name: "Back",
  30821. image: {
  30822. source: "./media/characters/sylen/back.svg",
  30823. extra: 1335/1273,
  30824. bottom: 107/1442
  30825. }
  30826. },
  30827. },
  30828. [
  30829. {
  30830. name: "Normal",
  30831. height: math.unit(5 + 5/12, "feet")
  30832. },
  30833. {
  30834. name: "Megamacro",
  30835. height: math.unit(3, "miles"),
  30836. default: true
  30837. },
  30838. ]
  30839. ))
  30840. characterMakers.push(() => makeCharacter(
  30841. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30842. {
  30843. front: {
  30844. height: math.unit(6, "feet"),
  30845. weight: math.unit(190, "lb"),
  30846. name: "Front",
  30847. image: {
  30848. source: "./media/characters/huttser/front.svg",
  30849. extra: 1152/1058,
  30850. bottom: 23/1175
  30851. }
  30852. },
  30853. side: {
  30854. height: math.unit(6, "feet"),
  30855. weight: math.unit(190, "lb"),
  30856. name: "Side",
  30857. image: {
  30858. source: "./media/characters/huttser/side.svg",
  30859. extra: 1174/1065,
  30860. bottom: 18/1192
  30861. }
  30862. },
  30863. back: {
  30864. height: math.unit(6, "feet"),
  30865. weight: math.unit(190, "lb"),
  30866. name: "Back",
  30867. image: {
  30868. source: "./media/characters/huttser/back.svg",
  30869. extra: 1158/1056,
  30870. bottom: 12/1170
  30871. }
  30872. },
  30873. },
  30874. [
  30875. ]
  30876. ))
  30877. characterMakers.push(() => makeCharacter(
  30878. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30879. {
  30880. side: {
  30881. height: math.unit(12 + 9/12, "feet"),
  30882. weight: math.unit(15000, "lb"),
  30883. name: "Side",
  30884. image: {
  30885. source: "./media/characters/faan/side.svg",
  30886. extra: 2747/2697,
  30887. bottom: 0/2747
  30888. }
  30889. },
  30890. front: {
  30891. height: math.unit(12 + 9/12, "feet"),
  30892. weight: math.unit(15000, "lb"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/faan/front.svg",
  30896. extra: 607/571,
  30897. bottom: 24/631
  30898. }
  30899. },
  30900. head: {
  30901. height: math.unit(2.85, "feet"),
  30902. name: "Head",
  30903. image: {
  30904. source: "./media/characters/faan/head.svg"
  30905. }
  30906. },
  30907. headAlt: {
  30908. height: math.unit(3.13, "feet"),
  30909. name: "Head-alt",
  30910. image: {
  30911. source: "./media/characters/faan/head-alt.svg"
  30912. }
  30913. },
  30914. },
  30915. [
  30916. {
  30917. name: "Normal",
  30918. height: math.unit(12 + 9/12, "feet"),
  30919. default: true
  30920. },
  30921. ]
  30922. ))
  30923. characterMakers.push(() => makeCharacter(
  30924. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30925. {
  30926. front: {
  30927. height: math.unit(6, "feet"),
  30928. weight: math.unit(300, "lb"),
  30929. name: "Front",
  30930. image: {
  30931. source: "./media/characters/tanio/front.svg",
  30932. extra: 711/673,
  30933. bottom: 25/736
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Normal",
  30940. height: math.unit(6, "feet"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30947. {
  30948. front: {
  30949. height: math.unit(3, "inches"),
  30950. name: "Front",
  30951. image: {
  30952. source: "./media/characters/noboru/front.svg",
  30953. extra: 1039/932,
  30954. bottom: 18/1057
  30955. }
  30956. },
  30957. },
  30958. [
  30959. {
  30960. name: "Micro",
  30961. height: math.unit(3, "inches"),
  30962. default: true
  30963. },
  30964. ]
  30965. ))
  30966. characterMakers.push(() => makeCharacter(
  30967. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30968. {
  30969. front: {
  30970. height: math.unit(1.85, "meters"),
  30971. weight: math.unit(80, "kg"),
  30972. name: "Front",
  30973. image: {
  30974. source: "./media/characters/daniel-barrett/front.svg",
  30975. extra: 355/337,
  30976. bottom: 9/364
  30977. }
  30978. },
  30979. },
  30980. [
  30981. {
  30982. name: "Pico",
  30983. height: math.unit(0.0433, "mm")
  30984. },
  30985. {
  30986. name: "Nano",
  30987. height: math.unit(1.5, "mm")
  30988. },
  30989. {
  30990. name: "Micro",
  30991. height: math.unit(5.3, "cm"),
  30992. default: true
  30993. },
  30994. {
  30995. name: "Normal",
  30996. height: math.unit(1.85, "meters")
  30997. },
  30998. {
  30999. name: "Macro",
  31000. height: math.unit(64.7, "meters")
  31001. },
  31002. {
  31003. name: "Megamacro",
  31004. height: math.unit(2.26, "km")
  31005. },
  31006. {
  31007. name: "Gigamacro",
  31008. height: math.unit(79, "km")
  31009. },
  31010. {
  31011. name: "Teramacro",
  31012. height: math.unit(2765, "km")
  31013. },
  31014. {
  31015. name: "Petamacro",
  31016. height: math.unit(96678, "km")
  31017. },
  31018. ]
  31019. ))
  31020. characterMakers.push(() => makeCharacter(
  31021. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31022. {
  31023. front: {
  31024. height: math.unit(30, "meters"),
  31025. weight: math.unit(400, "tons"),
  31026. name: "Front",
  31027. image: {
  31028. source: "./media/characters/zeel/front.svg",
  31029. extra: 2599/2599,
  31030. bottom: 226/2825
  31031. }
  31032. },
  31033. },
  31034. [
  31035. {
  31036. name: "Macro",
  31037. height: math.unit(30, "meters"),
  31038. default: true
  31039. },
  31040. ]
  31041. ))
  31042. characterMakers.push(() => makeCharacter(
  31043. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31044. {
  31045. front: {
  31046. height: math.unit(6 + 7/12, "feet"),
  31047. weight: math.unit(210, "lb"),
  31048. name: "Front",
  31049. image: {
  31050. source: "./media/characters/tarn/front.svg",
  31051. extra: 3517/3220,
  31052. bottom: 91/3608
  31053. }
  31054. },
  31055. back: {
  31056. height: math.unit(6 + 7/12, "feet"),
  31057. weight: math.unit(210, "lb"),
  31058. name: "Back",
  31059. image: {
  31060. source: "./media/characters/tarn/back.svg",
  31061. extra: 3566/3241,
  31062. bottom: 34/3600
  31063. }
  31064. },
  31065. dick: {
  31066. height: math.unit(1.65, "feet"),
  31067. name: "Dick",
  31068. image: {
  31069. source: "./media/characters/tarn/dick.svg"
  31070. }
  31071. },
  31072. paw: {
  31073. height: math.unit(1.80, "feet"),
  31074. name: "Paw",
  31075. image: {
  31076. source: "./media/characters/tarn/paw.svg"
  31077. }
  31078. },
  31079. tongue: {
  31080. height: math.unit(0.97, "feet"),
  31081. name: "Tongue",
  31082. image: {
  31083. source: "./media/characters/tarn/tongue.svg"
  31084. }
  31085. },
  31086. },
  31087. [
  31088. {
  31089. name: "Micro",
  31090. height: math.unit(4, "inches")
  31091. },
  31092. {
  31093. name: "Normal",
  31094. height: math.unit(6 + 7/12, "feet"),
  31095. default: true
  31096. },
  31097. {
  31098. name: "Macro",
  31099. height: math.unit(300, "feet")
  31100. },
  31101. ]
  31102. ))
  31103. characterMakers.push(() => makeCharacter(
  31104. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31105. {
  31106. front: {
  31107. height: math.unit(5 + 7/12, "feet"),
  31108. weight: math.unit(80, "kg"),
  31109. name: "Front",
  31110. image: {
  31111. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31112. extra: 3023/2865,
  31113. bottom: 33/3056
  31114. }
  31115. },
  31116. back: {
  31117. height: math.unit(5 + 7/12, "feet"),
  31118. weight: math.unit(80, "kg"),
  31119. name: "Back",
  31120. image: {
  31121. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31122. extra: 3020/2886,
  31123. bottom: 30/3050
  31124. }
  31125. },
  31126. dick: {
  31127. height: math.unit(0.98, "feet"),
  31128. name: "Dick",
  31129. image: {
  31130. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31131. }
  31132. },
  31133. anatomy: {
  31134. height: math.unit(2.86, "feet"),
  31135. name: "Anatomy",
  31136. image: {
  31137. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31138. }
  31139. },
  31140. },
  31141. [
  31142. {
  31143. name: "Really Small",
  31144. height: math.unit(2, "inches")
  31145. },
  31146. {
  31147. name: "Micro",
  31148. height: math.unit(5.583, "inches")
  31149. },
  31150. {
  31151. name: "Normal",
  31152. height: math.unit(5 + 7/12, "feet"),
  31153. default: true
  31154. },
  31155. {
  31156. name: "Macro",
  31157. height: math.unit(67, "feet")
  31158. },
  31159. {
  31160. name: "Megamacro",
  31161. height: math.unit(134, "feet")
  31162. },
  31163. ]
  31164. ))
  31165. characterMakers.push(() => makeCharacter(
  31166. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31167. {
  31168. front: {
  31169. height: math.unit(9, "feet"),
  31170. weight: math.unit(120, "lb"),
  31171. name: "Front",
  31172. image: {
  31173. source: "./media/characters/sally/front.svg",
  31174. extra: 1506/1349,
  31175. bottom: 66/1572
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Normal",
  31182. height: math.unit(9, "feet"),
  31183. default: true
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31189. {
  31190. front: {
  31191. height: math.unit(8, "feet"),
  31192. weight: math.unit(900, "lb"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/owen/front.svg",
  31196. extra: 1761/1657,
  31197. bottom: 74/1835
  31198. }
  31199. },
  31200. side: {
  31201. height: math.unit(8, "feet"),
  31202. weight: math.unit(900, "lb"),
  31203. name: "Side",
  31204. image: {
  31205. source: "./media/characters/owen/side.svg",
  31206. extra: 1797/1734,
  31207. bottom: 30/1827
  31208. }
  31209. },
  31210. back: {
  31211. height: math.unit(8, "feet"),
  31212. weight: math.unit(900, "lb"),
  31213. name: "Back",
  31214. image: {
  31215. source: "./media/characters/owen/back.svg",
  31216. extra: 1796/1706,
  31217. bottom: 59/1855
  31218. }
  31219. },
  31220. maw: {
  31221. height: math.unit(1.76, "feet"),
  31222. name: "Maw",
  31223. image: {
  31224. source: "./media/characters/owen/maw.svg"
  31225. }
  31226. },
  31227. },
  31228. [
  31229. {
  31230. name: "Normal",
  31231. height: math.unit(8, "feet"),
  31232. default: true
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31238. {
  31239. front: {
  31240. height: math.unit(4, "feet"),
  31241. weight: math.unit(400, "lb"),
  31242. name: "Front",
  31243. image: {
  31244. source: "./media/characters/ryth/front.svg",
  31245. extra: 876/691,
  31246. bottom: 25/901
  31247. }
  31248. },
  31249. },
  31250. [
  31251. {
  31252. name: "Normal",
  31253. height: math.unit(4, "feet"),
  31254. default: true
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(7, "feet"),
  31263. weight: math.unit(180, "lb"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/necrolance/front.svg",
  31267. extra: 1062/947,
  31268. bottom: 41/1103
  31269. }
  31270. },
  31271. back: {
  31272. height: math.unit(7, "feet"),
  31273. weight: math.unit(180, "lb"),
  31274. name: "Back",
  31275. image: {
  31276. source: "./media/characters/necrolance/back.svg",
  31277. extra: 1045/984,
  31278. bottom: 14/1059
  31279. }
  31280. },
  31281. wing: {
  31282. height: math.unit(2.67, "feet"),
  31283. name: "Wing",
  31284. image: {
  31285. source: "./media/characters/necrolance/wing.svg"
  31286. }
  31287. },
  31288. },
  31289. [
  31290. {
  31291. name: "Normal",
  31292. height: math.unit(7, "feet"),
  31293. default: true
  31294. },
  31295. ]
  31296. ))
  31297. characterMakers.push(() => makeCharacter(
  31298. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31299. {
  31300. front: {
  31301. height: math.unit(76, "meters"),
  31302. weight: math.unit(30000, "tons"),
  31303. name: "Front",
  31304. image: {
  31305. source: "./media/characters/tyler/front.svg",
  31306. extra: 1640/1640,
  31307. bottom: 114/1754
  31308. }
  31309. },
  31310. },
  31311. [
  31312. {
  31313. name: "Macro",
  31314. height: math.unit(76, "meters"),
  31315. default: true
  31316. },
  31317. ]
  31318. ))
  31319. characterMakers.push(() => makeCharacter(
  31320. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31321. {
  31322. front: {
  31323. height: math.unit(4 + 11/12, "feet"),
  31324. weight: math.unit(132, "lb"),
  31325. name: "Front",
  31326. image: {
  31327. source: "./media/characters/icey/front.svg",
  31328. extra: 2750/2550,
  31329. bottom: 33/2783
  31330. }
  31331. },
  31332. back: {
  31333. height: math.unit(4 + 11/12, "feet"),
  31334. weight: math.unit(132, "lb"),
  31335. name: "Back",
  31336. image: {
  31337. source: "./media/characters/icey/back.svg",
  31338. extra: 2624/2481,
  31339. bottom: 35/2659
  31340. }
  31341. },
  31342. },
  31343. [
  31344. {
  31345. name: "Normal",
  31346. height: math.unit(4 + 11/12, "feet"),
  31347. default: true
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31353. {
  31354. front: {
  31355. height: math.unit(100, "feet"),
  31356. weight: math.unit(0, "lb"),
  31357. name: "Front",
  31358. image: {
  31359. source: "./media/characters/smile/front.svg",
  31360. extra: 2983/2912,
  31361. bottom: 162/3145
  31362. }
  31363. },
  31364. back: {
  31365. height: math.unit(100, "feet"),
  31366. weight: math.unit(0, "lb"),
  31367. name: "Back",
  31368. image: {
  31369. source: "./media/characters/smile/back.svg",
  31370. extra: 3143/3031,
  31371. bottom: 91/3234
  31372. }
  31373. },
  31374. head: {
  31375. height: math.unit(26.3, "feet"),
  31376. weight: math.unit(0, "lb"),
  31377. name: "Head",
  31378. image: {
  31379. source: "./media/characters/smile/head.svg"
  31380. }
  31381. },
  31382. collar: {
  31383. height: math.unit(5.3, "feet"),
  31384. weight: math.unit(0, "lb"),
  31385. name: "Collar",
  31386. image: {
  31387. source: "./media/characters/smile/collar.svg"
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Macro",
  31394. height: math.unit(100, "feet"),
  31395. default: true
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31401. {
  31402. dragon: {
  31403. height: math.unit(26, "feet"),
  31404. weight: math.unit(36, "tons"),
  31405. name: "Dragon",
  31406. image: {
  31407. source: "./media/characters/arimphae/dragon.svg",
  31408. extra: 1574/983,
  31409. bottom: 357/1931
  31410. }
  31411. },
  31412. drake: {
  31413. height: math.unit(9, "feet"),
  31414. weight: math.unit(1.5, "tons"),
  31415. name: "Drake",
  31416. image: {
  31417. source: "./media/characters/arimphae/drake.svg",
  31418. extra: 1120/925,
  31419. bottom: 435/1555
  31420. }
  31421. },
  31422. },
  31423. [
  31424. {
  31425. name: "Small",
  31426. height: math.unit(26*5/9, "feet")
  31427. },
  31428. {
  31429. name: "Normal",
  31430. height: math.unit(26, "feet"),
  31431. default: true
  31432. },
  31433. ]
  31434. ))
  31435. characterMakers.push(() => makeCharacter(
  31436. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31437. {
  31438. front: {
  31439. height: math.unit(8 + 9/12, "feet"),
  31440. name: "Front",
  31441. image: {
  31442. source: "./media/characters/xander/front.svg",
  31443. extra: 848/673,
  31444. bottom: 62/910
  31445. }
  31446. },
  31447. },
  31448. [
  31449. {
  31450. name: "Normal",
  31451. height: math.unit(8 + 9/12, "feet"),
  31452. default: true
  31453. },
  31454. {
  31455. name: "Gaze Grabber",
  31456. height: math.unit(13 + 8/12, "feet")
  31457. },
  31458. {
  31459. name: "Jaw Dropper",
  31460. height: math.unit(27, "feet")
  31461. },
  31462. {
  31463. name: "Show Stopper",
  31464. height: math.unit(136, "feet")
  31465. },
  31466. {
  31467. name: "Superstar",
  31468. height: math.unit(1.9e6, "miles")
  31469. },
  31470. ]
  31471. ))
  31472. characterMakers.push(() => makeCharacter(
  31473. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31474. {
  31475. side: {
  31476. height: math.unit(2100, "feet"),
  31477. name: "Side",
  31478. image: {
  31479. source: "./media/characters/osiris/side.svg",
  31480. extra: 1105/939,
  31481. bottom: 167/1272
  31482. }
  31483. },
  31484. },
  31485. [
  31486. {
  31487. name: "Macro",
  31488. height: math.unit(2100, "feet"),
  31489. default: true
  31490. },
  31491. ]
  31492. ))
  31493. characterMakers.push(() => makeCharacter(
  31494. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31495. {
  31496. front: {
  31497. height: math.unit(6 + 8/12, "feet"),
  31498. weight: math.unit(225, "lb"),
  31499. name: "Front",
  31500. image: {
  31501. source: "./media/characters/rhys-londe/front.svg",
  31502. extra: 2258/2141,
  31503. bottom: 188/2446
  31504. }
  31505. },
  31506. back: {
  31507. height: math.unit(6 + 8/12, "feet"),
  31508. weight: math.unit(225, "lb"),
  31509. name: "Back",
  31510. image: {
  31511. source: "./media/characters/rhys-londe/back.svg",
  31512. extra: 2237/2137,
  31513. bottom: 63/2300
  31514. }
  31515. },
  31516. frontNsfw: {
  31517. height: math.unit(6 + 8/12, "feet"),
  31518. weight: math.unit(225, "lb"),
  31519. name: "Front (NSFW)",
  31520. image: {
  31521. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31522. extra: 2258/2141,
  31523. bottom: 188/2446
  31524. }
  31525. },
  31526. backNsfw: {
  31527. height: math.unit(6 + 8/12, "feet"),
  31528. weight: math.unit(225, "lb"),
  31529. name: "Back (NSFW)",
  31530. image: {
  31531. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31532. extra: 2237/2137,
  31533. bottom: 63/2300
  31534. }
  31535. },
  31536. dick: {
  31537. height: math.unit(30, "inches"),
  31538. name: "Dick",
  31539. image: {
  31540. source: "./media/characters/rhys-londe/dick.svg"
  31541. }
  31542. },
  31543. maw: {
  31544. height: math.unit(1.6, "feet"),
  31545. name: "Maw",
  31546. image: {
  31547. source: "./media/characters/rhys-londe/maw.svg"
  31548. }
  31549. },
  31550. },
  31551. [
  31552. {
  31553. name: "Normal",
  31554. height: math.unit(6 + 8/12, "feet"),
  31555. default: true
  31556. },
  31557. ]
  31558. ))
  31559. characterMakers.push(() => makeCharacter(
  31560. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31561. {
  31562. front: {
  31563. height: math.unit(3 + 10/12, "feet"),
  31564. weight: math.unit(90, "lb"),
  31565. name: "Front",
  31566. image: {
  31567. source: "./media/characters/taivas-ensim/front.svg",
  31568. extra: 1327/1216,
  31569. bottom: 96/1423
  31570. }
  31571. },
  31572. back: {
  31573. height: math.unit(3 + 10/12, "feet"),
  31574. weight: math.unit(90, "lb"),
  31575. name: "Back",
  31576. image: {
  31577. source: "./media/characters/taivas-ensim/back.svg",
  31578. extra: 1355/1247,
  31579. bottom: 11/1366
  31580. }
  31581. },
  31582. frontNsfw: {
  31583. height: math.unit(3 + 10/12, "feet"),
  31584. weight: math.unit(90, "lb"),
  31585. name: "Front (NSFW)",
  31586. image: {
  31587. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31588. extra: 1327/1216,
  31589. bottom: 96/1423
  31590. }
  31591. },
  31592. backNsfw: {
  31593. height: math.unit(3 + 10/12, "feet"),
  31594. weight: math.unit(90, "lb"),
  31595. name: "Back (NSFW)",
  31596. image: {
  31597. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31598. extra: 1355/1247,
  31599. bottom: 11/1366
  31600. }
  31601. },
  31602. },
  31603. [
  31604. {
  31605. name: "Normal",
  31606. height: math.unit(3 + 10/12, "feet"),
  31607. default: true
  31608. },
  31609. ]
  31610. ))
  31611. //characters
  31612. function makeCharacters() {
  31613. const results = [];
  31614. characterMakers.forEach(character => {
  31615. results.push(character());
  31616. });
  31617. return results;
  31618. }