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

30696 строки
769 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. }
  1408. //species
  1409. function getSpeciesInfo(speciesList) {
  1410. let result = new Set();
  1411. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1412. result.add(entry)
  1413. });
  1414. return Array.from(result);
  1415. };
  1416. function getSpeciesInfoHelper(species) {
  1417. if (!speciesData[species]) {
  1418. console.warn(species + " doesn't exist");
  1419. return [];
  1420. }
  1421. if (speciesData[species].parents) {
  1422. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1423. } else {
  1424. return [species];
  1425. }
  1426. }
  1427. characterMakers.push(() => makeCharacter(
  1428. {
  1429. name: "Fen",
  1430. species: ["crux"],
  1431. description: {
  1432. title: "Bio",
  1433. text: "Very furry. Sheds on everything."
  1434. },
  1435. tags: [
  1436. "anthro",
  1437. "goo"
  1438. ]
  1439. },
  1440. {
  1441. back: {
  1442. height: math.unit(2.2428, "meter"),
  1443. weight: math.unit(124.738, "kg"),
  1444. name: "Back",
  1445. image: {
  1446. source: "./media/characters/fen/back.svg",
  1447. extra: 2024 / 1867,
  1448. bottom: 13 / 2037
  1449. },
  1450. info: {
  1451. description: {
  1452. mode: "append",
  1453. text: "\n\nHe is not currently looking at you."
  1454. }
  1455. }
  1456. },
  1457. full: {
  1458. height: math.unit(1.34, "meter"),
  1459. weight: math.unit(225, "kg"),
  1460. name: "Full",
  1461. image: {
  1462. source: "./media/characters/fen/full.svg"
  1463. },
  1464. info: {
  1465. description: {
  1466. mode: "append",
  1467. text: "\n\nMunch."
  1468. }
  1469. }
  1470. },
  1471. kneeling: {
  1472. height: math.unit(5.4, "feet"),
  1473. weight: math.unit(124.738, "kg"),
  1474. name: "Kneeling",
  1475. image: {
  1476. source: "./media/characters/fen/kneeling.svg",
  1477. extra: 563 / 507
  1478. }
  1479. },
  1480. goo: {
  1481. height: math.unit(2.8, "feet"),
  1482. weight: math.unit(125, "kg"),
  1483. capacity: math.unit(1, "people"),
  1484. name: "Goo",
  1485. image: {
  1486. source: "./media/characters/fen/goo.svg",
  1487. bottom: 116 / 613
  1488. }
  1489. },
  1490. lounging: {
  1491. height: math.unit(6.5, "feet"),
  1492. weight: math.unit(125, "kg"),
  1493. name: "Lounging",
  1494. image: {
  1495. source: "./media/characters/fen/lounging.svg"
  1496. }
  1497. },
  1498. },
  1499. [
  1500. {
  1501. name: "Normal",
  1502. height: math.unit(2.2428, "meter")
  1503. },
  1504. {
  1505. name: "Big",
  1506. height: math.unit(12, "feet")
  1507. },
  1508. {
  1509. name: "Minimacro",
  1510. height: math.unit(40, "feet"),
  1511. default: true,
  1512. info: {
  1513. description: {
  1514. mode: "append",
  1515. text: "\n\nTOO DAMN BIG"
  1516. }
  1517. }
  1518. },
  1519. {
  1520. name: "Macro",
  1521. height: math.unit(100, "feet"),
  1522. info: {
  1523. description: {
  1524. mode: "append",
  1525. text: "\n\nTOO DAMN BIG"
  1526. }
  1527. }
  1528. },
  1529. {
  1530. name: "Macro+",
  1531. height: math.unit(300, "feet")
  1532. },
  1533. {
  1534. name: "Megamacro",
  1535. height: math.unit(2, "miles")
  1536. }
  1537. ]
  1538. ))
  1539. characterMakers.push(() => makeCharacter(
  1540. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1541. {
  1542. front: {
  1543. height: math.unit(183, "cm"),
  1544. weight: math.unit(80, "kg"),
  1545. name: "Front",
  1546. image: {
  1547. source: "./media/characters/sofia-fluttertail/front.svg",
  1548. bottom: 0.01,
  1549. extra: 2154 / 2081
  1550. }
  1551. },
  1552. frontAlt: {
  1553. height: math.unit(183, "cm"),
  1554. weight: math.unit(80, "kg"),
  1555. name: "Front (alt)",
  1556. image: {
  1557. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1558. }
  1559. },
  1560. back: {
  1561. height: math.unit(183, "cm"),
  1562. weight: math.unit(80, "kg"),
  1563. name: "Back",
  1564. image: {
  1565. source: "./media/characters/sofia-fluttertail/back.svg"
  1566. }
  1567. },
  1568. kneeling: {
  1569. height: math.unit(125, "cm"),
  1570. weight: math.unit(80, "kg"),
  1571. name: "Kneeling",
  1572. image: {
  1573. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1574. extra: 1033 / 977,
  1575. bottom: 23.7 / 1057
  1576. }
  1577. },
  1578. maw: {
  1579. height: math.unit(183 / 5, "cm"),
  1580. name: "Maw",
  1581. image: {
  1582. source: "./media/characters/sofia-fluttertail/maw.svg"
  1583. }
  1584. },
  1585. mawcloseup: {
  1586. height: math.unit(183 / 5 * 0.41, "cm"),
  1587. name: "Maw (Closeup)",
  1588. image: {
  1589. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1590. }
  1591. },
  1592. paws: {
  1593. height: math.unit(1.17, "feet"),
  1594. name: "Paws",
  1595. image: {
  1596. source: "./media/characters/sofia-fluttertail/paws.svg",
  1597. extra: 851 / 851,
  1598. bottom: 17 / 868
  1599. }
  1600. },
  1601. },
  1602. [
  1603. {
  1604. name: "Normal",
  1605. height: math.unit(1.83, "meter")
  1606. },
  1607. {
  1608. name: "Size Thief",
  1609. height: math.unit(18, "feet")
  1610. },
  1611. {
  1612. name: "50 Foot Collie",
  1613. height: math.unit(50, "feet")
  1614. },
  1615. {
  1616. name: "Macro",
  1617. height: math.unit(96, "feet"),
  1618. default: true
  1619. },
  1620. {
  1621. name: "Megamerger",
  1622. height: math.unit(650, "feet")
  1623. },
  1624. ]
  1625. ))
  1626. characterMakers.push(() => makeCharacter(
  1627. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1628. {
  1629. front: {
  1630. height: math.unit(7, "feet"),
  1631. weight: math.unit(100, "kg"),
  1632. name: "Front",
  1633. image: {
  1634. source: "./media/characters/march/front.svg",
  1635. extra: 1,
  1636. bottom: 0.015
  1637. }
  1638. },
  1639. foot: {
  1640. height: math.unit(0.9, "feet"),
  1641. name: "Foot",
  1642. image: {
  1643. source: "./media/characters/march/foot.svg"
  1644. }
  1645. },
  1646. },
  1647. [
  1648. {
  1649. name: "Normal",
  1650. height: math.unit(7.9, "feet")
  1651. },
  1652. {
  1653. name: "Macro",
  1654. height: math.unit(220, "meters")
  1655. },
  1656. {
  1657. name: "Megamacro",
  1658. height: math.unit(2.98, "km"),
  1659. default: true
  1660. },
  1661. {
  1662. name: "Gigamacro",
  1663. height: math.unit(15963, "km")
  1664. },
  1665. {
  1666. name: "Teramacro",
  1667. height: math.unit(2980000000, "km")
  1668. },
  1669. {
  1670. name: "Examacro",
  1671. height: math.unit(250, "parsecs")
  1672. },
  1673. ]
  1674. ))
  1675. characterMakers.push(() => makeCharacter(
  1676. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1677. {
  1678. front: {
  1679. height: math.unit(6, "feet"),
  1680. weight: math.unit(60, "kg"),
  1681. name: "Front",
  1682. image: {
  1683. source: "./media/characters/noir/front.svg",
  1684. extra: 1,
  1685. bottom: 0.032
  1686. }
  1687. },
  1688. },
  1689. [
  1690. {
  1691. name: "Normal",
  1692. height: math.unit(6.6, "feet")
  1693. },
  1694. {
  1695. name: "Macro",
  1696. height: math.unit(500, "feet")
  1697. },
  1698. {
  1699. name: "Megamacro",
  1700. height: math.unit(2.5, "km"),
  1701. default: true
  1702. },
  1703. {
  1704. name: "Gigamacro",
  1705. height: math.unit(22500, "km")
  1706. },
  1707. {
  1708. name: "Teramacro",
  1709. height: math.unit(2500000000, "km")
  1710. },
  1711. {
  1712. name: "Examacro",
  1713. height: math.unit(200, "parsecs")
  1714. },
  1715. ]
  1716. ))
  1717. characterMakers.push(() => makeCharacter(
  1718. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1719. {
  1720. front: {
  1721. height: math.unit(7, "feet"),
  1722. weight: math.unit(100, "kg"),
  1723. name: "Front",
  1724. image: {
  1725. source: "./media/characters/okuri/front.svg",
  1726. extra: 1,
  1727. bottom: 0.037
  1728. }
  1729. },
  1730. back: {
  1731. height: math.unit(7, "feet"),
  1732. weight: math.unit(100, "kg"),
  1733. name: "Back",
  1734. image: {
  1735. source: "./media/characters/okuri/back.svg",
  1736. extra: 1,
  1737. bottom: 0.007
  1738. }
  1739. },
  1740. },
  1741. [
  1742. {
  1743. name: "Megamacro",
  1744. height: math.unit(100, "miles"),
  1745. default: true
  1746. },
  1747. ]
  1748. ))
  1749. characterMakers.push(() => makeCharacter(
  1750. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1751. {
  1752. front: {
  1753. height: math.unit(7, "feet"),
  1754. weight: math.unit(100, "kg"),
  1755. name: "Front",
  1756. image: {
  1757. source: "./media/characters/manny/front.svg",
  1758. extra: 1,
  1759. bottom: 0.06
  1760. }
  1761. },
  1762. back: {
  1763. height: math.unit(7, "feet"),
  1764. weight: math.unit(100, "kg"),
  1765. name: "Back",
  1766. image: {
  1767. source: "./media/characters/manny/back.svg",
  1768. extra: 1,
  1769. bottom: 0.014
  1770. }
  1771. },
  1772. },
  1773. [
  1774. {
  1775. name: "Normal",
  1776. height: math.unit(7, "feet"),
  1777. },
  1778. {
  1779. name: "Macro",
  1780. height: math.unit(78, "feet"),
  1781. default: true
  1782. },
  1783. {
  1784. name: "Macro+",
  1785. height: math.unit(300, "meters")
  1786. },
  1787. {
  1788. name: "Macro++",
  1789. height: math.unit(2400, "meters")
  1790. },
  1791. {
  1792. name: "Megamacro",
  1793. height: math.unit(5167, "meters")
  1794. },
  1795. {
  1796. name: "Gigamacro",
  1797. height: math.unit(41769, "miles")
  1798. },
  1799. ]
  1800. ))
  1801. characterMakers.push(() => makeCharacter(
  1802. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1803. {
  1804. front: {
  1805. height: math.unit(7, "feet"),
  1806. weight: math.unit(100, "kg"),
  1807. name: "Front",
  1808. image: {
  1809. source: "./media/characters/adake/front-1.svg"
  1810. }
  1811. },
  1812. frontAlt: {
  1813. height: math.unit(7, "feet"),
  1814. weight: math.unit(100, "kg"),
  1815. name: "Front (Alt)",
  1816. image: {
  1817. source: "./media/characters/adake/front-2.svg",
  1818. extra: 1,
  1819. bottom: 0.01
  1820. }
  1821. },
  1822. back: {
  1823. height: math.unit(7, "feet"),
  1824. weight: math.unit(100, "kg"),
  1825. name: "Back",
  1826. image: {
  1827. source: "./media/characters/adake/back.svg",
  1828. }
  1829. },
  1830. kneel: {
  1831. height: math.unit(5.385, "feet"),
  1832. weight: math.unit(100, "kg"),
  1833. name: "Kneeling",
  1834. image: {
  1835. source: "./media/characters/adake/kneel.svg",
  1836. bottom: 0.052
  1837. }
  1838. },
  1839. },
  1840. [
  1841. {
  1842. name: "Normal",
  1843. height: math.unit(7, "feet"),
  1844. },
  1845. {
  1846. name: "Macro",
  1847. height: math.unit(78, "feet"),
  1848. default: true
  1849. },
  1850. {
  1851. name: "Macro+",
  1852. height: math.unit(300, "meters")
  1853. },
  1854. {
  1855. name: "Macro++",
  1856. height: math.unit(2400, "meters")
  1857. },
  1858. {
  1859. name: "Megamacro",
  1860. height: math.unit(5167, "meters")
  1861. },
  1862. {
  1863. name: "Gigamacro",
  1864. height: math.unit(41769, "miles")
  1865. },
  1866. ]
  1867. ))
  1868. characterMakers.push(() => makeCharacter(
  1869. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1870. {
  1871. front: {
  1872. height: math.unit(1.65, "meters"),
  1873. weight: math.unit(50, "kg"),
  1874. name: "Front",
  1875. image: {
  1876. source: "./media/characters/elijah/front.svg",
  1877. extra: 858 / 830,
  1878. bottom: 95.5 / 953.8559
  1879. }
  1880. },
  1881. back: {
  1882. height: math.unit(1.65, "meters"),
  1883. weight: math.unit(50, "kg"),
  1884. name: "Back",
  1885. image: {
  1886. source: "./media/characters/elijah/back.svg",
  1887. extra: 895 / 850,
  1888. bottom: 5.3 / 897.956
  1889. }
  1890. },
  1891. frontNsfw: {
  1892. height: math.unit(1.65, "meters"),
  1893. weight: math.unit(50, "kg"),
  1894. name: "Front (NSFW)",
  1895. image: {
  1896. source: "./media/characters/elijah/front-nsfw.svg",
  1897. extra: 858 / 830,
  1898. bottom: 95.5 / 953.8559
  1899. }
  1900. },
  1901. backNsfw: {
  1902. height: math.unit(1.65, "meters"),
  1903. weight: math.unit(50, "kg"),
  1904. name: "Back (NSFW)",
  1905. image: {
  1906. source: "./media/characters/elijah/back-nsfw.svg",
  1907. extra: 895 / 850,
  1908. bottom: 5.3 / 897.956
  1909. }
  1910. },
  1911. dick: {
  1912. height: math.unit(1, "feet"),
  1913. name: "Dick",
  1914. image: {
  1915. source: "./media/characters/elijah/dick.svg"
  1916. }
  1917. },
  1918. beakOpen: {
  1919. height: math.unit(1.25, "feet"),
  1920. name: "Beak (Open)",
  1921. image: {
  1922. source: "./media/characters/elijah/beak-open.svg"
  1923. }
  1924. },
  1925. beakShut: {
  1926. height: math.unit(1.25, "feet"),
  1927. name: "Beak (Shut)",
  1928. image: {
  1929. source: "./media/characters/elijah/beak-shut.svg"
  1930. }
  1931. },
  1932. footFlexing: {
  1933. height: math.unit(1.61, "feet"),
  1934. name: "Foot (Flexing)",
  1935. image: {
  1936. source: "./media/characters/elijah/foot-flexing.svg"
  1937. }
  1938. },
  1939. footStepping: {
  1940. height: math.unit(1.44, "feet"),
  1941. name: "Foot (Stepping)",
  1942. image: {
  1943. source: "./media/characters/elijah/foot-stepping.svg"
  1944. }
  1945. },
  1946. plantigradeLeg: {
  1947. height: math.unit(2.34, "feet"),
  1948. name: "Plantigrade Leg",
  1949. image: {
  1950. source: "./media/characters/elijah/plantigrade-leg.svg"
  1951. }
  1952. },
  1953. plantigradeFootLeft: {
  1954. height: math.unit(0.9, "feet"),
  1955. name: "Plantigrade Foot (Left)",
  1956. image: {
  1957. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1958. }
  1959. },
  1960. plantigradeFootRight: {
  1961. height: math.unit(0.9, "feet"),
  1962. name: "Plantigrade Foot (Right)",
  1963. image: {
  1964. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1965. }
  1966. },
  1967. },
  1968. [
  1969. {
  1970. name: "Normal",
  1971. height: math.unit(1.65, "meters")
  1972. },
  1973. {
  1974. name: "Macro",
  1975. height: math.unit(55, "meters"),
  1976. default: true
  1977. },
  1978. {
  1979. name: "Macro+",
  1980. height: math.unit(105, "meters")
  1981. },
  1982. ]
  1983. ))
  1984. characterMakers.push(() => makeCharacter(
  1985. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1986. {
  1987. front: {
  1988. height: math.unit(11, "feet"),
  1989. weight: math.unit(80, "kg"),
  1990. name: "Front",
  1991. image: {
  1992. source: "./media/characters/rai/front.svg",
  1993. extra: 1,
  1994. bottom: 0.03
  1995. }
  1996. },
  1997. side: {
  1998. height: math.unit(11, "feet"),
  1999. weight: math.unit(80, "kg"),
  2000. name: "Side",
  2001. image: {
  2002. source: "./media/characters/rai/side.svg"
  2003. }
  2004. },
  2005. back: {
  2006. height: math.unit(11, "feet"),
  2007. weight: math.unit(80, "lb"),
  2008. name: "Back",
  2009. image: {
  2010. source: "./media/characters/rai/back.svg",
  2011. extra: 1,
  2012. bottom: 0.01
  2013. }
  2014. },
  2015. feral: {
  2016. height: math.unit(11, "feet"),
  2017. weight: math.unit(800, "lb"),
  2018. name: "Feral",
  2019. image: {
  2020. source: "./media/characters/rai/feral.svg",
  2021. extra: 1050 / 659,
  2022. bottom: 0.07
  2023. }
  2024. },
  2025. dragon: {
  2026. height: math.unit(23, "feet"),
  2027. weight: math.unit(50000, "lb"),
  2028. name: "Dragon",
  2029. image: {
  2030. source: "./media/characters/rai/dragon.svg",
  2031. extra: 2498 / 2030,
  2032. bottom: 85.2 / 2584
  2033. }
  2034. },
  2035. maw: {
  2036. height: math.unit(6 / 3.81416, "feet"),
  2037. name: "Maw",
  2038. image: {
  2039. source: "./media/characters/rai/maw.svg"
  2040. }
  2041. },
  2042. },
  2043. [
  2044. {
  2045. name: "Normal",
  2046. height: math.unit(11, "feet")
  2047. },
  2048. {
  2049. name: "Macro",
  2050. height: math.unit(302, "feet"),
  2051. default: true
  2052. },
  2053. ]
  2054. ))
  2055. characterMakers.push(() => makeCharacter(
  2056. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2057. {
  2058. frontDressed: {
  2059. height: math.unit(216, "feet"),
  2060. weight: math.unit(7000000, "lb"),
  2061. name: "Front (Dressed)",
  2062. image: {
  2063. source: "./media/characters/jazzy/front-dressed.svg",
  2064. extra: 2738 / 2651,
  2065. bottom: 41.8 / 2786
  2066. }
  2067. },
  2068. backDressed: {
  2069. height: math.unit(216, "feet"),
  2070. weight: math.unit(7000000, "lb"),
  2071. name: "Back (Dressed)",
  2072. image: {
  2073. source: "./media/characters/jazzy/back-dressed.svg",
  2074. extra: 2775 / 2673,
  2075. bottom: 36.8 / 2817
  2076. }
  2077. },
  2078. front: {
  2079. height: math.unit(216, "feet"),
  2080. weight: math.unit(7000000, "lb"),
  2081. name: "Front",
  2082. image: {
  2083. source: "./media/characters/jazzy/front.svg",
  2084. extra: 2738 / 2651,
  2085. bottom: 41.8 / 2786
  2086. }
  2087. },
  2088. back: {
  2089. height: math.unit(216, "feet"),
  2090. weight: math.unit(7000000, "lb"),
  2091. name: "Back",
  2092. image: {
  2093. source: "./media/characters/jazzy/back.svg",
  2094. extra: 2775 / 2673,
  2095. bottom: 36.8 / 2817
  2096. }
  2097. },
  2098. maw: {
  2099. height: math.unit(20, "feet"),
  2100. name: "Maw",
  2101. image: {
  2102. source: "./media/characters/jazzy/maw.svg"
  2103. }
  2104. },
  2105. paws: {
  2106. height: math.unit(27.5, "feet"),
  2107. name: "Paws",
  2108. image: {
  2109. source: "./media/characters/jazzy/paws.svg"
  2110. }
  2111. },
  2112. eye: {
  2113. height: math.unit(4.4, "feet"),
  2114. name: "Eye",
  2115. image: {
  2116. source: "./media/characters/jazzy/eye.svg"
  2117. }
  2118. },
  2119. droneOffense: {
  2120. height: math.unit(9.5, "inches"),
  2121. name: "Drone (Offense)",
  2122. image: {
  2123. source: "./media/characters/jazzy/drone-offense.svg"
  2124. }
  2125. },
  2126. droneRecon: {
  2127. height: math.unit(9.5, "inches"),
  2128. name: "Drone (Recon)",
  2129. image: {
  2130. source: "./media/characters/jazzy/drone-recon.svg"
  2131. }
  2132. },
  2133. droneDefense: {
  2134. height: math.unit(9.5, "inches"),
  2135. name: "Drone (Defense)",
  2136. image: {
  2137. source: "./media/characters/jazzy/drone-defense.svg"
  2138. }
  2139. },
  2140. },
  2141. [
  2142. {
  2143. name: "Macro",
  2144. height: math.unit(216, "feet"),
  2145. default: true
  2146. },
  2147. ]
  2148. ))
  2149. characterMakers.push(() => makeCharacter(
  2150. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2151. {
  2152. front: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(80, "kg"),
  2155. name: "Front",
  2156. image: {
  2157. source: "./media/characters/flamm/front.svg",
  2158. extra: 1794 / 1677,
  2159. bottom: 31.7 / 1828.5
  2160. }
  2161. },
  2162. },
  2163. [
  2164. {
  2165. name: "Normal",
  2166. height: math.unit(9.5, "feet")
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(200, "feet"),
  2171. default: true
  2172. },
  2173. ]
  2174. ))
  2175. characterMakers.push(() => makeCharacter(
  2176. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2177. {
  2178. front: {
  2179. height: math.unit(7, "feet"),
  2180. weight: math.unit(80, "kg"),
  2181. name: "Front",
  2182. image: {
  2183. source: "./media/characters/zephiro/front.svg",
  2184. extra: 2309 / 2162,
  2185. bottom: 0.069
  2186. }
  2187. },
  2188. side: {
  2189. height: math.unit(7, "feet"),
  2190. weight: math.unit(80, "kg"),
  2191. name: "Side",
  2192. image: {
  2193. source: "./media/characters/zephiro/side.svg",
  2194. extra: 2403 / 2279,
  2195. bottom: 0.015
  2196. }
  2197. },
  2198. back: {
  2199. height: math.unit(7, "feet"),
  2200. weight: math.unit(80, "kg"),
  2201. name: "Back",
  2202. image: {
  2203. source: "./media/characters/zephiro/back.svg",
  2204. extra: 2373 / 2244,
  2205. bottom: 0.013
  2206. }
  2207. },
  2208. },
  2209. [
  2210. {
  2211. name: "Micro",
  2212. height: math.unit(3, "inches")
  2213. },
  2214. {
  2215. name: "Normal",
  2216. height: math.unit(5 + 3 / 12, "feet"),
  2217. default: true
  2218. },
  2219. {
  2220. name: "Macro",
  2221. height: math.unit(118, "feet")
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(5, "feet"),
  2230. weight: math.unit(90, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/fory/front.svg",
  2234. extra: 2862 / 2674,
  2235. bottom: 180 / 3043.8
  2236. }
  2237. },
  2238. back: {
  2239. height: math.unit(5, "feet"),
  2240. weight: math.unit(90, "kg"),
  2241. name: "Back",
  2242. image: {
  2243. source: "./media/characters/fory/back.svg",
  2244. extra: 2962 / 2791,
  2245. bottom: 106 / 3071.8
  2246. }
  2247. },
  2248. foot: {
  2249. height: math.unit(2.14, "feet"),
  2250. name: "Foot",
  2251. image: {
  2252. source: "./media/characters/fory/foot.svg"
  2253. }
  2254. },
  2255. },
  2256. [
  2257. {
  2258. name: "Normal",
  2259. height: math.unit(5, "feet")
  2260. },
  2261. {
  2262. name: "Macro",
  2263. height: math.unit(50, "feet"),
  2264. default: true
  2265. },
  2266. {
  2267. name: "Megamacro",
  2268. height: math.unit(10, "miles")
  2269. },
  2270. {
  2271. name: "Gigamacro",
  2272. height: math.unit(5, "earths")
  2273. },
  2274. ]
  2275. ))
  2276. characterMakers.push(() => makeCharacter(
  2277. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2278. {
  2279. front: {
  2280. height: math.unit(7, "feet"),
  2281. weight: math.unit(90, "kg"),
  2282. name: "Front",
  2283. image: {
  2284. source: "./media/characters/kurrikage/front.svg",
  2285. extra: 1,
  2286. bottom: 0.035
  2287. }
  2288. },
  2289. back: {
  2290. height: math.unit(7, "feet"),
  2291. weight: math.unit(90, "lb"),
  2292. name: "Back",
  2293. image: {
  2294. source: "./media/characters/kurrikage/back.svg"
  2295. }
  2296. },
  2297. paw: {
  2298. height: math.unit(1.5, "feet"),
  2299. name: "Paw",
  2300. image: {
  2301. source: "./media/characters/kurrikage/paw.svg"
  2302. }
  2303. },
  2304. staff: {
  2305. height: math.unit(6.7, "feet"),
  2306. name: "Staff",
  2307. image: {
  2308. source: "./media/characters/kurrikage/staff.svg"
  2309. }
  2310. },
  2311. peek: {
  2312. height: math.unit(1.05, "feet"),
  2313. name: "Peeking",
  2314. image: {
  2315. source: "./media/characters/kurrikage/peek.svg",
  2316. bottom: 0.08
  2317. }
  2318. },
  2319. },
  2320. [
  2321. {
  2322. name: "Normal",
  2323. height: math.unit(12, "feet"),
  2324. default: true
  2325. },
  2326. {
  2327. name: "Big",
  2328. height: math.unit(20, "feet")
  2329. },
  2330. {
  2331. name: "Macro",
  2332. height: math.unit(500, "feet")
  2333. },
  2334. {
  2335. name: "Megamacro",
  2336. height: math.unit(20, "miles")
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2342. {
  2343. front: {
  2344. height: math.unit(6, "feet"),
  2345. weight: math.unit(75, "kg"),
  2346. name: "Front",
  2347. image: {
  2348. source: "./media/characters/shingo/front.svg",
  2349. extra: 3511 / 3338,
  2350. bottom: 0.005
  2351. }
  2352. },
  2353. paw: {
  2354. height: math.unit(1, "feet"),
  2355. name: "Paw",
  2356. image: {
  2357. source: "./media/characters/shingo/paw.svg"
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Micro",
  2364. height: math.unit(4, "inches")
  2365. },
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(6, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro",
  2373. height: math.unit(108, "feet")
  2374. }
  2375. ]
  2376. ))
  2377. characterMakers.push(() => makeCharacter(
  2378. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2379. {
  2380. side: {
  2381. height: math.unit(6, "feet"),
  2382. weight: math.unit(75, "kg"),
  2383. name: "Side",
  2384. image: {
  2385. source: "./media/characters/aigey/side.svg"
  2386. }
  2387. },
  2388. },
  2389. [
  2390. {
  2391. name: "Macro",
  2392. height: math.unit(200, "feet"),
  2393. default: true
  2394. },
  2395. {
  2396. name: "Megamacro",
  2397. height: math.unit(100, "miles")
  2398. },
  2399. ]
  2400. )
  2401. )
  2402. characterMakers.push(() => makeCharacter(
  2403. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2404. {
  2405. front: {
  2406. height: math.unit(5 + 5 / 12, "feet"),
  2407. weight: math.unit(75, "kg"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/natasha/front.svg",
  2411. extra: 859 / 824,
  2412. bottom: 23 / 879.6
  2413. }
  2414. },
  2415. frontNsfw: {
  2416. height: math.unit(5 + 5 / 12, "feet"),
  2417. weight: math.unit(75, "kg"),
  2418. name: "Front (NSFW)",
  2419. image: {
  2420. source: "./media/characters/natasha/front-nsfw.svg",
  2421. extra: 859 / 824,
  2422. bottom: 23 / 879.6
  2423. }
  2424. },
  2425. frontErect: {
  2426. height: math.unit(5 + 5 / 12, "feet"),
  2427. weight: math.unit(75, "kg"),
  2428. name: "Front (Erect)",
  2429. image: {
  2430. source: "./media/characters/natasha/front-erect.svg",
  2431. extra: 859 / 824,
  2432. bottom: 23 / 879.6
  2433. }
  2434. },
  2435. back: {
  2436. height: math.unit(5 + 5 / 12, "feet"),
  2437. weight: math.unit(75, "kg"),
  2438. name: "Back",
  2439. image: {
  2440. source: "./media/characters/natasha/back.svg",
  2441. extra: 887.9 / 852.6,
  2442. bottom: 9.7 / 896.4
  2443. }
  2444. },
  2445. backAlt: {
  2446. height: math.unit(5 + 5 / 12, "feet"),
  2447. weight: math.unit(75, "kg"),
  2448. name: "Back (Alt)",
  2449. image: {
  2450. source: "./media/characters/natasha/back-alt.svg",
  2451. extra: 1236.7 / 1192,
  2452. bottom: 22.3 / 1258.2
  2453. }
  2454. },
  2455. dick: {
  2456. height: math.unit(1.772, "feet"),
  2457. name: "Dick",
  2458. image: {
  2459. source: "./media/characters/natasha/dick.svg"
  2460. }
  2461. },
  2462. paw: {
  2463. height: math.unit(0.250, "meters"),
  2464. name: "Paw",
  2465. image: {
  2466. source: "./media/characters/natasha/paw.svg"
  2467. }
  2468. },
  2469. },
  2470. [
  2471. {
  2472. name: "Normal",
  2473. height: math.unit(5 + 5 / 12, "feet")
  2474. },
  2475. {
  2476. name: "Large",
  2477. height: math.unit(12, "feet")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(100, "feet"),
  2482. default: true
  2483. },
  2484. {
  2485. name: "Macro+",
  2486. height: math.unit(260, "feet")
  2487. },
  2488. {
  2489. name: "Macro++",
  2490. height: math.unit(1, "mile")
  2491. },
  2492. ]
  2493. ))
  2494. characterMakers.push(() => makeCharacter(
  2495. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2496. {
  2497. front: {
  2498. height: math.unit(6, "feet"),
  2499. weight: math.unit(75, "kg"),
  2500. name: "Front",
  2501. image: {
  2502. source: "./media/characters/malik/front.svg"
  2503. }
  2504. },
  2505. side: {
  2506. height: math.unit(6, "feet"),
  2507. weight: math.unit(75, "kg"),
  2508. name: "Side",
  2509. image: {
  2510. source: "./media/characters/malik/side.svg",
  2511. extra: 1.1539
  2512. }
  2513. },
  2514. back: {
  2515. height: math.unit(6, "feet"),
  2516. weight: math.unit(75, "kg"),
  2517. name: "Back",
  2518. image: {
  2519. source: "./media/characters/malik/back.svg"
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Macro",
  2526. height: math.unit(156, "feet"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Macro+",
  2531. height: math.unit(1188, "feet")
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(6, "feet"),
  2540. weight: math.unit(75, "kg"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/sefer/front.svg",
  2544. extra: 848 / 659,
  2545. bottom: 28.3 / 876.442
  2546. }
  2547. },
  2548. back: {
  2549. height: math.unit(6, "feet"),
  2550. weight: math.unit(75, "kg"),
  2551. name: "Back",
  2552. image: {
  2553. source: "./media/characters/sefer/back.svg",
  2554. extra: 864 / 695,
  2555. bottom: 10 / 871
  2556. }
  2557. },
  2558. frontDressed: {
  2559. height: math.unit(6, "feet"),
  2560. weight: math.unit(75, "kg"),
  2561. name: "Front (Dressed)",
  2562. image: {
  2563. source: "./media/characters/sefer/front-dressed.svg",
  2564. extra: 839 / 653,
  2565. bottom: 37.6 / 878
  2566. }
  2567. },
  2568. },
  2569. [
  2570. {
  2571. name: "Normal",
  2572. height: math.unit(6, "feet"),
  2573. default: true
  2574. },
  2575. ]
  2576. ))
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2579. {
  2580. body: {
  2581. height: math.unit(2.2428, "meter"),
  2582. weight: math.unit(124.738, "kg"),
  2583. name: "Body",
  2584. image: {
  2585. extra: 1225 / 1050,
  2586. source: "./media/characters/north/front.svg"
  2587. }
  2588. }
  2589. },
  2590. [
  2591. {
  2592. name: "Micro",
  2593. height: math.unit(4, "inches")
  2594. },
  2595. {
  2596. name: "Macro",
  2597. height: math.unit(63, "meters")
  2598. },
  2599. {
  2600. name: "Megamacro",
  2601. height: math.unit(101, "miles"),
  2602. default: true
  2603. }
  2604. ]
  2605. ))
  2606. characterMakers.push(() => makeCharacter(
  2607. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2608. {
  2609. angled: {
  2610. height: math.unit(4, "meter"),
  2611. weight: math.unit(150, "kg"),
  2612. name: "Angled",
  2613. image: {
  2614. source: "./media/characters/talan/angled-sfw.svg",
  2615. bottom: 29 / 3734
  2616. }
  2617. },
  2618. angledNsfw: {
  2619. height: math.unit(4, "meter"),
  2620. weight: math.unit(150, "kg"),
  2621. name: "Angled (NSFW)",
  2622. image: {
  2623. source: "./media/characters/talan/angled-nsfw.svg",
  2624. bottom: 29 / 3734
  2625. }
  2626. },
  2627. frontNsfw: {
  2628. height: math.unit(4, "meter"),
  2629. weight: math.unit(150, "kg"),
  2630. name: "Front (NSFW)",
  2631. image: {
  2632. source: "./media/characters/talan/front-nsfw.svg",
  2633. bottom: 29 / 3734
  2634. }
  2635. },
  2636. sideNsfw: {
  2637. height: math.unit(4, "meter"),
  2638. weight: math.unit(150, "kg"),
  2639. name: "Side (NSFW)",
  2640. image: {
  2641. source: "./media/characters/talan/side-nsfw.svg",
  2642. bottom: 29 / 3734
  2643. }
  2644. },
  2645. back: {
  2646. height: math.unit(4, "meter"),
  2647. weight: math.unit(150, "kg"),
  2648. name: "Back",
  2649. image: {
  2650. source: "./media/characters/talan/back.svg"
  2651. }
  2652. },
  2653. dickBottom: {
  2654. height: math.unit(0.621, "meter"),
  2655. name: "Dick (Bottom)",
  2656. image: {
  2657. source: "./media/characters/talan/dick-bottom.svg"
  2658. }
  2659. },
  2660. dickTop: {
  2661. height: math.unit(0.621, "meter"),
  2662. name: "Dick (Top)",
  2663. image: {
  2664. source: "./media/characters/talan/dick-top.svg"
  2665. }
  2666. },
  2667. dickSide: {
  2668. height: math.unit(0.305, "meter"),
  2669. name: "Dick (Side)",
  2670. image: {
  2671. source: "./media/characters/talan/dick-side.svg"
  2672. }
  2673. },
  2674. dickFront: {
  2675. height: math.unit(0.305, "meter"),
  2676. name: "Dick (Front)",
  2677. image: {
  2678. source: "./media/characters/talan/dick-front.svg"
  2679. }
  2680. },
  2681. },
  2682. [
  2683. {
  2684. name: "Normal",
  2685. height: math.unit(4, "meters")
  2686. },
  2687. {
  2688. name: "Macro",
  2689. height: math.unit(100, "meters")
  2690. },
  2691. {
  2692. name: "Megamacro",
  2693. height: math.unit(2, "miles"),
  2694. default: true
  2695. },
  2696. {
  2697. name: "Gigamacro",
  2698. height: math.unit(5000, "miles")
  2699. },
  2700. {
  2701. name: "Teramacro",
  2702. height: math.unit(100, "parsecs")
  2703. }
  2704. ]
  2705. ))
  2706. characterMakers.push(() => makeCharacter(
  2707. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2708. {
  2709. front: {
  2710. height: math.unit(2, "meter"),
  2711. weight: math.unit(90, "kg"),
  2712. name: "Front",
  2713. image: {
  2714. source: "./media/characters/gael'rathus/front.svg"
  2715. }
  2716. },
  2717. frontAlt: {
  2718. height: math.unit(2, "meter"),
  2719. weight: math.unit(90, "kg"),
  2720. name: "Front (alt)",
  2721. image: {
  2722. source: "./media/characters/gael'rathus/front-alt.svg"
  2723. }
  2724. },
  2725. frontAlt2: {
  2726. height: math.unit(2, "meter"),
  2727. weight: math.unit(90, "kg"),
  2728. name: "Front (alt 2)",
  2729. image: {
  2730. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2731. }
  2732. }
  2733. },
  2734. [
  2735. {
  2736. name: "Normal",
  2737. height: math.unit(9, "feet"),
  2738. default: true
  2739. },
  2740. {
  2741. name: "Large",
  2742. height: math.unit(25, "feet")
  2743. },
  2744. {
  2745. name: "Macro",
  2746. height: math.unit(0.25, "miles")
  2747. },
  2748. {
  2749. name: "Megamacro",
  2750. height: math.unit(10, "miles")
  2751. }
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2756. {
  2757. side: {
  2758. height: math.unit(2, "meter"),
  2759. weight: math.unit(140, "kg"),
  2760. name: "Side",
  2761. image: {
  2762. source: "./media/characters/sosha/side.svg",
  2763. bottom: 0.042
  2764. }
  2765. },
  2766. },
  2767. [
  2768. {
  2769. name: "Normal",
  2770. height: math.unit(12, "feet"),
  2771. default: true
  2772. }
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2777. {
  2778. side: {
  2779. height: math.unit(5 + 5 / 12, "feet"),
  2780. weight: math.unit(170, "kg"),
  2781. name: "Side",
  2782. image: {
  2783. source: "./media/characters/runnola/side.svg",
  2784. extra: 741 / 448,
  2785. bottom: 0.05
  2786. }
  2787. },
  2788. },
  2789. [
  2790. {
  2791. name: "Small",
  2792. height: math.unit(3, "feet")
  2793. },
  2794. {
  2795. name: "Normal",
  2796. height: math.unit(5 + 5 / 12, "feet"),
  2797. default: true
  2798. },
  2799. {
  2800. name: "Big",
  2801. height: math.unit(10, "feet")
  2802. },
  2803. ]
  2804. ))
  2805. characterMakers.push(() => makeCharacter(
  2806. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2807. {
  2808. front: {
  2809. height: math.unit(2, "meter"),
  2810. weight: math.unit(50, "kg"),
  2811. name: "Front",
  2812. image: {
  2813. source: "./media/characters/kurribird/front.svg",
  2814. bottom: 0.015
  2815. }
  2816. },
  2817. frontAlt: {
  2818. height: math.unit(1.5, "meter"),
  2819. weight: math.unit(50, "kg"),
  2820. name: "Front (Alt)",
  2821. image: {
  2822. source: "./media/characters/kurribird/front-alt.svg",
  2823. extra: 1.45
  2824. }
  2825. },
  2826. },
  2827. [
  2828. {
  2829. name: "Normal",
  2830. height: math.unit(7, "feet")
  2831. },
  2832. {
  2833. name: "Big",
  2834. height: math.unit(12, "feet"),
  2835. default: true
  2836. },
  2837. {
  2838. name: "Macro",
  2839. height: math.unit(1500, "feet")
  2840. },
  2841. {
  2842. name: "Megamacro",
  2843. height: math.unit(2, "miles")
  2844. }
  2845. ]
  2846. ))
  2847. characterMakers.push(() => makeCharacter(
  2848. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2849. {
  2850. front: {
  2851. height: math.unit(2, "meter"),
  2852. weight: math.unit(80, "kg"),
  2853. name: "Front",
  2854. image: {
  2855. source: "./media/characters/elbial/front.svg",
  2856. extra: 1643 / 1556,
  2857. bottom: 60.2 / 1696
  2858. }
  2859. },
  2860. side: {
  2861. height: math.unit(2, "meter"),
  2862. weight: math.unit(80, "kg"),
  2863. name: "Side",
  2864. image: {
  2865. source: "./media/characters/elbial/side.svg",
  2866. extra: 1630 / 1565,
  2867. bottom: 71.5 / 1697
  2868. }
  2869. },
  2870. back: {
  2871. height: math.unit(2, "meter"),
  2872. weight: math.unit(80, "kg"),
  2873. name: "Back",
  2874. image: {
  2875. source: "./media/characters/elbial/back.svg",
  2876. extra: 1668 / 1595,
  2877. bottom: 5.6 / 1672
  2878. }
  2879. },
  2880. frontDressed: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(80, "kg"),
  2883. name: "Front (Dressed)",
  2884. image: {
  2885. source: "./media/characters/elbial/front-dressed.svg",
  2886. extra: 1653 / 1584,
  2887. bottom: 57 / 1708
  2888. }
  2889. },
  2890. genitals: {
  2891. height: math.unit(2 / 3.367, "meter"),
  2892. name: "Genitals",
  2893. image: {
  2894. source: "./media/characters/elbial/genitals.svg"
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Large",
  2901. height: math.unit(100, "feet")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(500, "feet"),
  2906. default: true
  2907. },
  2908. {
  2909. name: "Megamacro",
  2910. height: math.unit(10, "miles")
  2911. },
  2912. {
  2913. name: "Gigamacro",
  2914. height: math.unit(25000, "miles")
  2915. },
  2916. {
  2917. name: "Full-Size",
  2918. height: math.unit(8000000, "gigaparsecs")
  2919. }
  2920. ]
  2921. ))
  2922. characterMakers.push(() => makeCharacter(
  2923. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2924. {
  2925. front: {
  2926. height: math.unit(2, "meter"),
  2927. weight: math.unit(60, "kg"),
  2928. name: "Front",
  2929. image: {
  2930. source: "./media/characters/noah/front.svg"
  2931. }
  2932. },
  2933. talons: {
  2934. height: math.unit(0.315, "meter"),
  2935. name: "Talons",
  2936. image: {
  2937. source: "./media/characters/noah/talons.svg"
  2938. }
  2939. }
  2940. },
  2941. [
  2942. {
  2943. name: "Large",
  2944. height: math.unit(50, "feet")
  2945. },
  2946. {
  2947. name: "Macro",
  2948. height: math.unit(750, "feet"),
  2949. default: true
  2950. },
  2951. {
  2952. name: "Megamacro",
  2953. height: math.unit(50, "miles")
  2954. },
  2955. {
  2956. name: "Gigamacro",
  2957. height: math.unit(100000, "miles")
  2958. },
  2959. {
  2960. name: "Full-Size",
  2961. height: math.unit(3000000000, "miles")
  2962. }
  2963. ]
  2964. ))
  2965. characterMakers.push(() => makeCharacter(
  2966. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2967. {
  2968. front: {
  2969. height: math.unit(2, "meter"),
  2970. weight: math.unit(80, "kg"),
  2971. name: "Front",
  2972. image: {
  2973. source: "./media/characters/natalya/front.svg"
  2974. }
  2975. },
  2976. back: {
  2977. height: math.unit(2, "meter"),
  2978. weight: math.unit(80, "kg"),
  2979. name: "Back",
  2980. image: {
  2981. source: "./media/characters/natalya/back.svg"
  2982. }
  2983. }
  2984. },
  2985. [
  2986. {
  2987. name: "Normal",
  2988. height: math.unit(150, "feet"),
  2989. default: true
  2990. },
  2991. {
  2992. name: "Megamacro",
  2993. height: math.unit(5, "miles")
  2994. },
  2995. {
  2996. name: "Full-Size",
  2997. height: math.unit(600, "kiloparsecs")
  2998. }
  2999. ]
  3000. ))
  3001. characterMakers.push(() => makeCharacter(
  3002. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3003. {
  3004. front: {
  3005. height: math.unit(2, "meter"),
  3006. weight: math.unit(50, "kg"),
  3007. name: "Front",
  3008. image: {
  3009. source: "./media/characters/erestrebah/front.svg",
  3010. extra: 208 / 193,
  3011. bottom: 0.055
  3012. }
  3013. },
  3014. back: {
  3015. height: math.unit(2, "meter"),
  3016. weight: math.unit(50, "kg"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/erestrebah/back.svg",
  3020. extra: 1.3
  3021. }
  3022. }
  3023. },
  3024. [
  3025. {
  3026. name: "Normal",
  3027. height: math.unit(10, "feet")
  3028. },
  3029. {
  3030. name: "Large",
  3031. height: math.unit(50, "feet"),
  3032. default: true
  3033. },
  3034. {
  3035. name: "Macro",
  3036. height: math.unit(300, "feet")
  3037. },
  3038. {
  3039. name: "Macro+",
  3040. height: math.unit(750, "feet")
  3041. },
  3042. {
  3043. name: "Megamacro",
  3044. height: math.unit(3, "miles")
  3045. }
  3046. ]
  3047. ))
  3048. characterMakers.push(() => makeCharacter(
  3049. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3050. {
  3051. front: {
  3052. height: math.unit(2, "meter"),
  3053. weight: math.unit(80, "kg"),
  3054. name: "Front",
  3055. image: {
  3056. source: "./media/characters/jennifer/front.svg",
  3057. bottom: 0.11,
  3058. extra: 1.16
  3059. }
  3060. },
  3061. frontAlt: {
  3062. height: math.unit(2, "meter"),
  3063. weight: math.unit(80, "kg"),
  3064. name: "Front (Alt)",
  3065. image: {
  3066. source: "./media/characters/jennifer/front-alt.svg"
  3067. }
  3068. }
  3069. },
  3070. [
  3071. {
  3072. name: "Canon Height",
  3073. height: math.unit(120, "feet"),
  3074. default: true
  3075. },
  3076. {
  3077. name: "Macro+",
  3078. height: math.unit(300, "feet")
  3079. },
  3080. {
  3081. name: "Megamacro",
  3082. height: math.unit(20000, "feet")
  3083. }
  3084. ]
  3085. ))
  3086. characterMakers.push(() => makeCharacter(
  3087. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3088. {
  3089. front: {
  3090. height: math.unit(2, "meter"),
  3091. weight: math.unit(50, "kg"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/kalista/front.svg",
  3095. extra: 1947 / 1700,
  3096. bottom: 76.6 / 1412.98
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(2, "meter"),
  3101. weight: math.unit(50, "kg"),
  3102. name: "Back",
  3103. image: {
  3104. source: "./media/characters/kalista/back.svg",
  3105. extra: 1366 / 1156,
  3106. bottom: 33.9 / 1362.78
  3107. }
  3108. }
  3109. },
  3110. [
  3111. {
  3112. name: "Uncomfortably Small",
  3113. height: math.unit(10, "feet")
  3114. },
  3115. {
  3116. name: "Small",
  3117. height: math.unit(30, "feet")
  3118. },
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(100, "feet"),
  3122. default: true
  3123. },
  3124. {
  3125. name: "Macro+",
  3126. height: math.unit(2000, "feet")
  3127. },
  3128. {
  3129. name: "True Form",
  3130. height: math.unit(8924, "miles")
  3131. }
  3132. ]
  3133. ))
  3134. characterMakers.push(() => makeCharacter(
  3135. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3136. {
  3137. front: {
  3138. height: math.unit(2, "meter"),
  3139. weight: math.unit(120, "kg"),
  3140. name: "Front",
  3141. image: {
  3142. source: "./media/characters/ggv/front.svg"
  3143. }
  3144. },
  3145. side: {
  3146. height: math.unit(2, "meter"),
  3147. weight: math.unit(120, "kg"),
  3148. name: "Side",
  3149. image: {
  3150. source: "./media/characters/ggv/side.svg"
  3151. }
  3152. }
  3153. },
  3154. [
  3155. {
  3156. name: "Extremely Puny",
  3157. height: math.unit(9 + 5 / 12, "feet")
  3158. },
  3159. {
  3160. name: "Horribly Small",
  3161. height: math.unit(47.7, "miles"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Reasonably Sized",
  3166. height: math.unit(25000, "parsecs")
  3167. },
  3168. {
  3169. name: "Slightly Uncompressed",
  3170. height: math.unit(7.77e31, "parsecs")
  3171. },
  3172. {
  3173. name: "Omniversal",
  3174. height: math.unit(1e300, "meters")
  3175. },
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(75, "lb"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/napalm/front.svg"
  3187. }
  3188. },
  3189. back: {
  3190. height: math.unit(2, "meter"),
  3191. weight: math.unit(75, "lb"),
  3192. name: "Back",
  3193. image: {
  3194. source: "./media/characters/napalm/back.svg"
  3195. }
  3196. }
  3197. },
  3198. [
  3199. {
  3200. name: "Standard",
  3201. height: math.unit(55, "feet"),
  3202. default: true
  3203. }
  3204. ]
  3205. ))
  3206. characterMakers.push(() => makeCharacter(
  3207. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3208. {
  3209. front: {
  3210. height: math.unit(7 + 5 / 6, "feet"),
  3211. weight: math.unit(325, "lb"),
  3212. name: "Front",
  3213. image: {
  3214. source: "./media/characters/asana/front.svg",
  3215. extra: 1133 / 1060,
  3216. bottom: 15.2 / 1148.6
  3217. }
  3218. },
  3219. back: {
  3220. height: math.unit(7 + 5 / 6, "feet"),
  3221. weight: math.unit(325, "lb"),
  3222. name: "Back",
  3223. image: {
  3224. source: "./media/characters/asana/back.svg",
  3225. extra: 1114 / 1043,
  3226. bottom: 5 / 1120
  3227. }
  3228. },
  3229. dressedDark: {
  3230. height: math.unit(7 + 5 / 6, "feet"),
  3231. weight: math.unit(325, "lb"),
  3232. name: "Dressed (Dark)",
  3233. image: {
  3234. source: "./media/characters/asana/dressed-dark.svg",
  3235. extra: 1133 / 1060,
  3236. bottom: 15.2 / 1148.6
  3237. }
  3238. },
  3239. dressedLight: {
  3240. height: math.unit(7 + 5 / 6, "feet"),
  3241. weight: math.unit(325, "lb"),
  3242. name: "Dressed (Light)",
  3243. image: {
  3244. source: "./media/characters/asana/dressed-light.svg",
  3245. extra: 1133 / 1060,
  3246. bottom: 15.2 / 1148.6
  3247. }
  3248. },
  3249. },
  3250. [
  3251. {
  3252. name: "Standard",
  3253. height: math.unit(7 + 5 / 6, "feet"),
  3254. default: true
  3255. },
  3256. {
  3257. name: "Large",
  3258. height: math.unit(10, "meters")
  3259. },
  3260. {
  3261. name: "Macro",
  3262. height: math.unit(2500, "meters")
  3263. },
  3264. {
  3265. name: "Megamacro",
  3266. height: math.unit(5e6, "meters")
  3267. },
  3268. {
  3269. name: "Examacro",
  3270. height: math.unit(5e12, "lightyears")
  3271. },
  3272. {
  3273. name: "Max Size",
  3274. height: math.unit(1e31, "lightyears")
  3275. }
  3276. ]
  3277. ))
  3278. characterMakers.push(() => makeCharacter(
  3279. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3280. {
  3281. front: {
  3282. height: math.unit(2, "meter"),
  3283. weight: math.unit(60, "kg"),
  3284. name: "Front",
  3285. image: {
  3286. source: "./media/characters/ebony/front.svg",
  3287. bottom: 0.03,
  3288. extra: 1045 / 810 + 0.03
  3289. }
  3290. },
  3291. side: {
  3292. height: math.unit(2, "meter"),
  3293. weight: math.unit(60, "kg"),
  3294. name: "Side",
  3295. image: {
  3296. source: "./media/characters/ebony/side.svg",
  3297. bottom: 0.03,
  3298. extra: 1045 / 810 + 0.03
  3299. }
  3300. },
  3301. back: {
  3302. height: math.unit(2, "meter"),
  3303. weight: math.unit(60, "kg"),
  3304. name: "Back",
  3305. image: {
  3306. source: "./media/characters/ebony/back.svg",
  3307. bottom: 0.01,
  3308. extra: 1045 / 810 + 0.01
  3309. }
  3310. },
  3311. },
  3312. [
  3313. // TODO check why I did this lol
  3314. {
  3315. name: "Standard",
  3316. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(200, "feet")
  3322. },
  3323. {
  3324. name: "Gigamacro",
  3325. height: math.unit(13000, "km")
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(6, "feet"),
  3334. weight: math.unit(175, "lb"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/mountain/front.svg",
  3338. extra: 972 / 955,
  3339. bottom: 64 / 1036.6
  3340. }
  3341. },
  3342. back: {
  3343. height: math.unit(6, "feet"),
  3344. weight: math.unit(175, "lb"),
  3345. name: "Back",
  3346. image: {
  3347. source: "./media/characters/mountain/back.svg",
  3348. extra: 970 / 950,
  3349. bottom: 28.25 / 999
  3350. }
  3351. },
  3352. },
  3353. [
  3354. {
  3355. name: "Large",
  3356. height: math.unit(20, "meters")
  3357. },
  3358. {
  3359. name: "Macro",
  3360. height: math.unit(300, "meters")
  3361. },
  3362. {
  3363. name: "Gigamacro",
  3364. height: math.unit(10000, "km"),
  3365. default: true
  3366. },
  3367. {
  3368. name: "Examacro",
  3369. height: math.unit(10e9, "lightyears")
  3370. }
  3371. ]
  3372. ))
  3373. characterMakers.push(() => makeCharacter(
  3374. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3375. {
  3376. front: {
  3377. height: math.unit(8, "feet"),
  3378. weight: math.unit(500, "lb"),
  3379. name: "Front",
  3380. image: {
  3381. source: "./media/characters/rick/front.svg"
  3382. }
  3383. }
  3384. },
  3385. [
  3386. {
  3387. name: "Normal",
  3388. height: math.unit(8, "feet"),
  3389. default: true
  3390. },
  3391. {
  3392. name: "Macro",
  3393. height: math.unit(5, "km")
  3394. }
  3395. ]
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3399. {
  3400. front: {
  3401. height: math.unit(8, "feet"),
  3402. weight: math.unit(120, "lb"),
  3403. name: "Front",
  3404. image: {
  3405. source: "./media/characters/ona/front.svg"
  3406. }
  3407. },
  3408. frontAlt: {
  3409. height: math.unit(8, "feet"),
  3410. weight: math.unit(120, "lb"),
  3411. name: "Front (Alt)",
  3412. image: {
  3413. source: "./media/characters/ona/front-alt.svg"
  3414. }
  3415. },
  3416. back: {
  3417. height: math.unit(8, "feet"),
  3418. weight: math.unit(120, "lb"),
  3419. name: "Back",
  3420. image: {
  3421. source: "./media/characters/ona/back.svg"
  3422. }
  3423. },
  3424. foot: {
  3425. height: math.unit(1.1, "feet"),
  3426. name: "Foot",
  3427. image: {
  3428. source: "./media/characters/ona/foot.svg"
  3429. }
  3430. }
  3431. },
  3432. [
  3433. {
  3434. name: "Megamacro",
  3435. height: math.unit(70, "km"),
  3436. default: true
  3437. },
  3438. {
  3439. name: "Gigamacro",
  3440. height: math.unit(681818, "miles")
  3441. },
  3442. {
  3443. name: "Examacro",
  3444. height: math.unit(3800000, "lightyears")
  3445. },
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(12, "feet"),
  3453. weight: math.unit(3000, "lb"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/mech/front.svg",
  3457. extra: 2900 / 2770,
  3458. bottom: 110 / 3010
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(12, "feet"),
  3463. weight: math.unit(3000, "lb"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/mech/back.svg",
  3467. extra: 3011 / 2890,
  3468. bottom: 94 / 3105
  3469. }
  3470. },
  3471. maw: {
  3472. height: math.unit(3.07, "feet"),
  3473. name: "Maw",
  3474. image: {
  3475. source: "./media/characters/mech/maw.svg"
  3476. }
  3477. },
  3478. head: {
  3479. height: math.unit(2.82, "feet"),
  3480. name: "Head",
  3481. image: {
  3482. source: "./media/characters/mech/head.svg"
  3483. }
  3484. },
  3485. dick: {
  3486. height: math.unit(1.43, "feet"),
  3487. name: "Dick",
  3488. image: {
  3489. source: "./media/characters/mech/dick.svg"
  3490. }
  3491. },
  3492. },
  3493. [
  3494. {
  3495. name: "Normal",
  3496. height: math.unit(12, "feet")
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(300, "feet"),
  3501. default: true
  3502. },
  3503. {
  3504. name: "Macro+",
  3505. height: math.unit(1500, "feet")
  3506. },
  3507. ]
  3508. ))
  3509. characterMakers.push(() => makeCharacter(
  3510. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3511. {
  3512. front: {
  3513. height: math.unit(1.3, "meter"),
  3514. weight: math.unit(30, "kg"),
  3515. name: "Front",
  3516. image: {
  3517. source: "./media/characters/gregory/front.svg",
  3518. }
  3519. }
  3520. },
  3521. [
  3522. {
  3523. name: "Normal",
  3524. height: math.unit(1.3, "meter"),
  3525. default: true
  3526. },
  3527. {
  3528. name: "Macro",
  3529. height: math.unit(20, "meter")
  3530. }
  3531. ]
  3532. ))
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3535. {
  3536. front: {
  3537. height: math.unit(2.8, "meter"),
  3538. weight: math.unit(200, "kg"),
  3539. name: "Front",
  3540. image: {
  3541. source: "./media/characters/elory/front.svg",
  3542. }
  3543. }
  3544. },
  3545. [
  3546. {
  3547. name: "Normal",
  3548. height: math.unit(2.8, "meter"),
  3549. default: true
  3550. },
  3551. {
  3552. name: "Macro",
  3553. height: math.unit(38, "meter")
  3554. }
  3555. ]
  3556. ))
  3557. characterMakers.push(() => makeCharacter(
  3558. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3559. {
  3560. front: {
  3561. height: math.unit(470, "feet"),
  3562. weight: math.unit(924, "tons"),
  3563. name: "Front",
  3564. image: {
  3565. source: "./media/characters/angelpatamon/front.svg",
  3566. }
  3567. }
  3568. },
  3569. [
  3570. {
  3571. name: "Normal",
  3572. height: math.unit(470, "feet"),
  3573. default: true
  3574. },
  3575. {
  3576. name: "Deity Size I",
  3577. height: math.unit(28651.2, "km")
  3578. },
  3579. {
  3580. name: "Deity Size II",
  3581. height: math.unit(171907.2, "km")
  3582. }
  3583. ]
  3584. ))
  3585. characterMakers.push(() => makeCharacter(
  3586. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3587. {
  3588. side: {
  3589. height: math.unit(7.2, "meter"),
  3590. weight: math.unit(8.2, "tons"),
  3591. name: "Side",
  3592. image: {
  3593. source: "./media/characters/cryae/side.svg",
  3594. extra: 3500 / 1500
  3595. }
  3596. }
  3597. },
  3598. [
  3599. {
  3600. name: "Normal",
  3601. height: math.unit(7.2, "meter"),
  3602. default: true
  3603. }
  3604. ]
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(6, "feet"),
  3611. weight: math.unit(175, "lb"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/xera/front.svg",
  3615. extra: 2377 / 1972,
  3616. bottom: 75.5 / 2452
  3617. }
  3618. },
  3619. side: {
  3620. height: math.unit(6, "feet"),
  3621. weight: math.unit(175, "lb"),
  3622. name: "Side",
  3623. image: {
  3624. source: "./media/characters/xera/side.svg",
  3625. extra: 2345 / 2019,
  3626. bottom: 39.7 / 2384
  3627. }
  3628. },
  3629. back: {
  3630. height: math.unit(6, "feet"),
  3631. weight: math.unit(175, "lb"),
  3632. name: "Back",
  3633. image: {
  3634. source: "./media/characters/xera/back.svg",
  3635. extra: 2095 / 1984,
  3636. bottom: 67 / 2166
  3637. }
  3638. },
  3639. },
  3640. [
  3641. {
  3642. name: "Small",
  3643. height: math.unit(10, "feet")
  3644. },
  3645. {
  3646. name: "Macro",
  3647. height: math.unit(500, "meters"),
  3648. default: true
  3649. },
  3650. {
  3651. name: "Macro+",
  3652. height: math.unit(10, "km")
  3653. },
  3654. {
  3655. name: "Gigamacro",
  3656. height: math.unit(25000, "km")
  3657. },
  3658. {
  3659. name: "Teramacro",
  3660. height: math.unit(3e6, "km")
  3661. }
  3662. ]
  3663. ))
  3664. characterMakers.push(() => makeCharacter(
  3665. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3666. {
  3667. front: {
  3668. height: math.unit(6, "feet"),
  3669. weight: math.unit(175, "lb"),
  3670. name: "Front",
  3671. image: {
  3672. source: "./media/characters/nebula/front.svg",
  3673. extra: 2566 / 2362,
  3674. bottom: 81 / 2644
  3675. }
  3676. }
  3677. },
  3678. [
  3679. {
  3680. name: "Small",
  3681. height: math.unit(4.5, "meters")
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(1500, "meters"),
  3686. default: true
  3687. },
  3688. {
  3689. name: "Megamacro",
  3690. height: math.unit(150, "km")
  3691. },
  3692. {
  3693. name: "Gigamacro",
  3694. height: math.unit(27000, "km")
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(6, "feet"),
  3703. weight: math.unit(225, "lb"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/abysgar/front.svg"
  3707. }
  3708. }
  3709. },
  3710. [
  3711. {
  3712. name: "Small",
  3713. height: math.unit(4.5, "meters")
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(1250, "meters"),
  3718. default: true
  3719. },
  3720. {
  3721. name: "Megamacro",
  3722. height: math.unit(125, "km")
  3723. },
  3724. {
  3725. name: "Gigamacro",
  3726. height: math.unit(26000, "km")
  3727. }
  3728. ]
  3729. ))
  3730. characterMakers.push(() => makeCharacter(
  3731. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3732. {
  3733. front: {
  3734. height: math.unit(6, "feet"),
  3735. weight: math.unit(180, "lb"),
  3736. name: "Front",
  3737. image: {
  3738. source: "./media/characters/yakuz/front.svg"
  3739. }
  3740. }
  3741. },
  3742. [
  3743. {
  3744. name: "Small",
  3745. height: math.unit(5, "meters")
  3746. },
  3747. {
  3748. name: "Macro",
  3749. height: math.unit(1500, "meters"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Megamacro",
  3754. height: math.unit(200, "km")
  3755. },
  3756. {
  3757. name: "Gigamacro",
  3758. height: math.unit(100000, "km")
  3759. }
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3764. {
  3765. front: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(175, "lb"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/mirova/front.svg",
  3771. extra: 3334 / 3071,
  3772. bottom: 42 / 3375.6
  3773. }
  3774. }
  3775. },
  3776. [
  3777. {
  3778. name: "Small",
  3779. height: math.unit(5, "meters")
  3780. },
  3781. {
  3782. name: "Macro",
  3783. height: math.unit(900, "meters"),
  3784. default: true
  3785. },
  3786. {
  3787. name: "Megamacro",
  3788. height: math.unit(135, "km")
  3789. },
  3790. {
  3791. name: "Gigamacro",
  3792. height: math.unit(20000, "km")
  3793. }
  3794. ]
  3795. ))
  3796. characterMakers.push(() => makeCharacter(
  3797. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3798. {
  3799. side: {
  3800. height: math.unit(28.35, "feet"),
  3801. weight: math.unit(99.75, "tons"),
  3802. name: "Side",
  3803. image: {
  3804. source: "./media/characters/asana-mech/side.svg",
  3805. extra: 923 / 699,
  3806. bottom: 50 / 975
  3807. }
  3808. },
  3809. chaingun: {
  3810. height: math.unit(7, "feet"),
  3811. weight: math.unit(2400, "lb"),
  3812. name: "Chaingun",
  3813. image: {
  3814. source: "./media/characters/asana-mech/chaingun.svg"
  3815. }
  3816. },
  3817. laser: {
  3818. height: math.unit(7.12, "feet"),
  3819. weight: math.unit(2000, "lb"),
  3820. name: "Laser",
  3821. image: {
  3822. source: "./media/characters/asana-mech/laser.svg"
  3823. }
  3824. },
  3825. },
  3826. [
  3827. {
  3828. name: "Normal",
  3829. height: math.unit(28.35, "feet"),
  3830. default: true
  3831. },
  3832. {
  3833. name: "Macro",
  3834. height: math.unit(2500, "feet")
  3835. },
  3836. {
  3837. name: "Megamacro",
  3838. height: math.unit(25, "miles")
  3839. },
  3840. {
  3841. name: "Examacro",
  3842. height: math.unit(6e8, "lightyears")
  3843. },
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3848. {
  3849. front: {
  3850. height: math.unit(5, "meters"),
  3851. weight: math.unit(1000, "kg"),
  3852. name: "Front",
  3853. image: {
  3854. source: "./media/characters/asche/front.svg",
  3855. extra: 1258 / 1190,
  3856. bottom: 47 / 1305
  3857. }
  3858. },
  3859. frontUnderwear: {
  3860. height: math.unit(5, "meters"),
  3861. weight: math.unit(1000, "kg"),
  3862. name: "Front (Underwear)",
  3863. image: {
  3864. source: "./media/characters/asche/front-underwear.svg",
  3865. extra: 1258 / 1190,
  3866. bottom: 47 / 1305
  3867. }
  3868. },
  3869. frontDressed: {
  3870. height: math.unit(5, "meters"),
  3871. weight: math.unit(1000, "kg"),
  3872. name: "Front (Dressed)",
  3873. image: {
  3874. source: "./media/characters/asche/front-dressed.svg",
  3875. extra: 1258 / 1190,
  3876. bottom: 47 / 1305
  3877. }
  3878. },
  3879. frontArmor: {
  3880. height: math.unit(5, "meters"),
  3881. weight: math.unit(1000, "kg"),
  3882. name: "Front (Armored)",
  3883. image: {
  3884. source: "./media/characters/asche/front-armored.svg",
  3885. extra: 1374 / 1308,
  3886. bottom: 23 / 1397
  3887. }
  3888. },
  3889. mp724: {
  3890. height: math.unit(0.96, "meters"),
  3891. weight: math.unit(38, "kg"),
  3892. name: "H&K MP724",
  3893. image: {
  3894. source: "./media/characters/asche/h&k-mp724.svg"
  3895. }
  3896. },
  3897. side: {
  3898. height: math.unit(5, "meters"),
  3899. weight: math.unit(1000, "kg"),
  3900. name: "Side",
  3901. image: {
  3902. source: "./media/characters/asche/side.svg",
  3903. extra: 1717 / 1609,
  3904. bottom: 0.005
  3905. }
  3906. },
  3907. back: {
  3908. height: math.unit(5, "meters"),
  3909. weight: math.unit(1000, "kg"),
  3910. name: "Back",
  3911. image: {
  3912. source: "./media/characters/asche/back.svg",
  3913. extra: 1570 / 1501
  3914. }
  3915. },
  3916. },
  3917. [
  3918. {
  3919. name: "DEFCON 5",
  3920. height: math.unit(5, "meters")
  3921. },
  3922. {
  3923. name: "DEFCON 4",
  3924. height: math.unit(500, "meters"),
  3925. default: true
  3926. },
  3927. {
  3928. name: "DEFCON 3",
  3929. height: math.unit(5, "km")
  3930. },
  3931. {
  3932. name: "DEFCON 2",
  3933. height: math.unit(500, "km")
  3934. },
  3935. {
  3936. name: "DEFCON 1",
  3937. height: math.unit(500000, "km")
  3938. },
  3939. {
  3940. name: "DEFCON 0",
  3941. height: math.unit(3, "gigaparsecs")
  3942. },
  3943. ]
  3944. ))
  3945. characterMakers.push(() => makeCharacter(
  3946. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3947. {
  3948. front: {
  3949. height: math.unit(2, "meters"),
  3950. weight: math.unit(76, "kg"),
  3951. name: "Front",
  3952. image: {
  3953. source: "./media/characters/gale/front.svg"
  3954. }
  3955. },
  3956. frontAlt1: {
  3957. height: math.unit(2, "meters"),
  3958. weight: math.unit(76, "kg"),
  3959. name: "Front (Alt 1)",
  3960. image: {
  3961. source: "./media/characters/gale/front-alt-1.svg"
  3962. }
  3963. },
  3964. frontAlt2: {
  3965. height: math.unit(2, "meters"),
  3966. weight: math.unit(76, "kg"),
  3967. name: "Front (Alt 2)",
  3968. image: {
  3969. source: "./media/characters/gale/front-alt-2.svg"
  3970. }
  3971. },
  3972. },
  3973. [
  3974. {
  3975. name: "Normal",
  3976. height: math.unit(7, "feet")
  3977. },
  3978. {
  3979. name: "Macro",
  3980. height: math.unit(150, "feet"),
  3981. default: true
  3982. },
  3983. {
  3984. name: "Macro+",
  3985. height: math.unit(300, "feet")
  3986. },
  3987. ]
  3988. ))
  3989. characterMakers.push(() => makeCharacter(
  3990. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3991. {
  3992. front: {
  3993. height: math.unit(2, "meters"),
  3994. weight: math.unit(76, "kg"),
  3995. name: "Front",
  3996. image: {
  3997. source: "./media/characters/draylen/front.svg"
  3998. }
  3999. }
  4000. },
  4001. [
  4002. {
  4003. name: "Macro",
  4004. height: math.unit(150, "feet"),
  4005. default: true
  4006. }
  4007. ]
  4008. ))
  4009. characterMakers.push(() => makeCharacter(
  4010. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4011. {
  4012. front: {
  4013. height: math.unit(7 + 9 / 12, "feet"),
  4014. weight: math.unit(379, "lbs"),
  4015. name: "Front",
  4016. image: {
  4017. source: "./media/characters/chez/front.svg"
  4018. }
  4019. },
  4020. side: {
  4021. height: math.unit(7 + 9 / 12, "feet"),
  4022. weight: math.unit(379, "lbs"),
  4023. name: "Side",
  4024. image: {
  4025. source: "./media/characters/chez/side.svg"
  4026. }
  4027. }
  4028. },
  4029. [
  4030. {
  4031. name: "Normal",
  4032. height: math.unit(7 + 9 / 12, "feet"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "God King",
  4037. height: math.unit(9750000, "meters")
  4038. }
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(6, "feet"),
  4046. weight: math.unit(275, "lbs"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/kaylum/front.svg",
  4050. bottom: 0.01,
  4051. extra: 1166 / 1031
  4052. }
  4053. },
  4054. frontWingless: {
  4055. height: math.unit(6, "feet"),
  4056. weight: math.unit(275, "lbs"),
  4057. name: "Front (Wingless)",
  4058. image: {
  4059. source: "./media/characters/kaylum/front-wingless.svg",
  4060. bottom: 0.01,
  4061. extra: 1117 / 1031
  4062. }
  4063. }
  4064. },
  4065. [
  4066. {
  4067. name: "Normal",
  4068. height: math.unit(3.05, "meters")
  4069. },
  4070. {
  4071. name: "Master",
  4072. height: math.unit(5.5, "meters")
  4073. },
  4074. {
  4075. name: "Rampage",
  4076. height: math.unit(19, "meters")
  4077. },
  4078. {
  4079. name: "Macro Lite",
  4080. height: math.unit(37, "meters")
  4081. },
  4082. {
  4083. name: "Hyper Predator",
  4084. height: math.unit(61, "meters")
  4085. },
  4086. {
  4087. name: "Macro",
  4088. height: math.unit(138, "meters"),
  4089. default: true
  4090. }
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(6, "feet"),
  4098. weight: math.unit(150, "lbs"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/geta/front.svg"
  4102. }
  4103. }
  4104. },
  4105. [
  4106. {
  4107. name: "Micro",
  4108. height: math.unit(3, "inches"),
  4109. default: true
  4110. },
  4111. {
  4112. name: "Normal",
  4113. height: math.unit(5 + 5 / 12, "feet")
  4114. }
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4119. {
  4120. front: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(300, "lbs"),
  4123. name: "Front",
  4124. image: {
  4125. source: "./media/characters/tyrnn/front.svg"
  4126. }
  4127. }
  4128. },
  4129. [
  4130. {
  4131. name: "Main Height",
  4132. height: math.unit(355, "feet"),
  4133. default: true
  4134. },
  4135. {
  4136. name: "Fave. Height",
  4137. height: math.unit(2400, "feet")
  4138. }
  4139. ]
  4140. ))
  4141. characterMakers.push(() => makeCharacter(
  4142. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4143. {
  4144. front: {
  4145. height: math.unit(6, "feet"),
  4146. weight: math.unit(300, "lbs"),
  4147. name: "Front",
  4148. image: {
  4149. source: "./media/characters/appledectomy/front.svg"
  4150. }
  4151. }
  4152. },
  4153. [
  4154. {
  4155. name: "Macro",
  4156. height: math.unit(2500, "feet")
  4157. },
  4158. {
  4159. name: "Megamacro",
  4160. height: math.unit(50, "miles"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Gigamacro",
  4165. height: math.unit(5000, "miles")
  4166. },
  4167. {
  4168. name: "Teramacro",
  4169. height: math.unit(250000, "miles")
  4170. },
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(6, "feet"),
  4178. weight: math.unit(200, "lbs"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/vulpes/front.svg",
  4182. extra: 573 / 543,
  4183. bottom: 0.033
  4184. }
  4185. },
  4186. side: {
  4187. height: math.unit(6, "feet"),
  4188. weight: math.unit(200, "lbs"),
  4189. name: "Side",
  4190. image: {
  4191. source: "./media/characters/vulpes/side.svg",
  4192. extra: 577 / 549,
  4193. bottom: 11 / 588
  4194. }
  4195. },
  4196. back: {
  4197. height: math.unit(6, "feet"),
  4198. weight: math.unit(200, "lbs"),
  4199. name: "Back",
  4200. image: {
  4201. source: "./media/characters/vulpes/back.svg",
  4202. extra: 573 / 549,
  4203. bottom: 20 / 593
  4204. }
  4205. },
  4206. feet: {
  4207. height: math.unit(1.276, "feet"),
  4208. name: "Feet",
  4209. image: {
  4210. source: "./media/characters/vulpes/feet.svg"
  4211. }
  4212. },
  4213. maw: {
  4214. height: math.unit(1.18, "feet"),
  4215. name: "Maw",
  4216. image: {
  4217. source: "./media/characters/vulpes/maw.svg"
  4218. }
  4219. },
  4220. },
  4221. [
  4222. {
  4223. name: "Micro",
  4224. height: math.unit(2, "inches")
  4225. },
  4226. {
  4227. name: "Normal",
  4228. height: math.unit(6.3, "feet")
  4229. },
  4230. {
  4231. name: "Macro",
  4232. height: math.unit(850, "feet")
  4233. },
  4234. {
  4235. name: "Megamacro",
  4236. height: math.unit(7500, "feet"),
  4237. default: true
  4238. },
  4239. {
  4240. name: "Gigamacro",
  4241. height: math.unit(570000, "miles")
  4242. }
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4247. {
  4248. front: {
  4249. height: math.unit(6, "feet"),
  4250. weight: math.unit(210, "lbs"),
  4251. name: "Front",
  4252. image: {
  4253. source: "./media/characters/rain-fallen/front.svg"
  4254. }
  4255. },
  4256. side: {
  4257. height: math.unit(6, "feet"),
  4258. weight: math.unit(210, "lbs"),
  4259. name: "Side",
  4260. image: {
  4261. source: "./media/characters/rain-fallen/side.svg"
  4262. }
  4263. },
  4264. back: {
  4265. height: math.unit(6, "feet"),
  4266. weight: math.unit(210, "lbs"),
  4267. name: "Back",
  4268. image: {
  4269. source: "./media/characters/rain-fallen/back.svg"
  4270. }
  4271. },
  4272. feral: {
  4273. height: math.unit(9, "feet"),
  4274. weight: math.unit(700, "lbs"),
  4275. name: "Feral",
  4276. image: {
  4277. source: "./media/characters/rain-fallen/feral.svg"
  4278. }
  4279. },
  4280. },
  4281. [
  4282. {
  4283. name: "Normal",
  4284. height: math.unit(5, "meter")
  4285. },
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(150, "meter"),
  4289. default: true
  4290. },
  4291. {
  4292. name: "Megamacro",
  4293. height: math.unit(278e6, "meter")
  4294. },
  4295. {
  4296. name: "Gigamacro",
  4297. height: math.unit(2e9, "meter")
  4298. },
  4299. {
  4300. name: "Teramacro",
  4301. height: math.unit(8e12, "meter")
  4302. },
  4303. {
  4304. name: "Devourer",
  4305. height: math.unit(14, "zettameters")
  4306. },
  4307. {
  4308. name: "Scarlet King",
  4309. height: math.unit(18, "yottameters")
  4310. },
  4311. {
  4312. name: "Void",
  4313. height: math.unit(6.66e66, "yottameters")
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4319. {
  4320. standing: {
  4321. height: math.unit(6, "feet"),
  4322. weight: math.unit(180, "lbs"),
  4323. name: "Standing",
  4324. image: {
  4325. source: "./media/characters/zaakira/standing.svg"
  4326. }
  4327. },
  4328. laying: {
  4329. height: math.unit(3, "feet"),
  4330. weight: math.unit(180, "lbs"),
  4331. name: "Laying",
  4332. image: {
  4333. source: "./media/characters/zaakira/laying.svg"
  4334. }
  4335. },
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(12, "feet")
  4341. },
  4342. {
  4343. name: "Macro",
  4344. height: math.unit(279, "feet"),
  4345. default: true
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4351. {
  4352. femSfw: {
  4353. height: math.unit(8, "feet"),
  4354. weight: math.unit(350, "lb"),
  4355. name: "Fem",
  4356. image: {
  4357. source: "./media/characters/sigvald/fem-sfw.svg",
  4358. extra: 182 / 164,
  4359. bottom: 8.7 / 190.5
  4360. }
  4361. },
  4362. femNsfw: {
  4363. height: math.unit(8, "feet"),
  4364. weight: math.unit(350, "lb"),
  4365. name: "Fem (NSFW)",
  4366. image: {
  4367. source: "./media/characters/sigvald/fem-nsfw.svg",
  4368. extra: 182 / 164,
  4369. bottom: 8.7 / 190.5
  4370. }
  4371. },
  4372. maleNsfw: {
  4373. height: math.unit(8, "feet"),
  4374. weight: math.unit(350, "lb"),
  4375. name: "Male (NSFW)",
  4376. image: {
  4377. source: "./media/characters/sigvald/male-nsfw.svg",
  4378. extra: 182 / 164,
  4379. bottom: 8.7 / 190.5
  4380. }
  4381. },
  4382. hermNsfw: {
  4383. height: math.unit(8, "feet"),
  4384. weight: math.unit(350, "lb"),
  4385. name: "Herm (NSFW)",
  4386. image: {
  4387. source: "./media/characters/sigvald/herm-nsfw.svg",
  4388. extra: 182 / 164,
  4389. bottom: 8.7 / 190.5
  4390. }
  4391. },
  4392. dick: {
  4393. height: math.unit(2.36, "feet"),
  4394. name: "Dick",
  4395. image: {
  4396. source: "./media/characters/sigvald/dick.svg"
  4397. }
  4398. },
  4399. eye: {
  4400. height: math.unit(0.31, "feet"),
  4401. name: "Eye",
  4402. image: {
  4403. source: "./media/characters/sigvald/eye.svg"
  4404. }
  4405. },
  4406. mouth: {
  4407. height: math.unit(0.92, "feet"),
  4408. name: "Mouth",
  4409. image: {
  4410. source: "./media/characters/sigvald/mouth.svg"
  4411. }
  4412. },
  4413. paws: {
  4414. height: math.unit(2.2, "feet"),
  4415. name: "Paws",
  4416. image: {
  4417. source: "./media/characters/sigvald/paws.svg"
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Normal",
  4424. height: math.unit(8, "feet")
  4425. },
  4426. {
  4427. name: "Large",
  4428. height: math.unit(12, "feet")
  4429. },
  4430. {
  4431. name: "Larger",
  4432. height: math.unit(20, "feet")
  4433. },
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(150, "feet")
  4437. },
  4438. {
  4439. name: "Macro+",
  4440. height: math.unit(200, "feet"),
  4441. default: true
  4442. },
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4447. {
  4448. side: {
  4449. height: math.unit(12, "feet"),
  4450. weight: math.unit(2000, "kg"),
  4451. name: "Side",
  4452. image: {
  4453. source: "./media/characters/scott/side.svg",
  4454. extra: 754 / 724,
  4455. bottom: 0.069
  4456. }
  4457. },
  4458. upright: {
  4459. height: math.unit(12, "feet"),
  4460. weight: math.unit(2000, "kg"),
  4461. name: "Upright",
  4462. image: {
  4463. source: "./media/characters/scott/upright.svg",
  4464. extra: 3881 / 3722,
  4465. bottom: 0.05
  4466. }
  4467. },
  4468. },
  4469. [
  4470. {
  4471. name: "Normal",
  4472. height: math.unit(12, "feet"),
  4473. default: true
  4474. },
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4479. {
  4480. side: {
  4481. height: math.unit(8, "meters"),
  4482. weight: math.unit(84755, "lbs"),
  4483. name: "Side",
  4484. image: {
  4485. source: "./media/characters/tobias/side.svg",
  4486. extra: 1474 / 1096,
  4487. bottom: 38.9 / 1513.1235
  4488. }
  4489. },
  4490. },
  4491. [
  4492. {
  4493. name: "Normal",
  4494. height: math.unit(8, "meters"),
  4495. default: true
  4496. },
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4501. {
  4502. front: {
  4503. height: math.unit(5.5, "feet"),
  4504. weight: math.unit(400, "lbs"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/kieran/front.svg",
  4508. extra: 2694 / 2364,
  4509. bottom: 217 / 2908
  4510. }
  4511. },
  4512. side: {
  4513. height: math.unit(5.5, "feet"),
  4514. weight: math.unit(400, "lbs"),
  4515. name: "Side",
  4516. image: {
  4517. source: "./media/characters/kieran/side.svg",
  4518. extra: 875 / 777,
  4519. bottom: 84.6 / 959
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(5.5, "feet"),
  4527. default: true
  4528. },
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4533. {
  4534. side: {
  4535. height: math.unit(2, "meters"),
  4536. weight: math.unit(70, "kg"),
  4537. name: "Side",
  4538. image: {
  4539. source: "./media/characters/sanya/side.svg",
  4540. bottom: 0.02,
  4541. extra: 1.02
  4542. }
  4543. },
  4544. },
  4545. [
  4546. {
  4547. name: "Small",
  4548. height: math.unit(2, "meters")
  4549. },
  4550. {
  4551. name: "Normal",
  4552. height: math.unit(3, "meters")
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(16, "meters"),
  4557. default: true
  4558. },
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4563. {
  4564. front: {
  4565. height: math.unit(2, "meters"),
  4566. weight: math.unit(120, "kg"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/miranda/front.svg",
  4570. extra: 195 / 185,
  4571. bottom: 10.9 / 206.5
  4572. }
  4573. },
  4574. back: {
  4575. height: math.unit(2, "meters"),
  4576. weight: math.unit(120, "kg"),
  4577. name: "Back",
  4578. image: {
  4579. source: "./media/characters/miranda/back.svg",
  4580. extra: 201 / 193,
  4581. bottom: 2.3 / 203.7
  4582. }
  4583. },
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(10, "feet"),
  4589. default: true
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "James", species: ["deer"], tags: ["anthro"] },
  4595. {
  4596. side: {
  4597. height: math.unit(2, "meters"),
  4598. weight: math.unit(100, "kg"),
  4599. name: "Front",
  4600. image: {
  4601. source: "./media/characters/james/front.svg",
  4602. extra: 10 / 8.5
  4603. }
  4604. },
  4605. },
  4606. [
  4607. {
  4608. name: "Normal",
  4609. height: math.unit(8.5, "feet"),
  4610. default: true
  4611. }
  4612. ]
  4613. ))
  4614. characterMakers.push(() => makeCharacter(
  4615. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4616. {
  4617. side: {
  4618. height: math.unit(9.5, "feet"),
  4619. weight: math.unit(2500, "lbs"),
  4620. name: "Side",
  4621. image: {
  4622. source: "./media/characters/heather/side.svg"
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(9.5, "feet"),
  4630. default: true
  4631. }
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4636. {
  4637. side: {
  4638. height: math.unit(6.5, "feet"),
  4639. weight: math.unit(400, "lbs"),
  4640. name: "Side",
  4641. image: {
  4642. source: "./media/characters/lukas/side.svg",
  4643. extra: 7.25 / 6.5
  4644. }
  4645. },
  4646. },
  4647. [
  4648. {
  4649. name: "Normal",
  4650. height: math.unit(6.5, "feet"),
  4651. default: true
  4652. }
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4657. {
  4658. side: {
  4659. height: math.unit(5, "feet"),
  4660. weight: math.unit(3000, "lbs"),
  4661. name: "Side",
  4662. image: {
  4663. source: "./media/characters/louise/side.svg"
  4664. }
  4665. },
  4666. },
  4667. [
  4668. {
  4669. name: "Normal",
  4670. height: math.unit(5, "feet"),
  4671. default: true
  4672. }
  4673. ]
  4674. ))
  4675. characterMakers.push(() => makeCharacter(
  4676. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4677. {
  4678. side: {
  4679. height: math.unit(6, "feet"),
  4680. weight: math.unit(150, "lbs"),
  4681. name: "Side",
  4682. image: {
  4683. source: "./media/characters/ramona/side.svg"
  4684. }
  4685. },
  4686. },
  4687. [
  4688. {
  4689. name: "Normal",
  4690. height: math.unit(5.3, "meters"),
  4691. default: true
  4692. },
  4693. {
  4694. name: "Macro",
  4695. height: math.unit(20, "stories")
  4696. },
  4697. {
  4698. name: "Macro+",
  4699. height: math.unit(50, "stories")
  4700. },
  4701. ]
  4702. ))
  4703. characterMakers.push(() => makeCharacter(
  4704. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4705. {
  4706. standing: {
  4707. height: math.unit(5.75, "feet"),
  4708. weight: math.unit(160, "lbs"),
  4709. name: "Standing",
  4710. image: {
  4711. source: "./media/characters/deerpuff/standing.svg",
  4712. extra: 682 / 624
  4713. }
  4714. },
  4715. sitting: {
  4716. height: math.unit(5.75 / 1.79, "feet"),
  4717. weight: math.unit(160, "lbs"),
  4718. name: "Sitting",
  4719. image: {
  4720. source: "./media/characters/deerpuff/sitting.svg",
  4721. bottom: 44 / 400,
  4722. extra: 1
  4723. }
  4724. },
  4725. taurLaying: {
  4726. height: math.unit(6, "feet"),
  4727. weight: math.unit(400, "lbs"),
  4728. name: "Taur (Laying)",
  4729. image: {
  4730. source: "./media/characters/deerpuff/taur-laying.svg"
  4731. }
  4732. },
  4733. },
  4734. [
  4735. {
  4736. name: "Puffball",
  4737. height: math.unit(6, "inches")
  4738. },
  4739. {
  4740. name: "Normalpuff",
  4741. height: math.unit(5.75, "feet")
  4742. },
  4743. {
  4744. name: "Macropuff",
  4745. height: math.unit(1500, "feet"),
  4746. default: true
  4747. },
  4748. {
  4749. name: "Megapuff",
  4750. height: math.unit(500, "miles")
  4751. },
  4752. {
  4753. name: "Gigapuff",
  4754. height: math.unit(250000, "miles")
  4755. },
  4756. {
  4757. name: "Omegapuff",
  4758. height: math.unit(1000, "lightyears")
  4759. },
  4760. ]
  4761. ))
  4762. characterMakers.push(() => makeCharacter(
  4763. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4764. {
  4765. stomping: {
  4766. height: math.unit(6, "feet"),
  4767. weight: math.unit(170, "lbs"),
  4768. name: "Stomping",
  4769. image: {
  4770. source: "./media/characters/vivian/stomping.svg"
  4771. }
  4772. },
  4773. sitting: {
  4774. height: math.unit(6 / 1.75, "feet"),
  4775. weight: math.unit(170, "lbs"),
  4776. name: "Sitting",
  4777. image: {
  4778. source: "./media/characters/vivian/sitting.svg",
  4779. bottom: 1 / 6.4,
  4780. extra: 1,
  4781. }
  4782. },
  4783. },
  4784. [
  4785. {
  4786. name: "Normal",
  4787. height: math.unit(7, "feet"),
  4788. default: true
  4789. },
  4790. {
  4791. name: "Macro",
  4792. height: math.unit(10, "stories")
  4793. },
  4794. {
  4795. name: "Macro+",
  4796. height: math.unit(30, "stories")
  4797. },
  4798. {
  4799. name: "Megamacro",
  4800. height: math.unit(10, "miles")
  4801. },
  4802. {
  4803. name: "Megamacro+",
  4804. height: math.unit(2750000, "meters")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(160, "lbs"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/prince/front.svg",
  4817. extra: 3400 / 3000
  4818. }
  4819. },
  4820. jumping: {
  4821. height: math.unit(6, "feet"),
  4822. weight: math.unit(160, "lbs"),
  4823. name: "Jumping",
  4824. image: {
  4825. source: "./media/characters/prince/jump.svg",
  4826. extra: 2555 / 2134
  4827. }
  4828. },
  4829. },
  4830. [
  4831. {
  4832. name: "Normal",
  4833. height: math.unit(7.75, "feet"),
  4834. default: true
  4835. },
  4836. {
  4837. name: "Not cute",
  4838. height: math.unit(17, "feet")
  4839. },
  4840. {
  4841. name: "I said NOT",
  4842. height: math.unit(91, "feet")
  4843. },
  4844. {
  4845. name: "Please stop",
  4846. height: math.unit(560, "feet")
  4847. },
  4848. {
  4849. name: "What have you done",
  4850. height: math.unit(2200, "feet")
  4851. },
  4852. {
  4853. name: "Deer God",
  4854. height: math.unit(3.6, "miles")
  4855. },
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4860. {
  4861. standing: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(300, "lbs"),
  4864. name: "Standing",
  4865. image: {
  4866. source: "./media/characters/psymon/standing.svg",
  4867. extra: 1888 / 1810,
  4868. bottom: 0.05
  4869. }
  4870. },
  4871. slithering: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(300, "lbs"),
  4874. name: "Slithering",
  4875. image: {
  4876. source: "./media/characters/psymon/slithering.svg",
  4877. extra: 1330 / 1224
  4878. }
  4879. },
  4880. slitheringAlt: {
  4881. height: math.unit(6, "feet"),
  4882. weight: math.unit(300, "lbs"),
  4883. name: "Slithering (Alt)",
  4884. image: {
  4885. source: "./media/characters/psymon/slithering-alt.svg",
  4886. extra: 1330 / 1224
  4887. }
  4888. },
  4889. },
  4890. [
  4891. {
  4892. name: "Normal",
  4893. height: math.unit(11.25, "feet"),
  4894. default: true
  4895. },
  4896. {
  4897. name: "Large",
  4898. height: math.unit(27, "feet")
  4899. },
  4900. {
  4901. name: "Giant",
  4902. height: math.unit(87, "feet")
  4903. },
  4904. {
  4905. name: "Macro",
  4906. height: math.unit(365, "feet")
  4907. },
  4908. {
  4909. name: "Megamacro",
  4910. height: math.unit(3, "miles")
  4911. },
  4912. {
  4913. name: "World Serpent",
  4914. height: math.unit(8000, "miles")
  4915. },
  4916. ]
  4917. ))
  4918. characterMakers.push(() => makeCharacter(
  4919. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4920. {
  4921. front: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(180, "lbs"),
  4924. name: "Front",
  4925. image: {
  4926. source: "./media/characters/daimos/front.svg",
  4927. extra: 4160 / 3897,
  4928. bottom: 0.021
  4929. }
  4930. }
  4931. },
  4932. [
  4933. {
  4934. name: "Normal",
  4935. height: math.unit(8, "feet"),
  4936. default: true
  4937. },
  4938. {
  4939. name: "Big Dog",
  4940. height: math.unit(22, "feet")
  4941. },
  4942. {
  4943. name: "Macro",
  4944. height: math.unit(127, "feet")
  4945. },
  4946. {
  4947. name: "Megamacro",
  4948. height: math.unit(3600, "feet")
  4949. },
  4950. ]
  4951. ))
  4952. characterMakers.push(() => makeCharacter(
  4953. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4954. {
  4955. side: {
  4956. height: math.unit(6, "feet"),
  4957. weight: math.unit(180, "lbs"),
  4958. name: "Side",
  4959. image: {
  4960. source: "./media/characters/blake/side.svg",
  4961. extra: 1212 / 1120,
  4962. bottom: 0.05
  4963. }
  4964. },
  4965. crouched: {
  4966. height: math.unit(6 * 0.57, "feet"),
  4967. weight: math.unit(180, "lbs"),
  4968. name: "Crouched",
  4969. image: {
  4970. source: "./media/characters/blake/crouched.svg",
  4971. extra: 840 / 587,
  4972. bottom: 0.04
  4973. }
  4974. },
  4975. bent: {
  4976. height: math.unit(6 * 0.75, "feet"),
  4977. weight: math.unit(180, "lbs"),
  4978. name: "Bent",
  4979. image: {
  4980. source: "./media/characters/blake/bent.svg",
  4981. extra: 592 / 544,
  4982. bottom: 0.035
  4983. }
  4984. },
  4985. },
  4986. [
  4987. {
  4988. name: "Normal",
  4989. height: math.unit(8 + 1 / 6, "feet"),
  4990. default: true
  4991. },
  4992. {
  4993. name: "Big Backside",
  4994. height: math.unit(37, "feet")
  4995. },
  4996. {
  4997. name: "Subway Shredder",
  4998. height: math.unit(72, "feet")
  4999. },
  5000. {
  5001. name: "City Carver",
  5002. height: math.unit(1675, "feet")
  5003. },
  5004. {
  5005. name: "Tectonic Tweaker",
  5006. height: math.unit(2300, "miles")
  5007. },
  5008. ]
  5009. ))
  5010. characterMakers.push(() => makeCharacter(
  5011. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5012. {
  5013. front: {
  5014. height: math.unit(6, "feet"),
  5015. weight: math.unit(180, "lbs"),
  5016. name: "Front",
  5017. image: {
  5018. source: "./media/characters/guisetto/front.svg",
  5019. extra: 856 / 817,
  5020. bottom: 0.06
  5021. }
  5022. },
  5023. airborne: {
  5024. height: math.unit(6, "feet"),
  5025. weight: math.unit(180, "lbs"),
  5026. name: "Airborne",
  5027. image: {
  5028. source: "./media/characters/guisetto/airborne.svg",
  5029. extra: 584 / 525
  5030. }
  5031. },
  5032. },
  5033. [
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(10 + 11 / 12, "feet"),
  5037. default: true
  5038. },
  5039. {
  5040. name: "Large",
  5041. height: math.unit(35, "feet")
  5042. },
  5043. {
  5044. name: "Macro",
  5045. height: math.unit(475, "feet")
  5046. },
  5047. ]
  5048. ))
  5049. characterMakers.push(() => makeCharacter(
  5050. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5051. {
  5052. front: {
  5053. height: math.unit(6, "feet"),
  5054. weight: math.unit(180, "lbs"),
  5055. name: "Front",
  5056. image: {
  5057. source: "./media/characters/luxor/front.svg",
  5058. extra: 2940 / 2152
  5059. }
  5060. },
  5061. back: {
  5062. height: math.unit(6, "feet"),
  5063. weight: math.unit(180, "lbs"),
  5064. name: "Back",
  5065. image: {
  5066. source: "./media/characters/luxor/back.svg",
  5067. extra: 1083 / 960
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(5 + 5 / 6, "feet"),
  5075. default: true
  5076. },
  5077. {
  5078. name: "Lamp",
  5079. height: math.unit(50, "feet")
  5080. },
  5081. {
  5082. name: "Lämp",
  5083. height: math.unit(300, "feet")
  5084. },
  5085. {
  5086. name: "The sun is a lamp",
  5087. height: math.unit(250000, "miles")
  5088. },
  5089. ]
  5090. ))
  5091. characterMakers.push(() => makeCharacter(
  5092. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5093. {
  5094. front: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(50, "lbs"),
  5097. name: "Front",
  5098. image: {
  5099. source: "./media/characters/huoyan/front.svg"
  5100. }
  5101. },
  5102. side: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(180, "lbs"),
  5105. name: "Side",
  5106. image: {
  5107. source: "./media/characters/huoyan/side.svg"
  5108. }
  5109. },
  5110. },
  5111. [
  5112. {
  5113. name: "Chef",
  5114. height: math.unit(9, "feet")
  5115. },
  5116. {
  5117. name: "Normal",
  5118. height: math.unit(65, "feet"),
  5119. default: true
  5120. },
  5121. {
  5122. name: "Macro",
  5123. height: math.unit(780, "feet")
  5124. },
  5125. {
  5126. name: "Flaming Mountain",
  5127. height: math.unit(4.8, "miles")
  5128. },
  5129. {
  5130. name: "Celestial",
  5131. height: math.unit(765000, "miles")
  5132. },
  5133. ]
  5134. ))
  5135. characterMakers.push(() => makeCharacter(
  5136. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5137. {
  5138. front: {
  5139. height: math.unit(5 + 3 / 4, "feet"),
  5140. weight: math.unit(120, "lbs"),
  5141. name: "Front",
  5142. image: {
  5143. source: "./media/characters/tails/front.svg"
  5144. }
  5145. }
  5146. },
  5147. [
  5148. {
  5149. name: "Normal",
  5150. height: math.unit(5 + 3 / 4, "feet"),
  5151. default: true
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(4, "feet"),
  5160. weight: math.unit(50, "lbs"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/rainy/front.svg"
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Macro",
  5170. height: math.unit(800, "feet"),
  5171. default: true
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5177. {
  5178. front: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(150, "lbs"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/rainier/front.svg"
  5184. }
  5185. }
  5186. },
  5187. [
  5188. {
  5189. name: "Micro",
  5190. height: math.unit(2, "mm"),
  5191. default: true
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5197. {
  5198. front: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(180, "lbs"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/andy/front.svg"
  5204. }
  5205. }
  5206. },
  5207. [
  5208. {
  5209. name: "Normal",
  5210. height: math.unit(8, "feet"),
  5211. default: true
  5212. },
  5213. {
  5214. name: "Macro",
  5215. height: math.unit(1000, "feet")
  5216. },
  5217. {
  5218. name: "Megamacro",
  5219. height: math.unit(5, "miles")
  5220. },
  5221. {
  5222. name: "Gigamacro",
  5223. height: math.unit(5000, "miles")
  5224. },
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5229. {
  5230. front: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(210, "lbs"),
  5233. name: "Front",
  5234. image: {
  5235. source: "./media/characters/cimmaron/front-sfw.svg",
  5236. extra: 701 / 676,
  5237. bottom: 0.046
  5238. }
  5239. },
  5240. back: {
  5241. height: math.unit(6, "feet"),
  5242. weight: math.unit(210, "lbs"),
  5243. name: "Back",
  5244. image: {
  5245. source: "./media/characters/cimmaron/back-sfw.svg",
  5246. extra: 701 / 676,
  5247. bottom: 0.046
  5248. }
  5249. },
  5250. frontNsfw: {
  5251. height: math.unit(6, "feet"),
  5252. weight: math.unit(210, "lbs"),
  5253. name: "Front (NSFW)",
  5254. image: {
  5255. source: "./media/characters/cimmaron/front-nsfw.svg",
  5256. extra: 701 / 676,
  5257. bottom: 0.046
  5258. }
  5259. },
  5260. backNsfw: {
  5261. height: math.unit(6, "feet"),
  5262. weight: math.unit(210, "lbs"),
  5263. name: "Back (NSFW)",
  5264. image: {
  5265. source: "./media/characters/cimmaron/back-nsfw.svg",
  5266. extra: 701 / 676,
  5267. bottom: 0.046
  5268. }
  5269. },
  5270. dick: {
  5271. height: math.unit(1.714, "feet"),
  5272. name: "Dick",
  5273. image: {
  5274. source: "./media/characters/cimmaron/dick.svg"
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(6, "feet"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Macro Mayor",
  5286. height: math.unit(350, "meters")
  5287. },
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5292. {
  5293. front: {
  5294. height: math.unit(6, "feet"),
  5295. weight: math.unit(200, "lbs"),
  5296. name: "Front",
  5297. image: {
  5298. source: "./media/characters/akari/front.svg",
  5299. extra: 962 / 901,
  5300. bottom: 0.04
  5301. }
  5302. }
  5303. },
  5304. [
  5305. {
  5306. name: "Micro",
  5307. height: math.unit(5, "inches"),
  5308. default: true
  5309. },
  5310. {
  5311. name: "Normal",
  5312. height: math.unit(7, "feet")
  5313. },
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5318. {
  5319. front: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(140, "lbs"),
  5322. name: "Front",
  5323. image: {
  5324. source: "./media/characters/cynosura/front.svg",
  5325. extra: 896 / 847
  5326. }
  5327. },
  5328. back: {
  5329. height: math.unit(6, "feet"),
  5330. weight: math.unit(140, "lbs"),
  5331. name: "Back",
  5332. image: {
  5333. source: "./media/characters/cynosura/back.svg",
  5334. extra: 1365 / 1250
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Micro",
  5341. height: math.unit(4, "inches")
  5342. },
  5343. {
  5344. name: "Normal",
  5345. height: math.unit(5.75, "feet"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Tall",
  5350. height: math.unit(10, "feet")
  5351. },
  5352. {
  5353. name: "Big",
  5354. height: math.unit(20, "feet")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(50, "feet")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(170, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/gin/front.svg",
  5371. extra: 1.053,
  5372. bottom: 0.025
  5373. }
  5374. },
  5375. foot: {
  5376. height: math.unit(6 / 4.25, "feet"),
  5377. name: "Foot",
  5378. image: {
  5379. source: "./media/characters/gin/foot.svg"
  5380. }
  5381. },
  5382. sole: {
  5383. height: math.unit(6 / 4.40, "feet"),
  5384. name: "Sole",
  5385. image: {
  5386. source: "./media/characters/gin/sole.svg"
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(13 + 2 / 12, "feet")
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(1500, "feet")
  5398. },
  5399. {
  5400. name: "Megamacro",
  5401. height: math.unit(200, "miles"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Gigamacro",
  5406. height: math.unit(500, "megameters")
  5407. },
  5408. {
  5409. name: "Teramacro",
  5410. height: math.unit(15, "lightyears")
  5411. }
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5416. {
  5417. front: {
  5418. height: math.unit(6 + 1 / 6, "feet"),
  5419. weight: math.unit(178, "lbs"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/guy/front.svg"
  5423. }
  5424. }
  5425. },
  5426. [
  5427. {
  5428. name: "Normal",
  5429. height: math.unit(6 + 1 / 6, "feet"),
  5430. default: true
  5431. },
  5432. {
  5433. name: "Large",
  5434. height: math.unit(25 + 7 / 12, "feet")
  5435. },
  5436. {
  5437. name: "Macro",
  5438. height: math.unit(60 + 9 / 12, "feet")
  5439. },
  5440. {
  5441. name: "Macro+",
  5442. height: math.unit(246, "feet")
  5443. },
  5444. {
  5445. name: "Macro++",
  5446. height: math.unit(878, "feet")
  5447. }
  5448. ]
  5449. ))
  5450. characterMakers.push(() => makeCharacter(
  5451. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5452. {
  5453. front: {
  5454. height: math.unit(9, "feet"),
  5455. weight: math.unit(800, "lbs"),
  5456. name: "Front",
  5457. image: {
  5458. source: "./media/characters/tiberius/front.svg",
  5459. extra: 2295 / 2071
  5460. }
  5461. },
  5462. back: {
  5463. height: math.unit(9, "feet"),
  5464. weight: math.unit(800, "lbs"),
  5465. name: "Back",
  5466. image: {
  5467. source: "./media/characters/tiberius/back.svg",
  5468. extra: 2373 / 2160
  5469. }
  5470. },
  5471. },
  5472. [
  5473. {
  5474. name: "Normal",
  5475. height: math.unit(9, "feet"),
  5476. default: true
  5477. }
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5482. {
  5483. front: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(600, "lbs"),
  5486. name: "Front",
  5487. image: {
  5488. source: "./media/characters/surgo/front.svg",
  5489. extra: 3591 / 2227
  5490. }
  5491. },
  5492. back: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(600, "lbs"),
  5495. name: "Back",
  5496. image: {
  5497. source: "./media/characters/surgo/back.svg",
  5498. extra: 3557 / 2228
  5499. }
  5500. },
  5501. laying: {
  5502. height: math.unit(6 * 0.85, "feet"),
  5503. weight: math.unit(600, "lbs"),
  5504. name: "Laying",
  5505. image: {
  5506. source: "./media/characters/surgo/laying.svg"
  5507. }
  5508. },
  5509. },
  5510. [
  5511. {
  5512. name: "Normal",
  5513. height: math.unit(6, "feet"),
  5514. default: true
  5515. }
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5520. {
  5521. side: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(150, "lbs"),
  5524. name: "Side",
  5525. image: {
  5526. source: "./media/characters/cibus/side.svg",
  5527. extra: 800 / 400
  5528. }
  5529. },
  5530. },
  5531. [
  5532. {
  5533. name: "Normal",
  5534. height: math.unit(6, "feet"),
  5535. default: true
  5536. }
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5541. {
  5542. front: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(240, "lbs"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/nibbles/front.svg"
  5548. }
  5549. },
  5550. side: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(240, "lbs"),
  5553. name: "Side",
  5554. image: {
  5555. source: "./media/characters/nibbles/side.svg"
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(9, "feet"),
  5563. default: true
  5564. }
  5565. ]
  5566. ))
  5567. characterMakers.push(() => makeCharacter(
  5568. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5569. {
  5570. side: {
  5571. height: math.unit(5 + 1 / 6, "feet"),
  5572. weight: math.unit(130, "lbs"),
  5573. name: "Side",
  5574. image: {
  5575. source: "./media/characters/rikky/side.svg",
  5576. extra: 851 / 801
  5577. }
  5578. },
  5579. },
  5580. [
  5581. {
  5582. name: "Normal",
  5583. height: math.unit(5 + 1 / 6, "feet")
  5584. },
  5585. {
  5586. name: "Macro",
  5587. height: math.unit(152, "feet"),
  5588. default: true
  5589. },
  5590. {
  5591. name: "Megamacro",
  5592. height: math.unit(7, "miles")
  5593. }
  5594. ]
  5595. ))
  5596. characterMakers.push(() => makeCharacter(
  5597. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5598. {
  5599. side: {
  5600. height: math.unit(370, "cm"),
  5601. weight: math.unit(350, "lbs"),
  5602. name: "Side",
  5603. image: {
  5604. source: "./media/characters/malfressa/side.svg"
  5605. }
  5606. },
  5607. walking: {
  5608. height: math.unit(370, "cm"),
  5609. weight: math.unit(350, "lbs"),
  5610. name: "Walking",
  5611. image: {
  5612. source: "./media/characters/malfressa/walking.svg"
  5613. }
  5614. },
  5615. feral: {
  5616. height: math.unit(2500, "cm"),
  5617. weight: math.unit(100000, "lbs"),
  5618. name: "Feral",
  5619. image: {
  5620. source: "./media/characters/malfressa/feral.svg",
  5621. extra: 2108 / 837,
  5622. bottom: 0.02
  5623. }
  5624. },
  5625. },
  5626. [
  5627. {
  5628. name: "Normal",
  5629. height: math.unit(370, "cm")
  5630. },
  5631. {
  5632. name: "Macro",
  5633. height: math.unit(300, "meters"),
  5634. default: true
  5635. }
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5640. {
  5641. front: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(60, "kg"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/jaro/front.svg"
  5647. }
  5648. },
  5649. back: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(60, "kg"),
  5652. name: "Back",
  5653. image: {
  5654. source: "./media/characters/jaro/back.svg"
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Micro",
  5661. height: math.unit(7, "inches")
  5662. },
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(5.5, "feet"),
  5666. default: true
  5667. },
  5668. {
  5669. name: "Minimacro",
  5670. height: math.unit(20, "feet")
  5671. },
  5672. {
  5673. name: "Macro",
  5674. height: math.unit(200, "meters")
  5675. }
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(195, "lb"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/rogue/front.svg"
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Macro",
  5693. height: math.unit(90, "feet"),
  5694. default: true
  5695. },
  5696. ]
  5697. ))
  5698. characterMakers.push(() => makeCharacter(
  5699. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5700. {
  5701. front: {
  5702. height: math.unit(5 + 8 / 12, "feet"),
  5703. weight: math.unit(140, "lb"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/piper/front.svg",
  5707. extra: 3928 / 3681
  5708. }
  5709. },
  5710. },
  5711. [
  5712. {
  5713. name: "Micro",
  5714. height: math.unit(2, "inches")
  5715. },
  5716. {
  5717. name: "Normal",
  5718. height: math.unit(5 + 8 / 12, "feet")
  5719. },
  5720. {
  5721. name: "Macro",
  5722. height: math.unit(250, "feet"),
  5723. default: true
  5724. },
  5725. {
  5726. name: "Megamacro",
  5727. height: math.unit(7, "miles")
  5728. },
  5729. ]
  5730. ))
  5731. characterMakers.push(() => makeCharacter(
  5732. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5733. {
  5734. front: {
  5735. height: math.unit(6, "feet"),
  5736. weight: math.unit(220, "lb"),
  5737. name: "Front",
  5738. image: {
  5739. source: "./media/characters/gemini/front.svg"
  5740. }
  5741. },
  5742. back: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(220, "lb"),
  5745. name: "Back",
  5746. image: {
  5747. source: "./media/characters/gemini/back.svg"
  5748. }
  5749. },
  5750. kneeling: {
  5751. height: math.unit(6 / 1.5, "feet"),
  5752. weight: math.unit(220, "lb"),
  5753. name: "Kneeling",
  5754. image: {
  5755. source: "./media/characters/gemini/kneeling.svg",
  5756. bottom: 0.02
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Macro",
  5763. height: math.unit(300, "meters"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Megamacro",
  5768. height: math.unit(6900, "meters")
  5769. },
  5770. ]
  5771. ))
  5772. characterMakers.push(() => makeCharacter(
  5773. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5774. {
  5775. anthro: {
  5776. height: math.unit(2.35, "meters"),
  5777. weight: math.unit(73, "kg"),
  5778. name: "Anthro",
  5779. image: {
  5780. source: "./media/characters/alicia/anthro.svg",
  5781. extra: 2571 / 2385,
  5782. bottom: 75 / 2648
  5783. }
  5784. },
  5785. paw: {
  5786. height: math.unit(1.32, "feet"),
  5787. name: "Paw",
  5788. image: {
  5789. source: "./media/characters/alicia/paw.svg"
  5790. }
  5791. },
  5792. feral: {
  5793. height: math.unit(1.69, "meters"),
  5794. weight: math.unit(73, "kg"),
  5795. name: "Feral",
  5796. image: {
  5797. source: "./media/characters/alicia/feral.svg",
  5798. extra: 2123 / 1715,
  5799. bottom: 222 / 2349
  5800. }
  5801. },
  5802. },
  5803. [
  5804. {
  5805. name: "Normal",
  5806. height: math.unit(2.35, "meters")
  5807. },
  5808. {
  5809. name: "Macro",
  5810. height: math.unit(60, "meters"),
  5811. default: true
  5812. },
  5813. {
  5814. name: "Megamacro",
  5815. height: math.unit(10000, "kilometers")
  5816. },
  5817. ]
  5818. ))
  5819. characterMakers.push(() => makeCharacter(
  5820. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5821. {
  5822. front: {
  5823. height: math.unit(7, "feet"),
  5824. weight: math.unit(250, "lbs"),
  5825. name: "Front",
  5826. image: {
  5827. source: "./media/characters/archy/front.svg"
  5828. }
  5829. }
  5830. },
  5831. [
  5832. {
  5833. name: "Micro",
  5834. height: math.unit(1, "inch")
  5835. },
  5836. {
  5837. name: "Shorty",
  5838. height: math.unit(5, "feet")
  5839. },
  5840. {
  5841. name: "Normal",
  5842. height: math.unit(7, "feet")
  5843. },
  5844. {
  5845. name: "Macro",
  5846. height: math.unit(600, "meters"),
  5847. default: true
  5848. },
  5849. {
  5850. name: "Megamacro",
  5851. height: math.unit(1, "mile")
  5852. },
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5857. {
  5858. front: {
  5859. height: math.unit(1.65, "meters"),
  5860. weight: math.unit(74, "kg"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/berri/front.svg",
  5864. extra: 857 / 837,
  5865. bottom: 18 / 877
  5866. }
  5867. },
  5868. bum: {
  5869. height: math.unit(1.46, "feet"),
  5870. name: "Bum",
  5871. image: {
  5872. source: "./media/characters/berri/bum.svg"
  5873. }
  5874. },
  5875. mouth: {
  5876. height: math.unit(0.44, "feet"),
  5877. name: "Mouth",
  5878. image: {
  5879. source: "./media/characters/berri/mouth.svg"
  5880. }
  5881. },
  5882. paw: {
  5883. height: math.unit(0.826, "feet"),
  5884. name: "Paw",
  5885. image: {
  5886. source: "./media/characters/berri/paw.svg"
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(1.65, "meters")
  5894. },
  5895. {
  5896. name: "Macro",
  5897. height: math.unit(60, "m"),
  5898. default: true
  5899. },
  5900. {
  5901. name: "Megamacro",
  5902. height: math.unit(9.213, "km")
  5903. },
  5904. {
  5905. name: "Planet Eater",
  5906. height: math.unit(489, "megameters")
  5907. },
  5908. {
  5909. name: "Teramacro",
  5910. height: math.unit(2471635000000, "meters")
  5911. },
  5912. {
  5913. name: "Examacro",
  5914. height: math.unit(8.0624e+26, "meters")
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5920. {
  5921. front: {
  5922. height: math.unit(1.72, "meters"),
  5923. weight: math.unit(68, "kg"),
  5924. name: "Front",
  5925. image: {
  5926. source: "./media/characters/lexi/front.svg"
  5927. }
  5928. }
  5929. },
  5930. [
  5931. {
  5932. name: "Very Smol",
  5933. height: math.unit(10, "mm")
  5934. },
  5935. {
  5936. name: "Micro",
  5937. height: math.unit(6.8, "cm"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(1.72, "m")
  5943. }
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5948. {
  5949. front: {
  5950. height: math.unit(1.69, "meters"),
  5951. weight: math.unit(68, "kg"),
  5952. name: "Front",
  5953. image: {
  5954. source: "./media/characters/martin/front.svg",
  5955. extra: 596 / 581
  5956. }
  5957. }
  5958. },
  5959. [
  5960. {
  5961. name: "Micro",
  5962. height: math.unit(6.85, "cm"),
  5963. default: true
  5964. },
  5965. {
  5966. name: "Normal",
  5967. height: math.unit(1.69, "m")
  5968. }
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(1.69, "meters"),
  5976. weight: math.unit(68, "kg"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/juno/front.svg"
  5980. }
  5981. }
  5982. },
  5983. [
  5984. {
  5985. name: "Micro",
  5986. height: math.unit(7, "cm")
  5987. },
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(1.89, "m")
  5991. },
  5992. {
  5993. name: "Macro",
  5994. height: math.unit(353, "meters"),
  5995. default: true
  5996. }
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(1.93, "meters"),
  6004. weight: math.unit(83, "kg"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/samantha/front.svg"
  6008. }
  6009. },
  6010. frontClothed: {
  6011. height: math.unit(1.93, "meters"),
  6012. weight: math.unit(83, "kg"),
  6013. name: "Front (Clothed)",
  6014. image: {
  6015. source: "./media/characters/samantha/front-clothed.svg"
  6016. }
  6017. },
  6018. back: {
  6019. height: math.unit(1.93, "meters"),
  6020. weight: math.unit(83, "kg"),
  6021. name: "Back",
  6022. image: {
  6023. source: "./media/characters/samantha/back.svg"
  6024. }
  6025. },
  6026. },
  6027. [
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(1.93, "m")
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(74, "meters"),
  6035. default: true
  6036. },
  6037. {
  6038. name: "Macro+",
  6039. height: math.unit(223, "meters"),
  6040. },
  6041. {
  6042. name: "Megamacro",
  6043. height: math.unit(8381, "meters"),
  6044. },
  6045. {
  6046. name: "Megamacro+",
  6047. height: math.unit(12000, "kilometers")
  6048. },
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6053. {
  6054. front: {
  6055. height: math.unit(1.92, "meters"),
  6056. weight: math.unit(80, "kg"),
  6057. name: "Front",
  6058. image: {
  6059. source: "./media/characters/dr-clay/front.svg"
  6060. }
  6061. },
  6062. frontClothed: {
  6063. height: math.unit(1.92, "meters"),
  6064. weight: math.unit(80, "kg"),
  6065. name: "Front (Clothed)",
  6066. image: {
  6067. source: "./media/characters/dr-clay/front-clothed.svg"
  6068. }
  6069. }
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(1.92, "m")
  6075. },
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(214, "meters"),
  6079. default: true
  6080. },
  6081. {
  6082. name: "Macro+",
  6083. height: math.unit(12.237, "meters"),
  6084. },
  6085. {
  6086. name: "Megamacro",
  6087. height: math.unit(557, "megameters"),
  6088. },
  6089. {
  6090. name: "Unimaginable",
  6091. height: math.unit(120e9, "lightyears")
  6092. },
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6097. {
  6098. front: {
  6099. height: math.unit(2, "meters"),
  6100. weight: math.unit(80, "kg"),
  6101. name: "Front",
  6102. image: {
  6103. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6104. }
  6105. }
  6106. },
  6107. [
  6108. {
  6109. name: "Teramacro",
  6110. height: math.unit(500000, "lightyears"),
  6111. default: true
  6112. },
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6117. {
  6118. front: {
  6119. height: math.unit(2, "meters"),
  6120. weight: math.unit(150, "kg"),
  6121. name: "Front",
  6122. image: {
  6123. source: "./media/characters/vemus/front.svg",
  6124. extra: 2384 / 2084,
  6125. bottom: 0.0123
  6126. }
  6127. }
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(3.75, "meters"),
  6133. default: true
  6134. },
  6135. {
  6136. name: "Big",
  6137. height: math.unit(8, "meters")
  6138. },
  6139. {
  6140. name: "Macro",
  6141. height: math.unit(100, "meters")
  6142. },
  6143. {
  6144. name: "Macro+",
  6145. height: math.unit(1500, "meters")
  6146. },
  6147. {
  6148. name: "Stellar",
  6149. height: math.unit(14e8, "meters")
  6150. },
  6151. ]
  6152. ))
  6153. characterMakers.push(() => makeCharacter(
  6154. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6155. {
  6156. front: {
  6157. height: math.unit(2, "meters"),
  6158. weight: math.unit(70, "kg"),
  6159. name: "Front",
  6160. image: {
  6161. source: "./media/characters/beherit/front.svg",
  6162. extra: 1408 / 1242
  6163. }
  6164. }
  6165. },
  6166. [
  6167. {
  6168. name: "Normal",
  6169. height: math.unit(6, "feet")
  6170. },
  6171. {
  6172. name: "Lorg",
  6173. height: math.unit(25, "feet"),
  6174. default: true
  6175. },
  6176. {
  6177. name: "Lorger",
  6178. height: math.unit(75, "feet")
  6179. },
  6180. {
  6181. name: "Macro",
  6182. height: math.unit(200, "meters")
  6183. },
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6188. {
  6189. front: {
  6190. height: math.unit(2, "meters"),
  6191. weight: math.unit(150, "kg"),
  6192. name: "Front",
  6193. image: {
  6194. source: "./media/characters/everett/front.svg",
  6195. extra: 2038 / 1737,
  6196. bottom: 0.03
  6197. }
  6198. },
  6199. paw: {
  6200. height: math.unit(2 / 3.6, "meters"),
  6201. name: "Paw",
  6202. image: {
  6203. source: "./media/characters/everett/paw.svg"
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(15, "feet"),
  6211. default: true
  6212. },
  6213. {
  6214. name: "Lorg",
  6215. height: math.unit(70, "feet"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Lorger",
  6220. height: math.unit(250, "feet")
  6221. },
  6222. {
  6223. name: "Macro",
  6224. height: math.unit(500, "meters")
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(2, "meters"),
  6233. weight: math.unit(86, "kg"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/rose/front.svg",
  6237. extra: 350/335,
  6238. bottom: 10/360
  6239. }
  6240. },
  6241. frontAlt: {
  6242. height: math.unit(1.6, "meters"),
  6243. weight: math.unit(86, "kg"),
  6244. name: "Front (Alt)",
  6245. image: {
  6246. source: "./media/characters/rose/front-alt.svg",
  6247. extra: 299/283,
  6248. bottom: 3/302
  6249. }
  6250. },
  6251. plush: {
  6252. height: math.unit(2, "meters"),
  6253. weight: math.unit(86/3, "kg"),
  6254. name: "Plush",
  6255. image: {
  6256. source: "./media/characters/rose/plush.svg",
  6257. extra: 361/337,
  6258. bottom: 11/372
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Mini-Micro",
  6265. height: math.unit(1, "cm")
  6266. },
  6267. {
  6268. name: "Micro",
  6269. height: math.unit(3.5, "inches"),
  6270. default: true
  6271. },
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(6 + 1 / 6, "feet")
  6275. },
  6276. {
  6277. name: "Mini-Macro",
  6278. height: math.unit(9 + 10 / 12, "feet")
  6279. },
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6284. {
  6285. front: {
  6286. height: math.unit(2, "meters"),
  6287. weight: math.unit(350, "lbs"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/regal/front.svg"
  6291. }
  6292. },
  6293. back: {
  6294. height: math.unit(2, "meters"),
  6295. weight: math.unit(350, "lbs"),
  6296. name: "Back",
  6297. image: {
  6298. source: "./media/characters/regal/back.svg"
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Macro",
  6305. height: math.unit(350, "feet"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6312. {
  6313. front: {
  6314. height: math.unit(4 + 11 / 12, "feet"),
  6315. weight: math.unit(100, "lbs"),
  6316. name: "Front",
  6317. image: {
  6318. source: "./media/characters/opal/front.svg"
  6319. }
  6320. },
  6321. frontAlt: {
  6322. height: math.unit(4 + 11 / 12, "feet"),
  6323. weight: math.unit(100, "lbs"),
  6324. name: "Front (Alt)",
  6325. image: {
  6326. source: "./media/characters/opal/front-alt.svg"
  6327. }
  6328. },
  6329. },
  6330. [
  6331. {
  6332. name: "Small",
  6333. height: math.unit(4 + 11 / 12, "feet")
  6334. },
  6335. {
  6336. name: "Normal",
  6337. height: math.unit(20, "feet"),
  6338. default: true
  6339. },
  6340. {
  6341. name: "Macro",
  6342. height: math.unit(120, "feet")
  6343. },
  6344. {
  6345. name: "Megamacro",
  6346. height: math.unit(80, "miles")
  6347. },
  6348. {
  6349. name: "True Size",
  6350. height: math.unit(100000, "lightyears")
  6351. },
  6352. ]
  6353. ))
  6354. characterMakers.push(() => makeCharacter(
  6355. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6356. {
  6357. front: {
  6358. height: math.unit(6, "feet"),
  6359. weight: math.unit(200, "lbs"),
  6360. name: "Front",
  6361. image: {
  6362. source: "./media/characters/vector-wuff/front.svg"
  6363. }
  6364. }
  6365. },
  6366. [
  6367. {
  6368. name: "Normal",
  6369. height: math.unit(2.8, "meters")
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(450, "meters"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Megamacro",
  6378. height: math.unit(15, "kilometers")
  6379. }
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6384. {
  6385. front: {
  6386. height: math.unit(6, "feet"),
  6387. weight: math.unit(256, "lbs"),
  6388. name: "Front",
  6389. image: {
  6390. source: "./media/characters/dannik/front.svg"
  6391. }
  6392. }
  6393. },
  6394. [
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(69.57, "meters"),
  6398. default: true
  6399. },
  6400. ]
  6401. ))
  6402. characterMakers.push(() => makeCharacter(
  6403. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6404. {
  6405. front: {
  6406. height: math.unit(6, "feet"),
  6407. weight: math.unit(120, "lbs"),
  6408. name: "Front",
  6409. image: {
  6410. source: "./media/characters/azura-saharah/front.svg"
  6411. }
  6412. },
  6413. back: {
  6414. height: math.unit(6, "feet"),
  6415. weight: math.unit(120, "lbs"),
  6416. name: "Back",
  6417. image: {
  6418. source: "./media/characters/azura-saharah/back.svg"
  6419. }
  6420. },
  6421. },
  6422. [
  6423. {
  6424. name: "Macro",
  6425. height: math.unit(100, "feet"),
  6426. default: true
  6427. },
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6432. {
  6433. side: {
  6434. height: math.unit(5 + 4 / 12, "feet"),
  6435. weight: math.unit(163, "lbs"),
  6436. name: "Side",
  6437. image: {
  6438. source: "./media/characters/kennedy/side.svg"
  6439. }
  6440. }
  6441. },
  6442. [
  6443. {
  6444. name: "Standard Doggo",
  6445. height: math.unit(5 + 4 / 12, "feet")
  6446. },
  6447. {
  6448. name: "Big Doggo",
  6449. height: math.unit(25 + 3 / 12, "feet"),
  6450. default: true
  6451. },
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6456. {
  6457. front: {
  6458. height: math.unit(6, "feet"),
  6459. weight: math.unit(90, "lbs"),
  6460. name: "Front",
  6461. image: {
  6462. source: "./media/characters/odi-lunar/front.svg"
  6463. }
  6464. }
  6465. },
  6466. [
  6467. {
  6468. name: "Micro",
  6469. height: math.unit(3, "inches"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Normal",
  6474. height: math.unit(5.5, "feet")
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6480. {
  6481. back: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(220, "lbs"),
  6484. name: "Back",
  6485. image: {
  6486. source: "./media/characters/mandake/back.svg"
  6487. }
  6488. }
  6489. },
  6490. [
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(7, "feet"),
  6494. default: true
  6495. },
  6496. {
  6497. name: "Macro",
  6498. height: math.unit(78, "feet")
  6499. },
  6500. {
  6501. name: "Macro+",
  6502. height: math.unit(300, "meters")
  6503. },
  6504. {
  6505. name: "Macro++",
  6506. height: math.unit(2400, "feet")
  6507. },
  6508. {
  6509. name: "Megamacro",
  6510. height: math.unit(5167, "meters")
  6511. },
  6512. {
  6513. name: "Gigamacro",
  6514. height: math.unit(41769, "miles")
  6515. },
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6520. {
  6521. front: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(120, "lbs"),
  6524. name: "Front",
  6525. image: {
  6526. source: "./media/characters/yozey/front.svg"
  6527. }
  6528. },
  6529. frontAlt: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(120, "lbs"),
  6532. name: "Front (Alt)",
  6533. image: {
  6534. source: "./media/characters/yozey/front-alt.svg"
  6535. }
  6536. },
  6537. side: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(120, "lbs"),
  6540. name: "Side",
  6541. image: {
  6542. source: "./media/characters/yozey/side.svg"
  6543. }
  6544. },
  6545. },
  6546. [
  6547. {
  6548. name: "Micro",
  6549. height: math.unit(3, "inches"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Normal",
  6554. height: math.unit(6, "feet")
  6555. }
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(103, "lbs"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/valeska-voss/front.svg"
  6567. }
  6568. }
  6569. },
  6570. [
  6571. {
  6572. name: "Mini-Sized Sub",
  6573. height: math.unit(3.1, "inches")
  6574. },
  6575. {
  6576. name: "Mid-Sized Sub",
  6577. height: math.unit(6.2, "inches")
  6578. },
  6579. {
  6580. name: "Full-Sized Sub",
  6581. height: math.unit(9.3, "inches")
  6582. },
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(5 + 2 / 12, "foot"),
  6586. default: true
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(160, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/gene-zeta/front.svg",
  6599. extra: 3006 / 2826,
  6600. bottom: 182 / 3188
  6601. }
  6602. }
  6603. },
  6604. [
  6605. {
  6606. name: "Micro",
  6607. height: math.unit(6, "inches")
  6608. },
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(5 + 11 / 12, "foot"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Macro",
  6616. height: math.unit(140, "feet")
  6617. },
  6618. {
  6619. name: "Supercharged",
  6620. height: math.unit(2500, "feet")
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6626. {
  6627. front: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(350, "lbs"),
  6630. name: "Front",
  6631. image: {
  6632. source: "./media/characters/razinox/front.svg",
  6633. extra: 1686 / 1548,
  6634. bottom: 28.2 / 1868
  6635. }
  6636. },
  6637. back: {
  6638. height: math.unit(6, "feet"),
  6639. weight: math.unit(350, "lbs"),
  6640. name: "Back",
  6641. image: {
  6642. source: "./media/characters/razinox/back.svg",
  6643. extra: 1660 / 1590,
  6644. bottom: 15 / 1665
  6645. }
  6646. },
  6647. },
  6648. [
  6649. {
  6650. name: "Normal",
  6651. height: math.unit(10 + 8 / 12, "foot")
  6652. },
  6653. {
  6654. name: "Minimacro",
  6655. height: math.unit(15, "foot")
  6656. },
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(60, "foot"),
  6660. default: true
  6661. },
  6662. {
  6663. name: "Megamacro",
  6664. height: math.unit(5, "miles")
  6665. },
  6666. {
  6667. name: "Gigamacro",
  6668. height: math.unit(6000, "miles")
  6669. },
  6670. ]
  6671. ))
  6672. characterMakers.push(() => makeCharacter(
  6673. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6674. {
  6675. front: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(150, "lbs"),
  6678. name: "Front",
  6679. image: {
  6680. source: "./media/characters/cobalt/front.svg"
  6681. }
  6682. }
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(8 + 1 / 12, "foot")
  6688. },
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(111, "foot"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Supracosmic",
  6696. height: math.unit(1e42, "feet")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(140, "lbs"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/amanda/front.svg"
  6709. }
  6710. }
  6711. },
  6712. [
  6713. {
  6714. name: "Micro",
  6715. height: math.unit(5, "inches"),
  6716. default: true
  6717. },
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6722. {
  6723. front: {
  6724. height: math.unit(2.75, "meters"),
  6725. weight: math.unit(1200, "lb"),
  6726. name: "Front",
  6727. image: {
  6728. source: "./media/characters/teal/front.svg",
  6729. extra: 2463 / 2320,
  6730. bottom: 166 / 2629
  6731. }
  6732. },
  6733. back: {
  6734. height: math.unit(2.75, "meters"),
  6735. weight: math.unit(1200, "lb"),
  6736. name: "Back",
  6737. image: {
  6738. source: "./media/characters/teal/back.svg",
  6739. extra: 2580 / 2489,
  6740. bottom: 151 / 2731
  6741. }
  6742. },
  6743. sitting: {
  6744. height: math.unit(1.9, "meters"),
  6745. weight: math.unit(1200, "lb"),
  6746. name: "Sitting",
  6747. image: {
  6748. source: "./media/characters/teal/sitting.svg",
  6749. extra: 623 / 590,
  6750. bottom: 121 / 744
  6751. }
  6752. },
  6753. standing: {
  6754. height: math.unit(2.75, "meters"),
  6755. weight: math.unit(1200, "lb"),
  6756. name: "Standing",
  6757. image: {
  6758. source: "./media/characters/teal/standing.svg",
  6759. extra: 923 / 893,
  6760. bottom: 60 / 983
  6761. }
  6762. },
  6763. stretching: {
  6764. height: math.unit(3.65, "meters"),
  6765. weight: math.unit(1200, "lb"),
  6766. name: "Stretching",
  6767. image: {
  6768. source: "./media/characters/teal/stretching.svg",
  6769. extra: 1276 / 1244,
  6770. bottom: 0 / 1276
  6771. }
  6772. },
  6773. legged: {
  6774. height: math.unit(1.3, "meters"),
  6775. weight: math.unit(100, "lb"),
  6776. name: "Legged",
  6777. image: {
  6778. source: "./media/characters/teal/legged.svg",
  6779. extra: 462 / 437,
  6780. bottom: 24 / 486
  6781. }
  6782. },
  6783. naga: {
  6784. height: math.unit(5.4, "meters"),
  6785. weight: math.unit(4000, "lb"),
  6786. name: "Naga",
  6787. image: {
  6788. source: "./media/characters/teal/naga.svg",
  6789. extra: 1902 / 1858,
  6790. bottom: 0 / 1902
  6791. }
  6792. },
  6793. hand: {
  6794. height: math.unit(0.52, "meters"),
  6795. name: "Hand",
  6796. image: {
  6797. source: "./media/characters/teal/hand.svg"
  6798. }
  6799. },
  6800. maw: {
  6801. height: math.unit(0.43, "meters"),
  6802. name: "Maw",
  6803. image: {
  6804. source: "./media/characters/teal/maw.svg"
  6805. }
  6806. },
  6807. slit: {
  6808. height: math.unit(0.25, "meters"),
  6809. name: "Slit",
  6810. image: {
  6811. source: "./media/characters/teal/slit.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(2.75, "meters"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Macro",
  6823. height: math.unit(300, "feet")
  6824. },
  6825. {
  6826. name: "Macro+",
  6827. height: math.unit(2000, "feet")
  6828. },
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6833. {
  6834. frontCat: {
  6835. height: math.unit(6, "feet"),
  6836. weight: math.unit(180, "lbs"),
  6837. name: "Front (Cat)",
  6838. image: {
  6839. source: "./media/characters/ravin-amulet/front-cat.svg"
  6840. }
  6841. },
  6842. frontCatAlt: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(180, "lbs"),
  6845. name: "Front (Alt, Cat)",
  6846. image: {
  6847. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6848. }
  6849. },
  6850. frontWerewolf: {
  6851. height: math.unit(6 * 1.2, "feet"),
  6852. weight: math.unit(225, "lbs"),
  6853. name: "Front (Werewolf)",
  6854. image: {
  6855. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6856. }
  6857. },
  6858. backWerewolf: {
  6859. height: math.unit(6 * 1.2, "feet"),
  6860. weight: math.unit(225, "lbs"),
  6861. name: "Back (Werewolf)",
  6862. image: {
  6863. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Nano",
  6870. height: math.unit(1, "micrometer")
  6871. },
  6872. {
  6873. name: "Micro",
  6874. height: math.unit(1, "inch")
  6875. },
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(6, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(60, "feet")
  6884. }
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6889. {
  6890. front: {
  6891. height: math.unit(6, "feet"),
  6892. weight: math.unit(165, "lbs"),
  6893. name: "Front",
  6894. image: {
  6895. source: "./media/characters/fluoresce/front.svg"
  6896. }
  6897. }
  6898. },
  6899. [
  6900. {
  6901. name: "Micro",
  6902. height: math.unit(6, "cm")
  6903. },
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(5 + 7 / 12, "feet"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Macro",
  6911. height: math.unit(56, "feet")
  6912. },
  6913. {
  6914. name: "Megamacro",
  6915. height: math.unit(1.9, "miles")
  6916. },
  6917. ]
  6918. ))
  6919. characterMakers.push(() => makeCharacter(
  6920. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6921. {
  6922. front: {
  6923. height: math.unit(9 + 6 / 12, "feet"),
  6924. weight: math.unit(523, "lbs"),
  6925. name: "Side",
  6926. image: {
  6927. source: "./media/characters/aurora/side.svg"
  6928. }
  6929. }
  6930. },
  6931. [
  6932. {
  6933. name: "Normal",
  6934. height: math.unit(9 + 6 / 12, "feet")
  6935. },
  6936. {
  6937. name: "Macro",
  6938. height: math.unit(96, "feet"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Macro+",
  6943. height: math.unit(243, "feet")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(194, "cm"),
  6952. weight: math.unit(90, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/ranek/front.svg"
  6956. }
  6957. },
  6958. side: {
  6959. height: math.unit(194, "cm"),
  6960. weight: math.unit(90, "kg"),
  6961. name: "Side",
  6962. image: {
  6963. source: "./media/characters/ranek/side.svg"
  6964. }
  6965. },
  6966. back: {
  6967. height: math.unit(194, "cm"),
  6968. weight: math.unit(90, "kg"),
  6969. name: "Back",
  6970. image: {
  6971. source: "./media/characters/ranek/back.svg"
  6972. }
  6973. },
  6974. feral: {
  6975. height: math.unit(30, "cm"),
  6976. weight: math.unit(1.6, "lbs"),
  6977. name: "Feral",
  6978. image: {
  6979. source: "./media/characters/ranek/feral.svg"
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Normal",
  6986. height: math.unit(194, "cm"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Macro",
  6991. height: math.unit(100, "meters")
  6992. },
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(5 + 6 / 12, "feet"),
  7000. weight: math.unit(153, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/andrew-cooper/front.svg"
  7004. }
  7005. },
  7006. },
  7007. [
  7008. {
  7009. name: "Nano",
  7010. height: math.unit(1, "mm")
  7011. },
  7012. {
  7013. name: "Micro",
  7014. height: math.unit(2, "inches")
  7015. },
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(5 + 6 / 12, "feet"),
  7019. default: true
  7020. }
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(180, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/akane-sato/front.svg",
  7032. extra: 1219 / 1140
  7033. }
  7034. },
  7035. back: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(180, "lbs"),
  7038. name: "Back",
  7039. image: {
  7040. source: "./media/characters/akane-sato/back.svg",
  7041. extra: 1219 / 1170
  7042. }
  7043. },
  7044. },
  7045. [
  7046. {
  7047. name: "Normal",
  7048. height: math.unit(2.5, "meters")
  7049. },
  7050. {
  7051. name: "Macro",
  7052. height: math.unit(250, "meters"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Megamacro",
  7057. height: math.unit(25, "km")
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(65, "kg"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/rook/front.svg",
  7070. extra: 960 / 950
  7071. }
  7072. }
  7073. },
  7074. [
  7075. {
  7076. name: "Normal",
  7077. height: math.unit(8.8, "feet")
  7078. },
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(88, "feet"),
  7082. default: true
  7083. },
  7084. {
  7085. name: "Megamacro",
  7086. height: math.unit(8, "miles")
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7092. {
  7093. front: {
  7094. height: math.unit(12 + 2 / 12, "feet"),
  7095. weight: math.unit(808, "lbs"),
  7096. name: "Front",
  7097. image: {
  7098. source: "./media/characters/prodigy/front.svg"
  7099. }
  7100. }
  7101. },
  7102. [
  7103. {
  7104. name: "Normal",
  7105. height: math.unit(12 + 2 / 12, "feet"),
  7106. default: true
  7107. },
  7108. {
  7109. name: "Macro",
  7110. height: math.unit(143, "feet")
  7111. },
  7112. {
  7113. name: "Macro+",
  7114. height: math.unit(400, "feet")
  7115. },
  7116. ]
  7117. ))
  7118. characterMakers.push(() => makeCharacter(
  7119. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7120. {
  7121. front: {
  7122. height: math.unit(6, "feet"),
  7123. weight: math.unit(225, "lbs"),
  7124. name: "Front",
  7125. image: {
  7126. source: "./media/characters/daniel/front.svg"
  7127. }
  7128. },
  7129. leaning: {
  7130. height: math.unit(6, "feet"),
  7131. weight: math.unit(225, "lbs"),
  7132. name: "Leaning",
  7133. image: {
  7134. source: "./media/characters/daniel/leaning.svg"
  7135. }
  7136. },
  7137. },
  7138. [
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(1000, "feet"),
  7142. default: true
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(88, "lbs"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/chiros/front.svg",
  7155. extra: 306 / 226
  7156. }
  7157. },
  7158. side: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(88, "lbs"),
  7161. name: "Side",
  7162. image: {
  7163. source: "./media/characters/chiros/side.svg",
  7164. extra: 306 / 226
  7165. }
  7166. },
  7167. },
  7168. [
  7169. {
  7170. name: "Normal",
  7171. height: math.unit(6, "cm"),
  7172. default: true
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7178. {
  7179. front: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(100, "lbs"),
  7182. name: "Front",
  7183. image: {
  7184. source: "./media/characters/selka/front.svg",
  7185. extra: 947 / 887
  7186. }
  7187. }
  7188. },
  7189. [
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(5, "cm"),
  7193. default: true
  7194. },
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7199. {
  7200. front: {
  7201. height: math.unit(8 + 3 / 12, "feet"),
  7202. weight: math.unit(424, "lbs"),
  7203. name: "Front",
  7204. image: {
  7205. source: "./media/characters/verin/front.svg",
  7206. extra: 1845 / 1550
  7207. }
  7208. },
  7209. frontArmored: {
  7210. height: math.unit(8 + 3 / 12, "feet"),
  7211. weight: math.unit(424, "lbs"),
  7212. name: "Front (Armored)",
  7213. image: {
  7214. source: "./media/characters/verin/front-armor.svg",
  7215. extra: 1845 / 1550,
  7216. bottom: 0.01
  7217. }
  7218. },
  7219. back: {
  7220. height: math.unit(8 + 3 / 12, "feet"),
  7221. weight: math.unit(424, "lbs"),
  7222. name: "Back",
  7223. image: {
  7224. source: "./media/characters/verin/back.svg",
  7225. bottom: 0.1,
  7226. extra: 1
  7227. }
  7228. },
  7229. foot: {
  7230. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7231. name: "Foot",
  7232. image: {
  7233. source: "./media/characters/verin/foot.svg"
  7234. }
  7235. },
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(8 + 3 / 12, "feet")
  7241. },
  7242. {
  7243. name: "Minimacro",
  7244. height: math.unit(21, "feet"),
  7245. default: true
  7246. },
  7247. {
  7248. name: "Macro",
  7249. height: math.unit(626, "feet")
  7250. },
  7251. ]
  7252. ))
  7253. characterMakers.push(() => makeCharacter(
  7254. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7255. {
  7256. front: {
  7257. height: math.unit(2.718, "meters"),
  7258. weight: math.unit(150, "lbs"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/sovrim-terraquian/front.svg"
  7262. }
  7263. },
  7264. back: {
  7265. height: math.unit(2.718, "meters"),
  7266. weight: math.unit(150, "lbs"),
  7267. name: "Back",
  7268. image: {
  7269. source: "./media/characters/sovrim-terraquian/back.svg"
  7270. }
  7271. }
  7272. },
  7273. [
  7274. {
  7275. name: "Micro",
  7276. height: math.unit(2, "inches")
  7277. },
  7278. {
  7279. name: "Small",
  7280. height: math.unit(1, "meter")
  7281. },
  7282. {
  7283. name: "Normal",
  7284. height: math.unit(Math.E, "meters"),
  7285. default: true
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(20, "meters")
  7290. },
  7291. {
  7292. name: "Macro+",
  7293. height: math.unit(400, "meters")
  7294. },
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7299. {
  7300. front: {
  7301. height: math.unit(7, "feet"),
  7302. weight: math.unit(489, "lbs"),
  7303. name: "Front",
  7304. image: {
  7305. source: "./media/characters/reece-silvermane/front.svg",
  7306. bottom: 0.02,
  7307. extra: 1
  7308. }
  7309. },
  7310. },
  7311. [
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(1.5, "miles"),
  7315. default: true
  7316. },
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7321. {
  7322. front: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(78, "kg"),
  7325. name: "Front",
  7326. image: {
  7327. source: "./media/characters/kane/front.svg",
  7328. extra: 978 / 899
  7329. }
  7330. },
  7331. },
  7332. [
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(2.1, "m"),
  7336. },
  7337. {
  7338. name: "Macro",
  7339. height: math.unit(1, "km"),
  7340. default: true
  7341. },
  7342. ]
  7343. ))
  7344. characterMakers.push(() => makeCharacter(
  7345. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7346. {
  7347. front: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(200, "kg"),
  7350. name: "Front",
  7351. image: {
  7352. source: "./media/characters/tegon/front.svg",
  7353. bottom: 0.01,
  7354. extra: 1
  7355. }
  7356. },
  7357. },
  7358. [
  7359. {
  7360. name: "Micro",
  7361. height: math.unit(1, "inch")
  7362. },
  7363. {
  7364. name: "Normal",
  7365. height: math.unit(6 + 3 / 12, "feet"),
  7366. default: true
  7367. },
  7368. {
  7369. name: "Macro",
  7370. height: math.unit(300, "feet")
  7371. },
  7372. {
  7373. name: "Megamacro",
  7374. height: math.unit(69, "miles")
  7375. },
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7380. {
  7381. side: {
  7382. height: math.unit(6, "feet"),
  7383. weight: math.unit(2304, "lbs"),
  7384. name: "Side",
  7385. image: {
  7386. source: "./media/characters/arcturax/side.svg",
  7387. extra: 790 / 376,
  7388. bottom: 0.01
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Micro",
  7395. height: math.unit(2, "inch")
  7396. },
  7397. {
  7398. name: "Normal",
  7399. height: math.unit(6, "feet")
  7400. },
  7401. {
  7402. name: "Macro",
  7403. height: math.unit(39, "feet"),
  7404. default: true
  7405. },
  7406. {
  7407. name: "Megamacro",
  7408. height: math.unit(7, "miles")
  7409. },
  7410. ]
  7411. ))
  7412. characterMakers.push(() => makeCharacter(
  7413. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7414. {
  7415. front: {
  7416. height: math.unit(6, "feet"),
  7417. weight: math.unit(50, "lbs"),
  7418. name: "Front",
  7419. image: {
  7420. source: "./media/characters/sentri/front.svg",
  7421. extra: 1750 / 1570,
  7422. bottom: 0.025
  7423. }
  7424. },
  7425. frontAlt: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(50, "lbs"),
  7428. name: "Front (Alt)",
  7429. image: {
  7430. source: "./media/characters/sentri/front-alt.svg",
  7431. extra: 1750 / 1570,
  7432. bottom: 0.025
  7433. }
  7434. },
  7435. },
  7436. [
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(15, "feet"),
  7440. default: true
  7441. },
  7442. {
  7443. name: "Macro",
  7444. height: math.unit(2500, "feet")
  7445. }
  7446. ]
  7447. ))
  7448. characterMakers.push(() => makeCharacter(
  7449. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7450. {
  7451. front: {
  7452. height: math.unit(5 + 8 / 12, "feet"),
  7453. weight: math.unit(130, "lbs"),
  7454. name: "Front",
  7455. image: {
  7456. source: "./media/characters/corvin/front.svg",
  7457. extra: 1803 / 1629
  7458. }
  7459. },
  7460. frontShirt: {
  7461. height: math.unit(5 + 8 / 12, "feet"),
  7462. weight: math.unit(130, "lbs"),
  7463. name: "Front (Shirt)",
  7464. image: {
  7465. source: "./media/characters/corvin/front-shirt.svg",
  7466. extra: 1803 / 1629
  7467. }
  7468. },
  7469. frontPoncho: {
  7470. height: math.unit(5 + 8 / 12, "feet"),
  7471. weight: math.unit(130, "lbs"),
  7472. name: "Front (Poncho)",
  7473. image: {
  7474. source: "./media/characters/corvin/front-poncho.svg",
  7475. extra: 1803 / 1629
  7476. }
  7477. },
  7478. side: {
  7479. height: math.unit(5 + 8 / 12, "feet"),
  7480. weight: math.unit(130, "lbs"),
  7481. name: "Side",
  7482. image: {
  7483. source: "./media/characters/corvin/side.svg",
  7484. extra: 1012 / 945
  7485. }
  7486. },
  7487. back: {
  7488. height: math.unit(5 + 8 / 12, "feet"),
  7489. weight: math.unit(130, "lbs"),
  7490. name: "Back",
  7491. image: {
  7492. source: "./media/characters/corvin/back.svg",
  7493. extra: 1803 / 1629
  7494. }
  7495. },
  7496. },
  7497. [
  7498. {
  7499. name: "Micro",
  7500. height: math.unit(3, "inches")
  7501. },
  7502. {
  7503. name: "Normal",
  7504. height: math.unit(5 + 8 / 12, "feet")
  7505. },
  7506. {
  7507. name: "Macro",
  7508. height: math.unit(300, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Megamacro",
  7513. height: math.unit(500, "miles")
  7514. }
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7519. {
  7520. front: {
  7521. height: math.unit(6, "feet"),
  7522. weight: math.unit(135, "lbs"),
  7523. name: "Front",
  7524. image: {
  7525. source: "./media/characters/q/front.svg",
  7526. extra: 854 / 752,
  7527. bottom: 0.005
  7528. }
  7529. },
  7530. back: {
  7531. height: math.unit(6, "feet"),
  7532. weight: math.unit(130, "lbs"),
  7533. name: "Back",
  7534. image: {
  7535. source: "./media/characters/q/back.svg",
  7536. extra: 854 / 752
  7537. }
  7538. },
  7539. },
  7540. [
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(90, "feet"),
  7544. default: true
  7545. },
  7546. {
  7547. name: "Extra Macro",
  7548. height: math.unit(300, "feet"),
  7549. },
  7550. {
  7551. name: "BIG WALF",
  7552. height: math.unit(750, "feet"),
  7553. },
  7554. ]
  7555. ))
  7556. characterMakers.push(() => makeCharacter(
  7557. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7558. {
  7559. front: {
  7560. height: math.unit(6, "feet"),
  7561. weight: math.unit(150, "lbs"),
  7562. name: "Front",
  7563. image: {
  7564. source: "./media/characters/carley/front.svg",
  7565. extra: 3927 / 3540,
  7566. bottom: 29.2 / 735
  7567. }
  7568. }
  7569. },
  7570. [
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(6 + 3 / 12, "feet")
  7574. },
  7575. {
  7576. name: "Macro",
  7577. height: math.unit(185, "feet"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Megamacro",
  7582. height: math.unit(8, "miles"),
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(3, "feet"),
  7591. weight: math.unit(28, "lbs"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/citrine/front.svg"
  7595. }
  7596. }
  7597. },
  7598. [
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(3, "feet"),
  7602. default: true
  7603. }
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7608. {
  7609. front: {
  7610. height: math.unit(14, "feet"),
  7611. weight: math.unit(1450, "kg"),
  7612. capacity: math.unit(15, "people"),
  7613. name: "Front",
  7614. image: {
  7615. source: "./media/characters/aura-starwind/front.svg",
  7616. extra: 1455 / 1335
  7617. }
  7618. },
  7619. side: {
  7620. height: math.unit(14, "feet"),
  7621. weight: math.unit(1450, "kg"),
  7622. capacity: math.unit(15, "people"),
  7623. name: "Side",
  7624. image: {
  7625. source: "./media/characters/aura-starwind/side.svg",
  7626. extra: 1654 / 1497
  7627. }
  7628. },
  7629. taur: {
  7630. height: math.unit(18, "feet"),
  7631. weight: math.unit(5500, "kg"),
  7632. capacity: math.unit(50, "people"),
  7633. name: "Taur",
  7634. image: {
  7635. source: "./media/characters/aura-starwind/taur.svg",
  7636. extra: 1760 / 1650
  7637. }
  7638. },
  7639. feral: {
  7640. height: math.unit(46, "feet"),
  7641. weight: math.unit(25000, "kg"),
  7642. capacity: math.unit(120, "people"),
  7643. name: "Feral",
  7644. image: {
  7645. source: "./media/characters/aura-starwind/feral.svg"
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(14, "feet"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(50, "meters")
  7658. },
  7659. {
  7660. name: "Megamacro",
  7661. height: math.unit(5000, "meters")
  7662. },
  7663. {
  7664. name: "Gigamacro",
  7665. height: math.unit(100000, "kilometers")
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7671. {
  7672. front: {
  7673. height: math.unit(2 + 7 / 12, "feet"),
  7674. weight: math.unit(32, "lbs"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/rivet/front.svg",
  7678. extra: 1716 / 1658,
  7679. bottom: 0.03
  7680. }
  7681. },
  7682. foot: {
  7683. height: math.unit(0.551, "feet"),
  7684. name: "Rivet's Foot",
  7685. image: {
  7686. source: "./media/characters/rivet/foot.svg"
  7687. },
  7688. rename: true
  7689. }
  7690. },
  7691. [
  7692. {
  7693. name: "Micro",
  7694. height: math.unit(1.5, "inches"),
  7695. },
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(2 + 7 / 12, "feet"),
  7699. default: true
  7700. },
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(85, "feet")
  7704. },
  7705. {
  7706. name: "Megamacro",
  7707. height: math.unit(2.2, "km")
  7708. }
  7709. ]
  7710. ))
  7711. characterMakers.push(() => makeCharacter(
  7712. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7713. {
  7714. front: {
  7715. height: math.unit(5 + 9 / 12, "feet"),
  7716. weight: math.unit(150, "lbs"),
  7717. name: "Front",
  7718. image: {
  7719. source: "./media/characters/coffee/front.svg",
  7720. extra: 3666 / 3032,
  7721. bottom: 0.04
  7722. }
  7723. },
  7724. foot: {
  7725. height: math.unit(1.29, "feet"),
  7726. name: "Foot",
  7727. image: {
  7728. source: "./media/characters/coffee/foot.svg"
  7729. }
  7730. },
  7731. },
  7732. [
  7733. {
  7734. name: "Micro",
  7735. height: math.unit(2, "inches"),
  7736. },
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(5 + 9 / 12, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(800, "feet")
  7745. },
  7746. {
  7747. name: "Megamacro",
  7748. height: math.unit(25, "miles")
  7749. }
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7754. {
  7755. front: {
  7756. height: math.unit(6, "feet"),
  7757. weight: math.unit(200, "lbs"),
  7758. name: "Front",
  7759. image: {
  7760. source: "./media/characters/chari-gal/front.svg",
  7761. extra: 1568 / 1385,
  7762. bottom: 0.047
  7763. }
  7764. },
  7765. gigantamax: {
  7766. height: math.unit(6 * 16, "feet"),
  7767. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7768. name: "Gigantamax",
  7769. image: {
  7770. source: "./media/characters/chari-gal/gigantamax.svg",
  7771. extra: 1124 / 888,
  7772. bottom: 0.03
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(5 + 7 / 12, "feet")
  7780. },
  7781. {
  7782. name: "Macro",
  7783. height: math.unit(200, "feet"),
  7784. default: true
  7785. }
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(150, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/nova/front.svg",
  7797. extra: 5000 / 4722,
  7798. bottom: 0.02
  7799. }
  7800. }
  7801. },
  7802. [
  7803. {
  7804. name: "Micro-",
  7805. height: math.unit(0.8, "inches")
  7806. },
  7807. {
  7808. name: "Micro",
  7809. height: math.unit(2, "inches"),
  7810. default: true
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7816. {
  7817. front: {
  7818. height: math.unit(3 + 1 / 12, "feet"),
  7819. weight: math.unit(21.7, "lbs"),
  7820. name: "Front",
  7821. image: {
  7822. source: "./media/characters/argent/front.svg",
  7823. extra: 1471 / 1331,
  7824. bottom: 100.8 / 1575.5
  7825. }
  7826. }
  7827. },
  7828. [
  7829. {
  7830. name: "Micro",
  7831. height: math.unit(2, "inches")
  7832. },
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(3 + 1 / 12, "feet"),
  7836. default: true
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(120, "feet")
  7841. },
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7846. {
  7847. lamp: {
  7848. height: math.unit(7 * 1559 / 989, "feet"),
  7849. name: "Magic Lamp",
  7850. image: {
  7851. source: "./media/characters/mira-al-cul/lamp.svg",
  7852. extra: 1617 / 1559
  7853. }
  7854. },
  7855. front: {
  7856. height: math.unit(7, "feet"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/mira-al-cul/front.svg",
  7860. extra: 1044 / 990
  7861. }
  7862. },
  7863. },
  7864. [
  7865. {
  7866. name: "Heavily Restricted",
  7867. height: math.unit(7 * 1559 / 989, "feet")
  7868. },
  7869. {
  7870. name: "Freshly Freed",
  7871. height: math.unit(50 * 1559 / 989, "feet")
  7872. },
  7873. {
  7874. name: "World Encompassing",
  7875. height: math.unit(10000 * 1559 / 989, "miles")
  7876. },
  7877. {
  7878. name: "Galactic",
  7879. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7880. },
  7881. {
  7882. name: "Palmed Universe",
  7883. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Multiversal Matriarch",
  7888. height: math.unit(8.87e10, "yottameters")
  7889. },
  7890. {
  7891. name: "Void Mother",
  7892. height: math.unit(3.14e110, "yottaparsecs")
  7893. },
  7894. {
  7895. name: "Toying with Transcendence",
  7896. height: math.unit(1e307, "meters")
  7897. },
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7902. {
  7903. front: {
  7904. height: math.unit(17 + 1 / 12, "feet"),
  7905. weight: math.unit(476.2 * 5, "lbs"),
  7906. name: "Front",
  7907. image: {
  7908. source: "./media/characters/kuro-shi-uchū/front.svg",
  7909. extra: 2329 / 1835,
  7910. bottom: 0.02
  7911. }
  7912. },
  7913. },
  7914. [
  7915. {
  7916. name: "Micro",
  7917. height: math.unit(2, "inches")
  7918. },
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(12, "meters")
  7922. },
  7923. {
  7924. name: "Planetary",
  7925. height: math.unit(0.00929, "AU"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Universal",
  7930. height: math.unit(20, "gigaparsecs")
  7931. },
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(5 + 2 / 12, "feet"),
  7939. weight: math.unit(120, "lbs"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/katherine/front.svg",
  7943. extra: 2075 / 1969
  7944. }
  7945. },
  7946. dress: {
  7947. height: math.unit(5 + 2 / 12, "feet"),
  7948. weight: math.unit(120, "lbs"),
  7949. name: "Dress",
  7950. image: {
  7951. source: "./media/characters/katherine/dress.svg",
  7952. extra: 2258 / 2064
  7953. }
  7954. },
  7955. },
  7956. [
  7957. {
  7958. name: "Micro",
  7959. height: math.unit(1, "inches"),
  7960. default: true
  7961. },
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(5 + 2 / 12, "feet")
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(100, "meters")
  7969. },
  7970. {
  7971. name: "Megamacro",
  7972. height: math.unit(80, "miles")
  7973. },
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7978. {
  7979. front: {
  7980. height: math.unit(7 + 8 / 12, "feet"),
  7981. weight: math.unit(250, "lbs"),
  7982. name: "Front",
  7983. image: {
  7984. source: "./media/characters/yevis/front.svg",
  7985. extra: 1938 / 1755
  7986. }
  7987. }
  7988. },
  7989. [
  7990. {
  7991. name: "Mortal",
  7992. height: math.unit(7 + 8 / 12, "feet")
  7993. },
  7994. {
  7995. name: "Battle",
  7996. height: math.unit(25 + 11 / 12, "feet")
  7997. },
  7998. {
  7999. name: "Wrath",
  8000. height: math.unit(1654 + 11 / 12, "feet")
  8001. },
  8002. {
  8003. name: "Planet Destroyer",
  8004. height: math.unit(12000, "miles")
  8005. },
  8006. {
  8007. name: "Galaxy Conqueror",
  8008. height: math.unit(1.45, "zettameters"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Universal War",
  8013. height: math.unit(184, "gigaparsecs")
  8014. },
  8015. {
  8016. name: "Eternity War",
  8017. height: math.unit(1.98e55, "yottaparsecs")
  8018. },
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(5 + 8 / 12, "feet"),
  8026. weight: math.unit(63, "kg"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/xavier/front.svg",
  8030. extra: 944 / 883
  8031. }
  8032. },
  8033. frontStretch: {
  8034. height: math.unit(5 + 8 / 12, "feet"),
  8035. weight: math.unit(63, "kg"),
  8036. name: "Stretching",
  8037. image: {
  8038. source: "./media/characters/xavier/front-stretch.svg",
  8039. extra: 962 / 820
  8040. }
  8041. },
  8042. },
  8043. [
  8044. {
  8045. name: "Normal",
  8046. height: math.unit(5 + 8 / 12, "feet")
  8047. },
  8048. {
  8049. name: "Macro",
  8050. height: math.unit(100, "meters"),
  8051. default: true
  8052. },
  8053. {
  8054. name: "McLargeHuge",
  8055. height: math.unit(10, "miles")
  8056. },
  8057. ]
  8058. ))
  8059. characterMakers.push(() => makeCharacter(
  8060. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8061. {
  8062. front: {
  8063. height: math.unit(5 + 5 / 12, "feet"),
  8064. weight: math.unit(150, "lb"),
  8065. name: "Front",
  8066. image: {
  8067. source: "./media/characters/joshii/front.svg",
  8068. extra: 765 / 653,
  8069. bottom: 51 / 816
  8070. }
  8071. },
  8072. foot: {
  8073. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8074. name: "Foot",
  8075. image: {
  8076. source: "./media/characters/joshii/foot.svg"
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Micro",
  8083. height: math.unit(2, "inches"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Normal",
  8088. height: math.unit(5 + 5 / 12, "feet")
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(785, "feet")
  8093. },
  8094. {
  8095. name: "Megamacro",
  8096. height: math.unit(24.5, "miles")
  8097. },
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(150, "lb"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/goddess-elizabeth/front.svg",
  8109. extra: 1800 / 1525,
  8110. bottom: 0.005
  8111. }
  8112. },
  8113. foot: {
  8114. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8115. name: "Foot",
  8116. image: {
  8117. source: "./media/characters/goddess-elizabeth/foot.svg"
  8118. }
  8119. },
  8120. mouth: {
  8121. height: math.unit(6, "feet"),
  8122. name: "Mouth",
  8123. image: {
  8124. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8125. }
  8126. },
  8127. },
  8128. [
  8129. {
  8130. name: "Micro",
  8131. height: math.unit(12, "feet")
  8132. },
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(80, "miles"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(15000, "parsecs")
  8141. },
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8146. {
  8147. front: {
  8148. height: math.unit(5 + 9 / 12, "feet"),
  8149. weight: math.unit(144, "lb"),
  8150. name: "Front",
  8151. image: {
  8152. source: "./media/characters/kara/front.svg"
  8153. }
  8154. },
  8155. feet: {
  8156. height: math.unit(6 / 6.765, "feet"),
  8157. name: "Kara's Feet",
  8158. rename: true,
  8159. image: {
  8160. source: "./media/characters/kara/feet.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(5 + 9 / 12, "feet")
  8168. },
  8169. {
  8170. name: "Macro",
  8171. height: math.unit(174, "feet"),
  8172. default: true
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(18, "feet"),
  8181. weight: math.unit(4050, "lb"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/tyrone/front.svg",
  8185. extra: 2405 / 2270,
  8186. bottom: 182 / 2587
  8187. }
  8188. },
  8189. },
  8190. [
  8191. {
  8192. name: "Normal",
  8193. height: math.unit(18, "feet"),
  8194. default: true
  8195. },
  8196. {
  8197. name: "Macro",
  8198. height: math.unit(300, "feet")
  8199. },
  8200. {
  8201. name: "Megamacro",
  8202. height: math.unit(15, "km")
  8203. },
  8204. {
  8205. name: "Gigamacro",
  8206. height: math.unit(500, "km")
  8207. },
  8208. {
  8209. name: "Teramacro",
  8210. height: math.unit(0.5, "gigameters")
  8211. },
  8212. {
  8213. name: "Omnimacro",
  8214. height: math.unit(1e252, "yottauniverse")
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8220. {
  8221. front: {
  8222. height: math.unit(7 + 8 / 12, "feet"),
  8223. weight: math.unit(120, "lb"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/danny/front.svg",
  8227. extra: 1490 / 1350
  8228. }
  8229. },
  8230. back: {
  8231. height: math.unit(7 + 8 / 12, "feet"),
  8232. weight: math.unit(120, "lb"),
  8233. name: "Back",
  8234. image: {
  8235. source: "./media/characters/danny/back.svg",
  8236. extra: 1490 / 1350
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Normal",
  8243. height: math.unit(7 + 8 / 12, "feet"),
  8244. default: true
  8245. },
  8246. ]
  8247. ))
  8248. characterMakers.push(() => makeCharacter(
  8249. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8250. {
  8251. front: {
  8252. height: math.unit(3.5, "inches"),
  8253. weight: math.unit(19, "grams"),
  8254. name: "Front",
  8255. image: {
  8256. source: "./media/characters/mallow/front.svg",
  8257. extra: 471 / 431
  8258. }
  8259. },
  8260. back: {
  8261. height: math.unit(3.5, "inches"),
  8262. weight: math.unit(19, "grams"),
  8263. name: "Back",
  8264. image: {
  8265. source: "./media/characters/mallow/back.svg",
  8266. extra: 471 / 431
  8267. }
  8268. },
  8269. },
  8270. [
  8271. {
  8272. name: "Normal",
  8273. height: math.unit(3.5, "inches"),
  8274. default: true
  8275. },
  8276. ]
  8277. ))
  8278. characterMakers.push(() => makeCharacter(
  8279. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8280. {
  8281. front: {
  8282. height: math.unit(9, "feet"),
  8283. weight: math.unit(230, "kg"),
  8284. name: "Front",
  8285. image: {
  8286. source: "./media/characters/starry-aqua/front.svg"
  8287. }
  8288. },
  8289. back: {
  8290. height: math.unit(9, "feet"),
  8291. weight: math.unit(230, "kg"),
  8292. name: "Back",
  8293. image: {
  8294. source: "./media/characters/starry-aqua/back.svg"
  8295. }
  8296. },
  8297. hand: {
  8298. height: math.unit(9 * 0.1168, "feet"),
  8299. name: "Hand",
  8300. image: {
  8301. source: "./media/characters/starry-aqua/hand.svg"
  8302. }
  8303. },
  8304. foot: {
  8305. height: math.unit(9 * 0.18, "feet"),
  8306. name: "Foot",
  8307. image: {
  8308. source: "./media/characters/starry-aqua/foot.svg"
  8309. }
  8310. }
  8311. },
  8312. [
  8313. {
  8314. name: "Micro",
  8315. height: math.unit(3, "inches")
  8316. },
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(9, "feet")
  8320. },
  8321. {
  8322. name: "Macro",
  8323. height: math.unit(300, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Megamacro",
  8328. height: math.unit(3200, "feet")
  8329. }
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8334. {
  8335. front: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(230, "lb"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/luka/front.svg",
  8341. extra: 1,
  8342. bottom: 0.025
  8343. }
  8344. },
  8345. },
  8346. [
  8347. {
  8348. name: "Normal",
  8349. height: math.unit(12 + 8 / 12, "feet"),
  8350. default: true
  8351. },
  8352. {
  8353. name: "Minimacro",
  8354. height: math.unit(20, "feet")
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(250, "feet")
  8359. },
  8360. {
  8361. name: "Megamacro",
  8362. height: math.unit(5, "miles")
  8363. },
  8364. {
  8365. name: "Gigamacro",
  8366. height: math.unit(8000, "miles")
  8367. },
  8368. ]
  8369. ))
  8370. characterMakers.push(() => makeCharacter(
  8371. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8372. {
  8373. front: {
  8374. height: math.unit(6, "feet"),
  8375. weight: math.unit(150, "lb"),
  8376. name: "Front",
  8377. image: {
  8378. source: "./media/characters/natalie-nightring/front.svg",
  8379. extra: 1,
  8380. bottom: 0.06
  8381. }
  8382. },
  8383. },
  8384. [
  8385. {
  8386. name: "Uh Oh",
  8387. height: math.unit(0.1, "mm")
  8388. },
  8389. {
  8390. name: "Small",
  8391. height: math.unit(3, "inches")
  8392. },
  8393. {
  8394. name: "Human Scale",
  8395. height: math.unit(6, "feet")
  8396. },
  8397. {
  8398. name: "Librarian",
  8399. height: math.unit(50, "feet"),
  8400. default: true
  8401. },
  8402. {
  8403. name: "Immense",
  8404. height: math.unit(200, "miles")
  8405. },
  8406. ]
  8407. ))
  8408. characterMakers.push(() => makeCharacter(
  8409. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8410. {
  8411. front: {
  8412. height: math.unit(6, "feet"),
  8413. weight: math.unit(180, "lbs"),
  8414. name: "Front",
  8415. image: {
  8416. source: "./media/characters/danni-rosie/front.svg",
  8417. extra: 1260 / 1128,
  8418. bottom: 0.022
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Micro",
  8425. height: math.unit(2, "inches"),
  8426. default: true
  8427. },
  8428. ]
  8429. ))
  8430. characterMakers.push(() => makeCharacter(
  8431. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8432. {
  8433. front: {
  8434. height: math.unit(5 + 9 / 12, "feet"),
  8435. weight: math.unit(220, "lb"),
  8436. name: "Front",
  8437. image: {
  8438. source: "./media/characters/samantha-kruse/front.svg",
  8439. extra: (985 / 935),
  8440. bottom: 0.03
  8441. }
  8442. },
  8443. frontUndressed: {
  8444. height: math.unit(5 + 9 / 12, "feet"),
  8445. weight: math.unit(220, "lb"),
  8446. name: "Front (Undressed)",
  8447. image: {
  8448. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8449. extra: (973 / 923),
  8450. bottom: 0.025
  8451. }
  8452. },
  8453. fat: {
  8454. height: math.unit(5 + 9 / 12, "feet"),
  8455. weight: math.unit(900, "lb"),
  8456. name: "Front (Fat)",
  8457. image: {
  8458. source: "./media/characters/samantha-kruse/fat.svg",
  8459. extra: 2688 / 2561
  8460. }
  8461. },
  8462. },
  8463. [
  8464. {
  8465. name: "Normal",
  8466. height: math.unit(5 + 9 / 12, "feet"),
  8467. default: true
  8468. }
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8473. {
  8474. back: {
  8475. height: math.unit(5 + 4 / 12, "feet"),
  8476. weight: math.unit(4963, "lb"),
  8477. name: "Back",
  8478. image: {
  8479. source: "./media/characters/amelia-rosie/back.svg",
  8480. extra: 1113 / 963,
  8481. bottom: 0.01
  8482. }
  8483. },
  8484. },
  8485. [
  8486. {
  8487. name: "Level 0",
  8488. height: math.unit(5 + 4 / 12, "feet")
  8489. },
  8490. {
  8491. name: "Level 1",
  8492. height: math.unit(164597, "feet"),
  8493. default: true
  8494. },
  8495. {
  8496. name: "Level 2",
  8497. height: math.unit(956243, "miles")
  8498. },
  8499. {
  8500. name: "Level 3",
  8501. height: math.unit(29421709423, "miles")
  8502. },
  8503. {
  8504. name: "Level 4",
  8505. height: math.unit(154, "lightyears")
  8506. },
  8507. {
  8508. name: "Level 5",
  8509. height: math.unit(4738272, "lightyears")
  8510. },
  8511. {
  8512. name: "Level 6",
  8513. height: math.unit(145787152896, "lightyears")
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(5 + 11 / 12, "feet"),
  8522. weight: math.unit(65, "kg"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/rook-kitara/front.svg",
  8526. extra: 1347 / 1274,
  8527. bottom: 0.005
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Totally Unfair",
  8534. height: math.unit(1.8, "mm")
  8535. },
  8536. {
  8537. name: "Lap Rookie",
  8538. height: math.unit(1.4, "feet")
  8539. },
  8540. {
  8541. name: "Normal",
  8542. height: math.unit(5 + 11 / 12, "feet"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "How Did This Happen",
  8547. height: math.unit(80, "miles")
  8548. }
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8553. {
  8554. front: {
  8555. height: math.unit(7, "feet"),
  8556. weight: math.unit(300, "lb"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/pisces/front.svg",
  8560. extra: 2255 / 2115,
  8561. bottom: 0.03
  8562. }
  8563. },
  8564. back: {
  8565. height: math.unit(7, "feet"),
  8566. weight: math.unit(300, "lb"),
  8567. name: "Back",
  8568. image: {
  8569. source: "./media/characters/pisces/back.svg",
  8570. extra: 2146 / 2055,
  8571. bottom: 0.04
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(7, "feet"),
  8579. default: true
  8580. },
  8581. {
  8582. name: "Swimming Pool",
  8583. height: math.unit(12.2, "meters")
  8584. },
  8585. {
  8586. name: "Olympic Swimming Pool",
  8587. height: math.unit(56.3, "meters")
  8588. },
  8589. {
  8590. name: "Lake Superior",
  8591. height: math.unit(93900, "meters")
  8592. },
  8593. {
  8594. name: "Mediterranean Sea",
  8595. height: math.unit(644457, "meters")
  8596. },
  8597. {
  8598. name: "World's Oceans",
  8599. height: math.unit(4567491, "meters")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8605. {
  8606. front: {
  8607. height: math.unit(2.3, "meters"),
  8608. weight: math.unit(120, "kg"),
  8609. name: "Front",
  8610. image: {
  8611. source: "./media/characters/zelas/front.svg"
  8612. }
  8613. },
  8614. side: {
  8615. height: math.unit(2.3, "meters"),
  8616. weight: math.unit(120, "kg"),
  8617. name: "Side",
  8618. image: {
  8619. source: "./media/characters/zelas/side.svg"
  8620. }
  8621. },
  8622. back: {
  8623. height: math.unit(2.3, "meters"),
  8624. weight: math.unit(120, "kg"),
  8625. name: "Back",
  8626. image: {
  8627. source: "./media/characters/zelas/back.svg"
  8628. }
  8629. },
  8630. foot: {
  8631. height: math.unit(1.116, "feet"),
  8632. name: "Foot",
  8633. image: {
  8634. source: "./media/characters/zelas/foot.svg"
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(2.3, "meters")
  8642. },
  8643. {
  8644. name: "Macro",
  8645. height: math.unit(30, "meters"),
  8646. default: true
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(1, "inch"),
  8655. weight: math.unit(0.21, "grams"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/talbot/front.svg",
  8659. extra: 594 / 544
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(1, "inch"),
  8667. default: true
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8673. {
  8674. front: {
  8675. height: math.unit(3 + 3 / 12, "feet"),
  8676. weight: math.unit(51.8, "lb"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/fliss/front.svg",
  8680. extra: 840 / 640
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Teeny Tiny",
  8687. height: math.unit(1, "mm")
  8688. },
  8689. {
  8690. name: "Small",
  8691. height: math.unit(1, "inch"),
  8692. default: true
  8693. },
  8694. {
  8695. name: "Standard Sylveon",
  8696. height: math.unit(3 + 3 / 12, "feet")
  8697. },
  8698. {
  8699. name: "Large Nuisance",
  8700. height: math.unit(33, "feet")
  8701. },
  8702. {
  8703. name: "City Filler",
  8704. height: math.unit(3000, "feet")
  8705. },
  8706. {
  8707. name: "New Horizon",
  8708. height: math.unit(6000, "miles")
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8714. {
  8715. front: {
  8716. height: math.unit(5, "cm"),
  8717. weight: math.unit(1.94, "g"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/fleta/front.svg",
  8721. extra: 835 / 803
  8722. }
  8723. },
  8724. back: {
  8725. height: math.unit(5, "cm"),
  8726. weight: math.unit(1.94, "g"),
  8727. name: "Back",
  8728. image: {
  8729. source: "./media/characters/fleta/back.svg",
  8730. extra: 835 / 803
  8731. }
  8732. },
  8733. },
  8734. [
  8735. {
  8736. name: "Micro",
  8737. height: math.unit(5, "cm"),
  8738. default: true
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(6, "feet"),
  8747. weight: math.unit(225, "lb"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/dominic/front.svg",
  8751. extra: 1770 / 1620,
  8752. bottom: 0.025
  8753. }
  8754. },
  8755. back: {
  8756. height: math.unit(6, "feet"),
  8757. weight: math.unit(225, "lb"),
  8758. name: "Back",
  8759. image: {
  8760. source: "./media/characters/dominic/back.svg",
  8761. extra: 1745 / 1620,
  8762. bottom: 0.065
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Nano",
  8769. height: math.unit(0.1, "mm")
  8770. },
  8771. {
  8772. name: "Micro-",
  8773. height: math.unit(1, "mm")
  8774. },
  8775. {
  8776. name: "Micro",
  8777. height: math.unit(4, "inches")
  8778. },
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(6 + 4 / 12, "feet"),
  8782. default: true
  8783. },
  8784. {
  8785. name: "Macro",
  8786. height: math.unit(115, "feet")
  8787. },
  8788. {
  8789. name: "Macro+",
  8790. height: math.unit(955, "feet")
  8791. },
  8792. {
  8793. name: "Megamacro",
  8794. height: math.unit(8990, "feet")
  8795. },
  8796. {
  8797. name: "Gigmacro",
  8798. height: math.unit(9310, "miles")
  8799. },
  8800. {
  8801. name: "Teramacro",
  8802. height: math.unit(1567005010, "miles")
  8803. },
  8804. {
  8805. name: "Examacro",
  8806. height: math.unit(1425, "parsecs")
  8807. },
  8808. ]
  8809. ))
  8810. characterMakers.push(() => makeCharacter(
  8811. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8812. {
  8813. front: {
  8814. height: math.unit(400, "feet"),
  8815. weight: math.unit(44444444, "lb"),
  8816. name: "Front",
  8817. image: {
  8818. source: "./media/characters/major-colonel/front.svg"
  8819. }
  8820. },
  8821. back: {
  8822. height: math.unit(400, "feet"),
  8823. weight: math.unit(44444444, "lb"),
  8824. name: "Back",
  8825. image: {
  8826. source: "./media/characters/major-colonel/back.svg"
  8827. }
  8828. },
  8829. },
  8830. [
  8831. {
  8832. name: "Macro",
  8833. height: math.unit(400, "feet"),
  8834. default: true
  8835. },
  8836. ]
  8837. ))
  8838. characterMakers.push(() => makeCharacter(
  8839. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8840. {
  8841. catFront: {
  8842. height: math.unit(6, "feet"),
  8843. weight: math.unit(120, "lb"),
  8844. name: "Front (Cat Side)",
  8845. image: {
  8846. source: "./media/characters/axel-lycan/cat-front.svg",
  8847. extra: 430 / 402,
  8848. bottom: 43 / 472.35
  8849. }
  8850. },
  8851. catBack: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(120, "lb"),
  8854. name: "Back (Cat Side)",
  8855. image: {
  8856. source: "./media/characters/axel-lycan/cat-back.svg",
  8857. extra: 447 / 419,
  8858. bottom: 23.3 / 469
  8859. }
  8860. },
  8861. wolfFront: {
  8862. height: math.unit(6, "feet"),
  8863. weight: math.unit(120, "lb"),
  8864. name: "Front (Wolf Side)",
  8865. image: {
  8866. source: "./media/characters/axel-lycan/wolf-front.svg",
  8867. extra: 485 / 456,
  8868. bottom: 19 / 504
  8869. }
  8870. },
  8871. wolfBack: {
  8872. height: math.unit(6, "feet"),
  8873. weight: math.unit(120, "lb"),
  8874. name: "Back (Wolf Side)",
  8875. image: {
  8876. source: "./media/characters/axel-lycan/wolf-back.svg",
  8877. extra: 475 / 438,
  8878. bottom: 39.2 / 514
  8879. }
  8880. },
  8881. },
  8882. [
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(1, "km"),
  8886. default: true
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(5 + 9 / 12, "feet"),
  8895. weight: math.unit(175, "lb"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/vanrel-hyena/front.svg",
  8899. extra: 1086 / 1010,
  8900. bottom: 0.04
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(5 + 9 / 12, "feet"),
  8908. default: true
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(103, "lb"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/abbott-absol/front.svg",
  8921. extra: 2010 / 1842
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Megamicro",
  8928. height: math.unit(0.1, "mm")
  8929. },
  8930. {
  8931. name: "Micro",
  8932. height: math.unit(1, "inch")
  8933. },
  8934. {
  8935. name: "Normal",
  8936. height: math.unit(6, "feet"),
  8937. default: true
  8938. },
  8939. ]
  8940. ))
  8941. characterMakers.push(() => makeCharacter(
  8942. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8943. {
  8944. front: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(264, "lb"),
  8947. name: "Front",
  8948. image: {
  8949. source: "./media/characters/hector/front.svg",
  8950. extra: 2280 / 2130,
  8951. bottom: 0.07
  8952. }
  8953. },
  8954. },
  8955. [
  8956. {
  8957. name: "Normal",
  8958. height: math.unit(12.25, "foot"),
  8959. default: true
  8960. },
  8961. {
  8962. name: "Macro",
  8963. height: math.unit(160, "feet")
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8969. {
  8970. front: {
  8971. height: math.unit(6, "feet"),
  8972. weight: math.unit(150, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/sal/front.svg",
  8976. extra: 1846 / 1699,
  8977. bottom: 0.04
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Megamacro",
  8984. height: math.unit(10, "miles"),
  8985. default: true
  8986. },
  8987. ]
  8988. ))
  8989. characterMakers.push(() => makeCharacter(
  8990. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8991. {
  8992. front: {
  8993. height: math.unit(3, "meters"),
  8994. weight: math.unit(450, "kg"),
  8995. name: "front",
  8996. image: {
  8997. source: "./media/characters/ranger/front.svg",
  8998. extra: 2401 / 2243,
  8999. bottom: 0.05
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(3, "meters"),
  9007. default: true
  9008. },
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9013. {
  9014. front: {
  9015. height: math.unit(14, "feet"),
  9016. weight: math.unit(800, "kg"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/theresa/front.svg",
  9020. extra: 3575 / 3346,
  9021. bottom: 0.03
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Normal",
  9028. height: math.unit(14, "feet"),
  9029. default: true
  9030. },
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9035. {
  9036. front: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(3, "kg"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/ine/front.svg",
  9042. extra: 678 / 539,
  9043. bottom: 0.023
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(2.265, "feet"),
  9051. default: true
  9052. },
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9057. {
  9058. front: {
  9059. height: math.unit(5, "feet"),
  9060. weight: math.unit(30, "kg"),
  9061. name: "Front",
  9062. image: {
  9063. source: "./media/characters/vial/front.svg",
  9064. extra: 1365 / 1277,
  9065. bottom: 0.04
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(5, "feet"),
  9073. default: true
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9079. {
  9080. side: {
  9081. height: math.unit(3.4, "meters"),
  9082. weight: math.unit(1000, "lb"),
  9083. name: "Side",
  9084. image: {
  9085. source: "./media/characters/rovoska/side.svg",
  9086. extra: 4403 / 1515
  9087. }
  9088. },
  9089. },
  9090. [
  9091. {
  9092. name: "Normal",
  9093. height: math.unit(3.4, "meters"),
  9094. default: true
  9095. },
  9096. ]
  9097. ))
  9098. characterMakers.push(() => makeCharacter(
  9099. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9100. {
  9101. front: {
  9102. height: math.unit(8, "feet"),
  9103. weight: math.unit(315, "lb"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/gunner-rotthbauer/front.svg"
  9107. }
  9108. },
  9109. back: {
  9110. height: math.unit(8, "feet"),
  9111. weight: math.unit(315, "lb"),
  9112. name: "Back",
  9113. image: {
  9114. source: "./media/characters/gunner-rotthbauer/back.svg"
  9115. }
  9116. },
  9117. },
  9118. [
  9119. {
  9120. name: "Micro",
  9121. height: math.unit(3.5, "inches")
  9122. },
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(8, "feet"),
  9126. default: true
  9127. },
  9128. {
  9129. name: "Macro",
  9130. height: math.unit(250, "feet")
  9131. },
  9132. {
  9133. name: "Megamacro",
  9134. height: math.unit(1, "AU")
  9135. },
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9140. {
  9141. front: {
  9142. height: math.unit(5 + 5 / 12, "feet"),
  9143. weight: math.unit(140, "lb"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/allatia/front.svg",
  9147. extra: 1227 / 1180,
  9148. bottom: 0.027
  9149. }
  9150. },
  9151. },
  9152. [
  9153. {
  9154. name: "Normal",
  9155. height: math.unit(5 + 5 / 12, "feet")
  9156. },
  9157. {
  9158. name: "Macro",
  9159. height: math.unit(250, "feet"),
  9160. default: true
  9161. },
  9162. {
  9163. name: "Megamacro",
  9164. height: math.unit(8, "miles")
  9165. }
  9166. ]
  9167. ))
  9168. characterMakers.push(() => makeCharacter(
  9169. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9170. {
  9171. front: {
  9172. height: math.unit(6, "feet"),
  9173. weight: math.unit(120, "lb"),
  9174. name: "Front",
  9175. image: {
  9176. source: "./media/characters/tene/front.svg",
  9177. extra: 1728 / 1578,
  9178. bottom: 0.022
  9179. }
  9180. },
  9181. stomping: {
  9182. height: math.unit(2.025, "meters"),
  9183. weight: math.unit(120, "lb"),
  9184. name: "Stomping",
  9185. image: {
  9186. source: "./media/characters/tene/stomping.svg",
  9187. extra: 938 / 873,
  9188. bottom: 0.01
  9189. }
  9190. },
  9191. sitting: {
  9192. height: math.unit(1, "meter"),
  9193. weight: math.unit(120, "lb"),
  9194. name: "Sitting",
  9195. image: {
  9196. source: "./media/characters/tene/sitting.svg",
  9197. extra: 437 / 415,
  9198. bottom: 0.1
  9199. }
  9200. },
  9201. feral: {
  9202. height: math.unit(3.9, "feet"),
  9203. weight: math.unit(250, "lb"),
  9204. name: "Feral",
  9205. image: {
  9206. source: "./media/characters/tene/feral.svg",
  9207. extra: 717 / 458,
  9208. bottom: 0.179
  9209. }
  9210. },
  9211. },
  9212. [
  9213. {
  9214. name: "Normal",
  9215. height: math.unit(6, "feet")
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(300, "feet"),
  9220. default: true
  9221. },
  9222. {
  9223. name: "Megamacro",
  9224. height: math.unit(5, "miles")
  9225. },
  9226. ]
  9227. ))
  9228. characterMakers.push(() => makeCharacter(
  9229. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9230. {
  9231. side: {
  9232. height: math.unit(6, "feet"),
  9233. name: "Side",
  9234. image: {
  9235. source: "./media/characters/evander/side.svg",
  9236. extra: 877 / 477
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Normal",
  9243. height: math.unit(0.83, "meters"),
  9244. default: true
  9245. },
  9246. ]
  9247. ))
  9248. characterMakers.push(() => makeCharacter(
  9249. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9250. {
  9251. front: {
  9252. height: math.unit(12, "feet"),
  9253. weight: math.unit(1000, "lb"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9257. extra: 1762 / 1611
  9258. }
  9259. },
  9260. back: {
  9261. height: math.unit(12, "feet"),
  9262. weight: math.unit(1000, "lb"),
  9263. name: "Back",
  9264. image: {
  9265. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9266. extra: 1762 / 1611
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(12, "feet"),
  9274. default: true
  9275. },
  9276. {
  9277. name: "Kaiju",
  9278. height: math.unit(150, "feet")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(6, "feet"),
  9287. weight: math.unit(150, "lb"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/zero-alurus/front.svg"
  9291. }
  9292. },
  9293. back: {
  9294. height: math.unit(6, "feet"),
  9295. weight: math.unit(150, "lb"),
  9296. name: "Back",
  9297. image: {
  9298. source: "./media/characters/zero-alurus/back.svg"
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(5 + 10 / 12, "feet")
  9306. },
  9307. {
  9308. name: "Macro",
  9309. height: math.unit(60, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro+",
  9314. height: math.unit(450, "feet")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(6, "feet"),
  9323. weight: math.unit(200, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/mega-shi/front.svg",
  9327. extra: 1279 / 1250,
  9328. bottom: 0.02
  9329. }
  9330. },
  9331. back: {
  9332. height: math.unit(6, "feet"),
  9333. weight: math.unit(200, "lb"),
  9334. name: "Back",
  9335. image: {
  9336. source: "./media/characters/mega-shi/back.svg",
  9337. extra: 1279 / 1250,
  9338. bottom: 0.02
  9339. }
  9340. },
  9341. },
  9342. [
  9343. {
  9344. name: "Micro",
  9345. height: math.unit(16 + 6 / 12, "feet")
  9346. },
  9347. {
  9348. name: "Third Dimension",
  9349. height: math.unit(40, "meters")
  9350. },
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(660, "feet"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Megamacro",
  9358. height: math.unit(10, "miles")
  9359. },
  9360. {
  9361. name: "Planetary Launch",
  9362. height: math.unit(500, "miles")
  9363. },
  9364. {
  9365. name: "Interstellar",
  9366. height: math.unit(1e9, "miles")
  9367. },
  9368. {
  9369. name: "Leaving the Universe",
  9370. height: math.unit(1, "gigaparsec")
  9371. },
  9372. {
  9373. name: "Travelling Universes",
  9374. height: math.unit(30e15, "parsecs")
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(150, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/odyssey/front.svg",
  9387. extra: 1782 / 1582,
  9388. bottom: 0.01
  9389. }
  9390. },
  9391. side: {
  9392. height: math.unit(5.7, "feet"),
  9393. weight: math.unit(140, "lb"),
  9394. name: "Side",
  9395. image: {
  9396. source: "./media/characters/odyssey/side.svg",
  9397. extra: 6462 / 5700
  9398. }
  9399. },
  9400. },
  9401. [
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(5 + 4 / 12, "feet")
  9405. },
  9406. {
  9407. name: "Macro",
  9408. height: math.unit(1, "km")
  9409. },
  9410. {
  9411. name: "Megamacro",
  9412. height: math.unit(3000, "km")
  9413. },
  9414. {
  9415. name: "Gigamacro",
  9416. height: math.unit(1, "AU"),
  9417. default: true
  9418. },
  9419. {
  9420. name: "Omniversal",
  9421. height: math.unit(100e14, "lightyears")
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9427. {
  9428. front: {
  9429. height: math.unit(6, "feet"),
  9430. weight: math.unit(300, "lb"),
  9431. name: "Front",
  9432. image: {
  9433. source: "./media/characters/mekuto/front.svg",
  9434. extra: 921 / 832,
  9435. bottom: 0.03
  9436. }
  9437. },
  9438. hand: {
  9439. height: math.unit(6 / 10.24, "feet"),
  9440. name: "Hand",
  9441. image: {
  9442. source: "./media/characters/mekuto/hand.svg"
  9443. }
  9444. },
  9445. foot: {
  9446. height: math.unit(6 / 5.05, "feet"),
  9447. name: "Foot",
  9448. image: {
  9449. source: "./media/characters/mekuto/foot.svg"
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Minimicro",
  9456. height: math.unit(0.2, "inches")
  9457. },
  9458. {
  9459. name: "Micro",
  9460. height: math.unit(1.5, "inches")
  9461. },
  9462. {
  9463. name: "Normal",
  9464. height: math.unit(5 + 11 / 12, "feet"),
  9465. default: true
  9466. },
  9467. {
  9468. name: "Minimacro",
  9469. height: math.unit(17 + 9 / 12, "feet")
  9470. },
  9471. {
  9472. name: "Macro",
  9473. height: math.unit(177.5, "feet")
  9474. },
  9475. {
  9476. name: "Megamacro",
  9477. height: math.unit(152, "miles")
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(6.5, "inches"),
  9486. weight: math.unit(13, "oz"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/dafydd-tomos/front.svg",
  9490. extra: 2990 / 2603,
  9491. bottom: 0.03
  9492. }
  9493. },
  9494. },
  9495. [
  9496. {
  9497. name: "Micro",
  9498. height: math.unit(6.5, "inches"),
  9499. default: true
  9500. },
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(6, "feet"),
  9508. weight: math.unit(150, "lb"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/splinter/front.svg",
  9512. extra: 2990 / 2882,
  9513. bottom: 0.04
  9514. }
  9515. },
  9516. back: {
  9517. height: math.unit(6, "feet"),
  9518. weight: math.unit(150, "lb"),
  9519. name: "Back",
  9520. image: {
  9521. source: "./media/characters/splinter/back.svg",
  9522. extra: 2990 / 2882,
  9523. bottom: 0.04
  9524. }
  9525. },
  9526. },
  9527. [
  9528. {
  9529. name: "Normal",
  9530. height: math.unit(6, "feet")
  9531. },
  9532. {
  9533. name: "Macro",
  9534. height: math.unit(230, "meters"),
  9535. default: true
  9536. },
  9537. ]
  9538. ))
  9539. characterMakers.push(() => makeCharacter(
  9540. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9541. {
  9542. front: {
  9543. height: math.unit(4 + 10 / 12, "feet"),
  9544. weight: math.unit(480, "lb"),
  9545. name: "Front",
  9546. image: {
  9547. source: "./media/characters/snow-gabumon/front.svg",
  9548. extra: 1140 / 963,
  9549. bottom: 0.058
  9550. }
  9551. },
  9552. back: {
  9553. height: math.unit(4 + 10 / 12, "feet"),
  9554. weight: math.unit(480, "lb"),
  9555. name: "Back",
  9556. image: {
  9557. source: "./media/characters/snow-gabumon/back.svg",
  9558. extra: 1115 / 962,
  9559. bottom: 0.041
  9560. }
  9561. },
  9562. frontUndresed: {
  9563. height: math.unit(4 + 10 / 12, "feet"),
  9564. weight: math.unit(480, "lb"),
  9565. name: "Front (Undressed)",
  9566. image: {
  9567. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9568. extra: 1061 / 960,
  9569. bottom: 0.045
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Micro",
  9576. height: math.unit(1, "inch")
  9577. },
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(4 + 10 / 12, "feet"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Macro",
  9585. height: math.unit(200, "feet")
  9586. },
  9587. {
  9588. name: "Megamacro",
  9589. height: math.unit(120, "miles")
  9590. },
  9591. {
  9592. name: "Gigamacro",
  9593. height: math.unit(9800, "miles")
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9599. {
  9600. front: {
  9601. height: math.unit(1.7, "meters"),
  9602. weight: math.unit(140, "lb"),
  9603. name: "Front",
  9604. image: {
  9605. source: "./media/characters/moody/front.svg",
  9606. extra: 3226 / 3007,
  9607. bottom: 0.087
  9608. }
  9609. },
  9610. },
  9611. [
  9612. {
  9613. name: "Micro",
  9614. height: math.unit(1, "mm")
  9615. },
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(1.7, "meters"),
  9619. default: true
  9620. },
  9621. {
  9622. name: "Macro",
  9623. height: math.unit(80, "meters")
  9624. },
  9625. {
  9626. name: "Macro+",
  9627. height: math.unit(500, "meters")
  9628. },
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(6, "feet"),
  9636. weight: math.unit(150, "lb"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/zyas/front.svg",
  9640. extra: 1180 / 1120,
  9641. bottom: 0.045
  9642. }
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(10, "feet"),
  9649. default: true
  9650. },
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(500, "feet")
  9654. },
  9655. {
  9656. name: "Megamacro",
  9657. height: math.unit(5, "miles")
  9658. },
  9659. {
  9660. name: "Teramacro",
  9661. height: math.unit(150000, "miles")
  9662. },
  9663. ]
  9664. ))
  9665. characterMakers.push(() => makeCharacter(
  9666. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9667. {
  9668. front: {
  9669. height: math.unit(6, "feet"),
  9670. weight: math.unit(150, "lb"),
  9671. name: "Front",
  9672. image: {
  9673. source: "./media/characters/cuon/front.svg",
  9674. extra: 1390 / 1320,
  9675. bottom: 0.008
  9676. }
  9677. },
  9678. },
  9679. [
  9680. {
  9681. name: "Micro",
  9682. height: math.unit(3, "inches")
  9683. },
  9684. {
  9685. name: "Normal",
  9686. height: math.unit(18 + 9 / 12, "feet"),
  9687. default: true
  9688. },
  9689. {
  9690. name: "Macro",
  9691. height: math.unit(360, "feet")
  9692. },
  9693. {
  9694. name: "Megamacro",
  9695. height: math.unit(360, "miles")
  9696. },
  9697. ]
  9698. ))
  9699. characterMakers.push(() => makeCharacter(
  9700. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9701. {
  9702. front: {
  9703. height: math.unit(2.4, "meters"),
  9704. weight: math.unit(70, "kg"),
  9705. name: "Front",
  9706. image: {
  9707. source: "./media/characters/nyanuxk/front.svg",
  9708. extra: 1172 / 1084,
  9709. bottom: 0.065
  9710. }
  9711. },
  9712. side: {
  9713. height: math.unit(2.4, "meters"),
  9714. weight: math.unit(70, "kg"),
  9715. name: "Side",
  9716. image: {
  9717. source: "./media/characters/nyanuxk/side.svg",
  9718. extra: 1190 / 1132,
  9719. bottom: 0.007
  9720. }
  9721. },
  9722. back: {
  9723. height: math.unit(2.4, "meters"),
  9724. weight: math.unit(70, "kg"),
  9725. name: "Back",
  9726. image: {
  9727. source: "./media/characters/nyanuxk/back.svg",
  9728. extra: 1200 / 1141,
  9729. bottom: 0.015
  9730. }
  9731. },
  9732. foot: {
  9733. height: math.unit(0.52, "meters"),
  9734. name: "Foot",
  9735. image: {
  9736. source: "./media/characters/nyanuxk/foot.svg"
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Micro",
  9743. height: math.unit(2, "cm")
  9744. },
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(2.4, "meters"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Smaller Macro",
  9752. height: math.unit(120, "meters")
  9753. },
  9754. {
  9755. name: "Bigger Macro",
  9756. height: math.unit(1.2, "km")
  9757. },
  9758. {
  9759. name: "Megamacro",
  9760. height: math.unit(15, "kilometers")
  9761. },
  9762. {
  9763. name: "Gigamacro",
  9764. height: math.unit(2000, "km")
  9765. },
  9766. {
  9767. name: "Teramacro",
  9768. height: math.unit(500000, "km")
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9774. {
  9775. side: {
  9776. height: math.unit(6, "feet"),
  9777. name: "Side",
  9778. image: {
  9779. source: "./media/characters/ailbhe/side.svg",
  9780. extra: 757 / 464,
  9781. bottom: 0.041
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(1.07, "meters"),
  9789. default: true
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(6, "feet"),
  9798. weight: math.unit(120, "kg"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/zevulfius/front.svg",
  9802. extra: 965 / 903
  9803. }
  9804. },
  9805. side: {
  9806. height: math.unit(6, "feet"),
  9807. weight: math.unit(120, "kg"),
  9808. name: "Side",
  9809. image: {
  9810. source: "./media/characters/zevulfius/side.svg",
  9811. extra: 939 / 900
  9812. }
  9813. },
  9814. back: {
  9815. height: math.unit(6, "feet"),
  9816. weight: math.unit(120, "kg"),
  9817. name: "Back",
  9818. image: {
  9819. source: "./media/characters/zevulfius/back.svg",
  9820. extra: 918 / 854,
  9821. bottom: 0.005
  9822. }
  9823. },
  9824. foot: {
  9825. height: math.unit(6 / 3.72, "feet"),
  9826. name: "Foot",
  9827. image: {
  9828. source: "./media/characters/zevulfius/foot.svg"
  9829. }
  9830. },
  9831. },
  9832. [
  9833. {
  9834. name: "Macro",
  9835. height: math.unit(750, "meters")
  9836. },
  9837. {
  9838. name: "Megamacro",
  9839. height: math.unit(20, "km"),
  9840. default: true
  9841. },
  9842. {
  9843. name: "Gigamacro",
  9844. height: math.unit(2000, "km")
  9845. },
  9846. {
  9847. name: "Teramacro",
  9848. height: math.unit(250000, "km")
  9849. },
  9850. ]
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9854. {
  9855. front: {
  9856. height: math.unit(100, "feet"),
  9857. weight: math.unit(350, "kg"),
  9858. name: "Front",
  9859. image: {
  9860. source: "./media/characters/rikes/front.svg",
  9861. extra: 1565 / 1483,
  9862. bottom: 0.017
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Macro",
  9869. height: math.unit(100, "feet"),
  9870. default: true
  9871. },
  9872. ]
  9873. ))
  9874. characterMakers.push(() => makeCharacter(
  9875. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9876. {
  9877. anthro: {
  9878. height: math.unit(8, "feet"),
  9879. weight: math.unit(120, "kg"),
  9880. name: "Anthro",
  9881. image: {
  9882. source: "./media/characters/adam-silver-mane/anthro.svg",
  9883. extra: 5743 / 5339,
  9884. bottom: 0.07
  9885. }
  9886. },
  9887. taur: {
  9888. height: math.unit(16, "feet"),
  9889. weight: math.unit(1500, "kg"),
  9890. name: "Taur",
  9891. image: {
  9892. source: "./media/characters/adam-silver-mane/taur.svg",
  9893. extra: 1713 / 1571,
  9894. bottom: 0.01
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(8, "feet")
  9902. },
  9903. {
  9904. name: "Minimacro",
  9905. height: math.unit(80, "feet")
  9906. },
  9907. {
  9908. name: "Macro",
  9909. height: math.unit(800, "feet"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Megamacro",
  9914. height: math.unit(8000, "feet")
  9915. },
  9916. {
  9917. name: "Gigamacro",
  9918. height: math.unit(800, "miles")
  9919. },
  9920. {
  9921. name: "Teramacro",
  9922. height: math.unit(80000, "miles")
  9923. },
  9924. {
  9925. name: "Celestial",
  9926. height: math.unit(8e6, "miles")
  9927. },
  9928. {
  9929. name: "Star Dragon",
  9930. height: math.unit(800000, "parsecs")
  9931. },
  9932. {
  9933. name: "Godly",
  9934. height: math.unit(800, "teraparsecs")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9940. {
  9941. front: {
  9942. height: math.unit(6, "feet"),
  9943. weight: math.unit(150, "lb"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/ky'owin/front.svg",
  9947. extra: 3888 / 3068,
  9948. bottom: 0.015
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(6 + 8 / 12, "feet")
  9956. },
  9957. {
  9958. name: "Large",
  9959. height: math.unit(68, "feet")
  9960. },
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(132, "feet")
  9964. },
  9965. {
  9966. name: "Macro+",
  9967. height: math.unit(340, "feet")
  9968. },
  9969. {
  9970. name: "Macro++",
  9971. height: math.unit(680, "feet"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Megamacro",
  9976. height: math.unit(1, "mile")
  9977. },
  9978. {
  9979. name: "Megamacro+",
  9980. height: math.unit(10, "miles")
  9981. },
  9982. ]
  9983. ))
  9984. characterMakers.push(() => makeCharacter(
  9985. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9986. {
  9987. front: {
  9988. height: math.unit(4, "feet"),
  9989. weight: math.unit(50, "lb"),
  9990. name: "Front",
  9991. image: {
  9992. source: "./media/characters/mal/front.svg",
  9993. extra: 785 / 724,
  9994. bottom: 0.07
  9995. }
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Micro",
  10001. height: math.unit(4, "inches")
  10002. },
  10003. {
  10004. name: "Normal",
  10005. height: math.unit(4, "feet"),
  10006. default: true
  10007. },
  10008. {
  10009. name: "Macro",
  10010. height: math.unit(200, "feet")
  10011. },
  10012. ]
  10013. ))
  10014. characterMakers.push(() => makeCharacter(
  10015. { name: "Jordan Deware", species: ["otter"], 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/jordan-deware/front.svg",
  10023. extra: 1191 / 1012
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Nano",
  10030. height: math.unit(0.01, "mm")
  10031. },
  10032. {
  10033. name: "Minimicro",
  10034. height: math.unit(1, "mm")
  10035. },
  10036. {
  10037. name: "Micro",
  10038. height: math.unit(0.5, "inches")
  10039. },
  10040. {
  10041. name: "Normal",
  10042. height: math.unit(4, "feet"),
  10043. default: true
  10044. },
  10045. {
  10046. name: "Minimacro",
  10047. height: math.unit(40, "meters")
  10048. },
  10049. {
  10050. name: "Small Macro",
  10051. height: math.unit(400, "meters")
  10052. },
  10053. {
  10054. name: "Macro",
  10055. height: math.unit(4, "miles")
  10056. },
  10057. {
  10058. name: "Megamacro",
  10059. height: math.unit(40, "miles")
  10060. },
  10061. {
  10062. name: "Megamacro+",
  10063. height: math.unit(400, "miles")
  10064. },
  10065. {
  10066. name: "Gigamacro",
  10067. height: math.unit(400000, "miles")
  10068. },
  10069. ]
  10070. ))
  10071. characterMakers.push(() => makeCharacter(
  10072. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10073. {
  10074. side: {
  10075. height: math.unit(6, "feet"),
  10076. weight: math.unit(150, "lb"),
  10077. name: "Side",
  10078. image: {
  10079. source: "./media/characters/kimiko/side.svg",
  10080. extra: 600 / 358
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(15, "feet"),
  10088. default: true
  10089. },
  10090. {
  10091. name: "Macro",
  10092. height: math.unit(220, "feet")
  10093. },
  10094. {
  10095. name: "Macro+",
  10096. height: math.unit(1450, "feet")
  10097. },
  10098. {
  10099. name: "Megamacro",
  10100. height: math.unit(11500, "feet")
  10101. },
  10102. {
  10103. name: "Gigamacro",
  10104. height: math.unit(9500, "miles")
  10105. },
  10106. {
  10107. name: "Teramacro",
  10108. height: math.unit(2208005005, "miles")
  10109. },
  10110. {
  10111. name: "Examacro",
  10112. height: math.unit(2750, "parsecs")
  10113. },
  10114. {
  10115. name: "Zettamacro",
  10116. height: math.unit(101500, "parsecs")
  10117. },
  10118. ]
  10119. ))
  10120. characterMakers.push(() => makeCharacter(
  10121. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10122. {
  10123. front: {
  10124. height: math.unit(6, "feet"),
  10125. weight: math.unit(70, "kg"),
  10126. name: "Front",
  10127. image: {
  10128. source: "./media/characters/andrew-sleepy/front.svg"
  10129. }
  10130. },
  10131. side: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(70, "kg"),
  10134. name: "Side",
  10135. image: {
  10136. source: "./media/characters/andrew-sleepy/side.svg"
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Micro",
  10143. height: math.unit(1, "mm"),
  10144. default: true
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10150. {
  10151. front: {
  10152. height: math.unit(6, "feet"),
  10153. weight: math.unit(150, "lb"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/judio/front.svg",
  10157. extra: 1258 / 1110
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(5 + 6 / 12, "feet")
  10165. },
  10166. {
  10167. name: "Macro",
  10168. height: math.unit(1000, "feet"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Megamacro",
  10173. height: math.unit(10, "miles")
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10179. {
  10180. front: {
  10181. height: math.unit(6, "feet"),
  10182. weight: math.unit(68, "kg"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/nomaxice/front.svg",
  10186. extra: 1498 / 1073,
  10187. bottom: 0.075
  10188. }
  10189. },
  10190. foot: {
  10191. height: math.unit(1.1, "feet"),
  10192. name: "Foot",
  10193. image: {
  10194. source: "./media/characters/nomaxice/foot.svg"
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Micro",
  10201. height: math.unit(8, "cm")
  10202. },
  10203. {
  10204. name: "Norm",
  10205. height: math.unit(1.82, "m")
  10206. },
  10207. {
  10208. name: "Norm+",
  10209. height: math.unit(8.8, "feet")
  10210. },
  10211. {
  10212. name: "Big",
  10213. height: math.unit(8, "meters"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Macro",
  10218. height: math.unit(18, "meters")
  10219. },
  10220. {
  10221. name: "Macro+",
  10222. height: math.unit(88, "meters")
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(12, "feet"),
  10231. weight: math.unit(1.5, "tons"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/dydros/front.svg",
  10235. extra: 863 / 800,
  10236. bottom: 0.015
  10237. }
  10238. },
  10239. back: {
  10240. height: math.unit(12, "feet"),
  10241. weight: math.unit(1.5, "tons"),
  10242. name: "Back",
  10243. image: {
  10244. source: "./media/characters/dydros/back.svg",
  10245. extra: 900 / 843,
  10246. bottom: 0.005
  10247. }
  10248. },
  10249. },
  10250. [
  10251. {
  10252. name: "Normal",
  10253. height: math.unit(12, "feet"),
  10254. default: true
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(6, "feet"),
  10263. weight: math.unit(100, "kg"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/riggi/front.svg",
  10267. extra: 5787 / 5303
  10268. }
  10269. },
  10270. hyper: {
  10271. height: math.unit(6 * 5 / 3, "feet"),
  10272. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10273. name: "Hyper",
  10274. image: {
  10275. source: "./media/characters/riggi/hyper.svg",
  10276. extra: 3595 / 3485
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Small Macro",
  10283. height: math.unit(50, "feet")
  10284. },
  10285. {
  10286. name: "Default",
  10287. height: math.unit(200, "feet"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Loom",
  10292. height: math.unit(10000, "feet")
  10293. },
  10294. {
  10295. name: "Cruising Altitude",
  10296. height: math.unit(30000, "feet")
  10297. },
  10298. {
  10299. name: "Megamacro",
  10300. height: math.unit(100, "miles")
  10301. },
  10302. {
  10303. name: "Continent Sized",
  10304. height: math.unit(2800, "miles")
  10305. },
  10306. {
  10307. name: "Earth Sized",
  10308. height: math.unit(8000, "miles")
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(250, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/alexi/front.svg",
  10321. extra: 3483 / 3291,
  10322. bottom: 0.04
  10323. }
  10324. },
  10325. back: {
  10326. height: math.unit(6, "feet"),
  10327. weight: math.unit(250, "lb"),
  10328. name: "Back",
  10329. image: {
  10330. source: "./media/characters/alexi/back.svg",
  10331. extra: 3533 / 3356,
  10332. bottom: 0.021
  10333. }
  10334. },
  10335. frontTransforming: {
  10336. height: math.unit(8.58, "feet"),
  10337. weight: math.unit(1300, "lb"),
  10338. name: "Transforming",
  10339. image: {
  10340. source: "./media/characters/alexi/front-transforming.svg",
  10341. extra: 437 / 409,
  10342. bottom: 19 / 458.66
  10343. }
  10344. },
  10345. frontTransformed: {
  10346. height: math.unit(12.5, "feet"),
  10347. weight: math.unit(4000, "lb"),
  10348. name: "Transformed",
  10349. image: {
  10350. source: "./media/characters/alexi/front-transformed.svg",
  10351. extra: 639 / 614,
  10352. bottom: 30.55 / 671
  10353. }
  10354. },
  10355. },
  10356. [
  10357. {
  10358. name: "Normal",
  10359. height: math.unit(14, "feet"),
  10360. default: true
  10361. },
  10362. {
  10363. name: "Minimacro",
  10364. height: math.unit(30, "meters")
  10365. },
  10366. {
  10367. name: "Macro",
  10368. height: math.unit(500, "meters")
  10369. },
  10370. {
  10371. name: "Megamacro",
  10372. height: math.unit(9000, "km")
  10373. },
  10374. {
  10375. name: "Teramacro",
  10376. height: math.unit(384000, "km")
  10377. },
  10378. ]
  10379. ))
  10380. characterMakers.push(() => makeCharacter(
  10381. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10382. {
  10383. front: {
  10384. height: math.unit(6, "feet"),
  10385. weight: math.unit(150, "lb"),
  10386. name: "Front",
  10387. image: {
  10388. source: "./media/characters/kayroo/front.svg",
  10389. extra: 1153 / 1038,
  10390. bottom: 0.06
  10391. }
  10392. },
  10393. foot: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(150, "lb"),
  10396. name: "Foot",
  10397. image: {
  10398. source: "./media/characters/kayroo/foot.svg"
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Normal",
  10405. height: math.unit(8, "feet"),
  10406. default: true
  10407. },
  10408. {
  10409. name: "Minimacro",
  10410. height: math.unit(250, "feet")
  10411. },
  10412. {
  10413. name: "Macro",
  10414. height: math.unit(2800, "feet")
  10415. },
  10416. {
  10417. name: "Megamacro",
  10418. height: math.unit(5200, "feet")
  10419. },
  10420. {
  10421. name: "Gigamacro",
  10422. height: math.unit(27000, "feet")
  10423. },
  10424. {
  10425. name: "Omega",
  10426. height: math.unit(45000, "feet")
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(18, "feet"),
  10435. weight: math.unit(5800, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/rhys/front.svg",
  10439. extra: 3386 / 3090,
  10440. bottom: 0.07
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Normal",
  10447. height: math.unit(18, "feet"),
  10448. default: true
  10449. },
  10450. {
  10451. name: "Working Size",
  10452. height: math.unit(200, "feet")
  10453. },
  10454. {
  10455. name: "Demolition Size",
  10456. height: math.unit(2000, "feet")
  10457. },
  10458. {
  10459. name: "Maximum Licensed Size",
  10460. height: math.unit(5, "miles")
  10461. },
  10462. {
  10463. name: "Maximum Observed Size",
  10464. height: math.unit(10, "yottameters")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10470. {
  10471. front: {
  10472. height: math.unit(6, "feet"),
  10473. weight: math.unit(250, "lb"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/toto/front.svg",
  10477. extra: 527 / 479,
  10478. bottom: 0.05
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Micro",
  10485. height: math.unit(3, "feet")
  10486. },
  10487. {
  10488. name: "Normal",
  10489. height: math.unit(10, "feet")
  10490. },
  10491. {
  10492. name: "Macro",
  10493. height: math.unit(150, "feet"),
  10494. default: true
  10495. },
  10496. {
  10497. name: "Megamacro",
  10498. height: math.unit(1200, "feet")
  10499. },
  10500. ]
  10501. ))
  10502. characterMakers.push(() => makeCharacter(
  10503. { name: "King", species: ["lion"], tags: ["anthro"] },
  10504. {
  10505. back: {
  10506. height: math.unit(6, "feet"),
  10507. weight: math.unit(150, "lb"),
  10508. name: "Back",
  10509. image: {
  10510. source: "./media/characters/king/back.svg"
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Micro",
  10517. height: math.unit(2, "inches")
  10518. },
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(8, "feet")
  10522. },
  10523. {
  10524. name: "Macro",
  10525. height: math.unit(200, "feet"),
  10526. default: true
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(50, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10536. {
  10537. anthro: {
  10538. height: math.unit(6 + 5 / 12, "feet"),
  10539. weight: math.unit(280, "lb"),
  10540. name: "Anthro",
  10541. image: {
  10542. source: "./media/characters/cordite/anthro.svg",
  10543. extra: 1986 / 1905,
  10544. bottom: 0.025
  10545. }
  10546. },
  10547. feral: {
  10548. height: math.unit(2, "feet"),
  10549. weight: math.unit(90, "lb"),
  10550. name: "Feral",
  10551. image: {
  10552. source: "./media/characters/cordite/feral.svg",
  10553. extra: 1260 / 755,
  10554. bottom: 0.05
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Normal",
  10561. height: math.unit(6 + 5 / 12, "feet"),
  10562. default: true
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(150, "lb"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/pianostrong/front.svg",
  10575. extra: 6577 / 6254,
  10576. bottom: 0.02
  10577. }
  10578. },
  10579. side: {
  10580. height: math.unit(6, "feet"),
  10581. weight: math.unit(150, "lb"),
  10582. name: "Side",
  10583. image: {
  10584. source: "./media/characters/pianostrong/side.svg",
  10585. extra: 6106 / 5730
  10586. }
  10587. },
  10588. back: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Back",
  10592. image: {
  10593. source: "./media/characters/pianostrong/back.svg",
  10594. extra: 6085 / 5733,
  10595. bottom: 0.01
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(100, "feet")
  10603. },
  10604. {
  10605. name: "Macro+",
  10606. height: math.unit(300, "feet"),
  10607. default: true
  10608. },
  10609. {
  10610. name: "Macro++",
  10611. height: math.unit(1000, "feet")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(150, "lb"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/kona/front.svg",
  10624. extra: 2960 / 2629,
  10625. bottom: 0.005
  10626. }
  10627. },
  10628. },
  10629. [
  10630. {
  10631. name: "Normal",
  10632. height: math.unit(11 + 8 / 12, "feet")
  10633. },
  10634. {
  10635. name: "Macro",
  10636. height: math.unit(850, "feet"),
  10637. default: true
  10638. },
  10639. {
  10640. name: "Macro+",
  10641. height: math.unit(1.5, "km"),
  10642. default: true
  10643. },
  10644. {
  10645. name: "Megamacro",
  10646. height: math.unit(80, "miles")
  10647. },
  10648. {
  10649. name: "Gigamacro",
  10650. height: math.unit(3500, "miles")
  10651. },
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10656. {
  10657. side: {
  10658. height: math.unit(1.9, "meters"),
  10659. weight: math.unit(326, "kg"),
  10660. name: "Side",
  10661. image: {
  10662. source: "./media/characters/levi/side.svg",
  10663. extra: 1704 / 1334,
  10664. bottom: 0.02
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Normal",
  10671. height: math.unit(1.9, "meters"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(20, "meters")
  10677. },
  10678. {
  10679. name: "Macro+",
  10680. height: math.unit(200, "meters")
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(2, "km")
  10685. },
  10686. {
  10687. name: "Megamacro+",
  10688. height: math.unit(20, "km")
  10689. },
  10690. {
  10691. name: "Gigamacro",
  10692. height: math.unit(2500, "km")
  10693. },
  10694. {
  10695. name: "Gigamacro+",
  10696. height: math.unit(120000, "km")
  10697. },
  10698. {
  10699. name: "Teramacro",
  10700. height: math.unit(7.77e6, "km")
  10701. },
  10702. ]
  10703. ))
  10704. characterMakers.push(() => makeCharacter(
  10705. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10706. {
  10707. front: {
  10708. height: math.unit(6 + 4 / 12, "feet"),
  10709. weight: math.unit(188, "lb"),
  10710. name: "Front",
  10711. image: {
  10712. source: "./media/characters/bmc/front.svg",
  10713. extra: 1067 / 1022,
  10714. bottom: 0.047
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Human-sized",
  10721. height: math.unit(6 + 4 / 12, "feet")
  10722. },
  10723. {
  10724. name: "Small",
  10725. height: math.unit(250, "feet")
  10726. },
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(1250, "feet"),
  10730. default: true
  10731. },
  10732. {
  10733. name: "Good Day",
  10734. height: math.unit(88, "miles")
  10735. },
  10736. {
  10737. name: "Largest Measured Size",
  10738. height: math.unit(11.2e6, "lightyears")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10744. {
  10745. front: {
  10746. height: math.unit(20, "feet"),
  10747. weight: math.unit(2016, "kg"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/sven-the-kaiju/front.svg",
  10751. extra: 1479 / 1449,
  10752. bottom: 0.05
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Fairy",
  10759. height: math.unit(6, "inches")
  10760. },
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(20, "feet"),
  10764. default: true
  10765. },
  10766. {
  10767. name: "Rampage",
  10768. height: math.unit(200, "feet")
  10769. },
  10770. {
  10771. name: "Archfey Forest Guardian",
  10772. height: math.unit(1, "mile")
  10773. },
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10778. {
  10779. front: {
  10780. height: math.unit(4, "meters"),
  10781. weight: math.unit(2, "tons"),
  10782. name: "Front",
  10783. image: {
  10784. source: "./media/characters/marik/front.svg",
  10785. extra: 1057 / 1003,
  10786. bottom: 0.08
  10787. }
  10788. },
  10789. },
  10790. [
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(4, "meters"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Macro",
  10798. height: math.unit(20, "meters")
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(50, "km")
  10803. },
  10804. {
  10805. name: "Gigamacro",
  10806. height: math.unit(100, "km")
  10807. },
  10808. {
  10809. name: "Alpha Macro",
  10810. height: math.unit(7.88e7, "yottameters")
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(6, "feet"),
  10819. weight: math.unit(110, "lb"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/mel/front.svg",
  10823. extra: 736 / 617,
  10824. bottom: 0.017
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Pico",
  10831. height: math.unit(3, "pm")
  10832. },
  10833. {
  10834. name: "Nano",
  10835. height: math.unit(3, "nm")
  10836. },
  10837. {
  10838. name: "Micro",
  10839. height: math.unit(0.3, "mm"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Micro+",
  10844. height: math.unit(3, "mm")
  10845. },
  10846. {
  10847. name: "Normal",
  10848. height: math.unit(5 + 10.5 / 12, "feet")
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10854. {
  10855. kaiju: {
  10856. height: math.unit(1.75, "meters"),
  10857. weight: math.unit(55, "kg"),
  10858. name: "Kaiju",
  10859. image: {
  10860. source: "./media/characters/lykonous/kaiju.svg",
  10861. extra: 1055 / 946,
  10862. bottom: 0.135
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Normal",
  10869. height: math.unit(2.5, "meters"),
  10870. default: true
  10871. },
  10872. {
  10873. name: "Kaiju Dragon",
  10874. height: math.unit(60, "meters")
  10875. },
  10876. {
  10877. name: "Mega Kaiju",
  10878. height: math.unit(120, "km")
  10879. },
  10880. {
  10881. name: "Giga Kaiju",
  10882. height: math.unit(200, "megameters")
  10883. },
  10884. {
  10885. name: "Terra Kaiju",
  10886. height: math.unit(400, "gigameters")
  10887. },
  10888. {
  10889. name: "Kaiju Dragon God",
  10890. height: math.unit(13000, "exaparsecs")
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10896. {
  10897. front: {
  10898. height: math.unit(6, "feet"),
  10899. weight: math.unit(150, "lb"),
  10900. name: "Front",
  10901. image: {
  10902. source: "./media/characters/blü/front.svg",
  10903. extra: 1883 / 1564,
  10904. bottom: 0.031
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(13, "feet"),
  10912. default: true
  10913. },
  10914. {
  10915. name: "Big Boi",
  10916. height: math.unit(150, "meters")
  10917. },
  10918. {
  10919. name: "Mini Stomper",
  10920. height: math.unit(300, "meters")
  10921. },
  10922. {
  10923. name: "Macro",
  10924. height: math.unit(1000, "meters")
  10925. },
  10926. {
  10927. name: "Megamacro",
  10928. height: math.unit(11000, "meters")
  10929. },
  10930. {
  10931. name: "Gigamacro",
  10932. height: math.unit(11000, "km")
  10933. },
  10934. {
  10935. name: "Teramacro",
  10936. height: math.unit(420000, "km")
  10937. },
  10938. {
  10939. name: "Examacro",
  10940. height: math.unit(120, "parsecs")
  10941. },
  10942. {
  10943. name: "God Tho",
  10944. height: math.unit(98000000000, "parsecs")
  10945. },
  10946. ]
  10947. ))
  10948. characterMakers.push(() => makeCharacter(
  10949. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10950. {
  10951. taurFront: {
  10952. height: math.unit(6, "feet"),
  10953. weight: math.unit(200, "lb"),
  10954. name: "Taur (Front)",
  10955. image: {
  10956. source: "./media/characters/scales/taur-front.svg",
  10957. extra: 1,
  10958. bottom: 0.05
  10959. }
  10960. },
  10961. taurBack: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(200, "lb"),
  10964. name: "Taur (Back)",
  10965. image: {
  10966. source: "./media/characters/scales/taur-back.svg",
  10967. extra: 1,
  10968. bottom: 0.08
  10969. }
  10970. },
  10971. anthro: {
  10972. height: math.unit(6 * 7 / 12, "feet"),
  10973. weight: math.unit(100, "lb"),
  10974. name: "Anthro",
  10975. image: {
  10976. source: "./media/characters/scales/anthro.svg",
  10977. extra: 1,
  10978. bottom: 0.06
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(12, "feet"),
  10986. default: true
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(6, "feet"),
  10995. weight: math.unit(150, "lb"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/koragos/front.svg",
  10999. extra: 841 / 794,
  11000. bottom: 0.035
  11001. }
  11002. },
  11003. back: {
  11004. height: math.unit(6, "feet"),
  11005. weight: math.unit(150, "lb"),
  11006. name: "Back",
  11007. image: {
  11008. source: "./media/characters/koragos/back.svg",
  11009. extra: 841 / 810,
  11010. bottom: 0.022
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(6 + 11 / 12, "feet"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Macro",
  11022. height: math.unit(490, "feet")
  11023. },
  11024. {
  11025. name: "Megamacro",
  11026. height: math.unit(10, "miles")
  11027. },
  11028. {
  11029. name: "Gigamacro",
  11030. height: math.unit(50, "miles")
  11031. },
  11032. ]
  11033. ))
  11034. characterMakers.push(() => makeCharacter(
  11035. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11036. {
  11037. front: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(250, "lb"),
  11040. name: "Front",
  11041. image: {
  11042. source: "./media/characters/xylrem/front.svg",
  11043. extra: 3323 / 3050,
  11044. bottom: 0.065
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Micro",
  11051. height: math.unit(4, "feet")
  11052. },
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(16, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(2720, "feet")
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(25000, "miles")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(8, "feet"),
  11073. weight: math.unit(250, "kg"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/ikideru/front.svg",
  11077. extra: 930 / 870,
  11078. bottom: 0.087
  11079. }
  11080. },
  11081. back: {
  11082. height: math.unit(8, "feet"),
  11083. weight: math.unit(250, "kg"),
  11084. name: "Back",
  11085. image: {
  11086. source: "./media/characters/ikideru/back.svg",
  11087. extra: 919 / 852,
  11088. bottom: 0.055
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Rare",
  11095. height: math.unit(8, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Playful Loom",
  11100. height: math.unit(80, "feet")
  11101. },
  11102. {
  11103. name: "City Leaner",
  11104. height: math.unit(230, "feet")
  11105. },
  11106. {
  11107. name: "Megamacro",
  11108. height: math.unit(2500, "feet")
  11109. },
  11110. {
  11111. name: "Gigamacro",
  11112. height: math.unit(26400, "feet")
  11113. },
  11114. {
  11115. name: "Tectonic Shifter",
  11116. height: math.unit(1.7, "megameters")
  11117. },
  11118. {
  11119. name: "Planet Carer",
  11120. height: math.unit(21, "megameters")
  11121. },
  11122. {
  11123. name: "God",
  11124. height: math.unit(11157.22, "parsecs")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(120, "lb"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/neo/front.svg"
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Micro",
  11143. height: math.unit(2, "inches"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Human Size",
  11148. height: math.unit(5 + 8 / 12, "feet")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(13 + 10 / 12, "feet"),
  11157. weight: math.unit(5320, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/chauncey-chantz/front.svg",
  11161. extra: 1587 / 1435,
  11162. bottom: 0.02
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(13 + 10 / 12, "feet"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Macro",
  11174. height: math.unit(45, "feet")
  11175. },
  11176. {
  11177. name: "Megamacro",
  11178. height: math.unit(250, "miles")
  11179. },
  11180. {
  11181. name: "Planetary",
  11182. height: math.unit(10000, "miles")
  11183. },
  11184. {
  11185. name: "Galactic",
  11186. height: math.unit(40000, "parsecs")
  11187. },
  11188. {
  11189. name: "Universal",
  11190. height: math.unit(1, "yottameter")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(150, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/epifox/front.svg",
  11203. extra: 1,
  11204. bottom: 0.075
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(6, "inches")
  11212. },
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(12, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(3810, "feet")
  11221. },
  11222. {
  11223. name: "Megamacro",
  11224. height: math.unit(500, "miles")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(1.8796, "m"),
  11233. weight: math.unit(230, "lb"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/colin-t/front.svg",
  11237. extra: 1272 / 1193,
  11238. bottom: 0.07
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Micro",
  11245. height: math.unit(0.571, "meters")
  11246. },
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(1.8796, "meters"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Tall",
  11254. height: math.unit(4, "meters")
  11255. },
  11256. {
  11257. name: "Macro",
  11258. height: math.unit(67.241, "meters")
  11259. },
  11260. {
  11261. name: "Megamacro",
  11262. height: math.unit(371.856, "meters")
  11263. },
  11264. {
  11265. name: "Planetary",
  11266. height: math.unit(12631.5689, "km")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(1.85, "meters"),
  11275. weight: math.unit(80, "kg"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/matvei/front.svg",
  11279. extra: 614 / 594,
  11280. bottom: 0.01
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Normal",
  11287. height: math.unit(1.85, "meters"),
  11288. default: true
  11289. },
  11290. ]
  11291. ))
  11292. characterMakers.push(() => makeCharacter(
  11293. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11294. {
  11295. front: {
  11296. height: math.unit(5 + 9 / 12, "feet"),
  11297. weight: math.unit(70, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/quincy/front.svg",
  11301. extra: 3041 / 2751
  11302. }
  11303. },
  11304. back: {
  11305. height: math.unit(5 + 9 / 12, "feet"),
  11306. weight: math.unit(70, "lb"),
  11307. name: "Back",
  11308. image: {
  11309. source: "./media/characters/quincy/back.svg",
  11310. extra: 3041 / 2751
  11311. }
  11312. },
  11313. flying: {
  11314. height: math.unit(5 + 4 / 12, "feet"),
  11315. weight: math.unit(70, "lb"),
  11316. name: "Flying",
  11317. image: {
  11318. source: "./media/characters/quincy/flying.svg",
  11319. extra: 1044 / 930
  11320. }
  11321. },
  11322. },
  11323. [
  11324. {
  11325. name: "Micro",
  11326. height: math.unit(3, "cm")
  11327. },
  11328. {
  11329. name: "Normal",
  11330. height: math.unit(5 + 9 / 12, "feet")
  11331. },
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(200, "meters"),
  11335. default: true
  11336. },
  11337. {
  11338. name: "Megamacro",
  11339. height: math.unit(1000, "meters")
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11345. {
  11346. front: {
  11347. height: math.unit(4 + 7 / 12, "feet"),
  11348. weight: math.unit(50, "lb"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/vanrel/front.svg",
  11352. extra: 1,
  11353. bottom: 0.02
  11354. }
  11355. },
  11356. frontAlt: {
  11357. height: math.unit(4 + 7 / 12, "feet"),
  11358. weight: math.unit(50, "lb"),
  11359. name: "Front-alt",
  11360. image: {
  11361. source: "./media/characters/vanrel/front-alt.svg",
  11362. extra: 1,
  11363. bottom: 15 / 1511
  11364. }
  11365. },
  11366. elemental: {
  11367. height: math.unit(3, "feet"),
  11368. weight: math.unit(50, "lb"),
  11369. name: "Elemental",
  11370. image: {
  11371. source: "./media/characters/vanrel/elemental.svg",
  11372. extra: 192.3 / 162.8,
  11373. bottom: 1.79 / 194.17
  11374. }
  11375. },
  11376. side: {
  11377. height: math.unit(4 + 7 / 12, "feet"),
  11378. weight: math.unit(50, "lb"),
  11379. name: "Side",
  11380. image: {
  11381. source: "./media/characters/vanrel/side.svg",
  11382. extra: 1,
  11383. bottom: 0.025
  11384. }
  11385. },
  11386. tome: {
  11387. height: math.unit(1.35, "feet"),
  11388. weight: math.unit(10, "lb"),
  11389. name: "Vanrel's Tome",
  11390. rename: true,
  11391. image: {
  11392. source: "./media/characters/vanrel/tome.svg"
  11393. }
  11394. },
  11395. beans: {
  11396. height: math.unit(0.89, "feet"),
  11397. name: "Beans",
  11398. image: {
  11399. source: "./media/characters/vanrel/beans.svg"
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(4 + 7 / 12, "feet"),
  11407. default: true
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11413. {
  11414. front: {
  11415. height: math.unit(7 + 5 / 12, "feet"),
  11416. weight: math.unit(150, "lb"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/kuiper-vanrel/front.svg",
  11420. extra: 1118 / 1068,
  11421. bottom: 0.09
  11422. }
  11423. },
  11424. foot: {
  11425. height: math.unit(0.55, "meters"),
  11426. name: "Foot",
  11427. image: {
  11428. source: "./media/characters/kuiper-vanrel/foot.svg",
  11429. }
  11430. },
  11431. battle: {
  11432. height: math.unit(6.824, "feet"),
  11433. weight: math.unit(150, "lb"),
  11434. name: "Battle",
  11435. image: {
  11436. source: "./media/characters/kuiper-vanrel/battle.svg",
  11437. extra: 1466 / 1327,
  11438. bottom: 29 / 1492.5
  11439. }
  11440. },
  11441. battleAlt: {
  11442. height: math.unit(6.824, "feet"),
  11443. weight: math.unit(150, "lb"),
  11444. name: "Battle (Alt)",
  11445. image: {
  11446. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11447. extra: 2081 / 1965,
  11448. bottom: 40 / 2121
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(7 + 5 / 12, "feet"),
  11456. default: true
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(8 + 5 / 12, "feet"),
  11465. weight: math.unit(150, "lb"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/keset-vanrel/front.svg",
  11469. extra: 1150 / 1084,
  11470. bottom: 0.05
  11471. }
  11472. },
  11473. hand: {
  11474. height: math.unit(0.6, "meters"),
  11475. name: "Hand",
  11476. image: {
  11477. source: "./media/characters/keset-vanrel/hand.svg"
  11478. }
  11479. },
  11480. foot: {
  11481. height: math.unit(0.94978, "meters"),
  11482. name: "Foot",
  11483. image: {
  11484. source: "./media/characters/keset-vanrel/foot.svg"
  11485. }
  11486. },
  11487. battle: {
  11488. height: math.unit(7.408, "feet"),
  11489. weight: math.unit(150, "lb"),
  11490. name: "Battle",
  11491. image: {
  11492. source: "./media/characters/keset-vanrel/battle.svg",
  11493. extra: 1890 / 1386,
  11494. bottom: 73.28 / 1970
  11495. }
  11496. },
  11497. },
  11498. [
  11499. {
  11500. name: "Normal",
  11501. height: math.unit(8 + 5 / 12, "feet"),
  11502. default: true
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(6, "feet"),
  11511. weight: math.unit(150, "lb"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/neos/front.svg",
  11515. extra: 1696 / 992,
  11516. bottom: 0.14
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Normal",
  11523. height: math.unit(54, "cm"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Macro",
  11528. height: math.unit(100, "m")
  11529. },
  11530. {
  11531. name: "Megamacro",
  11532. height: math.unit(10, "km")
  11533. },
  11534. {
  11535. name: "Megamacro+",
  11536. height: math.unit(100, "km")
  11537. },
  11538. {
  11539. name: "Gigamacro",
  11540. height: math.unit(100, "Mm")
  11541. },
  11542. {
  11543. name: "Teramacro",
  11544. height: math.unit(100, "Gm")
  11545. },
  11546. {
  11547. name: "Examacro",
  11548. height: math.unit(100, "Em")
  11549. },
  11550. {
  11551. name: "Godly",
  11552. height: math.unit(10000, "Ym")
  11553. },
  11554. {
  11555. name: "Beyond Godly",
  11556. height: math.unit(25, "multiverses")
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11562. {
  11563. feminine: {
  11564. height: math.unit(5, "feet"),
  11565. weight: math.unit(100, "lb"),
  11566. name: "Feminine",
  11567. image: {
  11568. source: "./media/characters/sammy-mouse/feminine.svg",
  11569. extra: 2526 / 2425,
  11570. bottom: 0.123
  11571. }
  11572. },
  11573. masculine: {
  11574. height: math.unit(5, "feet"),
  11575. weight: math.unit(100, "lb"),
  11576. name: "Masculine",
  11577. image: {
  11578. source: "./media/characters/sammy-mouse/masculine.svg",
  11579. extra: 2526 / 2425,
  11580. bottom: 0.123
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Micro",
  11587. height: math.unit(5, "inches")
  11588. },
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(5, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(60, "feet")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(4, "feet"),
  11605. weight: math.unit(50, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/kole/front.svg",
  11609. extra: 1423 / 1303,
  11610. bottom: 0.025
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(4, "feet"),
  11615. weight: math.unit(50, "lb"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/kole/back.svg",
  11619. extra: 1426 / 1280,
  11620. bottom: 0.02
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Normal",
  11627. height: math.unit(4, "feet"),
  11628. default: true
  11629. },
  11630. ]
  11631. ))
  11632. characterMakers.push(() => makeCharacter(
  11633. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11634. {
  11635. front: {
  11636. height: math.unit(2 + 6 / 12, "feet"),
  11637. weight: math.unit(20, "lb"),
  11638. name: "Front",
  11639. image: {
  11640. source: "./media/characters/rufran/front.svg",
  11641. extra: 2041 / 1839,
  11642. bottom: 0.055
  11643. }
  11644. },
  11645. back: {
  11646. height: math.unit(2 + 6 / 12, "feet"),
  11647. weight: math.unit(20, "lb"),
  11648. name: "Back",
  11649. image: {
  11650. source: "./media/characters/rufran/back.svg",
  11651. extra: 2054 / 1839,
  11652. bottom: 0.01
  11653. }
  11654. },
  11655. hand: {
  11656. height: math.unit(0.2166, "meters"),
  11657. name: "Hand",
  11658. image: {
  11659. source: "./media/characters/rufran/hand.svg"
  11660. }
  11661. },
  11662. foot: {
  11663. height: math.unit(0.185, "meters"),
  11664. name: "Foot",
  11665. image: {
  11666. source: "./media/characters/rufran/foot.svg"
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Micro",
  11673. height: math.unit(1, "inch")
  11674. },
  11675. {
  11676. name: "Normal",
  11677. height: math.unit(2 + 6 / 12, "feet"),
  11678. default: true
  11679. },
  11680. {
  11681. name: "Big",
  11682. height: math.unit(60, "feet")
  11683. },
  11684. {
  11685. name: "Macro",
  11686. height: math.unit(325, "feet")
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11692. {
  11693. front: {
  11694. height: math.unit(0.3, "meters"),
  11695. weight: math.unit(3.5, "kg"),
  11696. name: "Front",
  11697. image: {
  11698. source: "./media/characters/chip/front.svg",
  11699. extra: 748 / 674
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Micro",
  11706. height: math.unit(1, "inch"),
  11707. default: true
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11713. {
  11714. side: {
  11715. height: math.unit(2.3, "meters"),
  11716. weight: math.unit(3500, "lb"),
  11717. name: "Side",
  11718. image: {
  11719. source: "./media/characters/torvid/side.svg",
  11720. extra: 1972 / 722,
  11721. bottom: 0.035
  11722. }
  11723. },
  11724. },
  11725. [
  11726. {
  11727. name: "Normal",
  11728. height: math.unit(2.3, "meters"),
  11729. default: true
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11735. {
  11736. front: {
  11737. height: math.unit(2, "meters"),
  11738. weight: math.unit(150.5, "kg"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/susan/front.svg",
  11742. extra: 693 / 635,
  11743. bottom: 0.05
  11744. }
  11745. },
  11746. },
  11747. [
  11748. {
  11749. name: "Megamacro",
  11750. height: math.unit(505, "miles"),
  11751. default: true
  11752. },
  11753. ]
  11754. ))
  11755. characterMakers.push(() => makeCharacter(
  11756. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11757. {
  11758. front: {
  11759. height: math.unit(6, "feet"),
  11760. weight: math.unit(150, "lb"),
  11761. name: "Front",
  11762. image: {
  11763. source: "./media/characters/raindrops/front.svg",
  11764. extra: 2655 / 2461,
  11765. bottom: 49 / 2705
  11766. }
  11767. },
  11768. back: {
  11769. height: math.unit(6, "feet"),
  11770. weight: math.unit(150, "lb"),
  11771. name: "Back",
  11772. image: {
  11773. source: "./media/characters/raindrops/back.svg",
  11774. extra: 2574 / 2400,
  11775. bottom: 65 / 2634
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Micro",
  11782. height: math.unit(6, "inches")
  11783. },
  11784. {
  11785. name: "Normal",
  11786. height: math.unit(6 + 2 / 12, "feet")
  11787. },
  11788. {
  11789. name: "Macro",
  11790. height: math.unit(131, "feet"),
  11791. default: true
  11792. },
  11793. {
  11794. name: "Megamacro",
  11795. height: math.unit(15, "miles")
  11796. },
  11797. {
  11798. name: "Gigamacro",
  11799. height: math.unit(4000, "miles")
  11800. },
  11801. {
  11802. name: "Teramacro",
  11803. height: math.unit(315000, "miles")
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(2.794, "meters"),
  11812. weight: math.unit(325, "kg"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/tezwa/front.svg",
  11816. extra: 2083 / 1906,
  11817. bottom: 0.031
  11818. }
  11819. },
  11820. foot: {
  11821. height: math.unit(0.687, "meters"),
  11822. name: "Foot",
  11823. image: {
  11824. source: "./media/characters/tezwa/foot.svg"
  11825. }
  11826. },
  11827. },
  11828. [
  11829. {
  11830. name: "Normal",
  11831. height: math.unit(9 + 2 / 12, "feet"),
  11832. default: true
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11838. {
  11839. front: {
  11840. height: math.unit(58, "feet"),
  11841. weight: math.unit(89000, "lb"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/typhus/front.svg",
  11845. extra: 816 / 800,
  11846. bottom: 0.065
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Macro",
  11853. height: math.unit(58, "feet"),
  11854. default: true
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(12, "feet"),
  11863. weight: math.unit(6, "tonnes"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/lyra-von-wulf/front.svg",
  11867. extra: 1,
  11868. bottom: 0.10
  11869. }
  11870. },
  11871. frontMecha: {
  11872. height: math.unit(12, "feet"),
  11873. weight: math.unit(12, "tonnes"),
  11874. name: "Front (Mecha)",
  11875. image: {
  11876. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11877. extra: 1,
  11878. bottom: 0.042
  11879. }
  11880. },
  11881. maw: {
  11882. height: math.unit(2.2, "feet"),
  11883. name: "Maw",
  11884. image: {
  11885. source: "./media/characters/lyra-von-wulf/maw.svg"
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(12, "feet"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Classic",
  11897. height: math.unit(50, "feet")
  11898. },
  11899. {
  11900. name: "Macro",
  11901. height: math.unit(500, "feet")
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(1, "mile")
  11906. },
  11907. {
  11908. name: "Gigamacro",
  11909. height: math.unit(400, "miles")
  11910. },
  11911. {
  11912. name: "Teramacro",
  11913. height: math.unit(22000, "miles")
  11914. },
  11915. {
  11916. name: "Solarmacro",
  11917. height: math.unit(8600000, "miles")
  11918. },
  11919. {
  11920. name: "Galactic",
  11921. height: math.unit(1057000, "lightyears")
  11922. },
  11923. ]
  11924. ))
  11925. characterMakers.push(() => makeCharacter(
  11926. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11927. {
  11928. front: {
  11929. height: math.unit(6 + 10 / 12, "feet"),
  11930. weight: math.unit(150, "lb"),
  11931. name: "Front",
  11932. image: {
  11933. source: "./media/characters/dixon/front.svg",
  11934. extra: 3361 / 3209,
  11935. bottom: 0.01
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(6 + 10 / 12, "feet"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Big",
  11947. height: math.unit(12, "meters")
  11948. },
  11949. {
  11950. name: "Macro",
  11951. height: math.unit(500, "meters")
  11952. },
  11953. {
  11954. name: "Megamacro",
  11955. height: math.unit(2, "km")
  11956. },
  11957. ]
  11958. ))
  11959. characterMakers.push(() => makeCharacter(
  11960. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11961. {
  11962. front: {
  11963. height: math.unit(185, "cm"),
  11964. weight: math.unit(68, "kg"),
  11965. name: "Front",
  11966. image: {
  11967. source: "./media/characters/kauko/front.svg",
  11968. extra: 1455 / 1421,
  11969. bottom: 0.03
  11970. }
  11971. },
  11972. back: {
  11973. height: math.unit(185, "cm"),
  11974. weight: math.unit(68, "kg"),
  11975. name: "Back",
  11976. image: {
  11977. source: "./media/characters/kauko/back.svg",
  11978. extra: 1455 / 1421,
  11979. bottom: 0.004
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(185, "cm"),
  11987. default: true
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(150, "kg"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/varg/front.svg",
  12000. extra: 1108 / 1018,
  12001. bottom: 0.0375
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Normal",
  12008. height: math.unit(5, "meters")
  12009. },
  12010. {
  12011. name: "Macro",
  12012. height: math.unit(200, "meters")
  12013. },
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(20, "kilometers")
  12017. },
  12018. {
  12019. name: "True Size",
  12020. height: math.unit(211, "km"),
  12021. default: true
  12022. },
  12023. {
  12024. name: "Gigamacro",
  12025. height: math.unit(1000, "km")
  12026. },
  12027. {
  12028. name: "Gigamacro+",
  12029. height: math.unit(8000, "km")
  12030. },
  12031. {
  12032. name: "Teramacro",
  12033. height: math.unit(1000000, "km")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12039. {
  12040. front: {
  12041. height: math.unit(7 + 7 / 12, "feet"),
  12042. weight: math.unit(267, "lb"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/dayza/front.svg",
  12046. extra: 1262 / 1200,
  12047. bottom: 0.035
  12048. }
  12049. },
  12050. side: {
  12051. height: math.unit(7 + 7 / 12, "feet"),
  12052. weight: math.unit(267, "lb"),
  12053. name: "Side",
  12054. image: {
  12055. source: "./media/characters/dayza/side.svg",
  12056. extra: 1295 / 1245,
  12057. bottom: 0.05
  12058. }
  12059. },
  12060. back: {
  12061. height: math.unit(7 + 7 / 12, "feet"),
  12062. weight: math.unit(267, "lb"),
  12063. name: "Back",
  12064. image: {
  12065. source: "./media/characters/dayza/back.svg",
  12066. extra: 1241 / 1170
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(7 + 7 / 12, "feet"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(155, "feet")
  12079. },
  12080. ]
  12081. ))
  12082. characterMakers.push(() => makeCharacter(
  12083. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12084. {
  12085. front: {
  12086. height: math.unit(6 + 5 / 12, "feet"),
  12087. weight: math.unit(160, "lb"),
  12088. name: "Front",
  12089. image: {
  12090. source: "./media/characters/xanthos/front.svg",
  12091. extra: 1,
  12092. bottom: 0.04
  12093. }
  12094. },
  12095. back: {
  12096. height: math.unit(6 + 5 / 12, "feet"),
  12097. weight: math.unit(160, "lb"),
  12098. name: "Back",
  12099. image: {
  12100. source: "./media/characters/xanthos/back.svg",
  12101. extra: 1,
  12102. bottom: 0.03
  12103. }
  12104. },
  12105. hand: {
  12106. height: math.unit(0.928, "feet"),
  12107. name: "Hand",
  12108. image: {
  12109. source: "./media/characters/xanthos/hand.svg"
  12110. }
  12111. },
  12112. foot: {
  12113. height: math.unit(1.286, "feet"),
  12114. name: "Foot",
  12115. image: {
  12116. source: "./media/characters/xanthos/foot.svg"
  12117. }
  12118. },
  12119. },
  12120. [
  12121. {
  12122. name: "Normal",
  12123. height: math.unit(6 + 5 / 12, "feet"),
  12124. default: true
  12125. },
  12126. {
  12127. name: "Normal+",
  12128. height: math.unit(6, "meters")
  12129. },
  12130. {
  12131. name: "Macro",
  12132. height: math.unit(40, "feet")
  12133. },
  12134. {
  12135. name: "Macro+",
  12136. height: math.unit(200, "meters")
  12137. },
  12138. {
  12139. name: "Megamacro",
  12140. height: math.unit(20, "km")
  12141. },
  12142. {
  12143. name: "Megamacro+",
  12144. height: math.unit(100, "km")
  12145. },
  12146. ]
  12147. ))
  12148. characterMakers.push(() => makeCharacter(
  12149. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12150. {
  12151. front: {
  12152. height: math.unit(6 + 3 / 12, "feet"),
  12153. weight: math.unit(215, "lb"),
  12154. name: "Front",
  12155. image: {
  12156. source: "./media/characters/grynn/front.svg",
  12157. extra: 4627 / 4209,
  12158. bottom: 0.047
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Micro",
  12165. height: math.unit(6, "inches")
  12166. },
  12167. {
  12168. name: "Normal",
  12169. height: math.unit(6 + 3 / 12, "feet"),
  12170. default: true
  12171. },
  12172. {
  12173. name: "Big",
  12174. height: math.unit(104, "feet")
  12175. },
  12176. {
  12177. name: "Macro",
  12178. height: math.unit(944, "feet")
  12179. },
  12180. {
  12181. name: "Macro+",
  12182. height: math.unit(9480, "feet")
  12183. },
  12184. {
  12185. name: "Megamacro",
  12186. height: math.unit(78752, "feet")
  12187. },
  12188. {
  12189. name: "Megamacro+",
  12190. height: math.unit(630128, "feet")
  12191. },
  12192. {
  12193. name: "Megamacro++",
  12194. height: math.unit(3150695, "feet")
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12200. {
  12201. front: {
  12202. height: math.unit(7 + 5 / 12, "feet"),
  12203. weight: math.unit(450, "lb"),
  12204. name: "Front",
  12205. image: {
  12206. source: "./media/characters/mocha-aura/front.svg",
  12207. extra: 1907 / 1817,
  12208. bottom: 0.04
  12209. }
  12210. },
  12211. back: {
  12212. height: math.unit(7 + 5 / 12, "feet"),
  12213. weight: math.unit(450, "lb"),
  12214. name: "Back",
  12215. image: {
  12216. source: "./media/characters/mocha-aura/back.svg",
  12217. extra: 1900 / 1825,
  12218. bottom: 0.045
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Nano",
  12225. height: math.unit(1, "nm")
  12226. },
  12227. {
  12228. name: "Megamicro",
  12229. height: math.unit(1, "mm")
  12230. },
  12231. {
  12232. name: "Micro",
  12233. height: math.unit(3, "inches")
  12234. },
  12235. {
  12236. name: "Normal",
  12237. height: math.unit(7 + 5 / 12, "feet"),
  12238. default: true
  12239. },
  12240. {
  12241. name: "Macro",
  12242. height: math.unit(30, "feet")
  12243. },
  12244. {
  12245. name: "Megamacro",
  12246. height: math.unit(3500, "feet")
  12247. },
  12248. {
  12249. name: "Teramacro",
  12250. height: math.unit(500000, "miles")
  12251. },
  12252. {
  12253. name: "Petamacro",
  12254. height: math.unit(50000000000000000, "parsecs")
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12260. {
  12261. front: {
  12262. height: math.unit(6, "feet"),
  12263. weight: math.unit(150, "lb"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/ilisha-devya/front.svg",
  12267. extra: 1,
  12268. bottom: 0.175
  12269. }
  12270. },
  12271. back: {
  12272. height: math.unit(6, "feet"),
  12273. weight: math.unit(150, "lb"),
  12274. name: "Back",
  12275. image: {
  12276. source: "./media/characters/ilisha-devya/back.svg",
  12277. extra: 1,
  12278. bottom: 0.015
  12279. }
  12280. },
  12281. },
  12282. [
  12283. {
  12284. name: "Macro",
  12285. height: math.unit(500, "feet"),
  12286. default: true
  12287. },
  12288. {
  12289. name: "Megamacro",
  12290. height: math.unit(10, "miles")
  12291. },
  12292. {
  12293. name: "Gigamacro",
  12294. height: math.unit(100000, "miles")
  12295. },
  12296. {
  12297. name: "Examacro",
  12298. height: math.unit(1e9, "lightyears")
  12299. },
  12300. {
  12301. name: "Omniversal",
  12302. height: math.unit(1e33, "lightyears")
  12303. },
  12304. {
  12305. name: "Beyond Infinite",
  12306. height: math.unit(1e100, "lightyears")
  12307. },
  12308. ]
  12309. ))
  12310. characterMakers.push(() => makeCharacter(
  12311. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12312. {
  12313. Side: {
  12314. height: math.unit(6, "feet"),
  12315. weight: math.unit(150, "lb"),
  12316. name: "Side",
  12317. image: {
  12318. source: "./media/characters/mira/side.svg",
  12319. extra: 900 / 799,
  12320. bottom: 0.02
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Human Size",
  12327. height: math.unit(6, "feet")
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(100, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(10, "miles")
  12337. },
  12338. {
  12339. name: "Gigamacro",
  12340. height: math.unit(25000, "miles")
  12341. },
  12342. {
  12343. name: "Teramacro",
  12344. height: math.unit(300, "AU")
  12345. },
  12346. {
  12347. name: "Full Size",
  12348. height: math.unit(4.5e10, "lightyears")
  12349. },
  12350. ]
  12351. ))
  12352. characterMakers.push(() => makeCharacter(
  12353. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12354. {
  12355. front: {
  12356. height: math.unit(6, "feet"),
  12357. weight: math.unit(150, "lb"),
  12358. name: "Front",
  12359. image: {
  12360. source: "./media/characters/holly/front.svg",
  12361. extra: 639 / 606
  12362. }
  12363. },
  12364. back: {
  12365. height: math.unit(6, "feet"),
  12366. weight: math.unit(150, "lb"),
  12367. name: "Back",
  12368. image: {
  12369. source: "./media/characters/holly/back.svg",
  12370. extra: 623 / 598
  12371. }
  12372. },
  12373. frontWorking: {
  12374. height: math.unit(6, "feet"),
  12375. weight: math.unit(150, "lb"),
  12376. name: "Front (Working)",
  12377. image: {
  12378. source: "./media/characters/holly/front-working.svg",
  12379. extra: 607 / 577,
  12380. bottom: 0.048
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(12 + 3 / 12, "feet"),
  12388. default: true
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/porter/front.svg",
  12401. extra: 1,
  12402. bottom: 0.01
  12403. }
  12404. },
  12405. frontRobes: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(150, "lb"),
  12408. name: "Front (Robes)",
  12409. image: {
  12410. source: "./media/characters/porter/front-robes.svg",
  12411. extra: 1.01,
  12412. bottom: 0.01
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(11 + 9 / 12, "feet"),
  12420. default: true
  12421. },
  12422. ]
  12423. ))
  12424. characterMakers.push(() => makeCharacter(
  12425. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12426. {
  12427. legendary: {
  12428. height: math.unit(6, "feet"),
  12429. weight: math.unit(150, "lb"),
  12430. name: "Legendary",
  12431. image: {
  12432. source: "./media/characters/lucy/legendary.svg",
  12433. extra: 1355 / 1100,
  12434. bottom: 0.045
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Legendary",
  12441. height: math.unit(86882 * 2, "miles"),
  12442. default: true
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12448. {
  12449. front: {
  12450. height: math.unit(6, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/drusilla/front.svg",
  12455. extra: 678 / 635,
  12456. bottom: 0.03
  12457. }
  12458. },
  12459. back: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(150, "lb"),
  12462. name: "Back",
  12463. image: {
  12464. source: "./media/characters/drusilla/back.svg",
  12465. extra: 678 / 635,
  12466. bottom: 0.005
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Macro",
  12473. height: math.unit(100, "feet")
  12474. },
  12475. {
  12476. name: "Canon Height",
  12477. height: math.unit(2000, "feet"),
  12478. default: true
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12484. {
  12485. front: {
  12486. height: math.unit(6, "feet"),
  12487. weight: math.unit(180, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/renard-thatch/front.svg",
  12491. extra: 2411 / 2275,
  12492. bottom: 0.01
  12493. }
  12494. },
  12495. frontPosing: {
  12496. height: math.unit(6, "feet"),
  12497. weight: math.unit(180, "lb"),
  12498. name: "Front (Posing)",
  12499. image: {
  12500. source: "./media/characters/renard-thatch/front-posing.svg",
  12501. extra: 2381 / 2261,
  12502. bottom: 0.01
  12503. }
  12504. },
  12505. back: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(180, "lb"),
  12508. name: "Back",
  12509. image: {
  12510. source: "./media/characters/renard-thatch/back.svg",
  12511. extra: 2428 / 2288
  12512. }
  12513. },
  12514. },
  12515. [
  12516. {
  12517. name: "Micro",
  12518. height: math.unit(3, "inches")
  12519. },
  12520. {
  12521. name: "Default",
  12522. height: math.unit(6, "feet"),
  12523. default: true
  12524. },
  12525. {
  12526. name: "Macro",
  12527. height: math.unit(75, "feet")
  12528. },
  12529. ]
  12530. ))
  12531. characterMakers.push(() => makeCharacter(
  12532. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12533. {
  12534. front: {
  12535. height: math.unit(1450, "feet"),
  12536. weight: math.unit(1.21e6, "tons"),
  12537. name: "Front",
  12538. image: {
  12539. source: "./media/characters/sekvra/front.svg",
  12540. extra: 1,
  12541. bottom: 0.03
  12542. }
  12543. },
  12544. frontClothed: {
  12545. height: math.unit(1450, "feet"),
  12546. weight: math.unit(1.21e6, "tons"),
  12547. name: "Front (Clothed)",
  12548. image: {
  12549. source: "./media/characters/sekvra/front-clothed.svg",
  12550. extra: 1,
  12551. bottom: 0.03
  12552. }
  12553. },
  12554. side: {
  12555. height: math.unit(1450, "feet"),
  12556. weight: math.unit(1.21e6, "tons"),
  12557. name: "Side",
  12558. image: {
  12559. source: "./media/characters/sekvra/side.svg",
  12560. extra: 1,
  12561. bottom: 0.025
  12562. }
  12563. },
  12564. back: {
  12565. height: math.unit(1450, "feet"),
  12566. weight: math.unit(1.21e6, "tons"),
  12567. name: "Back",
  12568. image: {
  12569. source: "./media/characters/sekvra/back.svg",
  12570. extra: 1,
  12571. bottom: 0.005
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Macro",
  12578. height: math.unit(1450, "feet"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Megamacro",
  12583. height: math.unit(15000, "feet")
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(6, "feet"),
  12592. weight: math.unit(150, "lb"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/carmine/front.svg",
  12596. extra: 1,
  12597. bottom: 0.035
  12598. }
  12599. },
  12600. frontArmor: {
  12601. height: math.unit(6, "feet"),
  12602. weight: math.unit(150, "lb"),
  12603. name: "Front (Armor)",
  12604. image: {
  12605. source: "./media/characters/carmine/front-armor.svg",
  12606. extra: 1,
  12607. bottom: 0.035
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Large",
  12614. height: math.unit(1, "mile")
  12615. },
  12616. {
  12617. name: "Huge",
  12618. height: math.unit(40, "miles"),
  12619. default: true
  12620. },
  12621. {
  12622. name: "Colossal",
  12623. height: math.unit(2500, "miles")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(6, "feet"),
  12632. weight: math.unit(150, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/elyssia/front.svg",
  12636. extra: 2201 / 2035,
  12637. bottom: 0.05
  12638. }
  12639. },
  12640. frontClothed: {
  12641. height: math.unit(6, "feet"),
  12642. weight: math.unit(150, "lb"),
  12643. name: "Front (Clothed)",
  12644. image: {
  12645. source: "./media/characters/elyssia/front-clothed.svg",
  12646. extra: 2201 / 2035,
  12647. bottom: 0.05
  12648. }
  12649. },
  12650. back: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Back",
  12654. image: {
  12655. source: "./media/characters/elyssia/back.svg",
  12656. extra: 2201 / 2035,
  12657. bottom: 0.013
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Smaller",
  12664. height: math.unit(150, "feet")
  12665. },
  12666. {
  12667. name: "Standard",
  12668. height: math.unit(1400, "feet"),
  12669. default: true
  12670. },
  12671. {
  12672. name: "Distracted",
  12673. height: math.unit(15000, "feet")
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(7 + 4 / 12, "feet"),
  12682. weight: math.unit(500, "lb"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/geno-maxwell/front.svg",
  12686. extra: 2207 / 2040,
  12687. bottom: 0.015
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Micro",
  12694. height: math.unit(3, "inches")
  12695. },
  12696. {
  12697. name: "Normal",
  12698. height: math.unit(7 + 4 / 12, "feet"),
  12699. default: true
  12700. },
  12701. {
  12702. name: "Macro",
  12703. height: math.unit(220, "feet")
  12704. },
  12705. {
  12706. name: "Megamacro",
  12707. height: math.unit(11, "miles")
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12713. {
  12714. front: {
  12715. height: math.unit(7 + 4 / 12, "feet"),
  12716. weight: math.unit(500, "lb"),
  12717. name: "Front",
  12718. image: {
  12719. source: "./media/characters/regena-maxwell/front.svg",
  12720. extra: 3115 / 2770,
  12721. bottom: 0.02
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Normal",
  12728. height: math.unit(7 + 4 / 12, "feet"),
  12729. default: true
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(220, "feet")
  12734. },
  12735. {
  12736. name: "Megamacro",
  12737. height: math.unit(11, "miles")
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12743. {
  12744. front: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Front",
  12748. image: {
  12749. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12750. extra: 860 / 690,
  12751. bottom: 0.03
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(1.7, "meters"),
  12759. default: true
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(150, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/quilly/front.svg",
  12772. extra: 890 / 776
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Gigamacro",
  12779. height: math.unit(404090, "miles"),
  12780. default: true
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12786. {
  12787. front: {
  12788. height: math.unit(7 + 8 / 12, "feet"),
  12789. weight: math.unit(350, "lb"),
  12790. name: "Front",
  12791. image: {
  12792. source: "./media/characters/tempest/front.svg",
  12793. extra: 1175 / 1086,
  12794. bottom: 0.02
  12795. }
  12796. },
  12797. },
  12798. [
  12799. {
  12800. name: "Normal",
  12801. height: math.unit(7 + 8 / 12, "feet"),
  12802. default: true
  12803. },
  12804. ]
  12805. ))
  12806. characterMakers.push(() => makeCharacter(
  12807. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12808. {
  12809. side: {
  12810. height: math.unit(4 + 5 / 12, "feet"),
  12811. weight: math.unit(80, "lb"),
  12812. name: "Side",
  12813. image: {
  12814. source: "./media/characters/rodger/side.svg",
  12815. extra: 1235 / 1118
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Micro",
  12822. height: math.unit(1, "inch")
  12823. },
  12824. {
  12825. name: "Normal",
  12826. height: math.unit(4 + 5 / 12, "feet"),
  12827. default: true
  12828. },
  12829. {
  12830. name: "Macro",
  12831. height: math.unit(120, "feet")
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12837. {
  12838. front: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(150, "lb"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/danyel/front.svg",
  12844. extra: 1185 / 1123,
  12845. bottom: 0.05
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Shrunken",
  12852. height: math.unit(0.5, "mm")
  12853. },
  12854. {
  12855. name: "Micro",
  12856. height: math.unit(1, "mm"),
  12857. default: true
  12858. },
  12859. {
  12860. name: "Upsized",
  12861. height: math.unit(5 + 5 / 12, "feet")
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12867. {
  12868. front: {
  12869. height: math.unit(5 + 6 / 12, "feet"),
  12870. weight: math.unit(200, "lb"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/vivian-bijoux/front.svg",
  12874. extra: 1,
  12875. bottom: 0.072
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Normal",
  12882. height: math.unit(5 + 6 / 12, "feet"),
  12883. default: true
  12884. },
  12885. {
  12886. name: "Bad Dream",
  12887. height: math.unit(500, "feet")
  12888. },
  12889. {
  12890. name: "Nightmare",
  12891. height: math.unit(500, "miles")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(6 + 1 / 12, "feet"),
  12900. weight: math.unit(260, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/zeta/front.svg",
  12904. extra: 1968 / 1889,
  12905. bottom: 0.06
  12906. }
  12907. },
  12908. back: {
  12909. height: math.unit(6 + 1 / 12, "feet"),
  12910. weight: math.unit(260, "lb"),
  12911. name: "Back",
  12912. image: {
  12913. source: "./media/characters/zeta/back.svg",
  12914. extra: 1944 / 1858,
  12915. bottom: 0.03
  12916. }
  12917. },
  12918. hand: {
  12919. height: math.unit(1.112, "feet"),
  12920. name: "Hand",
  12921. image: {
  12922. source: "./media/characters/zeta/hand.svg"
  12923. }
  12924. },
  12925. foot: {
  12926. height: math.unit(1.48, "feet"),
  12927. name: "Foot",
  12928. image: {
  12929. source: "./media/characters/zeta/foot.svg"
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Micro",
  12936. height: math.unit(6, "inches")
  12937. },
  12938. {
  12939. name: "Normal",
  12940. height: math.unit(6 + 1 / 12, "feet"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Macro",
  12945. height: math.unit(20, "feet")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12951. {
  12952. front: {
  12953. height: math.unit(6, "feet"),
  12954. weight: math.unit(150, "lb"),
  12955. name: "Front",
  12956. image: {
  12957. source: "./media/characters/jamie-larsen/front.svg",
  12958. extra: 962 / 933,
  12959. bottom: 0.02
  12960. }
  12961. },
  12962. back: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(150, "lb"),
  12965. name: "Back",
  12966. image: {
  12967. source: "./media/characters/jamie-larsen/back.svg",
  12968. extra: 997 / 946
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Macro",
  12975. height: math.unit(28 + 7 / 12, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Macro+",
  12980. height: math.unit(180, "feet")
  12981. },
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(10, "miles")
  12985. },
  12986. {
  12987. name: "Gigamacro",
  12988. height: math.unit(200000, "miles")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(6, "feet"),
  12997. weight: math.unit(120, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/vance/front.svg",
  13001. extra: 1980 / 1890,
  13002. bottom: 0.09
  13003. }
  13004. },
  13005. back: {
  13006. height: math.unit(6, "feet"),
  13007. weight: math.unit(120, "lb"),
  13008. name: "Back",
  13009. image: {
  13010. source: "./media/characters/vance/back.svg",
  13011. extra: 2081 / 1994,
  13012. bottom: 0.014
  13013. }
  13014. },
  13015. hand: {
  13016. height: math.unit(0.88, "feet"),
  13017. name: "Hand",
  13018. image: {
  13019. source: "./media/characters/vance/hand.svg"
  13020. }
  13021. },
  13022. foot: {
  13023. height: math.unit(0.64, "feet"),
  13024. name: "Foot",
  13025. image: {
  13026. source: "./media/characters/vance/foot.svg"
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Small",
  13033. height: math.unit(90, "feet"),
  13034. default: true
  13035. },
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(100, "meters")
  13039. },
  13040. {
  13041. name: "Megamacro",
  13042. height: math.unit(15, "miles")
  13043. },
  13044. ]
  13045. ))
  13046. characterMakers.push(() => makeCharacter(
  13047. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13048. {
  13049. front: {
  13050. height: math.unit(6, "feet"),
  13051. weight: math.unit(180, "lb"),
  13052. name: "Front",
  13053. image: {
  13054. source: "./media/characters/xochitl/front.svg",
  13055. extra: 2297 / 2261,
  13056. bottom: 0.065
  13057. }
  13058. },
  13059. back: {
  13060. height: math.unit(6, "feet"),
  13061. weight: math.unit(180, "lb"),
  13062. name: "Back",
  13063. image: {
  13064. source: "./media/characters/xochitl/back.svg",
  13065. extra: 2386 / 2354,
  13066. bottom: 0.01
  13067. }
  13068. },
  13069. foot: {
  13070. height: math.unit(6 / 5 * 1.15, "feet"),
  13071. weight: math.unit(150, "lb"),
  13072. name: "Foot",
  13073. image: {
  13074. source: "./media/characters/xochitl/foot.svg"
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Macro",
  13081. height: math.unit(80, "feet")
  13082. },
  13083. {
  13084. name: "Macro+",
  13085. height: math.unit(400, "feet"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Gigamacro",
  13090. height: math.unit(80000, "miles")
  13091. },
  13092. {
  13093. name: "Gigamacro+",
  13094. height: math.unit(400000, "miles")
  13095. },
  13096. {
  13097. name: "Teramacro",
  13098. height: math.unit(300, "AU")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13104. {
  13105. front: {
  13106. height: math.unit(6, "feet"),
  13107. weight: math.unit(150, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/vincent/front.svg",
  13111. extra: 1130 / 1080,
  13112. bottom: 0.055
  13113. }
  13114. },
  13115. beak: {
  13116. height: math.unit(6 * 0.1, "feet"),
  13117. name: "Beak",
  13118. image: {
  13119. source: "./media/characters/vincent/beak.svg"
  13120. }
  13121. },
  13122. hand: {
  13123. height: math.unit(6 * 0.85, "feet"),
  13124. weight: math.unit(150, "lb"),
  13125. name: "Hand",
  13126. image: {
  13127. source: "./media/characters/vincent/hand.svg"
  13128. }
  13129. },
  13130. foot: {
  13131. height: math.unit(6 * 0.19, "feet"),
  13132. weight: math.unit(150, "lb"),
  13133. name: "Foot",
  13134. image: {
  13135. source: "./media/characters/vincent/foot.svg"
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Base",
  13142. height: math.unit(6 + 5 / 12, "feet"),
  13143. default: true
  13144. },
  13145. {
  13146. name: "Macro",
  13147. height: math.unit(300, "feet")
  13148. },
  13149. {
  13150. name: "Megamacro",
  13151. height: math.unit(2, "miles")
  13152. },
  13153. {
  13154. name: "Gigamacro",
  13155. height: math.unit(1000, "miles")
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(6 + 2 / 12, "feet"),
  13164. weight: math.unit(265, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/jay/front.svg",
  13168. extra: 1510 / 1430,
  13169. bottom: 0.042
  13170. }
  13171. },
  13172. back: {
  13173. height: math.unit(6 + 2 / 12, "feet"),
  13174. weight: math.unit(265, "lb"),
  13175. name: "Back",
  13176. image: {
  13177. source: "./media/characters/jay/back.svg",
  13178. extra: 1510 / 1430,
  13179. bottom: 0.025
  13180. }
  13181. },
  13182. clothed: {
  13183. height: math.unit(6 + 2 / 12, "feet"),
  13184. weight: math.unit(265, "lb"),
  13185. name: "Front (Clothed)",
  13186. image: {
  13187. source: "./media/characters/jay/clothed.svg",
  13188. extra: 744 / 699,
  13189. bottom: 0.043
  13190. }
  13191. },
  13192. head: {
  13193. height: math.unit(1.772, "feet"),
  13194. name: "Head",
  13195. image: {
  13196. source: "./media/characters/jay/head.svg"
  13197. }
  13198. },
  13199. sizeRay: {
  13200. height: math.unit(1.331, "feet"),
  13201. name: "Size Ray",
  13202. image: {
  13203. source: "./media/characters/jay/size-ray.svg"
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Micro",
  13210. height: math.unit(1, "inch")
  13211. },
  13212. {
  13213. name: "Normal",
  13214. height: math.unit(6 + 2 / 12, "feet"),
  13215. default: true
  13216. },
  13217. {
  13218. name: "Macro",
  13219. height: math.unit(1, "mile")
  13220. },
  13221. {
  13222. name: "Megamacro",
  13223. height: math.unit(100, "miles")
  13224. },
  13225. ]
  13226. ))
  13227. characterMakers.push(() => makeCharacter(
  13228. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13229. {
  13230. front: {
  13231. height: math.unit(2, "meters"),
  13232. weight: math.unit(500, "kg"),
  13233. name: "Front",
  13234. image: {
  13235. source: "./media/characters/coatl/front.svg",
  13236. extra: 3948 / 3500,
  13237. bottom: 0.082
  13238. }
  13239. },
  13240. },
  13241. [
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(4, "meters")
  13245. },
  13246. {
  13247. name: "Macro",
  13248. height: math.unit(100, "meters"),
  13249. default: true
  13250. },
  13251. {
  13252. name: "Macro+",
  13253. height: math.unit(300, "meters")
  13254. },
  13255. {
  13256. name: "Megamacro",
  13257. height: math.unit(3, "gigameters")
  13258. },
  13259. {
  13260. name: "Megamacro+",
  13261. height: math.unit(300, "terameters")
  13262. },
  13263. {
  13264. name: "Megamacro++",
  13265. height: math.unit(3, "lightyears")
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13271. {
  13272. front: {
  13273. height: math.unit(6, "feet"),
  13274. weight: math.unit(50, "kg"),
  13275. name: "front",
  13276. image: {
  13277. source: "./media/characters/shiroryu/front.svg",
  13278. extra: 1990 / 1935
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Mortal Mingling",
  13285. height: math.unit(3, "meters")
  13286. },
  13287. {
  13288. name: "Kaiju-ish",
  13289. height: math.unit(250, "meters")
  13290. },
  13291. {
  13292. name: "Somewhat Godly",
  13293. height: math.unit(400, "km"),
  13294. default: true
  13295. },
  13296. {
  13297. name: "Planetary",
  13298. height: math.unit(300, "megameters")
  13299. },
  13300. {
  13301. name: "Galaxy-dwarfing",
  13302. height: math.unit(450, "kiloparsecs")
  13303. },
  13304. {
  13305. name: "Universe Eater",
  13306. height: math.unit(150, "gigaparsecs")
  13307. },
  13308. {
  13309. name: "Almost Immeasurable",
  13310. height: math.unit(1.3e266, "yottaparsecs")
  13311. },
  13312. ]
  13313. ))
  13314. characterMakers.push(() => makeCharacter(
  13315. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13316. {
  13317. front: {
  13318. height: math.unit(6, "feet"),
  13319. weight: math.unit(150, "lb"),
  13320. name: "Front",
  13321. image: {
  13322. source: "./media/characters/umeko/front.svg",
  13323. extra: 1,
  13324. bottom: 0.019
  13325. }
  13326. },
  13327. frontArmored: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(150, "lb"),
  13330. name: "Front (Armored)",
  13331. image: {
  13332. source: "./media/characters/umeko/front-armored.svg",
  13333. extra: 1,
  13334. bottom: 0.021
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(220, "feet"),
  13342. default: true
  13343. },
  13344. {
  13345. name: "Guardian Dragon",
  13346. height: math.unit(50, "miles")
  13347. },
  13348. {
  13349. name: "Cosmic",
  13350. height: math.unit(800000, "miles")
  13351. },
  13352. ]
  13353. ))
  13354. characterMakers.push(() => makeCharacter(
  13355. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13356. {
  13357. front: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(150, "lb"),
  13360. name: "Front",
  13361. image: {
  13362. source: "./media/characters/cassidy/front.svg",
  13363. extra: 1,
  13364. bottom: 0.043
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Canon Height",
  13371. height: math.unit(120, "feet"),
  13372. default: true
  13373. },
  13374. {
  13375. name: "Macro+",
  13376. height: math.unit(400, "feet")
  13377. },
  13378. {
  13379. name: "Macro++",
  13380. height: math.unit(4000, "feet")
  13381. },
  13382. {
  13383. name: "Megamacro",
  13384. height: math.unit(3, "miles")
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13390. {
  13391. front: {
  13392. height: math.unit(6, "feet"),
  13393. weight: math.unit(150, "lb"),
  13394. name: "Front",
  13395. image: {
  13396. source: "./media/characters/isaac/front.svg",
  13397. extra: 896 / 815,
  13398. bottom: 0.11
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "Human Size",
  13405. height: math.unit(8, "feet"),
  13406. default: true
  13407. },
  13408. {
  13409. name: "Macro",
  13410. height: math.unit(400, "feet")
  13411. },
  13412. {
  13413. name: "Megamacro",
  13414. height: math.unit(50, "miles")
  13415. },
  13416. {
  13417. name: "Canon Height",
  13418. height: math.unit(200, "AU")
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13424. {
  13425. front: {
  13426. height: math.unit(6, "feet"),
  13427. weight: math.unit(72, "kg"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/sleekit/front.svg",
  13431. extra: 4693 / 4487,
  13432. bottom: 0.012
  13433. }
  13434. },
  13435. },
  13436. [
  13437. {
  13438. name: "Minimum Height",
  13439. height: math.unit(10, "meters")
  13440. },
  13441. {
  13442. name: "Smaller",
  13443. height: math.unit(25, "meters")
  13444. },
  13445. {
  13446. name: "Larger",
  13447. height: math.unit(38, "meters"),
  13448. default: true
  13449. },
  13450. {
  13451. name: "Maximum height",
  13452. height: math.unit(100, "meters")
  13453. },
  13454. ]
  13455. ))
  13456. characterMakers.push(() => makeCharacter(
  13457. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13458. {
  13459. front: {
  13460. height: math.unit(6, "feet"),
  13461. weight: math.unit(150, "lb"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/nillia/front.svg",
  13465. extra: 2195 / 2037,
  13466. bottom: 0.005
  13467. }
  13468. },
  13469. back: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(150, "lb"),
  13472. name: "Back",
  13473. image: {
  13474. source: "./media/characters/nillia/back.svg",
  13475. extra: 2195 / 2037,
  13476. bottom: 0.005
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Canon Height",
  13483. height: math.unit(489, "feet"),
  13484. default: true
  13485. }
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13490. {
  13491. front: {
  13492. height: math.unit(6, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Front",
  13495. image: {
  13496. source: "./media/characters/mesmyriza/front.svg",
  13497. extra: 2067 / 1784,
  13498. bottom: 0.035
  13499. }
  13500. },
  13501. foot: {
  13502. height: math.unit(6 / (250 / 35), "feet"),
  13503. name: "Foot",
  13504. image: {
  13505. source: "./media/characters/mesmyriza/foot.svg"
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Macro",
  13512. height: math.unit(457, "meters"),
  13513. default: true
  13514. },
  13515. {
  13516. name: "Megamacro",
  13517. height: math.unit(8, "megameters")
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13523. {
  13524. front: {
  13525. height: math.unit(6, "feet"),
  13526. weight: math.unit(250, "lb"),
  13527. name: "Front",
  13528. image: {
  13529. source: "./media/characters/saudade/front.svg",
  13530. extra: 1172 / 1139,
  13531. bottom: 0.035
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Micro",
  13538. height: math.unit(3, "inches")
  13539. },
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(6, "feet"),
  13543. default: true
  13544. },
  13545. {
  13546. name: "Macro",
  13547. height: math.unit(50, "feet")
  13548. },
  13549. {
  13550. name: "Megamacro",
  13551. height: math.unit(2800, "feet")
  13552. },
  13553. ]
  13554. ))
  13555. characterMakers.push(() => makeCharacter(
  13556. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13557. {
  13558. front: {
  13559. height: math.unit(5 + 4 / 12, "feet"),
  13560. weight: math.unit(100, "lb"),
  13561. name: "Front",
  13562. image: {
  13563. source: "./media/characters/keireer/front.svg",
  13564. extra: 716 / 666,
  13565. bottom: 0.05
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Normal",
  13572. height: math.unit(5 + 4 / 12, "feet"),
  13573. default: true
  13574. },
  13575. ]
  13576. ))
  13577. characterMakers.push(() => makeCharacter(
  13578. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13579. {
  13580. front: {
  13581. height: math.unit(6, "feet"),
  13582. weight: math.unit(90, "kg"),
  13583. name: "Front",
  13584. image: {
  13585. source: "./media/characters/mirja/front.svg",
  13586. extra: 1789 / 1683,
  13587. bottom: 0.05
  13588. }
  13589. },
  13590. frontDressed: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(90, "lb"),
  13593. name: "Front (Dressed)",
  13594. image: {
  13595. source: "./media/characters/mirja/front-dressed.svg",
  13596. extra: 1789 / 1683,
  13597. bottom: 0.05
  13598. }
  13599. },
  13600. back: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(90, "lb"),
  13603. name: "Back",
  13604. image: {
  13605. source: "./media/characters/mirja/back.svg",
  13606. extra: 953 / 917,
  13607. bottom: 0.017
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "\"Incognito\"",
  13614. height: math.unit(3, "meters")
  13615. },
  13616. {
  13617. name: "Strolling Size",
  13618. height: math.unit(15, "km")
  13619. },
  13620. {
  13621. name: "Larger Strolling Size",
  13622. height: math.unit(400, "km")
  13623. },
  13624. {
  13625. name: "Preferred Size",
  13626. height: math.unit(5000, "km")
  13627. },
  13628. {
  13629. name: "True Size",
  13630. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13631. default: true
  13632. },
  13633. ]
  13634. ))
  13635. characterMakers.push(() => makeCharacter(
  13636. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13637. {
  13638. front: {
  13639. height: math.unit(15, "feet"),
  13640. weight: math.unit(880, "kg"),
  13641. name: "Front",
  13642. image: {
  13643. source: "./media/characters/nightraver/front.svg",
  13644. extra: 2444 / 2160,
  13645. bottom: 0.027
  13646. }
  13647. },
  13648. back: {
  13649. height: math.unit(15, "feet"),
  13650. weight: math.unit(880, "kg"),
  13651. name: "Back",
  13652. image: {
  13653. source: "./media/characters/nightraver/back.svg",
  13654. extra: 2309 / 2180,
  13655. bottom: 0.005
  13656. }
  13657. },
  13658. sole: {
  13659. height: math.unit(2.878, "feet"),
  13660. name: "Sole",
  13661. image: {
  13662. source: "./media/characters/nightraver/sole.svg"
  13663. }
  13664. },
  13665. foot: {
  13666. height: math.unit(2.285, "feet"),
  13667. name: "Foot",
  13668. image: {
  13669. source: "./media/characters/nightraver/foot.svg"
  13670. }
  13671. },
  13672. maw: {
  13673. height: math.unit(2.67, "feet"),
  13674. name: "Maw",
  13675. image: {
  13676. source: "./media/characters/nightraver/maw.svg"
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Micro",
  13683. height: math.unit(1, "cm")
  13684. },
  13685. {
  13686. name: "Normal",
  13687. height: math.unit(15, "feet"),
  13688. default: true
  13689. },
  13690. {
  13691. name: "Macro",
  13692. height: math.unit(300, "feet")
  13693. },
  13694. {
  13695. name: "Megamacro",
  13696. height: math.unit(300, "miles")
  13697. },
  13698. {
  13699. name: "Gigamacro",
  13700. height: math.unit(10000, "miles")
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13706. {
  13707. side: {
  13708. height: math.unit(2, "inches"),
  13709. weight: math.unit(5, "grams"),
  13710. name: "Side",
  13711. image: {
  13712. source: "./media/characters/arc/side.svg"
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Micro",
  13719. height: math.unit(2, "inches"),
  13720. default: true
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13726. {
  13727. front: {
  13728. height: math.unit(1.1938, "meters"),
  13729. weight: math.unit(54, "kg"),
  13730. name: "Front",
  13731. image: {
  13732. source: "./media/characters/nebula-shahar/front.svg",
  13733. extra: 1642 / 1436,
  13734. bottom: 0.06
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Megamicro",
  13741. height: math.unit(0.3, "mm")
  13742. },
  13743. {
  13744. name: "Micro",
  13745. height: math.unit(3, "cm")
  13746. },
  13747. {
  13748. name: "Normal",
  13749. height: math.unit(138, "cm"),
  13750. default: true
  13751. },
  13752. {
  13753. name: "Macro",
  13754. height: math.unit(30, "m")
  13755. },
  13756. ]
  13757. ))
  13758. characterMakers.push(() => makeCharacter(
  13759. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13760. {
  13761. front: {
  13762. height: math.unit(5.24, "feet"),
  13763. weight: math.unit(150, "lb"),
  13764. name: "Front",
  13765. image: {
  13766. source: "./media/characters/shayla/front.svg",
  13767. extra: 1512 / 1414,
  13768. bottom: 0.01
  13769. }
  13770. },
  13771. back: {
  13772. height: math.unit(5.24, "feet"),
  13773. weight: math.unit(150, "lb"),
  13774. name: "Back",
  13775. image: {
  13776. source: "./media/characters/shayla/back.svg",
  13777. extra: 1512 / 1414
  13778. }
  13779. },
  13780. hand: {
  13781. height: math.unit(0.7781496062992126, "feet"),
  13782. name: "Hand",
  13783. image: {
  13784. source: "./media/characters/shayla/hand.svg"
  13785. }
  13786. },
  13787. foot: {
  13788. height: math.unit(1.4206036745406823, "feet"),
  13789. name: "Foot",
  13790. image: {
  13791. source: "./media/characters/shayla/foot.svg"
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Micro",
  13798. height: math.unit(0.32, "feet")
  13799. },
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(5.24, "feet"),
  13803. default: true
  13804. },
  13805. {
  13806. name: "Macro",
  13807. height: math.unit(492.12, "feet")
  13808. },
  13809. {
  13810. name: "Megamacro",
  13811. height: math.unit(186.41, "miles")
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(2.2, "m"),
  13820. weight: math.unit(120, "kg"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/pia-jr/front.svg",
  13824. extra: 1000 / 970,
  13825. bottom: 0.035
  13826. }
  13827. },
  13828. hand: {
  13829. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13830. name: "Hand",
  13831. image: {
  13832. source: "./media/characters/pia-jr/hand.svg"
  13833. }
  13834. },
  13835. paw: {
  13836. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13837. name: "Paw",
  13838. image: {
  13839. source: "./media/characters/pia-jr/paw.svg"
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Micro",
  13846. height: math.unit(1.2, "cm")
  13847. },
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(2.2, "m"),
  13851. default: true
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(180, "m")
  13856. },
  13857. {
  13858. name: "Megamacro",
  13859. height: math.unit(420, "km")
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(2, "m"),
  13868. weight: math.unit(115, "kg"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/pia-sr/front.svg",
  13872. extra: 760 / 730,
  13873. bottom: 0.015
  13874. }
  13875. },
  13876. back: {
  13877. height: math.unit(2, "m"),
  13878. weight: math.unit(115, "kg"),
  13879. name: "Back",
  13880. image: {
  13881. source: "./media/characters/pia-sr/back.svg",
  13882. extra: 760 / 730,
  13883. bottom: 0.01
  13884. }
  13885. },
  13886. hand: {
  13887. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13888. name: "Hand",
  13889. image: {
  13890. source: "./media/characters/pia-sr/hand.svg"
  13891. }
  13892. },
  13893. foot: {
  13894. height: math.unit(1.83, "feet"),
  13895. name: "Foot",
  13896. image: {
  13897. source: "./media/characters/pia-sr/foot.svg"
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Micro",
  13904. height: math.unit(88, "mm")
  13905. },
  13906. {
  13907. name: "Normal",
  13908. height: math.unit(2, "m"),
  13909. default: true
  13910. },
  13911. {
  13912. name: "Macro",
  13913. height: math.unit(200, "m")
  13914. },
  13915. {
  13916. name: "Megamacro",
  13917. height: math.unit(420, "km")
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13923. {
  13924. front: {
  13925. height: math.unit(8 + 2 / 12, "feet"),
  13926. weight: math.unit(300, "lb"),
  13927. name: "Front",
  13928. image: {
  13929. source: "./media/characters/kibibyte/front.svg",
  13930. extra: 2221 / 2098,
  13931. bottom: 0.04
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Normal",
  13938. height: math.unit(8 + 2 / 12, "feet"),
  13939. default: true
  13940. },
  13941. {
  13942. name: "Socialable Macro",
  13943. height: math.unit(50, "feet")
  13944. },
  13945. {
  13946. name: "Macro",
  13947. height: math.unit(300, "feet")
  13948. },
  13949. {
  13950. name: "Megamacro",
  13951. height: math.unit(500, "miles")
  13952. },
  13953. ]
  13954. ))
  13955. characterMakers.push(() => makeCharacter(
  13956. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13957. {
  13958. front: {
  13959. height: math.unit(6, "feet"),
  13960. weight: math.unit(150, "lb"),
  13961. name: "Front",
  13962. image: {
  13963. source: "./media/characters/felix/front.svg",
  13964. extra: 762 / 722,
  13965. bottom: 0.02
  13966. }
  13967. },
  13968. frontClothed: {
  13969. height: math.unit(6, "feet"),
  13970. weight: math.unit(150, "lb"),
  13971. name: "Front (Clothed)",
  13972. image: {
  13973. source: "./media/characters/felix/front-clothed.svg",
  13974. extra: 762 / 722,
  13975. bottom: 0.02
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Normal",
  13982. height: math.unit(6 + 8 / 12, "feet"),
  13983. default: true
  13984. },
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(2600, "feet")
  13988. },
  13989. {
  13990. name: "Megamacro",
  13991. height: math.unit(450, "miles")
  13992. },
  13993. ]
  13994. ))
  13995. characterMakers.push(() => makeCharacter(
  13996. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13997. {
  13998. front: {
  13999. height: math.unit(6 + 1 / 12, "feet"),
  14000. weight: math.unit(250, "lb"),
  14001. name: "Front",
  14002. image: {
  14003. source: "./media/characters/tobo/front.svg",
  14004. extra: 608 / 586,
  14005. bottom: 0.023
  14006. }
  14007. },
  14008. back: {
  14009. height: math.unit(6 + 1 / 12, "feet"),
  14010. weight: math.unit(250, "lb"),
  14011. name: "Back",
  14012. image: {
  14013. source: "./media/characters/tobo/back.svg",
  14014. extra: 608 / 586
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Nano",
  14021. height: math.unit(2, "nm")
  14022. },
  14023. {
  14024. name: "Megamicro",
  14025. height: math.unit(0.1, "mm")
  14026. },
  14027. {
  14028. name: "Micro",
  14029. height: math.unit(1, "inch"),
  14030. default: true
  14031. },
  14032. {
  14033. name: "Human-sized",
  14034. height: math.unit(6 + 1 / 12, "feet")
  14035. },
  14036. {
  14037. name: "Macro",
  14038. height: math.unit(250, "feet")
  14039. },
  14040. {
  14041. name: "Megamacro",
  14042. height: math.unit(75, "miles")
  14043. },
  14044. {
  14045. name: "Texas-sized",
  14046. height: math.unit(750, "miles")
  14047. },
  14048. {
  14049. name: "Teramacro",
  14050. height: math.unit(50000, "miles")
  14051. },
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14056. {
  14057. front: {
  14058. height: math.unit(6, "feet"),
  14059. weight: math.unit(269, "lb"),
  14060. name: "Front",
  14061. image: {
  14062. source: "./media/characters/danny-kapowsky/front.svg",
  14063. extra: 766 / 736,
  14064. bottom: 0.044
  14065. }
  14066. },
  14067. back: {
  14068. height: math.unit(6, "feet"),
  14069. weight: math.unit(269, "lb"),
  14070. name: "Back",
  14071. image: {
  14072. source: "./media/characters/danny-kapowsky/back.svg",
  14073. extra: 797 / 760,
  14074. bottom: 0.025
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Macro",
  14081. height: math.unit(150, "feet"),
  14082. default: true
  14083. },
  14084. {
  14085. name: "Macro+",
  14086. height: math.unit(200, "feet")
  14087. },
  14088. {
  14089. name: "Macro++",
  14090. height: math.unit(300, "feet")
  14091. },
  14092. {
  14093. name: "Macro+++",
  14094. height: math.unit(400, "feet")
  14095. },
  14096. ]
  14097. ))
  14098. characterMakers.push(() => makeCharacter(
  14099. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14100. {
  14101. side: {
  14102. height: math.unit(6, "feet"),
  14103. weight: math.unit(170, "lb"),
  14104. name: "Side",
  14105. image: {
  14106. source: "./media/characters/finn/side.svg",
  14107. extra: 1953 / 1807,
  14108. bottom: 0.057
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Megamacro",
  14115. height: math.unit(14445, "feet"),
  14116. default: true
  14117. },
  14118. ]
  14119. ))
  14120. characterMakers.push(() => makeCharacter(
  14121. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14122. {
  14123. front: {
  14124. height: math.unit(5 + 6 / 12, "feet"),
  14125. weight: math.unit(125, "lb"),
  14126. name: "Front",
  14127. image: {
  14128. source: "./media/characters/roy/front.svg",
  14129. extra: 1,
  14130. bottom: 0.11
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Micro",
  14137. height: math.unit(3, "inches"),
  14138. default: true
  14139. },
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(5 + 6 / 12, "feet")
  14143. },
  14144. {
  14145. name: "Lesser Macro",
  14146. height: math.unit(60, "feet")
  14147. },
  14148. {
  14149. name: "Greater Macro",
  14150. height: math.unit(120, "feet")
  14151. },
  14152. ]
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14156. {
  14157. front: {
  14158. height: math.unit(6, "feet"),
  14159. weight: math.unit(100, "lb"),
  14160. name: "Front",
  14161. image: {
  14162. source: "./media/characters/aevsivs/front.svg",
  14163. extra: 1,
  14164. bottom: 0.03
  14165. }
  14166. },
  14167. back: {
  14168. height: math.unit(6, "feet"),
  14169. weight: math.unit(100, "lb"),
  14170. name: "Back",
  14171. image: {
  14172. source: "./media/characters/aevsivs/back.svg"
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Micro",
  14179. height: math.unit(2, "inches"),
  14180. default: true
  14181. },
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(5, "feet")
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14190. {
  14191. front: {
  14192. height: math.unit(5 + 7 / 12, "feet"),
  14193. weight: math.unit(159, "lb"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/hildegard/front.svg",
  14197. extra: 289 / 269,
  14198. bottom: 7.63 / 297.8
  14199. }
  14200. },
  14201. back: {
  14202. height: math.unit(5 + 7 / 12, "feet"),
  14203. weight: math.unit(159, "lb"),
  14204. name: "Back",
  14205. image: {
  14206. source: "./media/characters/hildegard/back.svg",
  14207. extra: 280 / 260,
  14208. bottom: 2.3 / 282
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Normal",
  14215. height: math.unit(5 + 7 / 12, "feet"),
  14216. default: true
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14222. {
  14223. bernard: {
  14224. height: math.unit(2 + 7 / 12, "feet"),
  14225. weight: math.unit(66, "lb"),
  14226. name: "Bernard",
  14227. rename: true,
  14228. image: {
  14229. source: "./media/characters/bernard-wilder/bernard.svg",
  14230. extra: 192 / 128,
  14231. bottom: 0.05
  14232. }
  14233. },
  14234. wilder: {
  14235. height: math.unit(5 + 8 / 12, "feet"),
  14236. weight: math.unit(143, "lb"),
  14237. name: "Wilder",
  14238. rename: true,
  14239. image: {
  14240. source: "./media/characters/bernard-wilder/wilder.svg",
  14241. extra: 361 / 312,
  14242. bottom: 0.02
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Normal",
  14249. height: math.unit(2 + 7 / 12, "feet"),
  14250. default: true
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14256. {
  14257. anthro: {
  14258. height: math.unit(6 + 1 / 12, "feet"),
  14259. weight: math.unit(155, "lb"),
  14260. name: "Anthro",
  14261. image: {
  14262. source: "./media/characters/hearth/anthro.svg",
  14263. extra: 260 / 250,
  14264. bottom: 0.02
  14265. }
  14266. },
  14267. feral: {
  14268. height: math.unit(3.78, "feet"),
  14269. weight: math.unit(35, "kg"),
  14270. name: "Feral",
  14271. image: {
  14272. source: "./media/characters/hearth/feral.svg",
  14273. extra: 153 / 135,
  14274. bottom: 0.03
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Normal",
  14281. height: math.unit(6 + 1 / 12, "feet"),
  14282. default: true
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(182, "lb"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/ingrid/front.svg",
  14295. extra: 294 / 268,
  14296. bottom: 0.027
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Normal",
  14303. height: math.unit(6, "feet"),
  14304. default: true
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14310. {
  14311. eevee: {
  14312. height: math.unit(2 + 10 / 12, "feet"),
  14313. weight: math.unit(86, "lb"),
  14314. name: "Malgam",
  14315. image: {
  14316. source: "./media/characters/malgam/eevee.svg",
  14317. extra: 218 / 180,
  14318. bottom: 0.2
  14319. }
  14320. },
  14321. sylveon: {
  14322. height: math.unit(4, "feet"),
  14323. weight: math.unit(101, "lb"),
  14324. name: "Future Malgam",
  14325. rename: true,
  14326. image: {
  14327. source: "./media/characters/malgam/sylveon.svg",
  14328. extra: 371 / 325,
  14329. bottom: 0.015
  14330. }
  14331. },
  14332. gigantamax: {
  14333. height: math.unit(50, "feet"),
  14334. name: "Gigantamax Malgam",
  14335. rename: true,
  14336. image: {
  14337. source: "./media/characters/malgam/gigantamax.svg"
  14338. }
  14339. },
  14340. },
  14341. [
  14342. {
  14343. name: "Normal",
  14344. height: math.unit(2 + 10 / 12, "feet"),
  14345. default: true
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(5 + 11 / 12, "feet"),
  14354. weight: math.unit(188, "lb"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/fleur/front.svg",
  14358. extra: 309 / 283,
  14359. bottom: 0.007
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Normal",
  14366. height: math.unit(5 + 11 / 12, "feet"),
  14367. default: true
  14368. },
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14373. {
  14374. front: {
  14375. height: math.unit(5 + 4 / 12, "feet"),
  14376. weight: math.unit(122, "lb"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/jude/front.svg",
  14380. extra: 288 / 273,
  14381. bottom: 0.03
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Normal",
  14388. height: math.unit(5 + 4 / 12, "feet"),
  14389. default: true
  14390. },
  14391. ]
  14392. ))
  14393. characterMakers.push(() => makeCharacter(
  14394. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14395. {
  14396. front: {
  14397. height: math.unit(5 + 11 / 12, "feet"),
  14398. weight: math.unit(190, "lb"),
  14399. name: "Front",
  14400. image: {
  14401. source: "./media/characters/seara/front.svg",
  14402. extra: 1,
  14403. bottom: 0.05
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Normal",
  14410. height: math.unit(5 + 11 / 12, "feet"),
  14411. default: true
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(16 + 5 / 12, "feet"),
  14420. weight: math.unit(524, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/caspian/front.svg",
  14424. extra: 1,
  14425. bottom: 0.04
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(16 + 5 / 12, "feet"),
  14433. default: true
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14439. {
  14440. front: {
  14441. height: math.unit(5 + 7 / 12, "feet"),
  14442. weight: math.unit(170, "lb"),
  14443. name: "Front",
  14444. image: {
  14445. source: "./media/characters/mika/front.svg",
  14446. extra: 1,
  14447. bottom: 0.016
  14448. }
  14449. },
  14450. },
  14451. [
  14452. {
  14453. name: "Normal",
  14454. height: math.unit(5 + 7 / 12, "feet"),
  14455. default: true
  14456. },
  14457. ]
  14458. ))
  14459. characterMakers.push(() => makeCharacter(
  14460. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14461. {
  14462. front: {
  14463. height: math.unit(6 + 2 / 12, "feet"),
  14464. weight: math.unit(268, "lb"),
  14465. name: "Front",
  14466. image: {
  14467. source: "./media/characters/sol/front.svg",
  14468. extra: 247 / 231,
  14469. bottom: 0.05
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Normal",
  14476. height: math.unit(6 + 2 / 12, "feet"),
  14477. default: true
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14483. {
  14484. buizel: {
  14485. height: math.unit(2 + 5 / 12, "feet"),
  14486. weight: math.unit(87, "lb"),
  14487. name: "Buizel",
  14488. image: {
  14489. source: "./media/characters/umiko/buizel.svg",
  14490. extra: 172 / 157,
  14491. bottom: 0.01
  14492. }
  14493. },
  14494. floatzel: {
  14495. height: math.unit(5 + 9 / 12, "feet"),
  14496. weight: math.unit(250, "lb"),
  14497. name: "Floatzel",
  14498. image: {
  14499. source: "./media/characters/umiko/floatzel.svg",
  14500. extra: 262 / 248
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(2 + 5 / 12, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(6 + 2 / 12, "feet"),
  14517. weight: math.unit(146, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/iliac/front.svg",
  14521. extra: 389 / 365,
  14522. bottom: 0.035
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(6 + 2 / 12, "feet"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(6, "feet"),
  14539. weight: math.unit(170, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/topaz/front.svg",
  14543. extra: 317 / 303,
  14544. bottom: 0.055
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(6, "feet"),
  14552. default: true
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(5 + 11 / 12, "feet"),
  14561. weight: math.unit(144, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/gabriel/front.svg",
  14565. extra: 285 / 262,
  14566. bottom: 0.004
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(5 + 11 / 12, "feet"),
  14574. default: true
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14580. {
  14581. side: {
  14582. height: math.unit(6 + 5 / 12, "feet"),
  14583. weight: math.unit(300, "lb"),
  14584. name: "Side",
  14585. image: {
  14586. source: "./media/characters/tempest-suicune/side.svg",
  14587. extra: 195 / 154,
  14588. bottom: 0.04
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(6 + 5 / 12, "feet"),
  14596. default: true
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(7 + 2 / 12, "feet"),
  14605. weight: math.unit(322, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/vulcan/front.svg",
  14609. extra: 154 / 147,
  14610. bottom: 0.04
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(7 + 2 / 12, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(5 + 10 / 12, "feet"),
  14627. weight: math.unit(264, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/gault/front.svg",
  14631. extra: 161 / 140,
  14632. bottom: 0.028
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(5 + 10 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(150, "lb"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/shard/front.svg",
  14653. extra: 273 / 238,
  14654. bottom: 0.02
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(3 + 6 / 12, "feet"),
  14662. default: true
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(5 + 11 / 12, "feet"),
  14671. weight: math.unit(146, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/ashe/front.svg",
  14675. extra: 400 / 373,
  14676. bottom: 0.01
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(5 + 11 / 12, "feet"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(5 + 5 / 12, "feet"),
  14693. weight: math.unit(135, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/beatrix/front.svg",
  14697. extra: 392 / 379,
  14698. bottom: 0.01
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(6, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(6, "feet"),
  14715. weight: math.unit(150, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/ignatius/front.svg",
  14719. extra: 245 / 222,
  14720. bottom: 0.01
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(5 + 5 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(6 + 2 / 12, "feet"),
  14737. weight: math.unit(138, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/mei-li/front.svg",
  14741. extra: 237 / 229,
  14742. bottom: 0.03
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(6 + 2 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(2 + 4 / 12, "feet"),
  14759. weight: math.unit(62, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/puru/front.svg",
  14763. extra: 206 / 149,
  14764. bottom: 0.06
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(2 + 4 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14778. {
  14779. taur: {
  14780. height: math.unit(11, "feet"),
  14781. weight: math.unit(500, "lb"),
  14782. name: "Taur",
  14783. image: {
  14784. source: "./media/characters/kee/taur.svg",
  14785. extra: 1,
  14786. bottom: 0.04
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(11, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14800. {
  14801. anthro: {
  14802. height: math.unit(7, "feet"),
  14803. weight: math.unit(190, "lb"),
  14804. name: "Anthro",
  14805. image: {
  14806. source: "./media/characters/cobalt-dracha/anthro.svg",
  14807. extra: 231 / 225,
  14808. bottom: 0.04
  14809. }
  14810. },
  14811. feral: {
  14812. height: math.unit(9 + 7 / 12, "feet"),
  14813. weight: math.unit(294, "lb"),
  14814. name: "Feral",
  14815. image: {
  14816. source: "./media/characters/cobalt-dracha/feral.svg",
  14817. extra: 692 / 633,
  14818. bottom: 0.05
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(7, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14832. {
  14833. fallen: {
  14834. height: math.unit(11 + 8 / 12, "feet"),
  14835. weight: math.unit(485, "lb"),
  14836. name: "Java (Fallen)",
  14837. rename: true,
  14838. image: {
  14839. source: "./media/characters/java/fallen.svg",
  14840. extra: 226 / 208,
  14841. bottom: 0.005
  14842. }
  14843. },
  14844. godkin: {
  14845. height: math.unit(10 + 6 / 12, "feet"),
  14846. weight: math.unit(328, "lb"),
  14847. name: "Java (Godkin)",
  14848. rename: true,
  14849. image: {
  14850. source: "./media/characters/java/godkin.svg",
  14851. extra: 270 / 262,
  14852. bottom: 0.02
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(11 + 8 / 12, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(7 + 8 / 12, "feet"),
  14869. weight: math.unit(320, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/skoll/front.svg",
  14873. extra: 232 / 220,
  14874. bottom: 0.02
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(7 + 8 / 12, "feet"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(5 + 9 / 12, "feet"),
  14891. weight: math.unit(170, "lb"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/purna/front.svg",
  14895. extra: 239 / 229,
  14896. bottom: 0.01
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Normal",
  14903. height: math.unit(5 + 9 / 12, "feet"),
  14904. default: true
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(5 + 9 / 12, "feet"),
  14913. weight: math.unit(142, "lb"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/kuva/front.svg",
  14917. extra: 281 / 271,
  14918. bottom: 0.006
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(5 + 9 / 12, "feet"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14932. {
  14933. anthro: {
  14934. height: math.unit(9 + 2 / 12, "feet"),
  14935. weight: math.unit(270, "lb"),
  14936. name: "Anthro",
  14937. image: {
  14938. source: "./media/characters/embra/anthro.svg",
  14939. extra: 200 / 187,
  14940. bottom: 0.02
  14941. }
  14942. },
  14943. feral: {
  14944. height: math.unit(18 + 8 / 12, "feet"),
  14945. weight: math.unit(576, "lb"),
  14946. name: "Feral",
  14947. image: {
  14948. source: "./media/characters/embra/feral.svg",
  14949. extra: 152 / 137,
  14950. bottom: 0.037
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(9 + 2 / 12, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14964. {
  14965. anthro: {
  14966. height: math.unit(10 + 9 / 12, "feet"),
  14967. weight: math.unit(224, "lb"),
  14968. name: "Anthro",
  14969. image: {
  14970. source: "./media/characters/grottos/anthro.svg",
  14971. extra: 350 / 332,
  14972. bottom: 0.045
  14973. }
  14974. },
  14975. feral: {
  14976. height: math.unit(20 + 7 / 12, "feet"),
  14977. weight: math.unit(629, "lb"),
  14978. name: "Feral",
  14979. image: {
  14980. source: "./media/characters/grottos/feral.svg",
  14981. extra: 207 / 190,
  14982. bottom: 0.05
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(10 + 9 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14996. {
  14997. anthro: {
  14998. height: math.unit(9 + 6 / 12, "feet"),
  14999. weight: math.unit(298, "lb"),
  15000. name: "Anthro",
  15001. image: {
  15002. source: "./media/characters/frifna/anthro.svg",
  15003. extra: 282 / 269,
  15004. bottom: 0.015
  15005. }
  15006. },
  15007. feral: {
  15008. height: math.unit(16 + 2 / 12, "feet"),
  15009. weight: math.unit(624, "lb"),
  15010. name: "Feral",
  15011. image: {
  15012. source: "./media/characters/frifna/feral.svg"
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(9 + 6 / 12, "feet"),
  15020. default: true
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(6 + 2 / 12, "feet"),
  15029. weight: math.unit(168, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/elise/front.svg",
  15033. extra: 276 / 271
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Normal",
  15040. height: math.unit(6 + 2 / 12, "feet"),
  15041. default: true
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(5 + 10 / 12, "feet"),
  15050. weight: math.unit(210, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/glade/front.svg",
  15054. extra: 258 / 247,
  15055. bottom: 0.008
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(5 + 10 / 12, "feet"),
  15063. default: true
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(5 + 10 / 12, "feet"),
  15072. weight: math.unit(129, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/rina/front.svg",
  15076. extra: 266 / 255,
  15077. bottom: 0.005
  15078. }
  15079. },
  15080. },
  15081. [
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(5 + 10 / 12, "feet"),
  15085. default: true
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(6 + 1 / 12, "feet"),
  15094. weight: math.unit(192, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/veronica/front.svg",
  15098. extra: 319 / 309,
  15099. bottom: 0.005
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(6 + 1 / 12, "feet"),
  15107. default: true
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15113. {
  15114. front: {
  15115. height: math.unit(9 + 3 / 12, "feet"),
  15116. weight: math.unit(1100, "lb"),
  15117. name: "Front",
  15118. image: {
  15119. source: "./media/characters/braxton/front.svg",
  15120. extra: 1057 / 984,
  15121. bottom: 0.05
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Normal",
  15128. height: math.unit(9 + 3 / 12, "feet")
  15129. },
  15130. {
  15131. name: "Giant",
  15132. height: math.unit(300, "feet"),
  15133. default: true
  15134. },
  15135. {
  15136. name: "Macro",
  15137. height: math.unit(700, "feet")
  15138. },
  15139. {
  15140. name: "Megamacro",
  15141. height: math.unit(6000, "feet")
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(6 + 7 / 12, "feet"),
  15150. weight: math.unit(150, "lb"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/blue-feyonics/front.svg",
  15154. extra: 1403 / 1306,
  15155. bottom: 0.047
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Normal",
  15162. height: math.unit(6 + 7 / 12, "feet"),
  15163. default: true
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15169. {
  15170. front: {
  15171. height: math.unit(1.8, "meters"),
  15172. weight: math.unit(60, "kg"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/maxwell/front.svg",
  15176. extra: 2060 / 1873
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Micro",
  15183. height: math.unit(1, "mm")
  15184. },
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(1.8, "meter"),
  15188. default: true
  15189. },
  15190. {
  15191. name: "Macro",
  15192. height: math.unit(30, "meters")
  15193. },
  15194. {
  15195. name: "Megamacro",
  15196. height: math.unit(10, "km")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(6, "feet"),
  15205. weight: math.unit(150, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/jack/front.svg",
  15209. extra: 1754 / 1640,
  15210. bottom: 0.01
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(80000, "feet"),
  15218. default: true
  15219. },
  15220. {
  15221. name: "Max size",
  15222. height: math.unit(10, "lightyears")
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15228. {
  15229. upright: {
  15230. height: math.unit(7, "feet"),
  15231. weight: math.unit(170, "lb"),
  15232. name: "Upright",
  15233. image: {
  15234. source: "./media/characters/cafat/upright.svg",
  15235. bottom: 0.01
  15236. }
  15237. },
  15238. uprightFull: {
  15239. height: math.unit(7, "feet"),
  15240. weight: math.unit(170, "lb"),
  15241. name: "Upright (Full)",
  15242. image: {
  15243. source: "./media/characters/cafat/upright-full.svg",
  15244. bottom: 0.01
  15245. }
  15246. },
  15247. side: {
  15248. height: math.unit(5, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Side",
  15251. image: {
  15252. source: "./media/characters/cafat/side.svg"
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Small",
  15259. height: math.unit(7, "feet"),
  15260. default: true
  15261. },
  15262. {
  15263. name: "Large",
  15264. height: math.unit(15.5, "feet")
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(6, "feet"),
  15273. weight: math.unit(150, "lb"),
  15274. name: "Front",
  15275. image: {
  15276. source: "./media/characters/verin-raharra/front.svg",
  15277. extra: 5019 / 4835,
  15278. bottom: 0.023
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Normal",
  15285. height: math.unit(7 + 5 / 12, "feet"),
  15286. default: true
  15287. },
  15288. {
  15289. name: "Upsized",
  15290. height: math.unit(20, "feet")
  15291. },
  15292. ]
  15293. ))
  15294. characterMakers.push(() => makeCharacter(
  15295. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15296. {
  15297. front: {
  15298. height: math.unit(7, "feet"),
  15299. weight: math.unit(230, "lb"),
  15300. name: "Front",
  15301. image: {
  15302. source: "./media/characters/nakata/front.svg",
  15303. extra: 1.005,
  15304. bottom: 0.01
  15305. }
  15306. },
  15307. },
  15308. [
  15309. {
  15310. name: "Normal",
  15311. height: math.unit(7, "feet"),
  15312. default: true
  15313. },
  15314. {
  15315. name: "Big",
  15316. height: math.unit(14, "feet")
  15317. },
  15318. {
  15319. name: "Macro",
  15320. height: math.unit(400, "feet")
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(4.91, "feet"),
  15329. weight: math.unit(100, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/lily/front.svg",
  15333. extra: 1585 / 1415,
  15334. bottom: 0.02
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(4.91, "feet"),
  15342. default: true
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15348. {
  15349. laying: {
  15350. height: math.unit(4 + 4 / 12, "feet"),
  15351. weight: math.unit(600, "lb"),
  15352. name: "Laying",
  15353. image: {
  15354. source: "./media/characters/sheila/laying.svg",
  15355. extra: 1333 / 1265,
  15356. bottom: 0.16
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(4 + 4 / 12, "feet"),
  15364. default: true
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(190, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/sax/front.svg",
  15377. extra: 1187 / 973,
  15378. bottom: 0.042
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Micro",
  15385. height: math.unit(4, "inches"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(6, "feet"),
  15395. weight: math.unit(150, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/pandora/front.svg",
  15399. extra: 2720 / 2556,
  15400. bottom: 0.015
  15401. }
  15402. },
  15403. back: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Back",
  15407. image: {
  15408. source: "./media/characters/pandora/back.svg",
  15409. extra: 2720 / 2556,
  15410. bottom: 0.01
  15411. }
  15412. },
  15413. beans: {
  15414. height: math.unit(6 / 8, "feet"),
  15415. name: "Beans",
  15416. image: {
  15417. source: "./media/characters/pandora/beans.svg"
  15418. }
  15419. },
  15420. skirt: {
  15421. height: math.unit(6, "feet"),
  15422. weight: math.unit(150, "lb"),
  15423. name: "Skirt",
  15424. image: {
  15425. source: "./media/characters/pandora/skirt.svg",
  15426. extra: 1622 / 1525,
  15427. bottom: 0.015
  15428. }
  15429. },
  15430. hoodie: {
  15431. height: math.unit(6, "feet"),
  15432. weight: math.unit(150, "lb"),
  15433. name: "Hoodie",
  15434. image: {
  15435. source: "./media/characters/pandora/hoodie.svg",
  15436. extra: 1622 / 1525,
  15437. bottom: 0.015
  15438. }
  15439. },
  15440. casual: {
  15441. height: math.unit(6, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Casual",
  15444. image: {
  15445. source: "./media/characters/pandora/casual.svg",
  15446. extra: 1622 / 1525,
  15447. bottom: 0.015
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Normal",
  15454. height: math.unit(6, "feet")
  15455. },
  15456. {
  15457. name: "Big Steppy",
  15458. height: math.unit(1, "km"),
  15459. default: true
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15465. {
  15466. side: {
  15467. height: math.unit(10, "feet"),
  15468. weight: math.unit(800, "kg"),
  15469. name: "Side",
  15470. image: {
  15471. source: "./media/characters/venio-darcony/side.svg",
  15472. extra: 1373 / 1003,
  15473. bottom: 0.037
  15474. }
  15475. },
  15476. front: {
  15477. height: math.unit(19, "feet"),
  15478. weight: math.unit(800, "kg"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/venio-darcony/front.svg"
  15482. }
  15483. },
  15484. back: {
  15485. height: math.unit(19, "feet"),
  15486. weight: math.unit(800, "kg"),
  15487. name: "Back",
  15488. image: {
  15489. source: "./media/characters/venio-darcony/back.svg"
  15490. }
  15491. },
  15492. sideNsfw: {
  15493. height: math.unit(10, "feet"),
  15494. weight: math.unit(800, "kg"),
  15495. name: "Side (NSFW)",
  15496. image: {
  15497. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15498. extra: 1373 / 1003,
  15499. bottom: 0.037
  15500. }
  15501. },
  15502. frontNsfw: {
  15503. height: math.unit(19, "feet"),
  15504. weight: math.unit(800, "kg"),
  15505. name: "Front (NSFW)",
  15506. image: {
  15507. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15508. }
  15509. },
  15510. backNsfw: {
  15511. height: math.unit(19, "feet"),
  15512. weight: math.unit(800, "kg"),
  15513. name: "Back (NSFW)",
  15514. image: {
  15515. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15516. }
  15517. },
  15518. sideArmored: {
  15519. height: math.unit(10, "feet"),
  15520. weight: math.unit(800, "kg"),
  15521. name: "Side (Armored)",
  15522. image: {
  15523. source: "./media/characters/venio-darcony/side-armored.svg",
  15524. extra: 1373 / 1003,
  15525. bottom: 0.037
  15526. }
  15527. },
  15528. frontArmored: {
  15529. height: math.unit(19, "feet"),
  15530. weight: math.unit(900, "kg"),
  15531. name: "Front (Armored)",
  15532. image: {
  15533. source: "./media/characters/venio-darcony/front-armored.svg"
  15534. }
  15535. },
  15536. backArmored: {
  15537. height: math.unit(19, "feet"),
  15538. weight: math.unit(900, "kg"),
  15539. name: "Back (Armored)",
  15540. image: {
  15541. source: "./media/characters/venio-darcony/back-armored.svg"
  15542. }
  15543. },
  15544. sword: {
  15545. height: math.unit(10, "feet"),
  15546. weight: math.unit(50, "lb"),
  15547. name: "Sword",
  15548. image: {
  15549. source: "./media/characters/venio-darcony/sword.svg"
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Normal",
  15556. height: math.unit(10, "feet")
  15557. },
  15558. {
  15559. name: "Macro",
  15560. height: math.unit(130, "feet"),
  15561. default: true
  15562. },
  15563. {
  15564. name: "Macro+",
  15565. height: math.unit(240, "feet")
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15571. {
  15572. front: {
  15573. height: math.unit(6, "feet"),
  15574. weight: math.unit(150, "lb"),
  15575. name: "Front",
  15576. image: {
  15577. source: "./media/characters/veski/front.svg",
  15578. extra: 1299 / 1225,
  15579. bottom: 0.04
  15580. }
  15581. },
  15582. back: {
  15583. height: math.unit(6, "feet"),
  15584. weight: math.unit(150, "lb"),
  15585. name: "Back",
  15586. image: {
  15587. source: "./media/characters/veski/back.svg",
  15588. extra: 1299 / 1225,
  15589. bottom: 0.008
  15590. }
  15591. },
  15592. maw: {
  15593. height: math.unit(1.5 * 1.21, "feet"),
  15594. name: "Maw",
  15595. image: {
  15596. source: "./media/characters/veski/maw.svg"
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Macro",
  15603. height: math.unit(2, "km"),
  15604. default: true
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(5 + 7 / 12, "feet"),
  15613. name: "Front",
  15614. image: {
  15615. source: "./media/characters/isabelle/front.svg",
  15616. extra: 2130 / 1976,
  15617. bottom: 0.05
  15618. }
  15619. },
  15620. },
  15621. [
  15622. {
  15623. name: "Supermicro",
  15624. height: math.unit(10, "micrometers")
  15625. },
  15626. {
  15627. name: "Micro",
  15628. height: math.unit(1, "inch")
  15629. },
  15630. {
  15631. name: "Tiny",
  15632. height: math.unit(5, "inches")
  15633. },
  15634. {
  15635. name: "Standard",
  15636. height: math.unit(5 + 7 / 12, "inches")
  15637. },
  15638. {
  15639. name: "Macro",
  15640. height: math.unit(80, "meters"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "Megamacro",
  15645. height: math.unit(250, "meters")
  15646. },
  15647. {
  15648. name: "Gigamacro",
  15649. height: math.unit(5, "km")
  15650. },
  15651. {
  15652. name: "Cosmic",
  15653. height: math.unit(2.5e6, "miles")
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(6, "feet"),
  15662. weight: math.unit(150, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/hanzo/front.svg",
  15666. extra: 374 / 344,
  15667. bottom: 0.02
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(8, "feet"),
  15675. default: true
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(7, "feet"),
  15684. weight: math.unit(130, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/anna/front.svg",
  15688. extra: 169 / 145,
  15689. bottom: 0.06
  15690. }
  15691. },
  15692. full: {
  15693. height: math.unit(4.96, "feet"),
  15694. weight: math.unit(220, "lb"),
  15695. name: "Full",
  15696. image: {
  15697. source: "./media/characters/anna/full.svg",
  15698. extra: 138 / 114,
  15699. bottom: 0.15
  15700. }
  15701. },
  15702. tongue: {
  15703. height: math.unit(2.53, "feet"),
  15704. name: "Tongue",
  15705. image: {
  15706. source: "./media/characters/anna/tongue.svg"
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(7, "feet"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(7, "feet"),
  15723. weight: math.unit(150, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/ian-corvid/front.svg",
  15727. extra: 150 / 142,
  15728. bottom: 0.02
  15729. }
  15730. },
  15731. back: {
  15732. height: math.unit(7, "feet"),
  15733. weight: math.unit(150, "lb"),
  15734. name: "Back",
  15735. image: {
  15736. source: "./media/characters/ian-corvid/back.svg",
  15737. extra: 150 / 143,
  15738. bottom: 0.01
  15739. }
  15740. },
  15741. stomping: {
  15742. height: math.unit(7, "feet"),
  15743. weight: math.unit(150, "lb"),
  15744. name: "Stomping",
  15745. image: {
  15746. source: "./media/characters/ian-corvid/stomping.svg",
  15747. extra: 76 / 72
  15748. }
  15749. },
  15750. sitting: {
  15751. height: math.unit(7 / 1.8, "feet"),
  15752. weight: math.unit(150, "lb"),
  15753. name: "Sitting",
  15754. image: {
  15755. source: "./media/characters/ian-corvid/sitting.svg",
  15756. extra: 1400 / 1269,
  15757. bottom: 0.15
  15758. }
  15759. },
  15760. },
  15761. [
  15762. {
  15763. name: "Tiny Microw",
  15764. height: math.unit(1, "inch")
  15765. },
  15766. {
  15767. name: "Microw",
  15768. height: math.unit(6, "inches")
  15769. },
  15770. {
  15771. name: "Crow",
  15772. height: math.unit(7 + 1 / 12, "feet"),
  15773. default: true
  15774. },
  15775. {
  15776. name: "Macrow",
  15777. height: math.unit(176, "feet")
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15783. {
  15784. front: {
  15785. height: math.unit(5 + 7 / 12, "feet"),
  15786. weight: math.unit(147, "lb"),
  15787. name: "Front",
  15788. image: {
  15789. source: "./media/characters/natalie-kellon/front.svg",
  15790. extra: 1214 / 1141,
  15791. bottom: 0.02
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Micro",
  15798. height: math.unit(1 / 16, "inch")
  15799. },
  15800. {
  15801. name: "Tiny",
  15802. height: math.unit(4, "inches")
  15803. },
  15804. {
  15805. name: "Normal",
  15806. height: math.unit(5 + 7 / 12, "feet"),
  15807. default: true
  15808. },
  15809. {
  15810. name: "Amazon",
  15811. height: math.unit(12, "feet")
  15812. },
  15813. {
  15814. name: "Giantess",
  15815. height: math.unit(160, "meters")
  15816. },
  15817. {
  15818. name: "Titaness",
  15819. height: math.unit(800, "meters")
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15825. {
  15826. front: {
  15827. height: math.unit(6, "feet"),
  15828. weight: math.unit(150, "lb"),
  15829. name: "Front",
  15830. image: {
  15831. source: "./media/characters/alluria/front.svg",
  15832. extra: 806 / 738,
  15833. bottom: 0.01
  15834. }
  15835. },
  15836. side: {
  15837. height: math.unit(6, "feet"),
  15838. weight: math.unit(150, "lb"),
  15839. name: "Side",
  15840. image: {
  15841. source: "./media/characters/alluria/side.svg",
  15842. extra: 800 / 750,
  15843. }
  15844. },
  15845. back: {
  15846. height: math.unit(6, "feet"),
  15847. weight: math.unit(150, "lb"),
  15848. name: "Back",
  15849. image: {
  15850. source: "./media/characters/alluria/back.svg",
  15851. extra: 806 / 738,
  15852. }
  15853. },
  15854. frontMaid: {
  15855. height: math.unit(6, "feet"),
  15856. weight: math.unit(150, "lb"),
  15857. name: "Front (Maid)",
  15858. image: {
  15859. source: "./media/characters/alluria/front-maid.svg",
  15860. extra: 806 / 738,
  15861. bottom: 0.01
  15862. }
  15863. },
  15864. sideMaid: {
  15865. height: math.unit(6, "feet"),
  15866. weight: math.unit(150, "lb"),
  15867. name: "Side (Maid)",
  15868. image: {
  15869. source: "./media/characters/alluria/side-maid.svg",
  15870. extra: 800 / 750,
  15871. bottom: 0.005
  15872. }
  15873. },
  15874. backMaid: {
  15875. height: math.unit(6, "feet"),
  15876. weight: math.unit(150, "lb"),
  15877. name: "Back (Maid)",
  15878. image: {
  15879. source: "./media/characters/alluria/back-maid.svg",
  15880. extra: 806 / 738,
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Micro",
  15887. height: math.unit(6, "inches"),
  15888. default: true
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15894. {
  15895. front: {
  15896. height: math.unit(6, "feet"),
  15897. weight: math.unit(150, "lb"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/kyle/front.svg",
  15901. extra: 1069 / 962,
  15902. bottom: 77.228 / 1727.45
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Macro",
  15909. height: math.unit(150, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15916. {
  15917. front: {
  15918. height: math.unit(6, "feet"),
  15919. weight: math.unit(300, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/duncan/front.svg",
  15923. extra: 1650 / 1482,
  15924. bottom: 0.05
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(100, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(5 + 4 / 12, "feet"),
  15941. weight: math.unit(220, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/memory/front.svg",
  15945. extra: 3641 / 3545,
  15946. bottom: 0.03
  15947. }
  15948. },
  15949. back: {
  15950. height: math.unit(5 + 4 / 12, "feet"),
  15951. weight: math.unit(220, "lb"),
  15952. name: "Back",
  15953. image: {
  15954. source: "./media/characters/memory/back.svg",
  15955. extra: 3641 / 3545,
  15956. bottom: 0.025
  15957. }
  15958. },
  15959. frontSkirt: {
  15960. height: math.unit(5 + 4 / 12, "feet"),
  15961. weight: math.unit(220, "lb"),
  15962. name: "Front (Skirt)",
  15963. image: {
  15964. source: "./media/characters/memory/front-skirt.svg",
  15965. extra: 3641 / 3545,
  15966. bottom: 0.03
  15967. }
  15968. },
  15969. frontDress: {
  15970. height: math.unit(5 + 4 / 12, "feet"),
  15971. weight: math.unit(220, "lb"),
  15972. name: "Front (Dress)",
  15973. image: {
  15974. source: "./media/characters/memory/front-dress.svg",
  15975. extra: 3641 / 3545,
  15976. bottom: 0.03
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Micro",
  15983. height: math.unit(6, "inches"),
  15984. default: true
  15985. },
  15986. {
  15987. name: "Normal",
  15988. height: math.unit(5 + 4 / 12, "feet")
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(4 + 11 / 12, "feet"),
  15997. weight: math.unit(100, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/luno/front.svg",
  16001. extra: 1535 / 1487,
  16002. bottom: 0.03
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Micro",
  16009. height: math.unit(3, "inches")
  16010. },
  16011. {
  16012. name: "Normal",
  16013. height: math.unit(4 + 11 / 12, "feet"),
  16014. default: true
  16015. },
  16016. {
  16017. name: "Macro",
  16018. height: math.unit(300, "feet")
  16019. },
  16020. {
  16021. name: "Megamacro",
  16022. height: math.unit(700, "miles")
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16028. {
  16029. front: {
  16030. height: math.unit(6 + 2 / 12, "feet"),
  16031. weight: math.unit(170, "lb"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/jamesy/front.svg",
  16035. extra: 440 / 382,
  16036. bottom: 0.005
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Micro",
  16043. height: math.unit(3, "inches")
  16044. },
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(6 + 2 / 12, "feet"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Macro",
  16052. height: math.unit(300, "feet")
  16053. },
  16054. {
  16055. name: "Megamacro",
  16056. height: math.unit(700, "miles")
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(6, "feet"),
  16065. weight: math.unit(160, "lb"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/mark/front.svg",
  16069. extra: 3300 / 3100,
  16070. bottom: 136.42 / 3440.47
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Macro",
  16077. height: math.unit(120, "meters")
  16078. },
  16079. {
  16080. name: "Bigger Macro",
  16081. height: math.unit(350, "meters")
  16082. },
  16083. {
  16084. name: "Megamacro",
  16085. height: math.unit(8, "km"),
  16086. default: true
  16087. },
  16088. {
  16089. name: "Continental",
  16090. height: math.unit(4550, "km")
  16091. },
  16092. {
  16093. name: "Planetary",
  16094. height: math.unit(65000, "km")
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(6, "feet"),
  16103. weight: math.unit(400, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/mac/front.svg",
  16107. extra: 1048 / 987.7,
  16108. bottom: 60 / 1107.6,
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Macro",
  16115. height: math.unit(500, "feet"),
  16116. default: true
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(5 + 2 / 12, "feet"),
  16125. weight: math.unit(190, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/bari/front.svg",
  16129. extra: 3156 / 2880,
  16130. bottom: 0.03
  16131. }
  16132. },
  16133. back: {
  16134. height: math.unit(5 + 2 / 12, "feet"),
  16135. weight: math.unit(190, "lb"),
  16136. name: "Back",
  16137. image: {
  16138. source: "./media/characters/bari/back.svg",
  16139. extra: 3260 / 2834,
  16140. bottom: 0.025
  16141. }
  16142. },
  16143. frontPlush: {
  16144. height: math.unit(5 + 2 / 12, "feet"),
  16145. weight: math.unit(190, "lb"),
  16146. name: "Front (Plush)",
  16147. image: {
  16148. source: "./media/characters/bari/front-plush.svg",
  16149. extra: 1112 / 1061,
  16150. bottom: 0.002
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Micro",
  16157. height: math.unit(3, "inches")
  16158. },
  16159. {
  16160. name: "Normal",
  16161. height: math.unit(5 + 2 / 12, "feet"),
  16162. default: true
  16163. },
  16164. {
  16165. name: "Macro",
  16166. height: math.unit(20, "feet")
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(6 + 1 / 12, "feet"),
  16175. weight: math.unit(275, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/hunter-misha-raven/front.svg"
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Mortal",
  16185. height: math.unit(6 + 1 / 12, "feet")
  16186. },
  16187. {
  16188. name: "Divine",
  16189. height: math.unit(1.12134e34, "parsecs"),
  16190. default: true
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6 + 3 / 12, "feet"),
  16199. weight: math.unit(220, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/max-calore/front.svg",
  16203. extra: 1700 / 1648,
  16204. bottom: 0.01
  16205. }
  16206. },
  16207. back: {
  16208. height: math.unit(6 + 3 / 12, "feet"),
  16209. weight: math.unit(220, "lb"),
  16210. name: "Back",
  16211. image: {
  16212. source: "./media/characters/max-calore/back.svg",
  16213. extra: 1700 / 1648,
  16214. bottom: 0.01
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(6 + 3 / 12, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16228. {
  16229. side: {
  16230. height: math.unit(2 + 8 / 12, "feet"),
  16231. weight: math.unit(99, "lb"),
  16232. name: "Side",
  16233. image: {
  16234. source: "./media/characters/aspen/side.svg",
  16235. extra: 152 / 138,
  16236. bottom: 0.032
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(2 + 8 / 12, "feet"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16250. {
  16251. side: {
  16252. height: math.unit(3 + 2 / 12, "feet"),
  16253. weight: math.unit(224, "lb"),
  16254. name: "Side",
  16255. image: {
  16256. source: "./media/characters/sheila-feral-wolf/side.svg",
  16257. extra: 179 / 166,
  16258. bottom: 0.03
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(3 + 2 / 12, "feet"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16272. {
  16273. side: {
  16274. height: math.unit(1 + 9 / 12, "feet"),
  16275. weight: math.unit(38, "lb"),
  16276. name: "Side",
  16277. image: {
  16278. source: "./media/characters/michelle/side.svg",
  16279. extra: 147 / 136.7,
  16280. bottom: 0.03
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Normal",
  16287. height: math.unit(1 + 9 / 12, "feet"),
  16288. default: true
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16294. {
  16295. front: {
  16296. height: math.unit(1 + 1 / 12, "feet"),
  16297. weight: math.unit(18, "lb"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/nino/front.svg"
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(1 + 1 / 12, "feet"),
  16308. default: true
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(1, "feet"),
  16317. weight: math.unit(16, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/viola/front.svg"
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(1, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(6 + 5 / 12, "feet"),
  16337. weight: math.unit(580, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/atlas/front.svg",
  16341. extra: 298.5 / 290,
  16342. bottom: 0.015
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(6 + 5 / 12, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16356. {
  16357. side: {
  16358. height: math.unit(1 + 10 / 12, "feet"),
  16359. weight: math.unit(25, "lb"),
  16360. name: "Side",
  16361. image: {
  16362. source: "./media/characters/davy/side.svg",
  16363. extra: 200 / 170,
  16364. bottom: 0.01
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(1 + 10 / 12, "feet"),
  16372. default: true
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16378. {
  16379. side: {
  16380. height: math.unit(4 + 8 / 12, "feet"),
  16381. weight: math.unit(166, "lb"),
  16382. name: "Side",
  16383. image: {
  16384. source: "./media/characters/fiona/side.svg",
  16385. extra: 232 / 220,
  16386. bottom: 0.03
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Normal",
  16393. height: math.unit(4 + 8 / 12, "feet"),
  16394. default: true
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16400. {
  16401. front: {
  16402. height: math.unit(2, "feet"),
  16403. weight: math.unit(62, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/lyla/front.svg",
  16407. bottom: 0.1
  16408. }
  16409. },
  16410. },
  16411. [
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(2, "feet"),
  16415. default: true
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16421. {
  16422. side: {
  16423. height: math.unit(1.8, "feet"),
  16424. weight: math.unit(44, "lb"),
  16425. name: "Side",
  16426. image: {
  16427. source: "./media/characters/perseus/side.svg",
  16428. bottom: 0.21
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(1.8, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16442. {
  16443. side: {
  16444. height: math.unit(4 + 2 / 12, "feet"),
  16445. weight: math.unit(20, "lb"),
  16446. name: "Side",
  16447. image: {
  16448. source: "./media/characters/remus/side.svg"
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(4 + 2 / 12, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(4 + 11 / 12, "feet"),
  16465. weight: math.unit(114, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/raf/front.svg",
  16469. bottom: 20.5 / 1863
  16470. }
  16471. },
  16472. side: {
  16473. height: math.unit(4 + 11 / 12, "feet"),
  16474. weight: math.unit(114, "lb"),
  16475. name: "Side",
  16476. image: {
  16477. source: "./media/characters/raf/side.svg",
  16478. bottom: 22 / 1822
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Micro",
  16485. height: math.unit(2, "inches")
  16486. },
  16487. {
  16488. name: "Normal",
  16489. height: math.unit(4 + 11 / 12, "feet"),
  16490. default: true
  16491. },
  16492. {
  16493. name: "Macro",
  16494. height: math.unit(70, "feet")
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16500. {
  16501. front: {
  16502. height: math.unit(1.5, "meters"),
  16503. weight: math.unit(68, "kg"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/liam-einarr/front.svg",
  16507. extra: 2822 / 2666
  16508. }
  16509. },
  16510. back: {
  16511. height: math.unit(1.5, "meters"),
  16512. weight: math.unit(68, "kg"),
  16513. name: "Back",
  16514. image: {
  16515. source: "./media/characters/liam-einarr/back.svg",
  16516. extra: 2822 / 2666,
  16517. bottom: 0.015
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(1.5, "meters"),
  16525. default: true
  16526. },
  16527. {
  16528. name: "Macro",
  16529. height: math.unit(150, "meters")
  16530. },
  16531. {
  16532. name: "Megamacro",
  16533. height: math.unit(35, "km")
  16534. },
  16535. ]
  16536. ))
  16537. characterMakers.push(() => makeCharacter(
  16538. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16539. {
  16540. front: {
  16541. height: math.unit(6, "feet"),
  16542. weight: math.unit(75, "kg"),
  16543. name: "Front",
  16544. image: {
  16545. source: "./media/characters/linda/front.svg",
  16546. extra: 930 / 874,
  16547. bottom: 0.004
  16548. }
  16549. },
  16550. },
  16551. [
  16552. {
  16553. name: "Normal",
  16554. height: math.unit(6, "feet"),
  16555. default: true
  16556. },
  16557. ]
  16558. ))
  16559. characterMakers.push(() => makeCharacter(
  16560. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16561. {
  16562. front: {
  16563. height: math.unit(6 + 8 / 12, "feet"),
  16564. weight: math.unit(220, "lb"),
  16565. name: "Front",
  16566. image: {
  16567. source: "./media/characters/caylex/front.svg",
  16568. extra: 821 / 772,
  16569. bottom: 0.07
  16570. }
  16571. },
  16572. back: {
  16573. height: math.unit(6 + 8 / 12, "feet"),
  16574. weight: math.unit(220, "lb"),
  16575. name: "Back",
  16576. image: {
  16577. source: "./media/characters/caylex/back.svg",
  16578. extra: 821 / 772,
  16579. bottom: 0.022
  16580. }
  16581. },
  16582. hand: {
  16583. height: math.unit(1.25, "feet"),
  16584. name: "Hand",
  16585. image: {
  16586. source: "./media/characters/caylex/hand.svg"
  16587. }
  16588. },
  16589. foot: {
  16590. height: math.unit(1.6, "feet"),
  16591. name: "Foot",
  16592. image: {
  16593. source: "./media/characters/caylex/foot.svg"
  16594. }
  16595. },
  16596. armored: {
  16597. height: math.unit(6 + 8 / 12, "feet"),
  16598. weight: math.unit(250, "lb"),
  16599. name: "Armored",
  16600. image: {
  16601. source: "./media/characters/caylex/armored.svg",
  16602. extra: 1420 / 1310,
  16603. bottom: 0.045
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(6 + 8 / 12, "feet"),
  16611. default: true
  16612. },
  16613. {
  16614. name: "Normal+",
  16615. height: math.unit(12, "feet")
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16621. {
  16622. front: {
  16623. height: math.unit(7 + 6 / 12, "feet"),
  16624. weight: math.unit(288, "lb"),
  16625. name: "Front",
  16626. image: {
  16627. source: "./media/characters/alana/front.svg",
  16628. extra: 679 / 653,
  16629. bottom: 22.5 / 701
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(7 + 6 / 12, "feet")
  16637. },
  16638. {
  16639. name: "Large",
  16640. height: math.unit(50, "feet")
  16641. },
  16642. {
  16643. name: "Macro",
  16644. height: math.unit(100, "feet"),
  16645. default: true
  16646. },
  16647. {
  16648. name: "Macro+",
  16649. height: math.unit(200, "feet")
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16655. {
  16656. front: {
  16657. height: math.unit(6 + 1 / 12, "feet"),
  16658. weight: math.unit(210, "lb"),
  16659. name: "Front",
  16660. image: {
  16661. source: "./media/characters/hasani/front.svg",
  16662. extra: 244 / 232,
  16663. bottom: 0.01
  16664. }
  16665. },
  16666. back: {
  16667. height: math.unit(6 + 1 / 12, "feet"),
  16668. weight: math.unit(210, "lb"),
  16669. name: "Back",
  16670. image: {
  16671. source: "./media/characters/hasani/back.svg",
  16672. extra: 244 / 232,
  16673. bottom: 0.01
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(6 + 1 / 12, "feet")
  16681. },
  16682. {
  16683. name: "Macro",
  16684. height: math.unit(175, "feet"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(1.82, "meters"),
  16694. weight: math.unit(140, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/nita/front.svg",
  16698. extra: 2473 / 2363,
  16699. bottom: 0.01
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(1.82, "m")
  16707. },
  16708. {
  16709. name: "Macro",
  16710. height: math.unit(300, "m")
  16711. },
  16712. {
  16713. name: "Mistake Canon",
  16714. height: math.unit(0.5, "miles"),
  16715. default: true
  16716. },
  16717. {
  16718. name: "Big Mistake",
  16719. height: math.unit(13, "miles")
  16720. },
  16721. {
  16722. name: "Playing God",
  16723. height: math.unit(2450, "miles")
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16729. {
  16730. front: {
  16731. height: math.unit(4, "feet"),
  16732. weight: math.unit(120, "lb"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/shiriko/front.svg",
  16736. extra: 195 / 188
  16737. }
  16738. },
  16739. },
  16740. [
  16741. {
  16742. name: "Normal",
  16743. height: math.unit(4, "feet"),
  16744. default: true
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16750. {
  16751. front: {
  16752. height: math.unit(6, "feet"),
  16753. name: "front",
  16754. image: {
  16755. source: "./media/characters/deja/front.svg",
  16756. extra: 926 / 840,
  16757. bottom: 0.07
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Planck Length",
  16764. height: math.unit(1.6e-35, "meters")
  16765. },
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(30.48, "meters"),
  16769. default: true
  16770. },
  16771. {
  16772. name: "Universal",
  16773. height: math.unit(8.8e26, "meters")
  16774. },
  16775. ]
  16776. ))
  16777. characterMakers.push(() => makeCharacter(
  16778. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16779. {
  16780. side: {
  16781. height: math.unit(8, "feet"),
  16782. weight: math.unit(6300, "lb"),
  16783. name: "Side",
  16784. image: {
  16785. source: "./media/characters/anima/side.svg",
  16786. bottom: 0.035
  16787. }
  16788. },
  16789. },
  16790. [
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(8, "feet"),
  16794. default: true
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(8, "feet"),
  16803. weight: math.unit(350, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/bianca/front.svg",
  16807. extra: 234 / 225,
  16808. bottom: 0.03
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(8, "feet"),
  16816. default: true
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16822. {
  16823. front: {
  16824. height: math.unit(6, "feet"),
  16825. weight: math.unit(150, "lb"),
  16826. name: "Front",
  16827. image: {
  16828. source: "./media/characters/adinia/front.svg",
  16829. extra: 1845 / 1672,
  16830. bottom: 0.02
  16831. }
  16832. },
  16833. back: {
  16834. height: math.unit(6, "feet"),
  16835. weight: math.unit(150, "lb"),
  16836. name: "Back",
  16837. image: {
  16838. source: "./media/characters/adinia/back.svg",
  16839. extra: 1845 / 1672,
  16840. bottom: 0.002
  16841. }
  16842. },
  16843. },
  16844. [
  16845. {
  16846. name: "Normal",
  16847. height: math.unit(11 + 5 / 12, "feet"),
  16848. default: true
  16849. },
  16850. ]
  16851. ))
  16852. characterMakers.push(() => makeCharacter(
  16853. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16854. {
  16855. front: {
  16856. height: math.unit(3, "meters"),
  16857. weight: math.unit(200, "kg"),
  16858. name: "Front",
  16859. image: {
  16860. source: "./media/characters/lykasa/front.svg",
  16861. extra: 1076 / 976,
  16862. bottom: 0.06
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Normal",
  16869. height: math.unit(3, "meters")
  16870. },
  16871. {
  16872. name: "Kaiju",
  16873. height: math.unit(120, "meters"),
  16874. default: true
  16875. },
  16876. {
  16877. name: "Mega Kaiju",
  16878. height: math.unit(240, "km")
  16879. },
  16880. {
  16881. name: "Giga Kaiju",
  16882. height: math.unit(400, "megameters")
  16883. },
  16884. {
  16885. name: "Tera Kaiju",
  16886. height: math.unit(800, "gigameters")
  16887. },
  16888. {
  16889. name: "Kaiju Dragon Goddess",
  16890. height: math.unit(26, "zettaparsecs")
  16891. },
  16892. ]
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16896. {
  16897. side: {
  16898. height: math.unit(283 / 124 * 6, "feet"),
  16899. weight: math.unit(35000, "lb"),
  16900. name: "Side",
  16901. image: {
  16902. source: "./media/characters/malfaren/side.svg",
  16903. extra: 2500 / 1010,
  16904. bottom: 0.01
  16905. }
  16906. },
  16907. front: {
  16908. height: math.unit(22.36, "feet"),
  16909. weight: math.unit(35000, "lb"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/malfaren/front.svg",
  16913. extra: 1631 / 1476,
  16914. bottom: 0.01
  16915. }
  16916. },
  16917. maw: {
  16918. height: math.unit(6.9, "feet"),
  16919. name: "Maw",
  16920. image: {
  16921. source: "./media/characters/malfaren/maw.svg"
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Big",
  16928. height: math.unit(283 / 162 * 6, "feet"),
  16929. },
  16930. {
  16931. name: "Bigger",
  16932. height: math.unit(283 / 124 * 6, "feet")
  16933. },
  16934. {
  16935. name: "Massive",
  16936. height: math.unit(283 / 92 * 6, "feet"),
  16937. default: true
  16938. },
  16939. {
  16940. name: "👀💦",
  16941. height: math.unit(283 / 73 * 6, "feet"),
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(1.7, "m"),
  16950. weight: math.unit(70, "kg"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/kernel/front.svg",
  16954. extra: 222 / 210,
  16955. bottom: 0.007
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Nano",
  16962. height: math.unit(17, "micrometers")
  16963. },
  16964. {
  16965. name: "Micro",
  16966. height: math.unit(1.7, "mm")
  16967. },
  16968. {
  16969. name: "Small",
  16970. height: math.unit(1.7, "cm")
  16971. },
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(1.7, "m"),
  16975. default: true
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16981. {
  16982. front: {
  16983. height: math.unit(1.75, "meters"),
  16984. weight: math.unit(65, "kg"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/jayne-folest/front.svg",
  16988. extra: 2115 / 2007,
  16989. bottom: 0.02
  16990. }
  16991. },
  16992. back: {
  16993. height: math.unit(1.75, "meters"),
  16994. weight: math.unit(65, "kg"),
  16995. name: "Back",
  16996. image: {
  16997. source: "./media/characters/jayne-folest/back.svg",
  16998. extra: 2115 / 2007,
  16999. bottom: 0.005
  17000. }
  17001. },
  17002. frontClothed: {
  17003. height: math.unit(1.75, "meters"),
  17004. weight: math.unit(65, "kg"),
  17005. name: "Front (Clothed)",
  17006. image: {
  17007. source: "./media/characters/jayne-folest/front-clothed.svg",
  17008. extra: 2115 / 2007,
  17009. bottom: 0.035
  17010. }
  17011. },
  17012. hand: {
  17013. height: math.unit(1 / 1.260, "feet"),
  17014. name: "Hand",
  17015. image: {
  17016. source: "./media/characters/jayne-folest/hand.svg"
  17017. }
  17018. },
  17019. foot: {
  17020. height: math.unit(1 / 0.918, "feet"),
  17021. name: "Foot",
  17022. image: {
  17023. source: "./media/characters/jayne-folest/foot.svg"
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Micro",
  17030. height: math.unit(4, "cm")
  17031. },
  17032. {
  17033. name: "Normal",
  17034. height: math.unit(1.75, "meters")
  17035. },
  17036. {
  17037. name: "Macro",
  17038. height: math.unit(47.5, "meters"),
  17039. default: true
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17045. {
  17046. front: {
  17047. height: math.unit(180, "cm"),
  17048. weight: math.unit(70, "kg"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/algier/front.svg",
  17052. extra: 596 / 572,
  17053. bottom: 0.04
  17054. }
  17055. },
  17056. back: {
  17057. height: math.unit(180, "cm"),
  17058. weight: math.unit(70, "kg"),
  17059. name: "Back",
  17060. image: {
  17061. source: "./media/characters/algier/back.svg",
  17062. extra: 596 / 572,
  17063. bottom: 0.025
  17064. }
  17065. },
  17066. frontdressed: {
  17067. height: math.unit(180, "cm"),
  17068. weight: math.unit(150, "kg"),
  17069. name: "Front-dressed",
  17070. image: {
  17071. source: "./media/characters/algier/front-dressed.svg",
  17072. extra: 596 / 572,
  17073. bottom: 0.038
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Micro",
  17080. height: math.unit(5, "cm")
  17081. },
  17082. {
  17083. name: "Normal",
  17084. height: math.unit(180, "cm"),
  17085. default: true
  17086. },
  17087. {
  17088. name: "Macro",
  17089. height: math.unit(64, "m")
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17095. {
  17096. upright: {
  17097. height: math.unit(7, "feet"),
  17098. weight: math.unit(300, "lb"),
  17099. name: "Upright",
  17100. image: {
  17101. source: "./media/characters/pretzel/upright.svg",
  17102. extra: 534 / 522,
  17103. bottom: 0.065
  17104. }
  17105. },
  17106. sprawling: {
  17107. height: math.unit(3.75, "feet"),
  17108. weight: math.unit(300, "lb"),
  17109. name: "Sprawling",
  17110. image: {
  17111. source: "./media/characters/pretzel/sprawling.svg",
  17112. extra: 314 / 281,
  17113. bottom: 0.1
  17114. }
  17115. },
  17116. tongue: {
  17117. height: math.unit(2, "feet"),
  17118. name: "Tongue",
  17119. image: {
  17120. source: "./media/characters/pretzel/tongue.svg"
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(7, "feet"),
  17128. default: true
  17129. },
  17130. {
  17131. name: "Oversized",
  17132. height: math.unit(15, "feet")
  17133. },
  17134. {
  17135. name: "Huge",
  17136. height: math.unit(30, "feet")
  17137. },
  17138. {
  17139. name: "Macro",
  17140. height: math.unit(250, "feet")
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17146. {
  17147. sideFront: {
  17148. height: math.unit(5 + 2 / 12, "feet"),
  17149. weight: math.unit(120, "lb"),
  17150. name: "Front Side",
  17151. image: {
  17152. source: "./media/characters/roxi/side-front.svg",
  17153. extra: 2924 / 2717,
  17154. bottom: 0.08
  17155. }
  17156. },
  17157. sideBack: {
  17158. height: math.unit(5 + 2 / 12, "feet"),
  17159. weight: math.unit(120, "lb"),
  17160. name: "Back Side",
  17161. image: {
  17162. source: "./media/characters/roxi/side-back.svg",
  17163. extra: 2904 / 2693,
  17164. bottom: 0.06
  17165. }
  17166. },
  17167. front: {
  17168. height: math.unit(5 + 2 / 12, "feet"),
  17169. weight: math.unit(120, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/roxi/front.svg",
  17173. extra: 2028 / 1907,
  17174. bottom: 0.01
  17175. }
  17176. },
  17177. frontAlt: {
  17178. height: math.unit(5 + 2 / 12, "feet"),
  17179. weight: math.unit(120, "lb"),
  17180. name: "Front (Alt)",
  17181. image: {
  17182. source: "./media/characters/roxi/front-alt.svg",
  17183. extra: 1828 / 1798,
  17184. bottom: 0.01
  17185. }
  17186. },
  17187. sitting: {
  17188. height: math.unit(2.8, "feet"),
  17189. weight: math.unit(120, "lb"),
  17190. name: "Sitting",
  17191. image: {
  17192. source: "./media/characters/roxi/sitting.svg",
  17193. extra: 2660 / 2462,
  17194. bottom: 0.1
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(5 + 2 / 12, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17208. {
  17209. side: {
  17210. height: math.unit(55, "feet"),
  17211. weight: math.unit(153, "tons"),
  17212. name: "Side",
  17213. image: {
  17214. source: "./media/characters/shadow/side.svg",
  17215. extra: 701 / 628,
  17216. bottom: 0.02
  17217. }
  17218. },
  17219. flying: {
  17220. height: math.unit(145, "feet"),
  17221. weight: math.unit(153, "tons"),
  17222. name: "Flying",
  17223. image: {
  17224. source: "./media/characters/shadow/flying.svg"
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(55, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(6, "feet"),
  17241. weight: math.unit(200, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/marcie/front.svg",
  17245. extra: 960 / 876,
  17246. bottom: 58 / 1017.87
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Macro",
  17253. height: math.unit(1, "mile"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17260. {
  17261. front: {
  17262. height: math.unit(7, "feet"),
  17263. weight: math.unit(200, "lb"),
  17264. name: "Front",
  17265. image: {
  17266. source: "./media/characters/kachina/front.svg",
  17267. extra: 1290.68 / 1119,
  17268. bottom: 36.5 / 1327.18
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(7, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17282. {
  17283. looking: {
  17284. height: math.unit(2, "meters"),
  17285. weight: math.unit(300, "kg"),
  17286. name: "Looking",
  17287. image: {
  17288. source: "./media/characters/kash/looking.svg",
  17289. extra: 474 / 344,
  17290. bottom: 0.03
  17291. }
  17292. },
  17293. side: {
  17294. height: math.unit(2, "meters"),
  17295. weight: math.unit(300, "kg"),
  17296. name: "Side",
  17297. image: {
  17298. source: "./media/characters/kash/side.svg",
  17299. extra: 302 / 251,
  17300. bottom: 0.03
  17301. }
  17302. },
  17303. front: {
  17304. height: math.unit(2, "meters"),
  17305. weight: math.unit(300, "kg"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/kash/front.svg",
  17309. extra: 495 / 360,
  17310. bottom: 0.015
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(2, "meters"),
  17318. default: true
  17319. },
  17320. {
  17321. name: "Big",
  17322. height: math.unit(3, "meters")
  17323. },
  17324. {
  17325. name: "Large",
  17326. height: math.unit(5, "meters")
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17332. {
  17333. feeding: {
  17334. height: math.unit(6.7, "feet"),
  17335. weight: math.unit(350, "lb"),
  17336. name: "Feeding",
  17337. image: {
  17338. source: "./media/characters/lalim/feeding.svg",
  17339. }
  17340. },
  17341. },
  17342. [
  17343. {
  17344. name: "Normal",
  17345. height: math.unit(6.7, "feet"),
  17346. default: true
  17347. },
  17348. ]
  17349. ))
  17350. characterMakers.push(() => makeCharacter(
  17351. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17352. {
  17353. front: {
  17354. height: math.unit(9.5, "feet"),
  17355. weight: math.unit(600, "lb"),
  17356. name: "Front",
  17357. image: {
  17358. source: "./media/characters/de'vout/front.svg",
  17359. extra: 1443 / 1328,
  17360. bottom: 0.025
  17361. }
  17362. },
  17363. back: {
  17364. height: math.unit(9.5, "feet"),
  17365. weight: math.unit(600, "lb"),
  17366. name: "Back",
  17367. image: {
  17368. source: "./media/characters/de'vout/back.svg",
  17369. extra: 1443 / 1328
  17370. }
  17371. },
  17372. frontDressed: {
  17373. height: math.unit(9.5, "feet"),
  17374. weight: math.unit(600, "lb"),
  17375. name: "Front (Dressed",
  17376. image: {
  17377. source: "./media/characters/de'vout/front-dressed.svg",
  17378. extra: 1443 / 1328,
  17379. bottom: 0.025
  17380. }
  17381. },
  17382. backDressed: {
  17383. height: math.unit(9.5, "feet"),
  17384. weight: math.unit(600, "lb"),
  17385. name: "Back (Dressed",
  17386. image: {
  17387. source: "./media/characters/de'vout/back-dressed.svg",
  17388. extra: 1443 / 1328
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(9.5, "feet"),
  17396. default: true
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17402. {
  17403. front: {
  17404. height: math.unit(8, "feet"),
  17405. weight: math.unit(225, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/talana/front.svg",
  17409. extra: 1410 / 1300,
  17410. bottom: 0.015
  17411. }
  17412. },
  17413. frontDressed: {
  17414. height: math.unit(8, "feet"),
  17415. weight: math.unit(225, "lb"),
  17416. name: "Front (Dressed",
  17417. image: {
  17418. source: "./media/characters/talana/front-dressed.svg",
  17419. extra: 1410 / 1300,
  17420. bottom: 0.015
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(8, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17434. {
  17435. side: {
  17436. height: math.unit(7.2, "feet"),
  17437. weight: math.unit(150, "lb"),
  17438. name: "Side",
  17439. image: {
  17440. source: "./media/characters/xeauvok/side.svg",
  17441. extra: 1975 / 1523,
  17442. bottom: 0.07
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(7.2, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17456. {
  17457. side: {
  17458. height: math.unit(10, "feet"),
  17459. weight: math.unit(900, "kg"),
  17460. name: "Side",
  17461. image: {
  17462. source: "./media/characters/zara/side.svg",
  17463. extra: 504 / 498
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(10, "feet"),
  17471. default: true
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17477. {
  17478. side: {
  17479. height: math.unit(6, "feet"),
  17480. weight: math.unit(150, "lb"),
  17481. name: "Side",
  17482. image: {
  17483. source: "./media/characters/richard-dragon/side.svg",
  17484. extra: 845 / 340,
  17485. bottom: 0.017
  17486. }
  17487. },
  17488. maw: {
  17489. height: math.unit(2.97, "feet"),
  17490. name: "Maw",
  17491. image: {
  17492. source: "./media/characters/richard-dragon/maw.svg"
  17493. }
  17494. },
  17495. },
  17496. [
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(4, "feet"),
  17504. weight: math.unit(100, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/richard-smeargle/front.svg",
  17508. extra: 2952 / 2820,
  17509. bottom: 0.028
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(4, "feet"),
  17517. default: true
  17518. },
  17519. {
  17520. name: "Dynamax",
  17521. height: math.unit(20, "meters")
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(6, "feet"),
  17530. weight: math.unit(110, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/klay/front.svg",
  17534. extra: 962 / 883,
  17535. bottom: 0.04
  17536. }
  17537. },
  17538. back: {
  17539. height: math.unit(6, "feet"),
  17540. weight: math.unit(110, "lb"),
  17541. name: "Back",
  17542. image: {
  17543. source: "./media/characters/klay/back.svg",
  17544. extra: 962 / 883
  17545. }
  17546. },
  17547. beans: {
  17548. height: math.unit(1.15, "feet"),
  17549. name: "Beans",
  17550. image: {
  17551. source: "./media/characters/klay/beans.svg"
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Micro",
  17558. height: math.unit(6, "inches")
  17559. },
  17560. {
  17561. name: "Mini",
  17562. height: math.unit(3, "feet")
  17563. },
  17564. {
  17565. name: "Normal",
  17566. height: math.unit(6, "feet"),
  17567. default: true
  17568. },
  17569. {
  17570. name: "Big",
  17571. height: math.unit(25, "feet")
  17572. },
  17573. {
  17574. name: "Macro",
  17575. height: math.unit(100, "feet")
  17576. },
  17577. {
  17578. name: "Megamacro",
  17579. height: math.unit(400, "feet")
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(6, "feet"),
  17588. weight: math.unit(160, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/marcus/front.svg",
  17592. extra: 734 / 676,
  17593. bottom: 0.03
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Little",
  17600. height: math.unit(6, "feet")
  17601. },
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(110, "feet"),
  17605. default: true
  17606. },
  17607. {
  17608. name: "Macro",
  17609. height: math.unit(250, "feet")
  17610. },
  17611. {
  17612. name: "Megamacro",
  17613. height: math.unit(1000, "feet")
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17619. {
  17620. front: {
  17621. height: math.unit(7, "feet"),
  17622. weight: math.unit(275, "lb"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/claude-delroute/front.svg",
  17626. extra: 230 / 214,
  17627. bottom: 0.007
  17628. }
  17629. },
  17630. side: {
  17631. height: math.unit(7, "feet"),
  17632. weight: math.unit(275, "lb"),
  17633. name: "Side",
  17634. image: {
  17635. source: "./media/characters/claude-delroute/side.svg",
  17636. extra: 222 / 214,
  17637. bottom: 0.01
  17638. }
  17639. },
  17640. back: {
  17641. height: math.unit(7, "feet"),
  17642. weight: math.unit(275, "lb"),
  17643. name: "Back",
  17644. image: {
  17645. source: "./media/characters/claude-delroute/back.svg",
  17646. extra: 230 / 214,
  17647. bottom: 0.015
  17648. }
  17649. },
  17650. maw: {
  17651. height: math.unit(0.6407, "meters"),
  17652. name: "Maw",
  17653. image: {
  17654. source: "./media/characters/claude-delroute/maw.svg"
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Normal",
  17661. height: math.unit(7, "feet"),
  17662. default: true
  17663. },
  17664. {
  17665. name: "Lorge",
  17666. height: math.unit(20, "feet")
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(8 + 4 / 12, "feet"),
  17675. weight: math.unit(600, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/dragonien/front.svg",
  17679. extra: 100 / 94,
  17680. bottom: 3.3 / 103.3445
  17681. }
  17682. },
  17683. back: {
  17684. height: math.unit(8 + 4 / 12, "feet"),
  17685. weight: math.unit(600, "lb"),
  17686. name: "Back",
  17687. image: {
  17688. source: "./media/characters/dragonien/back.svg",
  17689. extra: 776 / 746,
  17690. bottom: 6.4 / 782.0616
  17691. }
  17692. },
  17693. foot: {
  17694. height: math.unit(1.54, "feet"),
  17695. name: "Foot",
  17696. image: {
  17697. source: "./media/characters/dragonien/foot.svg",
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(8 + 4 / 12, "feet"),
  17705. default: true
  17706. },
  17707. {
  17708. name: "Macro",
  17709. height: math.unit(200, "feet")
  17710. },
  17711. {
  17712. name: "Megamacro",
  17713. height: math.unit(1, "mile")
  17714. },
  17715. {
  17716. name: "Gigamacro",
  17717. height: math.unit(1000, "miles")
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(5 + 2 / 12, "feet"),
  17726. weight: math.unit(110, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/desta/front.svg",
  17730. extra: 767 / 726,
  17731. bottom: 11.7 / 779
  17732. }
  17733. },
  17734. back: {
  17735. height: math.unit(5 + 2 / 12, "feet"),
  17736. weight: math.unit(110, "lb"),
  17737. name: "Back",
  17738. image: {
  17739. source: "./media/characters/desta/back.svg",
  17740. extra: 777 / 728,
  17741. bottom: 6 / 784
  17742. }
  17743. },
  17744. frontAlt: {
  17745. height: math.unit(5 + 2 / 12, "feet"),
  17746. weight: math.unit(110, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/desta/front-alt.svg",
  17750. extra: 1482 / 1417
  17751. }
  17752. },
  17753. side: {
  17754. height: math.unit(5 + 2 / 12, "feet"),
  17755. weight: math.unit(110, "lb"),
  17756. name: "Side",
  17757. image: {
  17758. source: "./media/characters/desta/side.svg",
  17759. extra: 2579 / 2491,
  17760. bottom: 0.053
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Micro",
  17767. height: math.unit(6, "inches")
  17768. },
  17769. {
  17770. name: "Normal",
  17771. height: math.unit(5 + 2 / 12, "feet"),
  17772. default: true
  17773. },
  17774. {
  17775. name: "Macro",
  17776. height: math.unit(62, "feet")
  17777. },
  17778. {
  17779. name: "Megamacro",
  17780. height: math.unit(1800, "feet")
  17781. },
  17782. ]
  17783. ))
  17784. characterMakers.push(() => makeCharacter(
  17785. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17786. {
  17787. front: {
  17788. height: math.unit(10, "feet"),
  17789. weight: math.unit(700, "lb"),
  17790. name: "Front",
  17791. image: {
  17792. source: "./media/characters/storm-alystar/front.svg",
  17793. extra: 2112 / 1898,
  17794. bottom: 0.034
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Micro",
  17801. height: math.unit(3.5, "inches")
  17802. },
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(10, "feet"),
  17806. default: true
  17807. },
  17808. {
  17809. name: "Macro",
  17810. height: math.unit(400, "feet")
  17811. },
  17812. {
  17813. name: "Deific",
  17814. height: math.unit(60, "miles")
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17820. {
  17821. front: {
  17822. height: math.unit(2.35, "meters"),
  17823. weight: math.unit(119, "kg"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/ilia/front.svg",
  17827. extra: 1285 / 1255,
  17828. bottom: 0.06
  17829. }
  17830. },
  17831. },
  17832. [
  17833. {
  17834. name: "Normal",
  17835. height: math.unit(2.35, "meters")
  17836. },
  17837. {
  17838. name: "Macro",
  17839. height: math.unit(140, "meters"),
  17840. default: true
  17841. },
  17842. {
  17843. name: "Megamacro",
  17844. height: math.unit(100, "miles")
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17850. {
  17851. front: {
  17852. height: math.unit(6 + 5 / 12, "feet"),
  17853. weight: math.unit(190, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/kingdead/front.svg",
  17857. extra: 1228 / 1177
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Micro",
  17864. height: math.unit(7, "inches")
  17865. },
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(6 + 5 / 12, "feet")
  17869. },
  17870. {
  17871. name: "Macro",
  17872. height: math.unit(150, "feet"),
  17873. default: true
  17874. },
  17875. {
  17876. name: "Megamacro",
  17877. height: math.unit(200, "miles")
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(8, "feet"),
  17886. weight: math.unit(600, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/kyrehx/front.svg",
  17890. extra: 1195 / 1095,
  17891. bottom: 0.034
  17892. }
  17893. },
  17894. },
  17895. [
  17896. {
  17897. name: "Micro",
  17898. height: math.unit(2, "inches")
  17899. },
  17900. {
  17901. name: "Normal",
  17902. height: math.unit(8, "feet"),
  17903. default: true
  17904. },
  17905. {
  17906. name: "Macro",
  17907. height: math.unit(255, "feet")
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17913. {
  17914. front: {
  17915. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17916. weight: math.unit(184, "lb"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/xang/front.svg",
  17920. extra: 845 / 755
  17921. }
  17922. },
  17923. },
  17924. [
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17928. default: true
  17929. },
  17930. {
  17931. name: "Macro",
  17932. height: math.unit(0.935 * 146, "feet")
  17933. },
  17934. {
  17935. name: "Megamacro",
  17936. height: math.unit(0.935 * 3, "miles")
  17937. },
  17938. ]
  17939. ))
  17940. characterMakers.push(() => makeCharacter(
  17941. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17942. {
  17943. frontDressed: {
  17944. height: math.unit(5 + 7 / 12, "feet"),
  17945. weight: math.unit(140, "lb"),
  17946. name: "Front (Dressed)",
  17947. image: {
  17948. source: "./media/characters/doc-weardno/front-dressed.svg",
  17949. extra: 263 / 234
  17950. }
  17951. },
  17952. backDressed: {
  17953. height: math.unit(5 + 7 / 12, "feet"),
  17954. weight: math.unit(140, "lb"),
  17955. name: "Back (Dressed)",
  17956. image: {
  17957. source: "./media/characters/doc-weardno/back-dressed.svg",
  17958. extra: 266 / 238
  17959. }
  17960. },
  17961. front: {
  17962. height: math.unit(5 + 7 / 12, "feet"),
  17963. weight: math.unit(140, "lb"),
  17964. name: "Front",
  17965. image: {
  17966. source: "./media/characters/doc-weardno/front.svg",
  17967. extra: 254 / 233
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Micro",
  17974. height: math.unit(3, "inches")
  17975. },
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(5 + 7 / 12, "feet"),
  17979. default: true
  17980. },
  17981. {
  17982. name: "Macro",
  17983. height: math.unit(25, "feet")
  17984. },
  17985. {
  17986. name: "Megamacro",
  17987. height: math.unit(2, "miles")
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17993. {
  17994. front: {
  17995. height: math.unit(6 + 2 / 12, "feet"),
  17996. weight: math.unit(153, "lb"),
  17997. name: "Front",
  17998. image: {
  17999. source: "./media/characters/seth-whilst/front.svg",
  18000. bottom: 0.07
  18001. }
  18002. },
  18003. },
  18004. [
  18005. {
  18006. name: "Micro",
  18007. height: math.unit(5, "inches")
  18008. },
  18009. {
  18010. name: "Normal",
  18011. height: math.unit(6 + 2 / 12, "feet"),
  18012. default: true
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18018. {
  18019. front: {
  18020. height: math.unit(3, "inches"),
  18021. weight: math.unit(8, "grams"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/pocket-jabari/front.svg",
  18025. extra: 1024 / 974,
  18026. bottom: 0.039
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Minimicro",
  18033. height: math.unit(8, "mm")
  18034. },
  18035. {
  18036. name: "Micro",
  18037. height: math.unit(3, "inches"),
  18038. default: true
  18039. },
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(3, "feet")
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18048. {
  18049. front: {
  18050. height: math.unit(15, "feet"),
  18051. weight: math.unit(3280, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/sapphy/front.svg",
  18055. extra: 671 / 577,
  18056. bottom: 0.085
  18057. }
  18058. },
  18059. back: {
  18060. height: math.unit(15, "feet"),
  18061. weight: math.unit(3280, "lb"),
  18062. name: "Back",
  18063. image: {
  18064. source: "./media/characters/sapphy/back.svg",
  18065. extra: 631 / 607,
  18066. bottom: 0.045
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Normal",
  18073. height: math.unit(15, "feet")
  18074. },
  18075. {
  18076. name: "Casual Macro",
  18077. height: math.unit(120, "feet")
  18078. },
  18079. {
  18080. name: "Macro",
  18081. height: math.unit(2150, "feet"),
  18082. default: true
  18083. },
  18084. {
  18085. name: "Megamacro",
  18086. height: math.unit(8, "miles")
  18087. },
  18088. {
  18089. name: "Galaxy Mom",
  18090. height: math.unit(6, "megalightyears")
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(6, "feet"),
  18099. weight: math.unit(170, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/kiro/front.svg",
  18103. extra: 1064 / 1012,
  18104. bottom: 0.052
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Micro",
  18111. height: math.unit(6, "inches")
  18112. },
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(6, "feet"),
  18116. default: true
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(72, "feet")
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18126. {
  18127. front: {
  18128. height: math.unit(5 + 9 / 12, "feet"),
  18129. weight: math.unit(175, "lb"),
  18130. name: "Front",
  18131. image: {
  18132. source: "./media/characters/irishfox/front.svg",
  18133. extra: 1912 / 1680,
  18134. bottom: 0.02
  18135. }
  18136. },
  18137. },
  18138. [
  18139. {
  18140. name: "Nano",
  18141. height: math.unit(1, "mm")
  18142. },
  18143. {
  18144. name: "Micro",
  18145. height: math.unit(2, "inches")
  18146. },
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(5 + 9 / 12, "feet"),
  18150. default: true
  18151. },
  18152. {
  18153. name: "Macro",
  18154. height: math.unit(45, "feet")
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(6 + 1 / 12, "feet"),
  18163. weight: math.unit(150, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/aronai-sieyes/front.svg",
  18167. extra: 1556 / 1480,
  18168. bottom: 0.015
  18169. }
  18170. },
  18171. side: {
  18172. height: math.unit(6 + 1 / 12, "feet"),
  18173. weight: math.unit(150, "lb"),
  18174. name: "Side",
  18175. image: {
  18176. source: "./media/characters/aronai-sieyes/side.svg",
  18177. extra: 1433 / 1390,
  18178. bottom: 0.0393
  18179. }
  18180. },
  18181. back: {
  18182. height: math.unit(6 + 1 / 12, "feet"),
  18183. weight: math.unit(150, "lb"),
  18184. name: "Back",
  18185. image: {
  18186. source: "./media/characters/aronai-sieyes/back.svg",
  18187. extra: 1544 / 1494,
  18188. bottom: 0.02
  18189. }
  18190. },
  18191. frontClothed: {
  18192. height: math.unit(6 + 1 / 12, "feet"),
  18193. weight: math.unit(150, "lb"),
  18194. name: "Front (Clothed)",
  18195. image: {
  18196. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18197. extra: 1582 / 1527
  18198. }
  18199. },
  18200. feral: {
  18201. height: math.unit(18, "feet"),
  18202. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18203. name: "Feral",
  18204. image: {
  18205. source: "./media/characters/aronai-sieyes/feral.svg",
  18206. extra: 1530 / 1240,
  18207. bottom: 0.035
  18208. }
  18209. },
  18210. },
  18211. [
  18212. {
  18213. name: "Micro",
  18214. height: math.unit(2, "inches")
  18215. },
  18216. {
  18217. name: "Normal",
  18218. height: math.unit(6 + 1 / 12, "feet"),
  18219. default: true
  18220. }
  18221. ]
  18222. ))
  18223. characterMakers.push(() => makeCharacter(
  18224. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18225. {
  18226. front: {
  18227. height: math.unit(12, "feet"),
  18228. weight: math.unit(410, "kg"),
  18229. name: "Front",
  18230. image: {
  18231. source: "./media/characters/xuna/front.svg",
  18232. extra: 2184 / 1980
  18233. }
  18234. },
  18235. side: {
  18236. height: math.unit(12, "feet"),
  18237. weight: math.unit(410, "kg"),
  18238. name: "Side",
  18239. image: {
  18240. source: "./media/characters/xuna/side.svg",
  18241. extra: 2184 / 1980
  18242. }
  18243. },
  18244. back: {
  18245. height: math.unit(12, "feet"),
  18246. weight: math.unit(410, "kg"),
  18247. name: "Back",
  18248. image: {
  18249. source: "./media/characters/xuna/back.svg",
  18250. extra: 2184 / 1980
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Nano glow",
  18257. height: math.unit(10, "nm")
  18258. },
  18259. {
  18260. name: "Micro floof",
  18261. height: math.unit(0.3, "m")
  18262. },
  18263. {
  18264. name: "Huggable softy boi",
  18265. height: math.unit(3.6576, "m"),
  18266. default: true
  18267. },
  18268. {
  18269. name: "Admirable floof",
  18270. height: math.unit(80, "meters")
  18271. },
  18272. {
  18273. name: "Gentle macro",
  18274. height: math.unit(300, "meters")
  18275. },
  18276. {
  18277. name: "Very careful floof",
  18278. height: math.unit(3200, "meters")
  18279. },
  18280. {
  18281. name: "The mega floof",
  18282. height: math.unit(36000, "meters")
  18283. },
  18284. {
  18285. name: "Giga-fur-Wicker",
  18286. height: math.unit(4800000, "meters")
  18287. },
  18288. {
  18289. name: "Licky world",
  18290. height: math.unit(20000000, "meters")
  18291. },
  18292. {
  18293. name: "Floofy cyan sun",
  18294. height: math.unit(1500000000, "meters")
  18295. },
  18296. {
  18297. name: "Milky Wicker",
  18298. height: math.unit(1000000000000000000000, "meters")
  18299. },
  18300. {
  18301. name: "The observing Wicker",
  18302. height: math.unit(999999999999999999999999999, "meters")
  18303. },
  18304. ]
  18305. ))
  18306. characterMakers.push(() => makeCharacter(
  18307. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18308. {
  18309. front: {
  18310. height: math.unit(5 + 9 / 12, "feet"),
  18311. weight: math.unit(150, "lb"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/arokha-sieyes/front.svg",
  18315. extra: 1425 / 1284,
  18316. bottom: 0.05
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(5 + 9 / 12, "feet")
  18324. },
  18325. {
  18326. name: "Macro",
  18327. height: math.unit(30, "meters"),
  18328. default: true
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18334. {
  18335. front: {
  18336. height: math.unit(6, "feet"),
  18337. weight: math.unit(180, "lb"),
  18338. name: "Front",
  18339. image: {
  18340. source: "./media/characters/arokh-sieyes/front.svg",
  18341. extra: 1830 / 1769,
  18342. bottom: 0.01
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(6, "feet")
  18350. },
  18351. {
  18352. name: "Macro",
  18353. height: math.unit(30, "meters"),
  18354. default: true
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18360. {
  18361. side: {
  18362. height: math.unit(13 + 1 / 12, "feet"),
  18363. weight: math.unit(8.5, "tonnes"),
  18364. name: "Side",
  18365. image: {
  18366. source: "./media/characters/goldeneye/side.svg",
  18367. extra: 1182 / 778,
  18368. bottom: 0.067
  18369. }
  18370. },
  18371. paw: {
  18372. height: math.unit(3.4, "feet"),
  18373. name: "Paw",
  18374. image: {
  18375. source: "./media/characters/goldeneye/paw.svg"
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(13 + 1 / 12, "feet"),
  18383. default: true
  18384. },
  18385. ]
  18386. ))
  18387. characterMakers.push(() => makeCharacter(
  18388. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18389. {
  18390. front: {
  18391. height: math.unit(6 + 1 / 12, "feet"),
  18392. weight: math.unit(210, "lb"),
  18393. name: "Front",
  18394. image: {
  18395. source: "./media/characters/leonardo-lycheborne/front.svg",
  18396. extra: 390 / 365,
  18397. bottom: 0.032
  18398. }
  18399. },
  18400. side: {
  18401. height: math.unit(6 + 1 / 12, "feet"),
  18402. weight: math.unit(210, "lb"),
  18403. name: "Side",
  18404. image: {
  18405. source: "./media/characters/leonardo-lycheborne/side.svg",
  18406. extra: 390 / 365,
  18407. bottom: 0.005
  18408. }
  18409. },
  18410. back: {
  18411. height: math.unit(6 + 1 / 12, "feet"),
  18412. weight: math.unit(210, "lb"),
  18413. name: "Back",
  18414. image: {
  18415. source: "./media/characters/leonardo-lycheborne/back.svg",
  18416. extra: 392 / 366,
  18417. bottom: 0.01
  18418. }
  18419. },
  18420. hand: {
  18421. height: math.unit(1.08, "feet"),
  18422. name: "Hand",
  18423. image: {
  18424. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18425. }
  18426. },
  18427. foot: {
  18428. height: math.unit(1.32, "feet"),
  18429. name: "Foot",
  18430. image: {
  18431. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18432. }
  18433. },
  18434. were: {
  18435. height: math.unit(20, "feet"),
  18436. weight: math.unit(7800, "lb"),
  18437. name: "Were",
  18438. image: {
  18439. source: "./media/characters/leonardo-lycheborne/were.svg",
  18440. extra: 308 / 294,
  18441. bottom: 0.048
  18442. }
  18443. },
  18444. feral: {
  18445. height: math.unit(7.5, "feet"),
  18446. weight: math.unit(600, "lb"),
  18447. name: "Feral",
  18448. image: {
  18449. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18450. extra: 210 / 186,
  18451. bottom: 0.108
  18452. }
  18453. },
  18454. taur: {
  18455. height: math.unit(11, "feet"),
  18456. weight: math.unit(3300, "lb"),
  18457. name: "Taur",
  18458. image: {
  18459. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18460. extra: 320 / 303,
  18461. bottom: 0.025
  18462. }
  18463. },
  18464. barghest: {
  18465. height: math.unit(11, "feet"),
  18466. weight: math.unit(1300, "lb"),
  18467. name: "Barghest",
  18468. image: {
  18469. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18470. extra: 323 / 302,
  18471. bottom: 0.027
  18472. }
  18473. },
  18474. dick: {
  18475. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18476. name: "Dick",
  18477. image: {
  18478. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18479. }
  18480. },
  18481. dickWere: {
  18482. height: math.unit((20) / 3.8, "feet"),
  18483. name: "Dick (Were)",
  18484. image: {
  18485. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(6 + 1 / 12, "feet"),
  18493. default: true
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18499. {
  18500. front: {
  18501. height: math.unit(10, "feet"),
  18502. weight: math.unit(350, "lb"),
  18503. name: "Front",
  18504. image: {
  18505. source: "./media/characters/jet/front.svg",
  18506. extra: 2050 / 1980,
  18507. bottom: 0.013
  18508. }
  18509. },
  18510. back: {
  18511. height: math.unit(10, "feet"),
  18512. weight: math.unit(350, "lb"),
  18513. name: "Back",
  18514. image: {
  18515. source: "./media/characters/jet/back.svg",
  18516. extra: 2050 / 1980,
  18517. bottom: 0.013
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Micro",
  18524. height: math.unit(6, "inches")
  18525. },
  18526. {
  18527. name: "Normal",
  18528. height: math.unit(10, "feet"),
  18529. default: true
  18530. },
  18531. {
  18532. name: "Macro",
  18533. height: math.unit(100, "feet")
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18539. {
  18540. front: {
  18541. height: math.unit(15, "feet"),
  18542. weight: math.unit(2800, "lb"),
  18543. name: "Front",
  18544. image: {
  18545. source: "./media/characters/tanarath/front.svg",
  18546. extra: 2392 / 2220,
  18547. bottom: 0.03
  18548. }
  18549. },
  18550. back: {
  18551. height: math.unit(15, "feet"),
  18552. weight: math.unit(2800, "lb"),
  18553. name: "Back",
  18554. image: {
  18555. source: "./media/characters/tanarath/back.svg",
  18556. extra: 2392 / 2220,
  18557. bottom: 0.03
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(15, "feet"),
  18565. default: true
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(7 + 1 / 12, "feet"),
  18574. weight: math.unit(175, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/patty-cattybatty/front.svg",
  18578. extra: 908 / 874,
  18579. bottom: 0.025
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Micro",
  18586. height: math.unit(1, "inch")
  18587. },
  18588. {
  18589. name: "Normal",
  18590. height: math.unit(7 + 1 / 12, "feet")
  18591. },
  18592. {
  18593. name: "Mini Macro",
  18594. height: math.unit(155, "feet")
  18595. },
  18596. {
  18597. name: "Macro",
  18598. height: math.unit(1077, "feet")
  18599. },
  18600. {
  18601. name: "Mega Macro",
  18602. height: math.unit(47650, "feet"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Giga Macro",
  18607. height: math.unit(440, "miles")
  18608. },
  18609. {
  18610. name: "Tera Macro",
  18611. height: math.unit(8700, "miles")
  18612. },
  18613. {
  18614. name: "Planetary Macro",
  18615. height: math.unit(32700, "miles")
  18616. },
  18617. {
  18618. name: "Solar Macro",
  18619. height: math.unit(550000, "miles")
  18620. },
  18621. {
  18622. name: "Celestial Macro",
  18623. height: math.unit(2.5, "AU")
  18624. },
  18625. ]
  18626. ))
  18627. characterMakers.push(() => makeCharacter(
  18628. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18629. {
  18630. front: {
  18631. height: math.unit(4 + 5 / 12, "feet"),
  18632. weight: math.unit(90, "lb"),
  18633. name: "Front",
  18634. image: {
  18635. source: "./media/characters/cappu/front.svg",
  18636. extra: 1247 / 1152,
  18637. bottom: 0.012
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Normal",
  18644. height: math.unit(4 + 5 / 12, "feet"),
  18645. default: true
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18651. {
  18652. frontDressed: {
  18653. height: math.unit(70, "cm"),
  18654. weight: math.unit(6, "kg"),
  18655. name: "Front (Dressed)",
  18656. image: {
  18657. source: "./media/characters/sebi/front-dressed.svg",
  18658. extra: 713.5 / 686.5,
  18659. bottom: 0.003
  18660. }
  18661. },
  18662. front: {
  18663. height: math.unit(70, "cm"),
  18664. weight: math.unit(5, "kg"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/sebi/front.svg",
  18668. extra: 713.5 / 686.5,
  18669. bottom: 0.003
  18670. }
  18671. }
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(70, "cm"),
  18677. default: true
  18678. },
  18679. {
  18680. name: "Macro",
  18681. height: math.unit(8, "meters")
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18687. {
  18688. front: {
  18689. height: math.unit(6, "feet"),
  18690. weight: math.unit(150, "lb"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/typhek/front.svg",
  18694. extra: 1948 / 1929,
  18695. bottom: 0.025
  18696. }
  18697. },
  18698. side: {
  18699. height: math.unit(6, "feet"),
  18700. weight: math.unit(150, "lb"),
  18701. name: "Side",
  18702. image: {
  18703. source: "./media/characters/typhek/side.svg",
  18704. extra: 2034 / 2010,
  18705. bottom: 0.003
  18706. }
  18707. },
  18708. back: {
  18709. height: math.unit(6, "feet"),
  18710. weight: math.unit(150, "lb"),
  18711. name: "Back",
  18712. image: {
  18713. source: "./media/characters/typhek/back.svg",
  18714. extra: 2005 / 1978,
  18715. bottom: 0.004
  18716. }
  18717. },
  18718. palm: {
  18719. height: math.unit(1.2, "feet"),
  18720. name: "Palm",
  18721. image: {
  18722. source: "./media/characters/typhek/palm.svg"
  18723. }
  18724. },
  18725. fist: {
  18726. height: math.unit(1.1, "feet"),
  18727. name: "Fist",
  18728. image: {
  18729. source: "./media/characters/typhek/fist.svg"
  18730. }
  18731. },
  18732. foot: {
  18733. height: math.unit(1.57, "feet"),
  18734. name: "Foot",
  18735. image: {
  18736. source: "./media/characters/typhek/foot.svg"
  18737. }
  18738. },
  18739. sole: {
  18740. height: math.unit(2.05, "feet"),
  18741. name: "Sole",
  18742. image: {
  18743. source: "./media/characters/typhek/sole.svg"
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Macro",
  18750. height: math.unit(40, "stories"),
  18751. default: true
  18752. },
  18753. {
  18754. name: "Megamacro",
  18755. height: math.unit(1, "mile")
  18756. },
  18757. {
  18758. name: "Gigamacro",
  18759. height: math.unit(4000, "solarradii")
  18760. },
  18761. {
  18762. name: "Universal",
  18763. height: math.unit(1.1, "universes")
  18764. }
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18769. {
  18770. side: {
  18771. height: math.unit(5 + 7 / 12, "feet"),
  18772. weight: math.unit(150, "lb"),
  18773. name: "Side",
  18774. image: {
  18775. source: "./media/characters/kassy/side.svg",
  18776. extra: 1280 / 1225,
  18777. bottom: 0.002
  18778. }
  18779. },
  18780. front: {
  18781. height: math.unit(5 + 7 / 12, "feet"),
  18782. weight: math.unit(150, "lb"),
  18783. name: "Front",
  18784. image: {
  18785. source: "./media/characters/kassy/front.svg",
  18786. extra: 1280 / 1225,
  18787. bottom: 0.025
  18788. }
  18789. },
  18790. back: {
  18791. height: math.unit(5 + 7 / 12, "feet"),
  18792. weight: math.unit(150, "lb"),
  18793. name: "Back",
  18794. image: {
  18795. source: "./media/characters/kassy/back.svg",
  18796. extra: 1280 / 1225,
  18797. bottom: 0.002
  18798. }
  18799. },
  18800. foot: {
  18801. height: math.unit(1.266, "feet"),
  18802. name: "Foot",
  18803. image: {
  18804. source: "./media/characters/kassy/foot.svg"
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(5 + 7 / 12, "feet")
  18812. },
  18813. {
  18814. name: "Macro",
  18815. height: math.unit(137, "feet"),
  18816. default: true
  18817. },
  18818. {
  18819. name: "Megamacro",
  18820. height: math.unit(1, "mile")
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(6 + 1 / 12, "feet"),
  18829. weight: math.unit(200, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/neil/front.svg",
  18833. extra: 1326 / 1250,
  18834. bottom: 0.023
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(6 + 1 / 12, "feet"),
  18842. default: true
  18843. },
  18844. {
  18845. name: "Macro",
  18846. height: math.unit(200, "feet")
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(5 + 9 / 12, "feet"),
  18855. weight: math.unit(190, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/atticus/front.svg",
  18859. extra: 2934 / 2785,
  18860. bottom: 0.025
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(5 + 9 / 12, "feet"),
  18868. default: true
  18869. },
  18870. {
  18871. name: "Macro",
  18872. height: math.unit(180, "feet")
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18878. {
  18879. side: {
  18880. height: math.unit(9, "feet"),
  18881. weight: math.unit(650, "lb"),
  18882. name: "Side",
  18883. image: {
  18884. source: "./media/characters/milo/side.svg",
  18885. extra: 2644 / 2310,
  18886. bottom: 0.032
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(9, "feet"),
  18894. default: true
  18895. },
  18896. {
  18897. name: "Macro",
  18898. height: math.unit(300, "feet")
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18904. {
  18905. side: {
  18906. height: math.unit(8, "meters"),
  18907. weight: math.unit(90000, "kg"),
  18908. name: "Side",
  18909. image: {
  18910. source: "./media/characters/ijzer/side.svg",
  18911. extra: 2756 / 1600,
  18912. bottom: 0.01
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Small",
  18919. height: math.unit(3, "meters")
  18920. },
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(8, "meters"),
  18924. default: true
  18925. },
  18926. {
  18927. name: "Normal+",
  18928. height: math.unit(10, "meters")
  18929. },
  18930. {
  18931. name: "Bigger",
  18932. height: math.unit(24, "meters")
  18933. },
  18934. {
  18935. name: "Huge",
  18936. height: math.unit(80, "meters")
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(6 + 2 / 12, "feet"),
  18945. weight: math.unit(153, "lb"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/luca-cervicum/front.svg",
  18949. extra: 370 / 327,
  18950. bottom: 0.015
  18951. }
  18952. },
  18953. back: {
  18954. height: math.unit(6 + 2 / 12, "feet"),
  18955. weight: math.unit(153, "lb"),
  18956. name: "Back",
  18957. image: {
  18958. source: "./media/characters/luca-cervicum/back.svg",
  18959. extra: 367 / 333,
  18960. bottom: 0.005
  18961. }
  18962. },
  18963. frontGear: {
  18964. height: math.unit(6 + 2 / 12, "feet"),
  18965. weight: math.unit(173, "lb"),
  18966. name: "Front (Gear)",
  18967. image: {
  18968. source: "./media/characters/luca-cervicum/front-gear.svg",
  18969. extra: 377 / 333,
  18970. bottom: 0.006
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(6 + 2 / 12, "feet"),
  18978. default: true
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(6 + 1 / 12, "feet"),
  18987. weight: math.unit(304, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/oliver/front.svg",
  18991. extra: 157 / 143,
  18992. bottom: 0.08
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(6 + 1 / 12, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(5 + 7 / 12, "feet"),
  19009. weight: math.unit(140, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/shane/front.svg",
  19013. extra: 304 / 289,
  19014. bottom: 0.005
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(5 + 7 / 12, "feet"),
  19022. default: true
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19028. {
  19029. front: {
  19030. height: math.unit(5 + 9 / 12, "feet"),
  19031. weight: math.unit(178, "lb"),
  19032. name: "Front",
  19033. image: {
  19034. source: "./media/characters/shin/front.svg",
  19035. extra: 159 / 151,
  19036. bottom: 0.015
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Normal",
  19043. height: math.unit(5 + 9 / 12, "feet"),
  19044. default: true
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(5 + 10 / 12, "feet"),
  19053. weight: math.unit(168, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/xerxes/front.svg",
  19057. extra: 282 / 260,
  19058. bottom: 0.045
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(5 + 10 / 12, "feet"),
  19066. default: true
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19072. {
  19073. front: {
  19074. height: math.unit(6 + 7 / 12, "feet"),
  19075. weight: math.unit(208, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/chaska/front.svg",
  19079. extra: 332 / 319,
  19080. bottom: 0.015
  19081. }
  19082. },
  19083. },
  19084. [
  19085. {
  19086. name: "Normal",
  19087. height: math.unit(6 + 7 / 12, "feet"),
  19088. default: true
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19094. {
  19095. front: {
  19096. height: math.unit(5 + 8 / 12, "feet"),
  19097. weight: math.unit(208, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/enuk/front.svg",
  19101. extra: 437 / 406,
  19102. bottom: 0.02
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(5 + 8 / 12, "feet"),
  19110. default: true
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(5 + 10 / 12, "feet"),
  19119. weight: math.unit(252, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/bruun/front.svg",
  19123. extra: 197 / 187,
  19124. bottom: 0.012
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(5 + 10 / 12, "feet"),
  19132. default: true
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(6 + 10 / 12, "feet"),
  19141. weight: math.unit(255, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/alexeev/front.svg",
  19145. extra: 213 / 200,
  19146. bottom: 0.05
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(6 + 10 / 12, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(2 + 8 / 12, "feet"),
  19163. weight: math.unit(22, "lb"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/evelyn/front.svg",
  19167. extra: 208 / 180
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Normal",
  19174. height: math.unit(2 + 8 / 12, "feet"),
  19175. default: true
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19181. {
  19182. front: {
  19183. height: math.unit(5 + 9 / 12, "feet"),
  19184. weight: math.unit(139, "lb"),
  19185. name: "Front",
  19186. image: {
  19187. source: "./media/characters/inca/front.svg",
  19188. extra: 294 / 291,
  19189. bottom: 0.03
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(5 + 9 / 12, "feet"),
  19197. default: true
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(5 + 1 / 12, "feet"),
  19206. weight: math.unit(84, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/magdalene/front.svg",
  19210. extra: 293 / 273
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(5 + 1 / 12, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(6 + 3 / 12, "feet"),
  19227. weight: math.unit(185, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/mera/front.svg",
  19231. extra: 291 / 277,
  19232. bottom: 0.03
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(6 + 3 / 12, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19246. {
  19247. front: {
  19248. height: math.unit(6 + 7 / 12, "feet"),
  19249. weight: math.unit(160, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/ceres/front.svg",
  19253. extra: 1023 / 950,
  19254. bottom: 0.027
  19255. }
  19256. },
  19257. back: {
  19258. height: math.unit(6 + 7 / 12, "feet"),
  19259. weight: math.unit(160, "lb"),
  19260. name: "Back",
  19261. image: {
  19262. source: "./media/characters/ceres/back.svg",
  19263. extra: 1023 / 950
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(6 + 7 / 12, "feet"),
  19271. default: true
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19277. {
  19278. front: {
  19279. height: math.unit(5 + 10 / 12, "feet"),
  19280. weight: math.unit(150, "lb"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/kris/front.svg",
  19284. extra: 885 / 803,
  19285. bottom: 0.03
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Normal",
  19292. height: math.unit(5 + 10 / 12, "feet"),
  19293. default: true
  19294. },
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19299. {
  19300. front: {
  19301. height: math.unit(7, "feet"),
  19302. weight: math.unit(120, "kg"),
  19303. name: "Front",
  19304. image: {
  19305. source: "./media/characters/taluthus/front.svg",
  19306. extra: 903 / 833,
  19307. bottom: 0.015
  19308. }
  19309. },
  19310. },
  19311. [
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(7, "feet"),
  19315. default: true
  19316. },
  19317. {
  19318. name: "Macro",
  19319. height: math.unit(300, "feet")
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19325. {
  19326. front: {
  19327. height: math.unit(5 + 9 / 12, "feet"),
  19328. weight: math.unit(145, "lb"),
  19329. name: "Front",
  19330. image: {
  19331. source: "./media/characters/dawn/front.svg",
  19332. extra: 2094 / 2016,
  19333. bottom: 0.025
  19334. }
  19335. },
  19336. back: {
  19337. height: math.unit(5 + 9 / 12, "feet"),
  19338. weight: math.unit(160, "lb"),
  19339. name: "Back",
  19340. image: {
  19341. source: "./media/characters/dawn/back.svg",
  19342. extra: 2112 / 2080,
  19343. bottom: 0.005
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(6 + 7 / 12, "feet"),
  19351. default: true
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19357. {
  19358. anthro: {
  19359. height: math.unit(8 + 3 / 12, "feet"),
  19360. weight: math.unit(450, "lb"),
  19361. name: "Anthro",
  19362. image: {
  19363. source: "./media/characters/arador/anthro.svg",
  19364. extra: 1835 / 1718,
  19365. bottom: 0.025
  19366. }
  19367. },
  19368. feral: {
  19369. height: math.unit(4, "feet"),
  19370. weight: math.unit(200, "lb"),
  19371. name: "Feral",
  19372. image: {
  19373. source: "./media/characters/arador/feral.svg",
  19374. extra: 1683 / 1514,
  19375. bottom: 0.07
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(8 + 3 / 12, "feet")
  19383. },
  19384. {
  19385. name: "Macro",
  19386. height: math.unit(82.5, "feet"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19393. {
  19394. front: {
  19395. height: math.unit(5 + 10 / 12, "feet"),
  19396. weight: math.unit(125, "lb"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/dharsi/front.svg",
  19400. extra: 716 / 630,
  19401. bottom: 0.035
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Nano",
  19408. height: math.unit(100, "nm")
  19409. },
  19410. {
  19411. name: "Micro",
  19412. height: math.unit(2, "inches")
  19413. },
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(5 + 10 / 12, "feet"),
  19417. default: true
  19418. },
  19419. {
  19420. name: "Macro",
  19421. height: math.unit(1000, "feet")
  19422. },
  19423. {
  19424. name: "Megamacro",
  19425. height: math.unit(10, "miles")
  19426. },
  19427. {
  19428. name: "Gigamacro",
  19429. height: math.unit(3000, "miles")
  19430. },
  19431. {
  19432. name: "Teramacro",
  19433. height: math.unit(500000, "miles")
  19434. },
  19435. {
  19436. name: "Teramacro+",
  19437. height: math.unit(30, "galaxies")
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(6, "feet"),
  19446. weight: math.unit(150, "lb"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/deathy/front.svg",
  19450. extra: 1552 / 1463,
  19451. bottom: 0.025
  19452. }
  19453. },
  19454. side: {
  19455. height: math.unit(6, "feet"),
  19456. weight: math.unit(150, "lb"),
  19457. name: "Side",
  19458. image: {
  19459. source: "./media/characters/deathy/side.svg",
  19460. extra: 1604 / 1455,
  19461. bottom: 0.025
  19462. }
  19463. },
  19464. back: {
  19465. height: math.unit(6, "feet"),
  19466. weight: math.unit(150, "lb"),
  19467. name: "Back",
  19468. image: {
  19469. source: "./media/characters/deathy/back.svg",
  19470. extra: 1580 / 1463,
  19471. bottom: 0.005
  19472. }
  19473. },
  19474. },
  19475. [
  19476. {
  19477. name: "Micro",
  19478. height: math.unit(5, "millimeters")
  19479. },
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(6 + 5 / 12, "feet"),
  19483. default: true
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19489. {
  19490. front: {
  19491. height: math.unit(16, "feet"),
  19492. weight: math.unit(4000, "lb"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/juniper/front.svg",
  19496. bottom: 0.04
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(16, "feet"),
  19504. default: true
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19510. {
  19511. front: {
  19512. height: math.unit(6, "feet"),
  19513. weight: math.unit(150, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/hipster/front.svg",
  19517. extra: 1312 / 1209,
  19518. bottom: 0.025
  19519. }
  19520. },
  19521. back: {
  19522. height: math.unit(6, "feet"),
  19523. weight: math.unit(150, "lb"),
  19524. name: "Back",
  19525. image: {
  19526. source: "./media/characters/hipster/back.svg",
  19527. extra: 1281 / 1196,
  19528. bottom: 0.01
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Micro",
  19535. height: math.unit(1, "mm")
  19536. },
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(4, "inches"),
  19540. default: true
  19541. },
  19542. {
  19543. name: "Macro",
  19544. height: math.unit(500, "feet")
  19545. },
  19546. {
  19547. name: "Megamacro",
  19548. height: math.unit(1000, "miles")
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19554. {
  19555. front: {
  19556. height: math.unit(6, "feet"),
  19557. weight: math.unit(150, "lb"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/tendirmuldr/front.svg",
  19561. extra: 1878 / 1772,
  19562. bottom: 0.015
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Megamacro",
  19569. height: math.unit(1500, "miles"),
  19570. default: true
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19576. {
  19577. front: {
  19578. height: math.unit(14, "feet"),
  19579. weight: math.unit(12000, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/mort/front.svg",
  19583. extra: 365 / 318,
  19584. bottom: 0.01
  19585. }
  19586. },
  19587. side: {
  19588. height: math.unit(14, "feet"),
  19589. weight: math.unit(12000, "lb"),
  19590. name: "Side",
  19591. image: {
  19592. source: "./media/characters/mort/side.svg",
  19593. extra: 365 / 318,
  19594. bottom: 0.052
  19595. },
  19596. default: true
  19597. },
  19598. back: {
  19599. height: math.unit(14, "feet"),
  19600. weight: math.unit(12000, "lb"),
  19601. name: "Back",
  19602. image: {
  19603. source: "./media/characters/mort/back.svg",
  19604. extra: 371 / 332,
  19605. bottom: 0.18
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(14, "feet"),
  19613. default: true
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19619. {
  19620. front: {
  19621. height: math.unit(8, "feet"),
  19622. weight: math.unit(1, "ton"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/lycoa/front.svg",
  19626. extra: 1875 / 1789,
  19627. bottom: 0.022
  19628. }
  19629. },
  19630. back: {
  19631. height: math.unit(8, "feet"),
  19632. weight: math.unit(1, "ton"),
  19633. name: "Back",
  19634. image: {
  19635. source: "./media/characters/lycoa/back.svg",
  19636. extra: 1835 / 1781,
  19637. bottom: 0.03
  19638. }
  19639. },
  19640. head: {
  19641. height: math.unit(2.1, "feet"),
  19642. name: "Head",
  19643. image: {
  19644. source: "./media/characters/lycoa/head.svg"
  19645. }
  19646. },
  19647. tailmaw: {
  19648. height: math.unit(1.9, "feet"),
  19649. name: "Tailmaw",
  19650. image: {
  19651. source: "./media/characters/lycoa/tailmaw.svg"
  19652. }
  19653. },
  19654. tentacles: {
  19655. height: math.unit(2.1, "feet"),
  19656. name: "Tentacles",
  19657. image: {
  19658. source: "./media/characters/lycoa/tentacles.svg"
  19659. }
  19660. },
  19661. dick: {
  19662. height: math.unit(1.73, "feet"),
  19663. name: "Dick",
  19664. image: {
  19665. source: "./media/characters/lycoa/dick.svg"
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(8, "feet"),
  19673. default: true
  19674. },
  19675. {
  19676. name: "Macro",
  19677. height: math.unit(30, "feet")
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19683. {
  19684. front: {
  19685. height: math.unit(4 + 2 / 12, "feet"),
  19686. weight: math.unit(70, "lb"),
  19687. name: "Front",
  19688. image: {
  19689. source: "./media/characters/naldara/front.svg",
  19690. extra: 841 / 720,
  19691. bottom: 0.04
  19692. }
  19693. },
  19694. naga: {
  19695. height: math.unit(23, "feet"),
  19696. weight: math.unit(15000, "kg"),
  19697. name: "Naga",
  19698. image: {
  19699. source: "./media/characters/naldara/naga.svg",
  19700. extra: 3290 / 2959,
  19701. bottom: 124 / 3432
  19702. }
  19703. },
  19704. },
  19705. [
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(4 + 2 / 12, "feet"),
  19709. default: true
  19710. },
  19711. ]
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19715. {
  19716. front: {
  19717. height: math.unit(13 + 7 / 12, "feet"),
  19718. weight: math.unit(1500, "lb"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/briar/front.svg",
  19722. extra: 626 / 596,
  19723. bottom: 0.08
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(13 + 7 / 12, "feet"),
  19731. default: true
  19732. },
  19733. ]
  19734. ))
  19735. characterMakers.push(() => makeCharacter(
  19736. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19737. {
  19738. side: {
  19739. height: math.unit(10, "feet"),
  19740. weight: math.unit(500, "lb"),
  19741. name: "Side",
  19742. image: {
  19743. source: "./media/characters/vanguard/side.svg",
  19744. extra: 502 / 425,
  19745. bottom: 0.087
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(10, "feet"),
  19753. default: true
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19759. {
  19760. front: {
  19761. height: math.unit(7.5, "feet"),
  19762. weight: math.unit(2, "lb"),
  19763. name: "Front",
  19764. image: {
  19765. source: "./media/characters/artemis/front.svg",
  19766. extra: 1192 / 1075,
  19767. bottom: 0.07
  19768. }
  19769. },
  19770. frontNsfw: {
  19771. height: math.unit(7.5, "feet"),
  19772. weight: math.unit(2, "lb"),
  19773. name: "Front (NSFW)",
  19774. image: {
  19775. source: "./media/characters/artemis/front-nsfw.svg",
  19776. extra: 1192 / 1075,
  19777. bottom: 0.07
  19778. }
  19779. },
  19780. frontNsfwer: {
  19781. height: math.unit(7.5, "feet"),
  19782. weight: math.unit(2, "lb"),
  19783. name: "Front (NSFW-er)",
  19784. image: {
  19785. source: "./media/characters/artemis/front-nsfwer.svg",
  19786. extra: 1192 / 1075,
  19787. bottom: 0.07
  19788. }
  19789. },
  19790. side: {
  19791. height: math.unit(7.5, "feet"),
  19792. weight: math.unit(2, "lb"),
  19793. name: "Side",
  19794. image: {
  19795. source: "./media/characters/artemis/side.svg",
  19796. extra: 1192 / 1075,
  19797. bottom: 0.07
  19798. }
  19799. },
  19800. sideNsfw: {
  19801. height: math.unit(7.5, "feet"),
  19802. weight: math.unit(2, "lb"),
  19803. name: "Side (NSFW)",
  19804. image: {
  19805. source: "./media/characters/artemis/side-nsfw.svg",
  19806. extra: 1192 / 1075,
  19807. bottom: 0.07
  19808. }
  19809. },
  19810. sideNsfwer: {
  19811. height: math.unit(7.5, "feet"),
  19812. weight: math.unit(2, "lb"),
  19813. name: "Side (NSFW-er)",
  19814. image: {
  19815. source: "./media/characters/artemis/side-nsfwer.svg",
  19816. extra: 1192 / 1075,
  19817. bottom: 0.07
  19818. }
  19819. },
  19820. maw: {
  19821. height: math.unit(1.1, "feet"),
  19822. name: "Maw",
  19823. image: {
  19824. source: "./media/characters/artemis/maw.svg"
  19825. }
  19826. },
  19827. stomach: {
  19828. height: math.unit(0.95, "feet"),
  19829. name: "Stomach",
  19830. image: {
  19831. source: "./media/characters/artemis/stomach.svg"
  19832. }
  19833. },
  19834. dickCanine: {
  19835. height: math.unit(1, "feet"),
  19836. name: "Dick (Canine)",
  19837. image: {
  19838. source: "./media/characters/artemis/dick-canine.svg"
  19839. }
  19840. },
  19841. dickEquine: {
  19842. height: math.unit(0.85, "feet"),
  19843. name: "Dick (Equine)",
  19844. image: {
  19845. source: "./media/characters/artemis/dick-equine.svg"
  19846. }
  19847. },
  19848. dickExotic: {
  19849. height: math.unit(0.85, "feet"),
  19850. name: "Dick (Exotic)",
  19851. image: {
  19852. source: "./media/characters/artemis/dick-exotic.svg"
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(7.5, "feet"),
  19860. default: true
  19861. },
  19862. {
  19863. name: "Enlarged",
  19864. height: math.unit(12, "feet")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(5 + 3 / 12, "feet"),
  19873. weight: math.unit(160, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/kira/front.svg",
  19877. extra: 906 / 786,
  19878. bottom: 0.01
  19879. }
  19880. },
  19881. back: {
  19882. height: math.unit(5 + 3 / 12, "feet"),
  19883. weight: math.unit(160, "lb"),
  19884. name: "Back",
  19885. image: {
  19886. source: "./media/characters/kira/back.svg",
  19887. extra: 882 / 757,
  19888. bottom: 0.005
  19889. }
  19890. },
  19891. frontDressed: {
  19892. height: math.unit(5 + 3 / 12, "feet"),
  19893. weight: math.unit(160, "lb"),
  19894. name: "Front (Dressed)",
  19895. image: {
  19896. source: "./media/characters/kira/front-dressed.svg",
  19897. extra: 906 / 786,
  19898. bottom: 0.01
  19899. }
  19900. },
  19901. beans: {
  19902. height: math.unit(0.92, "feet"),
  19903. name: "Beans",
  19904. image: {
  19905. source: "./media/characters/kira/beans.svg"
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(5 + 3 / 12, "feet"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(5 + 4 / 12, "feet"),
  19922. weight: math.unit(145, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/scramble/front.svg",
  19926. extra: 763 / 727,
  19927. bottom: 0.05
  19928. }
  19929. },
  19930. back: {
  19931. height: math.unit(5 + 4 / 12, "feet"),
  19932. weight: math.unit(145, "lb"),
  19933. name: "Back",
  19934. image: {
  19935. source: "./media/characters/scramble/back.svg",
  19936. extra: 826 / 737,
  19937. bottom: 0.002
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(5 + 4 / 12, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19951. {
  19952. side: {
  19953. height: math.unit(6 + 2 / 12, "feet"),
  19954. weight: math.unit(190, "lb"),
  19955. name: "Side",
  19956. image: {
  19957. source: "./media/characters/biscuit/side.svg",
  19958. extra: 858 / 791,
  19959. bottom: 0.044
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(6 + 2 / 12, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(5 + 2 / 12, "feet"),
  19976. weight: math.unit(120, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/poffin/front.svg",
  19980. extra: 786 / 680,
  19981. bottom: 0.005
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(5 + 2 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(6 + 3 / 12, "feet"),
  19998. weight: math.unit(519, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/dhari/front.svg",
  20002. extra: 1048 / 946,
  20003. bottom: 0.015
  20004. }
  20005. },
  20006. back: {
  20007. height: math.unit(6 + 3 / 12, "feet"),
  20008. weight: math.unit(519, "lb"),
  20009. name: "Back",
  20010. image: {
  20011. source: "./media/characters/dhari/back.svg",
  20012. extra: 1048 / 931,
  20013. bottom: 0.005
  20014. }
  20015. },
  20016. frontDressed: {
  20017. height: math.unit(6 + 3 / 12, "feet"),
  20018. weight: math.unit(519, "lb"),
  20019. name: "Front (Dressed)",
  20020. image: {
  20021. source: "./media/characters/dhari/front-dressed.svg",
  20022. extra: 1713 / 1546,
  20023. bottom: 0.02
  20024. }
  20025. },
  20026. backDressed: {
  20027. height: math.unit(6 + 3 / 12, "feet"),
  20028. weight: math.unit(519, "lb"),
  20029. name: "Back (Dressed)",
  20030. image: {
  20031. source: "./media/characters/dhari/back-dressed.svg",
  20032. extra: 1699 / 1537,
  20033. bottom: 0.01
  20034. }
  20035. },
  20036. maw: {
  20037. height: math.unit(0.95, "feet"),
  20038. name: "Maw",
  20039. image: {
  20040. source: "./media/characters/dhari/maw.svg"
  20041. }
  20042. },
  20043. wereFront: {
  20044. height: math.unit(12 + 8 / 12, "feet"),
  20045. weight: math.unit(4000, "lb"),
  20046. name: "Front (Were)",
  20047. image: {
  20048. source: "./media/characters/dhari/were-front.svg",
  20049. extra: 1065 / 969,
  20050. bottom: 0.015
  20051. }
  20052. },
  20053. wereBack: {
  20054. height: math.unit(12 + 8 / 12, "feet"),
  20055. weight: math.unit(4000, "lb"),
  20056. name: "Back (Were)",
  20057. image: {
  20058. source: "./media/characters/dhari/were-back.svg",
  20059. extra: 1065 / 969,
  20060. bottom: 0.012
  20061. }
  20062. },
  20063. wereMaw: {
  20064. height: math.unit(0.625, "meters"),
  20065. name: "Maw (Were)",
  20066. image: {
  20067. source: "./media/characters/dhari/were-maw.svg"
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6 + 3 / 12, "feet"),
  20075. default: true
  20076. },
  20077. ]
  20078. ))
  20079. characterMakers.push(() => makeCharacter(
  20080. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20081. {
  20082. anthro: {
  20083. height: math.unit(5 + 7 / 12, "feet"),
  20084. weight: math.unit(175, "lb"),
  20085. name: "Anthro",
  20086. image: {
  20087. source: "./media/characters/rena-dyne/anthro.svg",
  20088. extra: 1849 / 1785,
  20089. bottom: 0.005
  20090. }
  20091. },
  20092. taur: {
  20093. height: math.unit(15 + 6 / 12, "feet"),
  20094. weight: math.unit(8000, "lb"),
  20095. name: "Taur",
  20096. image: {
  20097. source: "./media/characters/rena-dyne/taur.svg",
  20098. extra: 2315 / 2234,
  20099. bottom: 0.033
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(5 + 7 / 12, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(8, "feet"),
  20116. weight: math.unit(600, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/weremeep/front.svg",
  20120. extra: 967 / 862,
  20121. bottom: 0.01
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(8, "feet"),
  20129. default: true
  20130. },
  20131. {
  20132. name: "Lorg",
  20133. height: math.unit(12, "feet")
  20134. },
  20135. {
  20136. name: "Oh Lawd She Comin'",
  20137. height: math.unit(20, "feet")
  20138. },
  20139. ]
  20140. ))
  20141. characterMakers.push(() => makeCharacter(
  20142. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20143. {
  20144. front: {
  20145. height: math.unit(4, "feet"),
  20146. weight: math.unit(90, "lb"),
  20147. name: "Front",
  20148. image: {
  20149. source: "./media/characters/reza/front.svg",
  20150. extra: 1183 / 1111,
  20151. bottom: 0.017
  20152. }
  20153. },
  20154. back: {
  20155. height: math.unit(4, "feet"),
  20156. weight: math.unit(90, "lb"),
  20157. name: "Back",
  20158. image: {
  20159. source: "./media/characters/reza/back.svg",
  20160. extra: 1183 / 1111,
  20161. bottom: 0.01
  20162. }
  20163. },
  20164. drake: {
  20165. height: math.unit(30, "feet"),
  20166. weight: math.unit(246960, "lb"),
  20167. name: "Drake",
  20168. image: {
  20169. source: "./media/characters/reza/drake.svg",
  20170. extra: 2350 / 2024,
  20171. bottom: 60.7 / 2403
  20172. }
  20173. },
  20174. },
  20175. [
  20176. {
  20177. name: "Normal",
  20178. height: math.unit(4, "feet"),
  20179. default: true
  20180. },
  20181. ]
  20182. ))
  20183. characterMakers.push(() => makeCharacter(
  20184. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20185. {
  20186. side: {
  20187. height: math.unit(15, "feet"),
  20188. weight: math.unit(14, "tons"),
  20189. name: "Side",
  20190. image: {
  20191. source: "./media/characters/athea/side.svg",
  20192. extra: 960 / 540,
  20193. bottom: 0.003
  20194. }
  20195. },
  20196. sitting: {
  20197. height: math.unit(6 * 2.85, "feet"),
  20198. weight: math.unit(14, "tons"),
  20199. name: "Sitting",
  20200. image: {
  20201. source: "./media/characters/athea/sitting.svg",
  20202. extra: 621 / 581,
  20203. bottom: 0.075
  20204. }
  20205. },
  20206. maw: {
  20207. height: math.unit(7.59498031496063, "feet"),
  20208. name: "Maw",
  20209. image: {
  20210. source: "./media/characters/athea/maw.svg"
  20211. }
  20212. },
  20213. },
  20214. [
  20215. {
  20216. name: "Lap Cat",
  20217. height: math.unit(2.5, "feet")
  20218. },
  20219. {
  20220. name: "Minimacro",
  20221. height: math.unit(15, "feet"),
  20222. default: true
  20223. },
  20224. {
  20225. name: "Macro",
  20226. height: math.unit(120, "feet")
  20227. },
  20228. {
  20229. name: "Macro+",
  20230. height: math.unit(640, "feet")
  20231. },
  20232. {
  20233. name: "Colossus",
  20234. height: math.unit(2.2, "miles")
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(8 + 8 / 12, "feet"),
  20243. weight: math.unit(130, "kg"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/seroko/front.svg",
  20247. extra: 1385 / 1280,
  20248. bottom: 0.025
  20249. }
  20250. },
  20251. back: {
  20252. height: math.unit(8 + 8 / 12, "feet"),
  20253. weight: math.unit(130, "kg"),
  20254. name: "Back",
  20255. image: {
  20256. source: "./media/characters/seroko/back.svg",
  20257. extra: 1369 / 1238,
  20258. bottom: 0.018
  20259. }
  20260. },
  20261. frontDressed: {
  20262. height: math.unit(8 + 8 / 12, "feet"),
  20263. weight: math.unit(130, "kg"),
  20264. name: "Front (Dressed)",
  20265. image: {
  20266. source: "./media/characters/seroko/front-dressed.svg",
  20267. extra: 1366 / 1275,
  20268. bottom: 0.03
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(8 + 8 / 12, "feet"),
  20276. default: true
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20282. {
  20283. front: {
  20284. height: math.unit(5.5, "feet"),
  20285. weight: math.unit(160, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/quatzi/front.svg",
  20289. extra: 2346 / 2242,
  20290. bottom: 0.015
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(5.5, "feet"),
  20298. default: true
  20299. },
  20300. {
  20301. name: "Big",
  20302. height: math.unit(7.7, "feet")
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20308. {
  20309. front: {
  20310. height: math.unit(5 + 11 / 12, "feet"),
  20311. weight: math.unit(180, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/sen/front.svg",
  20315. extra: 1321 / 1254,
  20316. bottom: 0.015
  20317. }
  20318. },
  20319. side: {
  20320. height: math.unit(5 + 11 / 12, "feet"),
  20321. weight: math.unit(180, "lb"),
  20322. name: "Side",
  20323. image: {
  20324. source: "./media/characters/sen/side.svg",
  20325. extra: 1321 / 1254,
  20326. bottom: 0.007
  20327. }
  20328. },
  20329. back: {
  20330. height: math.unit(5 + 11 / 12, "feet"),
  20331. weight: math.unit(180, "lb"),
  20332. name: "Back",
  20333. image: {
  20334. source: "./media/characters/sen/back.svg",
  20335. extra: 1321 / 1254
  20336. }
  20337. },
  20338. },
  20339. [
  20340. {
  20341. name: "Normal",
  20342. height: math.unit(5 + 11 / 12, "feet"),
  20343. default: true
  20344. },
  20345. ]
  20346. ))
  20347. characterMakers.push(() => makeCharacter(
  20348. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20349. {
  20350. front: {
  20351. height: math.unit(166.6, "cm"),
  20352. weight: math.unit(66.6, "kg"),
  20353. name: "Front",
  20354. image: {
  20355. source: "./media/characters/fruity/front.svg",
  20356. extra: 1510 / 1386,
  20357. bottom: 0.04
  20358. }
  20359. },
  20360. back: {
  20361. height: math.unit(166.6, "cm"),
  20362. weight: math.unit(66.6, "lb"),
  20363. name: "Back",
  20364. image: {
  20365. source: "./media/characters/fruity/back.svg",
  20366. extra: 1563 / 1435,
  20367. bottom: 0.005
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(166.6, "cm"),
  20375. default: true
  20376. },
  20377. {
  20378. name: "Demonic",
  20379. height: math.unit(166.6, "feet")
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20385. {
  20386. side: {
  20387. height: math.unit(10, "feet"),
  20388. weight: math.unit(500, "lb"),
  20389. name: "Side",
  20390. image: {
  20391. source: "./media/characters/zost/side.svg",
  20392. extra: 966 / 880,
  20393. bottom: 0.075
  20394. }
  20395. },
  20396. mawFront: {
  20397. height: math.unit(1.08, "meters"),
  20398. name: "Maw (Front)",
  20399. image: {
  20400. source: "./media/characters/zost/maw-front.svg"
  20401. }
  20402. },
  20403. mawSide: {
  20404. height: math.unit(2.66, "feet"),
  20405. name: "Maw (Side)",
  20406. image: {
  20407. source: "./media/characters/zost/maw-side.svg"
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Normal",
  20414. height: math.unit(10, "feet"),
  20415. default: true
  20416. },
  20417. ]
  20418. ))
  20419. characterMakers.push(() => makeCharacter(
  20420. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20421. {
  20422. front: {
  20423. height: math.unit(5 + 4 / 12, "feet"),
  20424. weight: math.unit(120, "lb"),
  20425. name: "Front",
  20426. image: {
  20427. source: "./media/characters/luci/front.svg",
  20428. extra: 1985 / 1884,
  20429. bottom: 0.04
  20430. }
  20431. },
  20432. back: {
  20433. height: math.unit(5 + 4 / 12, "feet"),
  20434. weight: math.unit(120, "lb"),
  20435. name: "Back",
  20436. image: {
  20437. source: "./media/characters/luci/back.svg",
  20438. extra: 1892 / 1791,
  20439. bottom: 0.002
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Normal",
  20446. height: math.unit(5 + 4 / 12, "feet"),
  20447. default: true
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20453. {
  20454. front: {
  20455. height: math.unit(1500, "feet"),
  20456. weight: math.unit(3.8e6, "tons"),
  20457. name: "Front",
  20458. image: {
  20459. source: "./media/characters/2th/front.svg",
  20460. extra: 3489 / 3350,
  20461. bottom: 0.1
  20462. }
  20463. },
  20464. foot: {
  20465. height: math.unit(461, "feet"),
  20466. name: "Foot",
  20467. image: {
  20468. source: "./media/characters/2th/foot.svg"
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "\"Micro\"",
  20475. height: math.unit(15 + 7 / 12, "feet")
  20476. },
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(1500, "feet"),
  20480. default: true
  20481. },
  20482. {
  20483. name: "Macro",
  20484. height: math.unit(5000, "feet")
  20485. },
  20486. {
  20487. name: "Megamacro",
  20488. height: math.unit(15, "miles")
  20489. },
  20490. {
  20491. name: "Gigamacro",
  20492. height: math.unit(4000, "miles")
  20493. },
  20494. {
  20495. name: "Galactic",
  20496. height: math.unit(50, "AU")
  20497. },
  20498. ]
  20499. ))
  20500. characterMakers.push(() => makeCharacter(
  20501. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20502. {
  20503. front: {
  20504. height: math.unit(5 + 6 / 12, "feet"),
  20505. weight: math.unit(220, "lb"),
  20506. name: "Front",
  20507. image: {
  20508. source: "./media/characters/amethyst/front.svg",
  20509. extra: 2078 / 2040,
  20510. bottom: 0.045
  20511. }
  20512. },
  20513. back: {
  20514. height: math.unit(5 + 6 / 12, "feet"),
  20515. weight: math.unit(220, "lb"),
  20516. name: "Back",
  20517. image: {
  20518. source: "./media/characters/amethyst/back.svg",
  20519. extra: 2021 / 1989,
  20520. bottom: 0.02
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(5 + 6 / 12, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(4 + 11 / 12, "feet"),
  20537. weight: math.unit(120, "lb"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/yumi-akiyama/front.svg",
  20541. extra: 1327 / 1235,
  20542. bottom: 0.02
  20543. }
  20544. },
  20545. back: {
  20546. height: math.unit(4 + 11 / 12, "feet"),
  20547. weight: math.unit(120, "lb"),
  20548. name: "Back",
  20549. image: {
  20550. source: "./media/characters/yumi-akiyama/back.svg",
  20551. extra: 1287 / 1245,
  20552. bottom: 0.002
  20553. }
  20554. },
  20555. },
  20556. [
  20557. {
  20558. name: "Galactic",
  20559. height: math.unit(50, "galaxies"),
  20560. default: true
  20561. },
  20562. {
  20563. name: "Universal",
  20564. height: math.unit(100, "universes")
  20565. },
  20566. ]
  20567. ))
  20568. characterMakers.push(() => makeCharacter(
  20569. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20570. {
  20571. front: {
  20572. height: math.unit(8, "feet"),
  20573. weight: math.unit(500, "lb"),
  20574. name: "Front",
  20575. image: {
  20576. source: "./media/characters/rifter-yrmori/front.svg",
  20577. extra: 1180 / 1125,
  20578. bottom: 0.02
  20579. }
  20580. },
  20581. back: {
  20582. height: math.unit(8, "feet"),
  20583. weight: math.unit(500, "lb"),
  20584. name: "Back",
  20585. image: {
  20586. source: "./media/characters/rifter-yrmori/back.svg",
  20587. extra: 1190 / 1145,
  20588. bottom: 0.001
  20589. }
  20590. },
  20591. wings: {
  20592. height: math.unit(7.75, "feet"),
  20593. weight: math.unit(500, "lb"),
  20594. name: "Wings",
  20595. image: {
  20596. source: "./media/characters/rifter-yrmori/wings.svg",
  20597. extra: 1357 / 1285
  20598. }
  20599. },
  20600. maw: {
  20601. height: math.unit(0.8, "feet"),
  20602. name: "Maw",
  20603. image: {
  20604. source: "./media/characters/rifter-yrmori/maw.svg"
  20605. }
  20606. },
  20607. mawfront: {
  20608. height: math.unit(1.45, "feet"),
  20609. name: "Maw (Front)",
  20610. image: {
  20611. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(8, "feet"),
  20619. default: true
  20620. },
  20621. {
  20622. name: "Macro",
  20623. height: math.unit(42, "meters")
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20629. {
  20630. were: {
  20631. height: math.unit(25 + 6 / 12, "feet"),
  20632. weight: math.unit(10000, "lb"),
  20633. name: "Were",
  20634. image: {
  20635. source: "./media/characters/tahajin/were.svg",
  20636. extra: 801 / 770,
  20637. bottom: 0.042
  20638. }
  20639. },
  20640. aquatic: {
  20641. height: math.unit(6 + 4 / 12, "feet"),
  20642. weight: math.unit(160, "lb"),
  20643. name: "Aquatic",
  20644. image: {
  20645. source: "./media/characters/tahajin/aquatic.svg",
  20646. extra: 572 / 542,
  20647. bottom: 0.04
  20648. }
  20649. },
  20650. chow: {
  20651. height: math.unit(8 + 11 / 12, "feet"),
  20652. weight: math.unit(450, "lb"),
  20653. name: "Chow",
  20654. image: {
  20655. source: "./media/characters/tahajin/chow.svg",
  20656. extra: 660 / 640,
  20657. bottom: 0.015
  20658. }
  20659. },
  20660. demiNaga: {
  20661. height: math.unit(6 + 8 / 12, "feet"),
  20662. weight: math.unit(300, "lb"),
  20663. name: "Demi Naga",
  20664. image: {
  20665. source: "./media/characters/tahajin/demi-naga.svg",
  20666. extra: 643 / 615,
  20667. bottom: 0.1
  20668. }
  20669. },
  20670. data: {
  20671. height: math.unit(5, "inches"),
  20672. weight: math.unit(0.1, "lb"),
  20673. name: "Data",
  20674. image: {
  20675. source: "./media/characters/tahajin/data.svg"
  20676. }
  20677. },
  20678. fluu: {
  20679. height: math.unit(5 + 7 / 12, "feet"),
  20680. weight: math.unit(140, "lb"),
  20681. name: "Fluu",
  20682. image: {
  20683. source: "./media/characters/tahajin/fluu.svg",
  20684. extra: 628 / 592,
  20685. bottom: 0.02
  20686. }
  20687. },
  20688. starWarrior: {
  20689. height: math.unit(4 + 5 / 12, "feet"),
  20690. weight: math.unit(50, "lb"),
  20691. name: "Star Warrior",
  20692. image: {
  20693. source: "./media/characters/tahajin/star-warrior.svg"
  20694. }
  20695. },
  20696. },
  20697. [
  20698. {
  20699. name: "Normal",
  20700. height: math.unit(25 + 6 / 12, "feet"),
  20701. default: true
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(8, "feet"),
  20710. weight: math.unit(350, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/gabira/front.svg",
  20714. extra: 608 / 580,
  20715. bottom: 0.03
  20716. }
  20717. },
  20718. back: {
  20719. height: math.unit(8, "feet"),
  20720. weight: math.unit(350, "lb"),
  20721. name: "Back",
  20722. image: {
  20723. source: "./media/characters/gabira/back.svg",
  20724. extra: 608 / 580,
  20725. bottom: 0.03
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(8, "feet"),
  20733. default: true
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(5 + 3 / 12, "feet"),
  20742. weight: math.unit(137, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/sasha-katraine/front.svg",
  20746. bottom: 0.045
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Micro",
  20753. height: math.unit(5, "inches")
  20754. },
  20755. {
  20756. name: "Normal",
  20757. height: math.unit(5 + 3 / 12, "feet"),
  20758. default: true
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20764. {
  20765. side: {
  20766. height: math.unit(4, "inches"),
  20767. weight: math.unit(200, "grams"),
  20768. name: "Side",
  20769. image: {
  20770. source: "./media/characters/der/side.svg",
  20771. extra: 719 / 400,
  20772. bottom: 30.6 / 749.9187
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Micro",
  20779. height: math.unit(4, "inches"),
  20780. default: true
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20786. {
  20787. side: {
  20788. height: math.unit(30, "meters"),
  20789. weight: math.unit(700, "tonnes"),
  20790. name: "Side",
  20791. image: {
  20792. source: "./media/characters/fixerdragon/side.svg",
  20793. extra: (1293.0514 - 116.03) / 1106.86,
  20794. bottom: 116.03 / 1293.0514
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Planck",
  20801. height: math.unit(1.6e-35, "meters")
  20802. },
  20803. {
  20804. name: "Micro",
  20805. height: math.unit(0.4, "meters")
  20806. },
  20807. {
  20808. name: "Normal",
  20809. height: math.unit(30, "meters"),
  20810. default: true
  20811. },
  20812. {
  20813. name: "Megamacro",
  20814. height: math.unit(1.2, "megameters")
  20815. },
  20816. {
  20817. name: "Teramacro",
  20818. height: math.unit(130, "terameters")
  20819. },
  20820. {
  20821. name: "Yottamacro",
  20822. height: math.unit(6200, "yottameters")
  20823. },
  20824. ]
  20825. ));
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20828. {
  20829. front: {
  20830. height: math.unit(8, "feet"),
  20831. weight: math.unit(250, "lb"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/kite/front.svg",
  20835. extra: 2796 / 2659,
  20836. bottom: 0.002
  20837. }
  20838. },
  20839. },
  20840. [
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(8, "feet"),
  20844. default: true
  20845. },
  20846. {
  20847. name: "Macro",
  20848. height: math.unit(360, "feet")
  20849. },
  20850. {
  20851. name: "Megamacro",
  20852. height: math.unit(1500, "feet")
  20853. },
  20854. ]
  20855. ))
  20856. characterMakers.push(() => makeCharacter(
  20857. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20858. {
  20859. front: {
  20860. height: math.unit(5 + 10 / 12, "feet"),
  20861. weight: math.unit(150, "lb"),
  20862. name: "Front",
  20863. image: {
  20864. source: "./media/characters/poojawa-vynar/front.svg",
  20865. extra: (1506.1547 - 55) / 1356.6,
  20866. bottom: 55 / 1506.1547
  20867. }
  20868. },
  20869. frontTailless: {
  20870. height: math.unit(5 + 10 / 12, "feet"),
  20871. weight: math.unit(150, "lb"),
  20872. name: "Front (Tailless)",
  20873. image: {
  20874. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20875. extra: (1506.1547 - 55) / 1356.6,
  20876. bottom: 55 / 1506.1547
  20877. }
  20878. },
  20879. },
  20880. [
  20881. {
  20882. name: "Normal",
  20883. height: math.unit(5 + 10 / 12, "feet"),
  20884. default: true
  20885. },
  20886. ]
  20887. ))
  20888. characterMakers.push(() => makeCharacter(
  20889. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20890. {
  20891. front: {
  20892. height: math.unit(293, "meters"),
  20893. weight: math.unit(70400, "tons"),
  20894. name: "Front",
  20895. image: {
  20896. source: "./media/characters/violette/front.svg",
  20897. extra: 1227 / 1180,
  20898. bottom: 0.005
  20899. }
  20900. },
  20901. back: {
  20902. height: math.unit(293, "meters"),
  20903. weight: math.unit(70400, "tons"),
  20904. name: "Back",
  20905. image: {
  20906. source: "./media/characters/violette/back.svg",
  20907. extra: 1227 / 1180,
  20908. bottom: 0.005
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Macro",
  20915. height: math.unit(293, "meters"),
  20916. default: true
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(1050, "feet"),
  20925. weight: math.unit(200000, "tons"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/alessandra/front.svg",
  20929. extra: 960 / 912,
  20930. bottom: 0.06
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Macro",
  20937. height: math.unit(1050, "feet")
  20938. },
  20939. {
  20940. name: "Macro+",
  20941. height: math.unit(900, "meters"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(5, "feet"),
  20951. weight: math.unit(187, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/person/front.svg",
  20955. extra: 3087 / 2945,
  20956. bottom: 91 / 3181
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Micro",
  20963. height: math.unit(3, "inches")
  20964. },
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(5, "feet"),
  20968. default: true
  20969. },
  20970. {
  20971. name: "Macro",
  20972. height: math.unit(90, "feet")
  20973. },
  20974. {
  20975. name: "Max Size",
  20976. height: math.unit(280, "feet")
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20982. {
  20983. front: {
  20984. height: math.unit(4.5, "meters"),
  20985. weight: math.unit(3200, "lb"),
  20986. name: "Front",
  20987. image: {
  20988. source: "./media/characters/ty/front.svg",
  20989. extra: 1038 / 960,
  20990. bottom: 31.156 / 1068
  20991. }
  20992. },
  20993. back: {
  20994. height: math.unit(4.5, "meters"),
  20995. weight: math.unit(3200, "lb"),
  20996. name: "Back",
  20997. image: {
  20998. source: "./media/characters/ty/back.svg",
  20999. extra: 1044 / 966,
  21000. bottom: 7.48 / 1049
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(4.5, "meters"),
  21008. default: true
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(5 + 4 / 12, "feet"),
  21017. weight: math.unit(115, "lb"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/rocky/front.svg",
  21021. extra: 1012 / 975,
  21022. bottom: 54 / 1066
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(5 + 4 / 12, "feet"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21036. {
  21037. upright: {
  21038. height: math.unit(6, "meters"),
  21039. weight: math.unit(4000, "kg"),
  21040. name: "Upright",
  21041. image: {
  21042. source: "./media/characters/ruin/upright.svg",
  21043. extra: 668 / 661,
  21044. bottom: 42 / 799.8396
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(6, "meters"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(5, "feet"),
  21061. weight: math.unit(106, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/robin/front.svg",
  21065. extra: 862 / 799,
  21066. bottom: 42.4 / 914.8856
  21067. }
  21068. },
  21069. },
  21070. [
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(5, "feet"),
  21074. default: true
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21080. {
  21081. side: {
  21082. height: math.unit(3, "feet"),
  21083. weight: math.unit(225, "lb"),
  21084. name: "Side",
  21085. image: {
  21086. source: "./media/characters/saian/side.svg",
  21087. extra: 566 / 356,
  21088. bottom: 79.7 / 643
  21089. }
  21090. },
  21091. maw: {
  21092. height: math.unit(2.85, "feet"),
  21093. name: "Maw",
  21094. image: {
  21095. source: "./media/characters/saian/maw.svg"
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(3, "feet"),
  21103. default: true
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21109. {
  21110. side: {
  21111. height: math.unit(8, "feet"),
  21112. weight: math.unit(300, "lb"),
  21113. name: "Side",
  21114. image: {
  21115. source: "./media/characters/equus-silvermane/side.svg",
  21116. extra: 2176 / 2050,
  21117. bottom: 65.7 / 2245
  21118. }
  21119. },
  21120. front: {
  21121. height: math.unit(8, "feet"),
  21122. weight: math.unit(300, "lb"),
  21123. name: "Front",
  21124. image: {
  21125. source: "./media/characters/equus-silvermane/front.svg",
  21126. extra: 4633 / 4400,
  21127. bottom: 71.3 / 4706.915
  21128. }
  21129. },
  21130. sideStepping: {
  21131. height: math.unit(8, "feet"),
  21132. weight: math.unit(300, "lb"),
  21133. name: "Side (Stepping)",
  21134. image: {
  21135. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21136. extra: 1968 / 1860,
  21137. bottom: 16.4 / 1989
  21138. }
  21139. },
  21140. },
  21141. [
  21142. {
  21143. name: "Normal",
  21144. height: math.unit(8, "feet")
  21145. },
  21146. {
  21147. name: "Minimacro",
  21148. height: math.unit(75, "feet"),
  21149. default: true
  21150. },
  21151. {
  21152. name: "Macro",
  21153. height: math.unit(150, "feet")
  21154. },
  21155. {
  21156. name: "Macro+",
  21157. height: math.unit(1000, "feet")
  21158. },
  21159. {
  21160. name: "Megamacro",
  21161. height: math.unit(1, "mile")
  21162. },
  21163. ]
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21167. {
  21168. side: {
  21169. height: math.unit(20, "feet"),
  21170. weight: math.unit(30000, "kg"),
  21171. name: "Side",
  21172. image: {
  21173. source: "./media/characters/windar/side.svg",
  21174. extra: 1491 / 1248,
  21175. bottom: 82.56 / 1568
  21176. }
  21177. },
  21178. },
  21179. [
  21180. {
  21181. name: "Normal",
  21182. height: math.unit(20, "feet"),
  21183. default: true
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21189. {
  21190. side: {
  21191. height: math.unit(15.66, "feet"),
  21192. weight: math.unit(150, "lb"),
  21193. name: "Side",
  21194. image: {
  21195. source: "./media/characters/melody/side.svg",
  21196. extra: 1097 / 944,
  21197. bottom: 11.8 / 1109
  21198. }
  21199. },
  21200. sideOutfit: {
  21201. height: math.unit(15.66, "feet"),
  21202. weight: math.unit(150, "lb"),
  21203. name: "Side (Outfit)",
  21204. image: {
  21205. source: "./media/characters/melody/side-outfit.svg",
  21206. extra: 1097 / 944,
  21207. bottom: 11.8 / 1109
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(15.66, "feet"),
  21215. default: true
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(8, "feet"),
  21224. weight: math.unit(325, "lb"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/windera/front.svg",
  21228. extra: 3180 / 2845,
  21229. bottom: 178 / 3365
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(8, "feet"),
  21237. default: true
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21243. {
  21244. front: {
  21245. height: math.unit(28.75, "feet"),
  21246. weight: math.unit(2000, "kg"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/sonear/front.svg",
  21250. extra: 1041.1 / 964.9,
  21251. bottom: 53.7 / 1096.6
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(28.75, "feet"),
  21259. default: true
  21260. },
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21265. {
  21266. side: {
  21267. height: math.unit(25.5, "feet"),
  21268. weight: math.unit(23000, "kg"),
  21269. name: "Side",
  21270. image: {
  21271. source: "./media/characters/kanara/side.svg"
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(25.5, "feet"),
  21279. default: true
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21285. {
  21286. side: {
  21287. height: math.unit(10, "feet"),
  21288. weight: math.unit(1000, "kg"),
  21289. name: "Side",
  21290. image: {
  21291. source: "./media/characters/ereus/side.svg",
  21292. extra: 1157 / 959,
  21293. bottom: 153 / 1312.5
  21294. }
  21295. },
  21296. },
  21297. [
  21298. {
  21299. name: "Normal",
  21300. height: math.unit(10, "feet"),
  21301. default: true
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21307. {
  21308. side: {
  21309. height: math.unit(4.5, "feet"),
  21310. weight: math.unit(500, "lb"),
  21311. name: "Side",
  21312. image: {
  21313. source: "./media/characters/e-ter/side.svg",
  21314. extra: 1550 / 1248,
  21315. bottom: 146 / 1694
  21316. }
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(4.5, "feet"),
  21323. default: true
  21324. },
  21325. ]
  21326. ))
  21327. characterMakers.push(() => makeCharacter(
  21328. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21329. {
  21330. side: {
  21331. height: math.unit(9.7, "feet"),
  21332. weight: math.unit(4000, "kg"),
  21333. name: "Side",
  21334. image: {
  21335. source: "./media/characters/yamie/side.svg"
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(9.7, "feet"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(50, "feet"),
  21352. weight: math.unit(50000, "kg"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/anders/front.svg",
  21356. extra: 570 / 539,
  21357. bottom: 14.7 / 586.7
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Large",
  21364. height: math.unit(50, "feet")
  21365. },
  21366. {
  21367. name: "Macro",
  21368. height: math.unit(2000, "feet"),
  21369. default: true
  21370. },
  21371. {
  21372. name: "Megamacro",
  21373. height: math.unit(12, "miles")
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21379. {
  21380. front: {
  21381. height: math.unit(7 + 2 / 12, "feet"),
  21382. weight: math.unit(300, "lb"),
  21383. name: "Front",
  21384. image: {
  21385. source: "./media/characters/reban/front.svg",
  21386. extra: 516 / 487,
  21387. bottom: 42.82 / 558.356
  21388. }
  21389. },
  21390. dick: {
  21391. height: math.unit(7 / 5, "feet"),
  21392. name: "Dick",
  21393. image: {
  21394. source: "./media/characters/reban/dick.svg"
  21395. }
  21396. },
  21397. },
  21398. [
  21399. {
  21400. name: "Natural Height",
  21401. height: math.unit(7 + 2 / 12, "feet")
  21402. },
  21403. {
  21404. name: "Macro",
  21405. height: math.unit(500, "feet"),
  21406. default: true
  21407. },
  21408. {
  21409. name: "Canon Height",
  21410. height: math.unit(50, "AU")
  21411. },
  21412. ]
  21413. ))
  21414. characterMakers.push(() => makeCharacter(
  21415. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21416. {
  21417. front: {
  21418. height: math.unit(6, "feet"),
  21419. weight: math.unit(150, "lb"),
  21420. name: "Front",
  21421. image: {
  21422. source: "./media/characters/terrance-keayes/front.svg",
  21423. extra: 1.005,
  21424. bottom: 151 / 1615
  21425. }
  21426. },
  21427. side: {
  21428. height: math.unit(6, "feet"),
  21429. weight: math.unit(150, "lb"),
  21430. name: "Side",
  21431. image: {
  21432. source: "./media/characters/terrance-keayes/side.svg",
  21433. extra: 1.005,
  21434. bottom: 129.4 / 1544
  21435. }
  21436. },
  21437. back: {
  21438. height: math.unit(6, "feet"),
  21439. weight: math.unit(150, "lb"),
  21440. name: "Back",
  21441. image: {
  21442. source: "./media/characters/terrance-keayes/back.svg",
  21443. extra: 1.005,
  21444. bottom: 58.4 / 1557.3
  21445. }
  21446. },
  21447. dick: {
  21448. height: math.unit(6 * 0.208, "feet"),
  21449. name: "Dick",
  21450. image: {
  21451. source: "./media/characters/terrance-keayes/dick.svg"
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Canon Height",
  21458. height: math.unit(35, "miles"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21465. {
  21466. front: {
  21467. height: math.unit(6, "feet"),
  21468. weight: math.unit(150, "lb"),
  21469. name: "Front",
  21470. image: {
  21471. source: "./media/characters/ofelia/front.svg",
  21472. extra: 546 / 541,
  21473. bottom: 39 / 583
  21474. }
  21475. },
  21476. back: {
  21477. height: math.unit(6, "feet"),
  21478. weight: math.unit(150, "lb"),
  21479. name: "Back",
  21480. image: {
  21481. source: "./media/characters/ofelia/back.svg",
  21482. extra: 564 / 559.5,
  21483. bottom: 8.69 / 573.02
  21484. }
  21485. },
  21486. maw: {
  21487. height: math.unit(1, "feet"),
  21488. name: "Maw",
  21489. image: {
  21490. source: "./media/characters/ofelia/maw.svg"
  21491. }
  21492. },
  21493. foot: {
  21494. height: math.unit(1.949, "feet"),
  21495. name: "Foot",
  21496. image: {
  21497. source: "./media/characters/ofelia/foot.svg"
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Canon Height",
  21504. height: math.unit(2000, "miles"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(6, "feet"),
  21514. weight: math.unit(150, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/samuel/front.svg",
  21518. extra: 265 / 258,
  21519. bottom: 2 / 266.1566
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Macro",
  21526. height: math.unit(100, "feet"),
  21527. default: true
  21528. },
  21529. {
  21530. name: "Full Size",
  21531. height: math.unit(1000, "miles")
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(6, "feet"),
  21540. weight: math.unit(300, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/beishir-kiel/front.svg",
  21544. extra: 569 / 547,
  21545. bottom: 41.9 / 609
  21546. }
  21547. },
  21548. maw: {
  21549. height: math.unit(6 * 0.202, "feet"),
  21550. name: "Maw",
  21551. image: {
  21552. source: "./media/characters/beishir-kiel/maw.svg"
  21553. }
  21554. },
  21555. },
  21556. [
  21557. {
  21558. name: "Macro",
  21559. height: math.unit(300, "feet"),
  21560. default: true
  21561. },
  21562. ]
  21563. ))
  21564. characterMakers.push(() => makeCharacter(
  21565. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21566. {
  21567. front: {
  21568. height: math.unit(5 + 8 / 12, "feet"),
  21569. weight: math.unit(120, "lb"),
  21570. name: "Front",
  21571. image: {
  21572. source: "./media/characters/logan-grey/front.svg",
  21573. extra: 2539 / 2393,
  21574. bottom: 97.6 / 2636.37
  21575. }
  21576. },
  21577. frontAlt: {
  21578. height: math.unit(5 + 8 / 12, "feet"),
  21579. weight: math.unit(120, "lb"),
  21580. name: "Front (Alt)",
  21581. image: {
  21582. source: "./media/characters/logan-grey/front-alt.svg",
  21583. extra: 958 / 893,
  21584. bottom: 15 / 970.768
  21585. }
  21586. },
  21587. back: {
  21588. height: math.unit(5 + 8 / 12, "feet"),
  21589. weight: math.unit(120, "lb"),
  21590. name: "Back",
  21591. image: {
  21592. source: "./media/characters/logan-grey/back.svg",
  21593. extra: 958 / 893,
  21594. bottom: 2.1881 / 970.9788
  21595. }
  21596. },
  21597. dick: {
  21598. height: math.unit(1.437, "feet"),
  21599. name: "Dick",
  21600. image: {
  21601. source: "./media/characters/logan-grey/dick.svg"
  21602. }
  21603. },
  21604. },
  21605. [
  21606. {
  21607. name: "Normal",
  21608. height: math.unit(5 + 8 / 12, "feet")
  21609. },
  21610. {
  21611. name: "The 500 Foot Femboy",
  21612. height: math.unit(500, "feet"),
  21613. default: true
  21614. },
  21615. {
  21616. name: "Megmacro",
  21617. height: math.unit(20, "miles")
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21623. {
  21624. front: {
  21625. height: math.unit(8 + 2 / 12, "feet"),
  21626. weight: math.unit(275, "lb"),
  21627. name: "Front",
  21628. image: {
  21629. source: "./media/characters/draganta/front.svg",
  21630. extra: 1177 / 1135,
  21631. bottom: 33.46 / 1212.1
  21632. }
  21633. },
  21634. },
  21635. [
  21636. {
  21637. name: "Normal",
  21638. height: math.unit(8 + 6 / 12, "feet"),
  21639. default: true
  21640. },
  21641. {
  21642. name: "Macro",
  21643. height: math.unit(150, "feet")
  21644. },
  21645. {
  21646. name: "Megamacro",
  21647. height: math.unit(1000, "miles")
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21653. {
  21654. front: {
  21655. height: math.unit(1.72, "m"),
  21656. weight: math.unit(80, "lb"),
  21657. name: "Front",
  21658. image: {
  21659. source: "./media/characters/voski/front.svg",
  21660. extra: 2076.22 / 2022.4,
  21661. bottom: 102.7 / 2177.3866
  21662. }
  21663. },
  21664. frontNsfw: {
  21665. height: math.unit(1.72, "m"),
  21666. weight: math.unit(80, "lb"),
  21667. name: "Front (NSFW)",
  21668. image: {
  21669. source: "./media/characters/voski/front-nsfw.svg",
  21670. extra: 2076.22 / 2022.4,
  21671. bottom: 102.7 / 2177.3866
  21672. }
  21673. },
  21674. back: {
  21675. height: math.unit(1.72, "m"),
  21676. weight: math.unit(80, "lb"),
  21677. name: "Back",
  21678. image: {
  21679. source: "./media/characters/voski/back.svg",
  21680. extra: 2104 / 2051,
  21681. bottom: 10.45 / 2113.63
  21682. }
  21683. },
  21684. },
  21685. [
  21686. {
  21687. name: "Normal",
  21688. height: math.unit(1.72, "m")
  21689. },
  21690. {
  21691. name: "Macro",
  21692. height: math.unit(55, "m"),
  21693. default: true
  21694. },
  21695. {
  21696. name: "Macro+",
  21697. height: math.unit(300, "m")
  21698. },
  21699. {
  21700. name: "Macro++",
  21701. height: math.unit(700, "m")
  21702. },
  21703. {
  21704. name: "Macro+++",
  21705. height: math.unit(4500, "m")
  21706. },
  21707. {
  21708. name: "Macro++++",
  21709. height: math.unit(45, "km")
  21710. },
  21711. {
  21712. name: "Macro+++++",
  21713. height: math.unit(1220, "km")
  21714. },
  21715. ]
  21716. ))
  21717. characterMakers.push(() => makeCharacter(
  21718. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21719. {
  21720. front: {
  21721. height: math.unit(2.3, "m"),
  21722. weight: math.unit(304, "kg"),
  21723. name: "Front",
  21724. image: {
  21725. source: "./media/characters/icowom-lee/front.svg",
  21726. extra: 985 / 955,
  21727. bottom: 25.4 / 1012
  21728. }
  21729. },
  21730. fronttentacles: {
  21731. height: math.unit(2.3, "m"),
  21732. weight: math.unit(304, "kg"),
  21733. name: "Front-tentacles",
  21734. image: {
  21735. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21736. extra: 985 / 955,
  21737. bottom: 25.4 / 1012
  21738. }
  21739. },
  21740. back: {
  21741. height: math.unit(2.3, "m"),
  21742. weight: math.unit(304, "kg"),
  21743. name: "Back",
  21744. image: {
  21745. source: "./media/characters/icowom-lee/back.svg",
  21746. extra: 975 / 954,
  21747. bottom: 9.5 / 985
  21748. }
  21749. },
  21750. backtentacles: {
  21751. height: math.unit(2.3, "m"),
  21752. weight: math.unit(304, "kg"),
  21753. name: "Back-tentacles",
  21754. image: {
  21755. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21756. extra: 975 / 954,
  21757. bottom: 9.5 / 985
  21758. }
  21759. },
  21760. frontDressed: {
  21761. height: math.unit(2.3, "m"),
  21762. weight: math.unit(304, "kg"),
  21763. name: "Front (Dressed)",
  21764. image: {
  21765. source: "./media/characters/icowom-lee/front-dressed.svg",
  21766. extra: 3076 / 2933,
  21767. bottom: 51.4 / 3125.1889
  21768. }
  21769. },
  21770. rump: {
  21771. height: math.unit(0.776, "meters"),
  21772. name: "Rump",
  21773. image: {
  21774. source: "./media/characters/icowom-lee/rump.svg"
  21775. }
  21776. },
  21777. genitals: {
  21778. height: math.unit(0.78, "meters"),
  21779. name: "Genitals",
  21780. image: {
  21781. source: "./media/characters/icowom-lee/genitals.svg"
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(2.3, "meters"),
  21789. default: true
  21790. },
  21791. {
  21792. name: "Macro",
  21793. height: math.unit(94, "meters"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(22, "meters"),
  21803. weight: math.unit(21000, "kg"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/shock-diamond/front.svg",
  21807. extra: 2204 / 2053,
  21808. bottom: 65 / 2239.47
  21809. }
  21810. },
  21811. frontNude: {
  21812. height: math.unit(22, "meters"),
  21813. weight: math.unit(21000, "kg"),
  21814. name: "Front (Nude)",
  21815. image: {
  21816. source: "./media/characters/shock-diamond/front-nude.svg",
  21817. extra: 2514 / 2285,
  21818. bottom: 13 / 2527.56
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Normal",
  21825. height: math.unit(3, "meters")
  21826. },
  21827. {
  21828. name: "Macro",
  21829. height: math.unit(22, "meters"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(5 + 4 / 12, "feet"),
  21839. weight: math.unit(120, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/rory/front.svg",
  21843. extra: 589 / 556,
  21844. bottom: 45.7 / 635.76
  21845. }
  21846. },
  21847. frontNude: {
  21848. height: math.unit(5 + 4 / 12, "feet"),
  21849. weight: math.unit(120, "lb"),
  21850. name: "Front (Nude)",
  21851. image: {
  21852. source: "./media/characters/rory/front-nude.svg",
  21853. extra: 589 / 556,
  21854. bottom: 45.7 / 635.76
  21855. }
  21856. },
  21857. side: {
  21858. height: math.unit(5 + 4 / 12, "feet"),
  21859. weight: math.unit(120, "lb"),
  21860. name: "Side",
  21861. image: {
  21862. source: "./media/characters/rory/side.svg",
  21863. extra: 597 / 564,
  21864. bottom: 55 / 653
  21865. }
  21866. },
  21867. back: {
  21868. height: math.unit(5 + 4 / 12, "feet"),
  21869. weight: math.unit(120, "lb"),
  21870. name: "Back",
  21871. image: {
  21872. source: "./media/characters/rory/back.svg",
  21873. extra: 620 / 585,
  21874. bottom: 8.86 / 630.43
  21875. }
  21876. },
  21877. dick: {
  21878. height: math.unit(0.86, "feet"),
  21879. name: "Dick",
  21880. image: {
  21881. source: "./media/characters/rory/dick.svg"
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(5 + 4 / 12, "feet"),
  21889. default: true
  21890. },
  21891. {
  21892. name: "Macro",
  21893. height: math.unit(100, "feet")
  21894. },
  21895. {
  21896. name: "Macro+",
  21897. height: math.unit(140, "feet")
  21898. },
  21899. {
  21900. name: "Macro++",
  21901. height: math.unit(300, "feet")
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21907. {
  21908. front: {
  21909. height: math.unit(5 + 9 / 12, "feet"),
  21910. weight: math.unit(190, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/sprisk/front.svg",
  21914. extra: 1225 / 1180,
  21915. bottom: 42.7 / 1266.4
  21916. }
  21917. },
  21918. frontNsfw: {
  21919. height: math.unit(5 + 9 / 12, "feet"),
  21920. weight: math.unit(190, "lb"),
  21921. name: "Front (NSFW)",
  21922. image: {
  21923. source: "./media/characters/sprisk/front-nsfw.svg",
  21924. extra: 1225 / 1180,
  21925. bottom: 42.7 / 1266.4
  21926. }
  21927. },
  21928. back: {
  21929. height: math.unit(5 + 9 / 12, "feet"),
  21930. weight: math.unit(190, "lb"),
  21931. name: "Back",
  21932. image: {
  21933. source: "./media/characters/sprisk/back.svg",
  21934. extra: 1247 / 1200,
  21935. bottom: 5.6 / 1253.04
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Tiny",
  21942. height: math.unit(2, "inches")
  21943. },
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(5 + 9 / 12, "feet"),
  21947. default: true
  21948. },
  21949. {
  21950. name: "Mini Macro",
  21951. height: math.unit(18, "feet")
  21952. },
  21953. {
  21954. name: "Macro",
  21955. height: math.unit(100, "feet")
  21956. },
  21957. {
  21958. name: "MACRO",
  21959. height: math.unit(50, "miles")
  21960. },
  21961. {
  21962. name: "M A C R O",
  21963. height: math.unit(300, "miles")
  21964. },
  21965. ]
  21966. ))
  21967. characterMakers.push(() => makeCharacter(
  21968. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21969. {
  21970. side: {
  21971. height: math.unit(15.6, "meters"),
  21972. weight: math.unit(700000, "kg"),
  21973. name: "Side",
  21974. image: {
  21975. source: "./media/characters/bunsen/side.svg",
  21976. extra: 1644 / 358
  21977. }
  21978. },
  21979. foot: {
  21980. height: math.unit(1.611 * 1644 / 358, "meter"),
  21981. name: "Foot",
  21982. image: {
  21983. source: "./media/characters/bunsen/foot.svg"
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Small",
  21990. height: math.unit(10, "feet")
  21991. },
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(15.6, "meters"),
  21995. default: true
  21996. },
  21997. ]
  21998. ))
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22001. {
  22002. front: {
  22003. height: math.unit(4 + 11 / 12, "feet"),
  22004. weight: math.unit(140, "lb"),
  22005. name: "Front",
  22006. image: {
  22007. source: "./media/characters/sesh/front.svg",
  22008. extra: 3420 / 3231,
  22009. bottom: 72 / 3949.5
  22010. }
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Normal",
  22016. height: math.unit(4 + 11 / 12, "feet")
  22017. },
  22018. {
  22019. name: "Grown",
  22020. height: math.unit(15, "feet"),
  22021. default: true
  22022. },
  22023. {
  22024. name: "Macro",
  22025. height: math.unit(1500, "feet")
  22026. },
  22027. {
  22028. name: "Megamacro",
  22029. height: math.unit(30, "miles")
  22030. },
  22031. {
  22032. name: "Continental",
  22033. height: math.unit(3000, "miles")
  22034. },
  22035. {
  22036. name: "Gravity Mass",
  22037. height: math.unit(300000, "miles")
  22038. },
  22039. {
  22040. name: "Planet Buster",
  22041. height: math.unit(30000000, "miles")
  22042. },
  22043. {
  22044. name: "Big",
  22045. height: math.unit(3000000000, "miles")
  22046. },
  22047. ]
  22048. ))
  22049. characterMakers.push(() => makeCharacter(
  22050. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22051. {
  22052. front: {
  22053. height: math.unit(9, "feet"),
  22054. weight: math.unit(350, "lb"),
  22055. name: "Front",
  22056. image: {
  22057. source: "./media/characters/pepper/front.svg",
  22058. extra: 1448 / 1312,
  22059. bottom: 9.4 / 1457.88
  22060. }
  22061. },
  22062. back: {
  22063. height: math.unit(9, "feet"),
  22064. weight: math.unit(350, "lb"),
  22065. name: "Back",
  22066. image: {
  22067. source: "./media/characters/pepper/back.svg",
  22068. extra: 1423 / 1300,
  22069. bottom: 4.6 / 1429
  22070. }
  22071. },
  22072. maw: {
  22073. height: math.unit(0.932, "feet"),
  22074. name: "Maw",
  22075. image: {
  22076. source: "./media/characters/pepper/maw.svg"
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(9, "feet"),
  22084. default: true
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22090. {
  22091. front: {
  22092. height: math.unit(6, "feet"),
  22093. weight: math.unit(150, "lb"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/maelstrom/front.svg",
  22097. extra: 2100 / 1883,
  22098. bottom: 94 / 2196.7
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Less Kaiju",
  22105. height: math.unit(200, "feet")
  22106. },
  22107. {
  22108. name: "Kaiju",
  22109. height: math.unit(400, "feet"),
  22110. default: true
  22111. },
  22112. {
  22113. name: "Kaiju-er",
  22114. height: math.unit(600, "feet")
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22120. {
  22121. front: {
  22122. height: math.unit(6 + 5 / 12, "feet"),
  22123. weight: math.unit(180, "lb"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/lexir/front.svg",
  22127. extra: 180 / 172,
  22128. bottom: 12 / 192
  22129. }
  22130. },
  22131. back: {
  22132. height: math.unit(6 + 5 / 12, "feet"),
  22133. weight: math.unit(180, "lb"),
  22134. name: "Back",
  22135. image: {
  22136. source: "./media/characters/lexir/back.svg",
  22137. extra: 183.84 / 175.5,
  22138. bottom: 3.1 / 187
  22139. }
  22140. },
  22141. },
  22142. [
  22143. {
  22144. name: "Very Smal",
  22145. height: math.unit(1, "nm")
  22146. },
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(6 + 5 / 12, "feet"),
  22150. default: true
  22151. },
  22152. {
  22153. name: "Macro",
  22154. height: math.unit(1, "mile")
  22155. },
  22156. {
  22157. name: "Megamacro",
  22158. height: math.unit(50, "miles")
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22164. {
  22165. front: {
  22166. height: math.unit(1.5, "meters"),
  22167. weight: math.unit(100, "lb"),
  22168. name: "Front",
  22169. image: {
  22170. source: "./media/characters/maksio/front.svg",
  22171. extra: 1549 / 1531,
  22172. bottom: 123.7 / 1674.5429
  22173. }
  22174. },
  22175. back: {
  22176. height: math.unit(1.5, "meters"),
  22177. weight: math.unit(100, "lb"),
  22178. name: "Back",
  22179. image: {
  22180. source: "./media/characters/maksio/back.svg",
  22181. extra: 1541 / 1509,
  22182. bottom: 97 / 1639
  22183. }
  22184. },
  22185. hand: {
  22186. height: math.unit(0.621, "feet"),
  22187. name: "Hand",
  22188. image: {
  22189. source: "./media/characters/maksio/hand.svg"
  22190. }
  22191. },
  22192. foot: {
  22193. height: math.unit(1.611, "feet"),
  22194. name: "Foot",
  22195. image: {
  22196. source: "./media/characters/maksio/foot.svg"
  22197. }
  22198. },
  22199. },
  22200. [
  22201. {
  22202. name: "Shrunken",
  22203. height: math.unit(10, "cm")
  22204. },
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(150, "cm"),
  22208. default: true
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22214. {
  22215. front: {
  22216. height: math.unit(100, "feet"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/erza-bear/front.svg",
  22220. extra: 2449 / 2390,
  22221. bottom: 46 / 2494
  22222. }
  22223. },
  22224. back: {
  22225. height: math.unit(100, "feet"),
  22226. name: "Back",
  22227. image: {
  22228. source: "./media/characters/erza-bear/back.svg",
  22229. extra: 2489 / 2430,
  22230. bottom: 85.4 / 2480
  22231. }
  22232. },
  22233. tail: {
  22234. height: math.unit(42, "feet"),
  22235. name: "Tail",
  22236. image: {
  22237. source: "./media/characters/erza-bear/tail.svg"
  22238. }
  22239. },
  22240. tongue: {
  22241. height: math.unit(8, "feet"),
  22242. name: "Tongue",
  22243. image: {
  22244. source: "./media/characters/erza-bear/tongue.svg"
  22245. }
  22246. },
  22247. dick: {
  22248. height: math.unit(10.5, "feet"),
  22249. name: "Dick",
  22250. image: {
  22251. source: "./media/characters/erza-bear/dick.svg"
  22252. }
  22253. },
  22254. dickVertical: {
  22255. height: math.unit(16.9, "feet"),
  22256. name: "Dick (Vertical)",
  22257. image: {
  22258. source: "./media/characters/erza-bear/dick-vertical.svg"
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Macro",
  22265. height: math.unit(100, "feet"),
  22266. default: true
  22267. },
  22268. ]
  22269. ))
  22270. characterMakers.push(() => makeCharacter(
  22271. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22272. {
  22273. front: {
  22274. height: math.unit(172, "cm"),
  22275. weight: math.unit(73, "kg"),
  22276. name: "Front",
  22277. image: {
  22278. source: "./media/characters/violet-flor/front.svg",
  22279. extra: 1530 / 1442,
  22280. bottom: 61.9 / 1588.8
  22281. }
  22282. },
  22283. back: {
  22284. height: math.unit(180, "cm"),
  22285. weight: math.unit(73, "kg"),
  22286. name: "Back",
  22287. image: {
  22288. source: "./media/characters/violet-flor/back.svg",
  22289. extra: 1692 / 1630,
  22290. bottom: 20 / 1712
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(172, "cm"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(6, "feet"),
  22307. weight: math.unit(220, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/lynn-rhea/front.svg",
  22311. extra: 310 / 273
  22312. }
  22313. },
  22314. back: {
  22315. height: math.unit(6, "feet"),
  22316. weight: math.unit(220, "lb"),
  22317. name: "Back",
  22318. image: {
  22319. source: "./media/characters/lynn-rhea/back.svg",
  22320. extra: 310 / 273
  22321. }
  22322. },
  22323. dicks: {
  22324. height: math.unit(0.9, "feet"),
  22325. name: "Dicks",
  22326. image: {
  22327. source: "./media/characters/lynn-rhea/dicks.svg"
  22328. }
  22329. },
  22330. slit: {
  22331. height: math.unit(0.4, "feet"),
  22332. name: "Slit",
  22333. image: {
  22334. source: "./media/characters/lynn-rhea/slit.svg"
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Micro",
  22341. height: math.unit(1, "inch")
  22342. },
  22343. {
  22344. name: "Macro",
  22345. height: math.unit(60, "feet"),
  22346. default: true
  22347. },
  22348. {
  22349. name: "Megamacro",
  22350. height: math.unit(2, "miles")
  22351. },
  22352. {
  22353. name: "Gigamacro",
  22354. height: math.unit(3, "earths")
  22355. },
  22356. {
  22357. name: "Galactic",
  22358. height: math.unit(0.8, "galaxies")
  22359. },
  22360. ]
  22361. ))
  22362. characterMakers.push(() => makeCharacter(
  22363. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22364. {
  22365. front: {
  22366. height: math.unit(1600, "feet"),
  22367. weight: math.unit(85758785169, "kg"),
  22368. name: "Front",
  22369. image: {
  22370. source: "./media/characters/valathos/front.svg",
  22371. extra: 1451 / 1339
  22372. }
  22373. },
  22374. },
  22375. [
  22376. {
  22377. name: "Macro",
  22378. height: math.unit(1600, "feet"),
  22379. default: true
  22380. },
  22381. ]
  22382. ))
  22383. characterMakers.push(() => makeCharacter(
  22384. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22385. {
  22386. front: {
  22387. height: math.unit(7 + 5 / 12, "feet"),
  22388. weight: math.unit(300, "lb"),
  22389. name: "Front",
  22390. image: {
  22391. source: "./media/characters/azula/front.svg",
  22392. extra: 3208 / 2880,
  22393. bottom: 80.2 / 3277
  22394. }
  22395. },
  22396. back: {
  22397. height: math.unit(7 + 5 / 12, "feet"),
  22398. weight: math.unit(300, "lb"),
  22399. name: "Back",
  22400. image: {
  22401. source: "./media/characters/azula/back.svg",
  22402. extra: 3169 / 2822,
  22403. bottom: 150.6 / 3321
  22404. }
  22405. },
  22406. },
  22407. [
  22408. {
  22409. name: "Normal",
  22410. height: math.unit(7 + 5 / 12, "feet"),
  22411. default: true
  22412. },
  22413. {
  22414. name: "Big",
  22415. height: math.unit(20, "feet")
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(5 + 1 / 12, "feet"),
  22424. weight: math.unit(110, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/rupert/front.svg",
  22428. extra: 1549 / 1495,
  22429. bottom: 54.2 / 1604.4
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Normal",
  22436. height: math.unit(5 + 1 / 12, "feet"),
  22437. default: true
  22438. },
  22439. ]
  22440. ))
  22441. characterMakers.push(() => makeCharacter(
  22442. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22443. {
  22444. front: {
  22445. height: math.unit(8 + 4 / 12, "feet"),
  22446. weight: math.unit(350, "lb"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/sheera-castellar/front.svg",
  22450. extra: 1957 / 1894,
  22451. bottom: 26.97 / 1975.017
  22452. }
  22453. },
  22454. side: {
  22455. height: math.unit(8 + 4 / 12, "feet"),
  22456. weight: math.unit(350, "lb"),
  22457. name: "Side",
  22458. image: {
  22459. source: "./media/characters/sheera-castellar/side.svg",
  22460. extra: 1957 / 1894
  22461. }
  22462. },
  22463. back: {
  22464. height: math.unit(8 + 4 / 12, "feet"),
  22465. weight: math.unit(350, "lb"),
  22466. name: "Back",
  22467. image: {
  22468. source: "./media/characters/sheera-castellar/back.svg",
  22469. extra: 1957 / 1894
  22470. }
  22471. },
  22472. angled: {
  22473. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22474. weight: math.unit(350, "lb"),
  22475. name: "Angled",
  22476. image: {
  22477. source: "./media/characters/sheera-castellar/angled.svg",
  22478. extra: 1807 / 1707,
  22479. bottom: 68 / 1875
  22480. }
  22481. },
  22482. genitals: {
  22483. height: math.unit(2.2, "feet"),
  22484. name: "Genitals",
  22485. image: {
  22486. source: "./media/characters/sheera-castellar/genitals.svg"
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Normal",
  22493. height: math.unit(8 + 4 / 12, "feet")
  22494. },
  22495. {
  22496. name: "Macro",
  22497. height: math.unit(150, "feet"),
  22498. default: true
  22499. },
  22500. {
  22501. name: "Macro+",
  22502. height: math.unit(800, "feet")
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(6, "feet"),
  22511. weight: math.unit(150, "lb"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/jaipur/front.svg",
  22515. extra: 3860 / 3731,
  22516. bottom: 287 / 4140
  22517. }
  22518. },
  22519. back: {
  22520. height: math.unit(6, "feet"),
  22521. weight: math.unit(150, "lb"),
  22522. name: "Back",
  22523. image: {
  22524. source: "./media/characters/jaipur/back.svg",
  22525. extra: 4060 / 3930,
  22526. bottom: 151 / 4200
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Normal",
  22533. height: math.unit(1.85, "meters"),
  22534. default: true
  22535. },
  22536. {
  22537. name: "Macro",
  22538. height: math.unit(150, "meters")
  22539. },
  22540. {
  22541. name: "Macro+",
  22542. height: math.unit(0.5, "miles")
  22543. },
  22544. {
  22545. name: "Macro++",
  22546. height: math.unit(2.5, "miles")
  22547. },
  22548. {
  22549. name: "Macro+++",
  22550. height: math.unit(12, "miles")
  22551. },
  22552. {
  22553. name: "Macro++++",
  22554. height: math.unit(120, "miles")
  22555. },
  22556. {
  22557. name: "Macro+++++",
  22558. height: math.unit(1200, "miles")
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22564. {
  22565. front: {
  22566. height: math.unit(6, "feet"),
  22567. weight: math.unit(150, "lb"),
  22568. name: "Front",
  22569. image: {
  22570. source: "./media/characters/sheila-wolf/front.svg",
  22571. extra: 1931 / 1808,
  22572. bottom: 29.5 / 1960
  22573. }
  22574. },
  22575. dick: {
  22576. height: math.unit(1.464, "feet"),
  22577. name: "Dick",
  22578. image: {
  22579. source: "./media/characters/sheila-wolf/dick.svg"
  22580. }
  22581. },
  22582. muzzle: {
  22583. height: math.unit(0.513, "feet"),
  22584. name: "Muzzle",
  22585. image: {
  22586. source: "./media/characters/sheila-wolf/muzzle.svg"
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Macro",
  22593. height: math.unit(70, "feet"),
  22594. default: true
  22595. },
  22596. ]
  22597. ))
  22598. characterMakers.push(() => makeCharacter(
  22599. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22600. {
  22601. front: {
  22602. height: math.unit(32, "meters"),
  22603. weight: math.unit(300000, "kg"),
  22604. name: "Front",
  22605. image: {
  22606. source: "./media/characters/almor/front.svg",
  22607. extra: 1408 / 1322,
  22608. bottom: 94.6 / 1506.5
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Macro",
  22615. height: math.unit(32, "meters"),
  22616. default: true
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22622. {
  22623. front: {
  22624. height: math.unit(7, "feet"),
  22625. weight: math.unit(200, "lb"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/silver/front.svg",
  22629. extra: 472.1 / 450.5,
  22630. bottom: 26.5 / 499.424
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(7, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Macro",
  22642. height: math.unit(800, "feet")
  22643. },
  22644. {
  22645. name: "Megamacro",
  22646. height: math.unit(250, "miles")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22652. {
  22653. front: {
  22654. height: math.unit(6, "feet"),
  22655. weight: math.unit(150, "lb"),
  22656. name: "Front",
  22657. image: {
  22658. source: "./media/characters/pliskin/front.svg",
  22659. extra: 1469 / 1359,
  22660. bottom: 70 / 1540
  22661. }
  22662. },
  22663. },
  22664. [
  22665. {
  22666. name: "Micro",
  22667. height: math.unit(3, "inches")
  22668. },
  22669. {
  22670. name: "Normal",
  22671. height: math.unit(5 + 11 / 12, "feet"),
  22672. default: true
  22673. },
  22674. {
  22675. name: "Macro",
  22676. height: math.unit(120, "feet")
  22677. },
  22678. ]
  22679. ))
  22680. characterMakers.push(() => makeCharacter(
  22681. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22682. {
  22683. front: {
  22684. height: math.unit(6, "feet"),
  22685. weight: math.unit(150, "lb"),
  22686. name: "Front",
  22687. image: {
  22688. source: "./media/characters/sammy/front.svg",
  22689. extra: 1193 / 1089,
  22690. bottom: 30.5 / 1226
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Macro",
  22697. height: math.unit(1700, "feet"),
  22698. default: true
  22699. },
  22700. {
  22701. name: "Examacro",
  22702. height: math.unit(2.5e9, "lightyears")
  22703. },
  22704. ]
  22705. ))
  22706. characterMakers.push(() => makeCharacter(
  22707. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22708. {
  22709. front: {
  22710. height: math.unit(21, "meters"),
  22711. weight: math.unit(12, "tonnes"),
  22712. name: "Front",
  22713. image: {
  22714. source: "./media/characters/kuru/front.svg",
  22715. extra: 4301 / 3785,
  22716. bottom: 371.3 / 4691
  22717. }
  22718. },
  22719. },
  22720. [
  22721. {
  22722. name: "Macro",
  22723. height: math.unit(21, "meters"),
  22724. default: true
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(23, "meters"),
  22733. weight: math.unit(12.2, "tonnes"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/rakka/front.svg",
  22737. extra: 4670 / 4169,
  22738. bottom: 301 / 4968.7
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Macro",
  22745. height: math.unit(23, "meters"),
  22746. default: true
  22747. },
  22748. ]
  22749. ))
  22750. characterMakers.push(() => makeCharacter(
  22751. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22752. {
  22753. front: {
  22754. height: math.unit(6, "feet"),
  22755. weight: math.unit(150, "lb"),
  22756. name: "Front",
  22757. image: {
  22758. source: "./media/characters/rhys-feline/front.svg",
  22759. extra: 2488 / 2308,
  22760. bottom: 35.67 / 2519.19
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Really Small",
  22767. height: math.unit(1, "nm")
  22768. },
  22769. {
  22770. name: "Micro",
  22771. height: math.unit(4, "inches")
  22772. },
  22773. {
  22774. name: "Normal",
  22775. height: math.unit(4 + 10 / 12, "feet"),
  22776. default: true
  22777. },
  22778. {
  22779. name: "Macro",
  22780. height: math.unit(100, "feet")
  22781. },
  22782. {
  22783. name: "Megamacto",
  22784. height: math.unit(50, "miles")
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22790. {
  22791. side: {
  22792. height: math.unit(30, "feet"),
  22793. weight: math.unit(35000, "kg"),
  22794. name: "Side",
  22795. image: {
  22796. source: "./media/characters/alydar/side.svg",
  22797. extra: 234 / 222,
  22798. bottom: 6.5 / 241
  22799. }
  22800. },
  22801. front: {
  22802. height: math.unit(30, "feet"),
  22803. weight: math.unit(35000, "kg"),
  22804. name: "Front",
  22805. image: {
  22806. source: "./media/characters/alydar/front.svg",
  22807. extra: 223.37 / 210.2,
  22808. bottom: 22.3 / 246.76
  22809. }
  22810. },
  22811. top: {
  22812. height: math.unit(64.54, "feet"),
  22813. weight: math.unit(35000, "kg"),
  22814. name: "Top",
  22815. image: {
  22816. source: "./media/characters/alydar/top.svg"
  22817. }
  22818. },
  22819. anthro: {
  22820. height: math.unit(30, "feet"),
  22821. weight: math.unit(9000, "kg"),
  22822. name: "Anthro",
  22823. image: {
  22824. source: "./media/characters/alydar/anthro.svg",
  22825. extra: 432 / 421,
  22826. bottom: 7.18 / 440
  22827. }
  22828. },
  22829. maw: {
  22830. height: math.unit(11.693, "feet"),
  22831. name: "Maw",
  22832. image: {
  22833. source: "./media/characters/alydar/maw.svg"
  22834. }
  22835. },
  22836. head: {
  22837. height: math.unit(11.693, "feet"),
  22838. name: "Head",
  22839. image: {
  22840. source: "./media/characters/alydar/head.svg"
  22841. }
  22842. },
  22843. headAlt: {
  22844. height: math.unit(12.861, "feet"),
  22845. name: "Head (Alt)",
  22846. image: {
  22847. source: "./media/characters/alydar/head-alt.svg"
  22848. }
  22849. },
  22850. wing: {
  22851. height: math.unit(20.712, "feet"),
  22852. name: "Wing",
  22853. image: {
  22854. source: "./media/characters/alydar/wing.svg"
  22855. }
  22856. },
  22857. wingFeather: {
  22858. height: math.unit(9.662, "feet"),
  22859. name: "Wing Feather",
  22860. image: {
  22861. source: "./media/characters/alydar/wing-feather.svg"
  22862. }
  22863. },
  22864. countourFeather: {
  22865. height: math.unit(4.154, "feet"),
  22866. name: "Contour Feather",
  22867. image: {
  22868. source: "./media/characters/alydar/contour-feather.svg"
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Diplomatic",
  22875. height: math.unit(13, "feet"),
  22876. default: true
  22877. },
  22878. {
  22879. name: "Small",
  22880. height: math.unit(30, "feet")
  22881. },
  22882. {
  22883. name: "Normal",
  22884. height: math.unit(95, "feet"),
  22885. default: true
  22886. },
  22887. {
  22888. name: "Large",
  22889. height: math.unit(285, "feet")
  22890. },
  22891. {
  22892. name: "Incomprehensible",
  22893. height: math.unit(450, "megameters")
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22899. {
  22900. side: {
  22901. height: math.unit(11, "feet"),
  22902. weight: math.unit(1750, "kg"),
  22903. name: "Side",
  22904. image: {
  22905. source: "./media/characters/selicia/side.svg",
  22906. extra: 440 / 396,
  22907. bottom: 24.8 / 465.979
  22908. }
  22909. },
  22910. maw: {
  22911. height: math.unit(4.665, "feet"),
  22912. name: "Maw",
  22913. image: {
  22914. source: "./media/characters/selicia/maw.svg"
  22915. }
  22916. },
  22917. },
  22918. [
  22919. {
  22920. name: "Normal",
  22921. height: math.unit(11, "feet"),
  22922. default: true
  22923. },
  22924. ]
  22925. ))
  22926. characterMakers.push(() => makeCharacter(
  22927. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22928. {
  22929. side: {
  22930. height: math.unit(2 + 6 / 12, "feet"),
  22931. weight: math.unit(30, "lb"),
  22932. name: "Side",
  22933. image: {
  22934. source: "./media/characters/layla/side.svg",
  22935. extra: 244 / 188,
  22936. bottom: 18.2 / 262.1
  22937. }
  22938. },
  22939. back: {
  22940. height: math.unit(2 + 6 / 12, "feet"),
  22941. weight: math.unit(30, "lb"),
  22942. name: "Back",
  22943. image: {
  22944. source: "./media/characters/layla/back.svg",
  22945. extra: 308 / 241.5,
  22946. bottom: 8.9 / 316.8
  22947. }
  22948. },
  22949. cumming: {
  22950. height: math.unit(2 + 6 / 12, "feet"),
  22951. weight: math.unit(30, "lb"),
  22952. name: "Cumming",
  22953. image: {
  22954. source: "./media/characters/layla/cumming.svg",
  22955. extra: 342 / 279,
  22956. bottom: 595 / 938
  22957. }
  22958. },
  22959. dickFlaccid: {
  22960. height: math.unit(2.595, "feet"),
  22961. name: "Flaccid Genitals",
  22962. image: {
  22963. source: "./media/characters/layla/dick-flaccid.svg"
  22964. }
  22965. },
  22966. dickErect: {
  22967. height: math.unit(2.359, "feet"),
  22968. name: "Erect Genitals",
  22969. image: {
  22970. source: "./media/characters/layla/dick-erect.svg"
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Micro",
  22977. height: math.unit(1, "inch")
  22978. },
  22979. {
  22980. name: "Small",
  22981. height: math.unit(1, "foot")
  22982. },
  22983. {
  22984. name: "Normal",
  22985. height: math.unit(2 + 6 / 12, "feet"),
  22986. default: true
  22987. },
  22988. {
  22989. name: "Macro",
  22990. height: math.unit(200, "feet")
  22991. },
  22992. {
  22993. name: "Megamacro",
  22994. height: math.unit(1000, "miles")
  22995. },
  22996. {
  22997. name: "Planetary",
  22998. height: math.unit(8000, "miles")
  22999. },
  23000. {
  23001. name: "True Layla",
  23002. height: math.unit(200000 * 7, "multiverses")
  23003. },
  23004. ]
  23005. ))
  23006. characterMakers.push(() => makeCharacter(
  23007. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23008. {
  23009. back: {
  23010. height: math.unit(10.5, "feet"),
  23011. weight: math.unit(800, "lb"),
  23012. name: "Back",
  23013. image: {
  23014. source: "./media/characters/knox/back.svg",
  23015. extra: 1486 / 1089,
  23016. bottom: 107 / 1601.4
  23017. }
  23018. },
  23019. side: {
  23020. height: math.unit(10.5, "feet"),
  23021. weight: math.unit(800, "lb"),
  23022. name: "Side",
  23023. image: {
  23024. source: "./media/characters/knox/side.svg",
  23025. extra: 244 / 218,
  23026. bottom: 14 / 260
  23027. }
  23028. },
  23029. },
  23030. [
  23031. {
  23032. name: "Compact",
  23033. height: math.unit(10.5, "feet"),
  23034. default: true
  23035. },
  23036. {
  23037. name: "Dynamax",
  23038. height: math.unit(210, "feet")
  23039. },
  23040. {
  23041. name: "Full Macro",
  23042. height: math.unit(850, "feet")
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23048. {
  23049. front: {
  23050. height: math.unit(6, "feet"),
  23051. weight: math.unit(152, "lb"),
  23052. name: "Front",
  23053. image: {
  23054. source: "./media/characters/shin-pikachu/front.svg",
  23055. extra: 1574 / 1480,
  23056. bottom: 53.3 / 1626
  23057. }
  23058. },
  23059. hand: {
  23060. height: math.unit(1.055, "feet"),
  23061. name: "Hand",
  23062. image: {
  23063. source: "./media/characters/shin-pikachu/hand.svg"
  23064. }
  23065. },
  23066. foot: {
  23067. height: math.unit(1.1, "feet"),
  23068. name: "Foot",
  23069. image: {
  23070. source: "./media/characters/shin-pikachu/foot.svg"
  23071. }
  23072. },
  23073. collar: {
  23074. height: math.unit(0.386, "feet"),
  23075. name: "Collar",
  23076. image: {
  23077. source: "./media/characters/shin-pikachu/collar.svg"
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Smallest",
  23084. height: math.unit(0.5, "inches")
  23085. },
  23086. {
  23087. name: "Micro",
  23088. height: math.unit(6, "inches")
  23089. },
  23090. {
  23091. name: "Normal",
  23092. height: math.unit(6, "feet"),
  23093. default: true
  23094. },
  23095. {
  23096. name: "Macro",
  23097. height: math.unit(150, "feet")
  23098. },
  23099. ]
  23100. ))
  23101. characterMakers.push(() => makeCharacter(
  23102. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23103. {
  23104. front: {
  23105. height: math.unit(28, "feet"),
  23106. weight: math.unit(10500, "lb"),
  23107. name: "Front",
  23108. image: {
  23109. source: "./media/characters/kayda/front.svg",
  23110. extra: 1536 / 1428,
  23111. bottom: 68.7 / 1603
  23112. }
  23113. },
  23114. back: {
  23115. height: math.unit(28, "feet"),
  23116. weight: math.unit(10500, "lb"),
  23117. name: "Back",
  23118. image: {
  23119. source: "./media/characters/kayda/back.svg",
  23120. extra: 1557 / 1464,
  23121. bottom: 39.5 / 1597.49
  23122. }
  23123. },
  23124. dick: {
  23125. height: math.unit(3.858, "feet"),
  23126. name: "Dick",
  23127. image: {
  23128. source: "./media/characters/kayda/dick.svg"
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Macro",
  23135. height: math.unit(28, "feet"),
  23136. default: true
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(10 + 11 / 12, "feet"),
  23145. weight: math.unit(1400, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/brian/front.svg",
  23149. extra: 737 / 692,
  23150. bottom: 55.4 / 785
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(10 + 11 / 12, "feet"),
  23158. default: true
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23164. {
  23165. front: {
  23166. height: math.unit(5 + 8 / 12, "feet"),
  23167. weight: math.unit(140, "lb"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/khemri/front.svg",
  23171. extra: 4780 / 4059,
  23172. bottom: 80.1 / 4859.25
  23173. }
  23174. },
  23175. },
  23176. [
  23177. {
  23178. name: "Micro",
  23179. height: math.unit(6, "inches")
  23180. },
  23181. {
  23182. name: "Normal",
  23183. height: math.unit(5 + 8 / 12, "feet"),
  23184. default: true
  23185. },
  23186. ]
  23187. ))
  23188. characterMakers.push(() => makeCharacter(
  23189. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23190. {
  23191. front: {
  23192. height: math.unit(13, "feet"),
  23193. weight: math.unit(1700, "lb"),
  23194. name: "Front",
  23195. image: {
  23196. source: "./media/characters/felix-braveheart/front.svg",
  23197. extra: 1222 / 1157,
  23198. bottom: 53.2 / 1280
  23199. }
  23200. },
  23201. back: {
  23202. height: math.unit(13, "feet"),
  23203. weight: math.unit(1700, "lb"),
  23204. name: "Back",
  23205. image: {
  23206. source: "./media/characters/felix-braveheart/back.svg",
  23207. extra: 1277 / 1203,
  23208. bottom: 50.2 / 1327
  23209. }
  23210. },
  23211. feral: {
  23212. height: math.unit(6, "feet"),
  23213. weight: math.unit(400, "lb"),
  23214. name: "Feral",
  23215. image: {
  23216. source: "./media/characters/felix-braveheart/feral.svg",
  23217. extra: 682 / 625,
  23218. bottom: 6.9 / 688
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Normal",
  23225. height: math.unit(13, "feet"),
  23226. default: true
  23227. },
  23228. ]
  23229. ))
  23230. characterMakers.push(() => makeCharacter(
  23231. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23232. {
  23233. side: {
  23234. height: math.unit(5 + 11 / 12, "feet"),
  23235. weight: math.unit(1400, "lb"),
  23236. name: "Side",
  23237. image: {
  23238. source: "./media/characters/shadow-blade/side.svg",
  23239. extra: 1726 / 1267,
  23240. bottom: 58.4 / 1785
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Normal",
  23247. height: math.unit(5 + 11 / 12, "feet"),
  23248. default: true
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(1 + 6 / 12, "feet"),
  23257. weight: math.unit(25, "lb"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/karla-halldor/front.svg",
  23261. extra: 1459 / 1383,
  23262. bottom: 12 / 1472
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Normal",
  23269. height: math.unit(1 + 6 / 12, "feet"),
  23270. default: true
  23271. },
  23272. ]
  23273. ))
  23274. characterMakers.push(() => makeCharacter(
  23275. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23276. {
  23277. front: {
  23278. height: math.unit(6 + 2 / 12, "feet"),
  23279. weight: math.unit(160, "lb"),
  23280. name: "Front",
  23281. image: {
  23282. source: "./media/characters/ariam/front.svg",
  23283. extra: 714 / 617,
  23284. bottom: 23.4 / 737,
  23285. }
  23286. },
  23287. squatting: {
  23288. height: math.unit(4.1, "feet"),
  23289. weight: math.unit(160, "lb"),
  23290. name: "Squatting",
  23291. image: {
  23292. source: "./media/characters/ariam/squatting.svg",
  23293. extra: 2617 / 2112,
  23294. bottom: 61.2 / 2681,
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(6 + 2 / 12, "feet"),
  23302. default: true
  23303. },
  23304. {
  23305. name: "Normal+",
  23306. height: math.unit(4, "meters")
  23307. },
  23308. {
  23309. name: "Macro",
  23310. height: math.unit(50, "meters")
  23311. },
  23312. {
  23313. name: "Macro+",
  23314. height: math.unit(100, "meters")
  23315. },
  23316. {
  23317. name: "Megamacro",
  23318. height: math.unit(20, "km")
  23319. },
  23320. ]
  23321. ))
  23322. characterMakers.push(() => makeCharacter(
  23323. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23324. {
  23325. front: {
  23326. height: math.unit(1.67, "meters"),
  23327. weight: math.unit(140, "lb"),
  23328. name: "Front",
  23329. image: {
  23330. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23331. extra: 438 / 410,
  23332. bottom: 0.75 / 439
  23333. }
  23334. },
  23335. },
  23336. [
  23337. {
  23338. name: "Shrunken",
  23339. height: math.unit(7.6, "cm")
  23340. },
  23341. {
  23342. name: "Human Scale",
  23343. height: math.unit(1.67, "meters")
  23344. },
  23345. {
  23346. name: "Wolxi Scale",
  23347. height: math.unit(36.7, "meters"),
  23348. default: true
  23349. },
  23350. ]
  23351. ))
  23352. characterMakers.push(() => makeCharacter(
  23353. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23354. {
  23355. front: {
  23356. height: math.unit(1.73, "meters"),
  23357. weight: math.unit(240, "lb"),
  23358. name: "Front",
  23359. image: {
  23360. source: "./media/characters/izue-two-mothers/front.svg",
  23361. extra: 469 / 437,
  23362. bottom: 1.24 / 470.6
  23363. }
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Shrunken",
  23369. height: math.unit(7.86, "cm")
  23370. },
  23371. {
  23372. name: "Human Scale",
  23373. height: math.unit(1.73, "meters")
  23374. },
  23375. {
  23376. name: "Wolxi Scale",
  23377. height: math.unit(38, "meters"),
  23378. default: true
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23384. {
  23385. front: {
  23386. height: math.unit(1.55, "meters"),
  23387. weight: math.unit(120, "lb"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/teeku-love-shack/front.svg",
  23391. extra: 387 / 362,
  23392. bottom: 1.51 / 388
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Shrunken",
  23399. height: math.unit(7, "cm")
  23400. },
  23401. {
  23402. name: "Human Scale",
  23403. height: math.unit(1.55, "meters")
  23404. },
  23405. {
  23406. name: "Wolxi Scale",
  23407. height: math.unit(34.1, "meters"),
  23408. default: true
  23409. },
  23410. ]
  23411. ))
  23412. characterMakers.push(() => makeCharacter(
  23413. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23414. {
  23415. front: {
  23416. height: math.unit(1.83, "meters"),
  23417. weight: math.unit(135, "lb"),
  23418. name: "Front",
  23419. image: {
  23420. source: "./media/characters/dejma-the-red/front.svg",
  23421. extra: 480 / 458,
  23422. bottom: 1.8 / 482
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Shrunken",
  23429. height: math.unit(8.3, "cm")
  23430. },
  23431. {
  23432. name: "Human Scale",
  23433. height: math.unit(1.83, "meters")
  23434. },
  23435. {
  23436. name: "Wolxi Scale",
  23437. height: math.unit(40, "meters"),
  23438. default: true
  23439. },
  23440. ]
  23441. ))
  23442. characterMakers.push(() => makeCharacter(
  23443. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23444. {
  23445. front: {
  23446. height: math.unit(1.78, "meters"),
  23447. weight: math.unit(65, "kg"),
  23448. name: "Front",
  23449. image: {
  23450. source: "./media/characters/aki/front.svg",
  23451. extra: 452 / 415
  23452. }
  23453. },
  23454. frontNsfw: {
  23455. height: math.unit(1.78, "meters"),
  23456. weight: math.unit(65, "kg"),
  23457. name: "Front (NSFW)",
  23458. image: {
  23459. source: "./media/characters/aki/front-nsfw.svg",
  23460. extra: 452 / 415
  23461. }
  23462. },
  23463. back: {
  23464. height: math.unit(1.78, "meters"),
  23465. weight: math.unit(65, "kg"),
  23466. name: "Back",
  23467. image: {
  23468. source: "./media/characters/aki/back.svg",
  23469. extra: 452 / 415
  23470. }
  23471. },
  23472. rump: {
  23473. height: math.unit(2.05, "feet"),
  23474. name: "Rump",
  23475. image: {
  23476. source: "./media/characters/aki/rump.svg"
  23477. }
  23478. },
  23479. dick: {
  23480. height: math.unit(0.95, "feet"),
  23481. name: "Dick",
  23482. image: {
  23483. source: "./media/characters/aki/dick.svg"
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Micro",
  23490. height: math.unit(15, "cm")
  23491. },
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(178, "cm"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Macro",
  23499. height: math.unit(214, "m")
  23500. },
  23501. {
  23502. name: "Macro+",
  23503. height: math.unit(534, "m")
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23509. {
  23510. front: {
  23511. height: math.unit(5 + 5 / 12, "feet"),
  23512. weight: math.unit(120, "lb"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/ari/front.svg",
  23516. extra: 714.5 / 682,
  23517. bottom: 8 / 722.5
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Normal",
  23524. height: math.unit(5 + 5 / 12, "feet")
  23525. },
  23526. {
  23527. name: "Macro",
  23528. height: math.unit(100, "feet"),
  23529. default: true
  23530. },
  23531. {
  23532. name: "Megamacro",
  23533. height: math.unit(100, "miles")
  23534. },
  23535. {
  23536. name: "Gigamacro",
  23537. height: math.unit(80000, "miles")
  23538. },
  23539. ]
  23540. ))
  23541. characterMakers.push(() => makeCharacter(
  23542. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23543. {
  23544. side: {
  23545. height: math.unit(9, "feet"),
  23546. weight: math.unit(400, "kg"),
  23547. name: "Side",
  23548. image: {
  23549. source: "./media/characters/bolt/side.svg",
  23550. extra: 1126 / 896,
  23551. bottom: 60 / 1187.3,
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "Micro",
  23558. height: math.unit(5, "inches")
  23559. },
  23560. {
  23561. name: "Normal",
  23562. height: math.unit(9, "feet"),
  23563. default: true
  23564. },
  23565. {
  23566. name: "Macro",
  23567. height: math.unit(700, "feet")
  23568. },
  23569. {
  23570. name: "Max Size",
  23571. height: math.unit(1.52e22, "yottameters")
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(4.53, "meters"),
  23580. weight: math.unit(3, "tons"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/draekon-sylviar/front.svg",
  23584. extra: 1228 / 1068,
  23585. bottom: 41 / 1270
  23586. }
  23587. },
  23588. tail: {
  23589. height: math.unit(1.772, "meter"),
  23590. name: "Tail",
  23591. image: {
  23592. source: "./media/characters/draekon-sylviar/tail.svg"
  23593. }
  23594. },
  23595. head: {
  23596. height: math.unit(1.331, "meter"),
  23597. name: "Head",
  23598. image: {
  23599. source: "./media/characters/draekon-sylviar/head.svg"
  23600. }
  23601. },
  23602. hand: {
  23603. height: math.unit(0.564, "meter"),
  23604. name: "Hand",
  23605. image: {
  23606. source: "./media/characters/draekon-sylviar/hand.svg"
  23607. }
  23608. },
  23609. foot: {
  23610. height: math.unit(0.621, "meter"),
  23611. name: "Foot",
  23612. image: {
  23613. source: "./media/characters/draekon-sylviar/foot.svg",
  23614. bottom: 32 / 324
  23615. }
  23616. },
  23617. dick: {
  23618. height: math.unit(61, "cm"),
  23619. name: "Dick",
  23620. image: {
  23621. source: "./media/characters/draekon-sylviar/dick.svg"
  23622. }
  23623. },
  23624. dickseparated: {
  23625. height: math.unit(61, "cm"),
  23626. name: "Dick-separated",
  23627. image: {
  23628. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23629. }
  23630. },
  23631. },
  23632. [
  23633. {
  23634. name: "Small",
  23635. height: math.unit(4.53 / 2, "meters"),
  23636. default: true
  23637. },
  23638. {
  23639. name: "Normal",
  23640. height: math.unit(4.53, "meters"),
  23641. default: true
  23642. },
  23643. {
  23644. name: "Large",
  23645. height: math.unit(4.53 * 2, "meters"),
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(6 + 2 / 12, "feet"),
  23654. weight: math.unit(180, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/brawler/front.svg",
  23658. extra: 3301 / 3027,
  23659. bottom: 138 / 3439
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(6 + 2 / 12, "feet"),
  23667. default: true
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(11, "feet"),
  23676. weight: math.unit(1000, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/alex/front.svg",
  23680. bottom: 44.5 / 620
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Micro",
  23687. height: math.unit(5, "inches")
  23688. },
  23689. {
  23690. name: "Normal",
  23691. height: math.unit(11, "feet"),
  23692. default: true
  23693. },
  23694. {
  23695. name: "Macro",
  23696. height: math.unit(9.5e9, "feet")
  23697. },
  23698. {
  23699. name: "Max Size",
  23700. height: math.unit(1.4e283, "yottameters")
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23706. {
  23707. female: {
  23708. height: math.unit(29.9, "m"),
  23709. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23710. name: "Female",
  23711. image: {
  23712. source: "./media/characters/zenari/female.svg",
  23713. extra: 3281.6 / 3217,
  23714. bottom: 72.2 / 3353
  23715. }
  23716. },
  23717. male: {
  23718. height: math.unit(27.7, "m"),
  23719. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23720. name: "Male",
  23721. image: {
  23722. source: "./media/characters/zenari/male.svg",
  23723. extra: 3008 / 2991,
  23724. bottom: 54.6 / 3069
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(29.7, "meters"),
  23732. default: true
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23738. {
  23739. female: {
  23740. height: math.unit(23.8, "m"),
  23741. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23742. name: "Female",
  23743. image: {
  23744. source: "./media/characters/mactarian/female.svg",
  23745. extra: 2662 / 2569,
  23746. bottom: 73 / 2736
  23747. }
  23748. },
  23749. male: {
  23750. height: math.unit(23.8, "m"),
  23751. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23752. name: "Male",
  23753. image: {
  23754. source: "./media/characters/mactarian/male.svg",
  23755. extra: 2673 / 2600,
  23756. bottom: 76 / 2750
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Macro",
  23763. height: math.unit(23.8, "meters"),
  23764. default: true
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23770. {
  23771. female: {
  23772. height: math.unit(19.3, "m"),
  23773. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23774. name: "Female",
  23775. image: {
  23776. source: "./media/characters/umok/female.svg",
  23777. extra: 2186 / 2078,
  23778. bottom: 87 / 2277
  23779. }
  23780. },
  23781. male: {
  23782. height: math.unit(19.5, "m"),
  23783. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23784. name: "Male",
  23785. image: {
  23786. source: "./media/characters/umok/male.svg",
  23787. extra: 2233 / 2140,
  23788. bottom: 24.4 / 2258
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Macro",
  23795. height: math.unit(19.3, "meters"),
  23796. default: true
  23797. },
  23798. ]
  23799. ))
  23800. characterMakers.push(() => makeCharacter(
  23801. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23802. {
  23803. female: {
  23804. height: math.unit(26.15, "m"),
  23805. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23806. name: "Female",
  23807. image: {
  23808. source: "./media/characters/joraxian/female.svg",
  23809. extra: 2912 / 2824,
  23810. bottom: 36 / 2956
  23811. }
  23812. },
  23813. male: {
  23814. height: math.unit(25.4, "m"),
  23815. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23816. name: "Male",
  23817. image: {
  23818. source: "./media/characters/joraxian/male.svg",
  23819. extra: 2877 / 2721,
  23820. bottom: 82 / 2967
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Macro",
  23827. height: math.unit(26.15, "meters"),
  23828. default: true
  23829. },
  23830. ]
  23831. ))
  23832. characterMakers.push(() => makeCharacter(
  23833. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23834. {
  23835. female: {
  23836. height: math.unit(21.6, "m"),
  23837. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23838. name: "Female",
  23839. image: {
  23840. source: "./media/characters/sthara/female.svg",
  23841. extra: 2516 / 2347,
  23842. bottom: 21.5 / 2537
  23843. }
  23844. },
  23845. male: {
  23846. height: math.unit(24, "m"),
  23847. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23848. name: "Male",
  23849. image: {
  23850. source: "./media/characters/sthara/male.svg",
  23851. extra: 2732 / 2607,
  23852. bottom: 23 / 2732
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Macro",
  23859. height: math.unit(21.6, "meters"),
  23860. default: true
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23866. {
  23867. front: {
  23868. height: math.unit(6 + 4 / 12, "feet"),
  23869. weight: math.unit(175, "lb"),
  23870. name: "Front",
  23871. image: {
  23872. source: "./media/characters/luka-bryzant/front.svg",
  23873. extra: 311 / 289,
  23874. bottom: 4 / 315
  23875. }
  23876. },
  23877. back: {
  23878. height: math.unit(6 + 4 / 12, "feet"),
  23879. weight: math.unit(175, "lb"),
  23880. name: "Back",
  23881. image: {
  23882. source: "./media/characters/luka-bryzant/back.svg",
  23883. extra: 311 / 289,
  23884. bottom: 3.8 / 313.7
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Micro",
  23891. height: math.unit(10, "inches")
  23892. },
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(6 + 4 / 12, "feet"),
  23896. default: true
  23897. },
  23898. {
  23899. name: "Large",
  23900. height: math.unit(12, "feet")
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23906. {
  23907. front: {
  23908. height: math.unit(5 + 7 / 12, "feet"),
  23909. weight: math.unit(185, "lb"),
  23910. name: "Front",
  23911. image: {
  23912. source: "./media/characters/aman-aquila/front.svg",
  23913. extra: 1013 / 976,
  23914. bottom: 45.6 / 1057
  23915. }
  23916. },
  23917. side: {
  23918. height: math.unit(5 + 7 / 12, "feet"),
  23919. weight: math.unit(185, "lb"),
  23920. name: "Side",
  23921. image: {
  23922. source: "./media/characters/aman-aquila/side.svg",
  23923. extra: 1054 / 1011,
  23924. bottom: 15 / 1070
  23925. }
  23926. },
  23927. back: {
  23928. height: math.unit(5 + 7 / 12, "feet"),
  23929. weight: math.unit(185, "lb"),
  23930. name: "Back",
  23931. image: {
  23932. source: "./media/characters/aman-aquila/back.svg",
  23933. extra: 1026 / 970,
  23934. bottom: 12 / 1039
  23935. }
  23936. },
  23937. head: {
  23938. height: math.unit(1.211, "feet"),
  23939. name: "Head",
  23940. image: {
  23941. source: "./media/characters/aman-aquila/head.svg",
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Minimicro",
  23948. height: math.unit(0.057, "inches")
  23949. },
  23950. {
  23951. name: "Micro",
  23952. height: math.unit(7, "inches")
  23953. },
  23954. {
  23955. name: "Mini",
  23956. height: math.unit(3 + 7 / 12, "feet")
  23957. },
  23958. {
  23959. name: "Normal",
  23960. height: math.unit(5 + 7 / 12, "feet"),
  23961. default: true
  23962. },
  23963. {
  23964. name: "Macro",
  23965. height: math.unit(157 + 7 / 12, "feet")
  23966. },
  23967. {
  23968. name: "Megamacro",
  23969. height: math.unit(1557 + 7 / 12, "feet")
  23970. },
  23971. {
  23972. name: "Gigamacro",
  23973. height: math.unit(15557 + 7 / 12, "feet")
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23979. {
  23980. front: {
  23981. height: math.unit(3 + 2 / 12, "inches"),
  23982. weight: math.unit(0.3, "ounces"),
  23983. name: "Front",
  23984. image: {
  23985. source: "./media/characters/hiphae/front.svg",
  23986. extra: 1931 / 1683,
  23987. bottom: 24 / 1955
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(3 + 1 / 2, "inches"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24001. {
  24002. front: {
  24003. height: math.unit(5 + 10 / 12, "feet"),
  24004. weight: math.unit(165, "lb"),
  24005. name: "Front",
  24006. image: {
  24007. source: "./media/characters/nicky/front.svg",
  24008. extra: 3144 / 2886,
  24009. bottom: 45.6 / 3192
  24010. }
  24011. },
  24012. back: {
  24013. height: math.unit(5 + 10 / 12, "feet"),
  24014. weight: math.unit(165, "lb"),
  24015. name: "Back",
  24016. image: {
  24017. source: "./media/characters/nicky/back.svg",
  24018. extra: 3055 / 2804,
  24019. bottom: 28.4 / 3087
  24020. }
  24021. },
  24022. frontclothed: {
  24023. height: math.unit(5 + 10 / 12, "feet"),
  24024. weight: math.unit(165, "lb"),
  24025. name: "Front-clothed",
  24026. image: {
  24027. source: "./media/characters/nicky/front-clothed.svg",
  24028. extra: 3184.9 / 2926.9,
  24029. bottom: 86.5 / 3239.9
  24030. }
  24031. },
  24032. foot: {
  24033. height: math.unit(1.16, "feet"),
  24034. name: "Foot",
  24035. image: {
  24036. source: "./media/characters/nicky/foot.svg"
  24037. }
  24038. },
  24039. feet: {
  24040. height: math.unit(1.34, "feet"),
  24041. name: "Feet",
  24042. image: {
  24043. source: "./media/characters/nicky/feet.svg"
  24044. }
  24045. },
  24046. maw: {
  24047. height: math.unit(0.9, "feet"),
  24048. name: "Maw",
  24049. image: {
  24050. source: "./media/characters/nicky/maw.svg"
  24051. }
  24052. },
  24053. },
  24054. [
  24055. {
  24056. name: "Normal",
  24057. height: math.unit(5 + 10 / 12, "feet"),
  24058. default: true
  24059. },
  24060. {
  24061. name: "Macro",
  24062. height: math.unit(60, "feet")
  24063. },
  24064. {
  24065. name: "Megamacro",
  24066. height: math.unit(1, "mile")
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24072. {
  24073. side: {
  24074. height: math.unit(10, "feet"),
  24075. weight: math.unit(600, "lb"),
  24076. name: "Side",
  24077. image: {
  24078. source: "./media/characters/blair/side.svg",
  24079. bottom: 16.6 / 475,
  24080. extra: 458 / 431
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Micro",
  24087. height: math.unit(8, "inches")
  24088. },
  24089. {
  24090. name: "Normal",
  24091. height: math.unit(10, "feet"),
  24092. default: true
  24093. },
  24094. {
  24095. name: "Macro",
  24096. height: math.unit(180, "feet")
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24102. {
  24103. front: {
  24104. height: math.unit(5 + 4 / 12, "feet"),
  24105. weight: math.unit(125, "lb"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/fisher/front.svg",
  24109. extra: 444 / 390,
  24110. bottom: 2 / 444.8
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Micro",
  24117. height: math.unit(4, "inches")
  24118. },
  24119. {
  24120. name: "Normal",
  24121. height: math.unit(5 + 4 / 12, "feet"),
  24122. default: true
  24123. },
  24124. {
  24125. name: "Macro",
  24126. height: math.unit(100, "feet")
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24132. {
  24133. front: {
  24134. height: math.unit(6.71, "feet"),
  24135. weight: math.unit(200, "lb"),
  24136. capacity: math.unit(1000000, "people"),
  24137. name: "Front",
  24138. image: {
  24139. source: "./media/characters/gliss/front.svg",
  24140. extra: 2347 / 2231,
  24141. bottom: 113 / 2462
  24142. }
  24143. },
  24144. hammerspaceSize: {
  24145. height: math.unit(6.71 * 717, "feet"),
  24146. weight: math.unit(200, "lb"),
  24147. capacity: math.unit(1000000, "people"),
  24148. name: "Hammerspace Size",
  24149. image: {
  24150. source: "./media/characters/gliss/front.svg",
  24151. extra: 2347 / 2231,
  24152. bottom: 113 / 2462
  24153. }
  24154. },
  24155. },
  24156. [
  24157. {
  24158. name: "Normal",
  24159. height: math.unit(6.71, "feet"),
  24160. default: true
  24161. },
  24162. ]
  24163. ))
  24164. characterMakers.push(() => makeCharacter(
  24165. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24166. {
  24167. side: {
  24168. height: math.unit(1.44, "m"),
  24169. weight: math.unit(80, "kg"),
  24170. name: "Side",
  24171. image: {
  24172. source: "./media/characters/dune-anderson/side.svg",
  24173. bottom: 49 / 1426
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Wolf-sized",
  24180. height: math.unit(1.44, "meters")
  24181. },
  24182. {
  24183. name: "Normal",
  24184. height: math.unit(5.05, "meters"),
  24185. default: true
  24186. },
  24187. {
  24188. name: "Big",
  24189. height: math.unit(14.4, "meters")
  24190. },
  24191. {
  24192. name: "Huge",
  24193. height: math.unit(144, "meters")
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24199. {
  24200. front: {
  24201. height: math.unit(7, "feet"),
  24202. weight: math.unit(425, "lb"),
  24203. name: "Front",
  24204. image: {
  24205. source: "./media/characters/hind/front.svg",
  24206. extra: 2091 / 1860,
  24207. bottom: 129 / 2220
  24208. }
  24209. },
  24210. back: {
  24211. height: math.unit(7, "feet"),
  24212. weight: math.unit(425, "lb"),
  24213. name: "Back",
  24214. image: {
  24215. source: "./media/characters/hind/back.svg",
  24216. extra: 2091 / 1860,
  24217. bottom: 24.6 / 2309
  24218. }
  24219. },
  24220. tail: {
  24221. height: math.unit(2.8, "feet"),
  24222. name: "Tail",
  24223. image: {
  24224. source: "./media/characters/hind/tail.svg"
  24225. }
  24226. },
  24227. head: {
  24228. height: math.unit(2.55, "feet"),
  24229. name: "Head",
  24230. image: {
  24231. source: "./media/characters/hind/head.svg"
  24232. }
  24233. },
  24234. },
  24235. [
  24236. {
  24237. name: "XS",
  24238. height: math.unit(0.7, "feet")
  24239. },
  24240. {
  24241. name: "Normal",
  24242. height: math.unit(7, "feet"),
  24243. default: true
  24244. },
  24245. {
  24246. name: "XL",
  24247. height: math.unit(70, "feet")
  24248. },
  24249. ]
  24250. ))
  24251. characterMakers.push(() => makeCharacter(
  24252. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24253. {
  24254. front: {
  24255. height: math.unit(6, "feet"),
  24256. weight: math.unit(150, "lb"),
  24257. name: "Front",
  24258. image: {
  24259. source: "./media/characters/dylan-skaven/front.svg",
  24260. extra: 2318 / 2063,
  24261. bottom: 93.4 / 2410
  24262. }
  24263. },
  24264. },
  24265. [
  24266. {
  24267. name: "Nano",
  24268. height: math.unit(1, "mm")
  24269. },
  24270. {
  24271. name: "Micro",
  24272. height: math.unit(1, "cm")
  24273. },
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(2.1, "meters"),
  24277. default: true
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24283. {
  24284. front: {
  24285. height: math.unit(7 + 5 / 12, "feet"),
  24286. weight: math.unit(357, "lb"),
  24287. name: "Front",
  24288. image: {
  24289. source: "./media/characters/solex-draconov/front.svg",
  24290. extra: 1993 / 1865,
  24291. bottom: 117 / 2111
  24292. }
  24293. },
  24294. },
  24295. [
  24296. {
  24297. name: "Natural Height",
  24298. height: math.unit(7 + 5 / 12, "feet"),
  24299. default: true
  24300. },
  24301. {
  24302. name: "Macro",
  24303. height: math.unit(350, "feet")
  24304. },
  24305. {
  24306. name: "Macro+",
  24307. height: math.unit(1000, "feet")
  24308. },
  24309. {
  24310. name: "Megamacro",
  24311. height: math.unit(20, "km")
  24312. },
  24313. {
  24314. name: "Megamacro+",
  24315. height: math.unit(1000, "km")
  24316. },
  24317. {
  24318. name: "Gigamacro",
  24319. height: math.unit(2.5, "Gm")
  24320. },
  24321. {
  24322. name: "Teramacro",
  24323. height: math.unit(15, "Tm")
  24324. },
  24325. {
  24326. name: "Galactic",
  24327. height: math.unit(30, "Zm")
  24328. },
  24329. {
  24330. name: "Universal",
  24331. height: math.unit(21000, "Ym")
  24332. },
  24333. {
  24334. name: "Omniversal",
  24335. height: math.unit(9.861e50, "Ym")
  24336. },
  24337. {
  24338. name: "Existential",
  24339. height: math.unit(1e300, "meters")
  24340. },
  24341. ]
  24342. ))
  24343. characterMakers.push(() => makeCharacter(
  24344. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24345. {
  24346. side: {
  24347. height: math.unit(25, "feet"),
  24348. weight: math.unit(90000, "lb"),
  24349. name: "Side",
  24350. image: {
  24351. source: "./media/characters/mandarax/side.svg",
  24352. extra: 614 / 332,
  24353. bottom: 55 / 630
  24354. }
  24355. },
  24356. head: {
  24357. height: math.unit(11.4, "feet"),
  24358. name: "Head",
  24359. image: {
  24360. source: "./media/characters/mandarax/head.svg"
  24361. }
  24362. },
  24363. belly: {
  24364. height: math.unit(33, "feet"),
  24365. name: "Belly",
  24366. capacity: math.unit(500, "people"),
  24367. image: {
  24368. source: "./media/characters/mandarax/belly.svg"
  24369. }
  24370. },
  24371. dick: {
  24372. height: math.unit(8.46, "feet"),
  24373. name: "Dick",
  24374. image: {
  24375. source: "./media/characters/mandarax/dick.svg"
  24376. }
  24377. },
  24378. top: {
  24379. height: math.unit(28, "meters"),
  24380. name: "Top",
  24381. image: {
  24382. source: "./media/characters/mandarax/top.svg"
  24383. }
  24384. },
  24385. },
  24386. [
  24387. {
  24388. name: "Normal",
  24389. height: math.unit(25, "feet"),
  24390. default: true
  24391. },
  24392. ]
  24393. ))
  24394. characterMakers.push(() => makeCharacter(
  24395. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24396. {
  24397. front: {
  24398. height: math.unit(5, "feet"),
  24399. weight: math.unit(90, "lb"),
  24400. name: "Front",
  24401. image: {
  24402. source: "./media/characters/pixil/front.svg",
  24403. extra: 2000 / 1618,
  24404. bottom: 12.3 / 2011
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Normal",
  24411. height: math.unit(5, "feet"),
  24412. default: true
  24413. },
  24414. {
  24415. name: "Megamacro",
  24416. height: math.unit(10, "miles"),
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(7 + 2 / 12, "feet"),
  24425. weight: math.unit(200, "lb"),
  24426. name: "Front",
  24427. image: {
  24428. source: "./media/characters/angel/front.svg",
  24429. extra: 1830 / 1737,
  24430. bottom: 22.6 / 1854,
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Normal",
  24437. height: math.unit(7 + 2 / 12, "feet"),
  24438. default: true
  24439. },
  24440. {
  24441. name: "Macro",
  24442. height: math.unit(1000, "feet")
  24443. },
  24444. {
  24445. name: "Megamacro",
  24446. height: math.unit(2, "miles")
  24447. },
  24448. {
  24449. name: "Gigamacro",
  24450. height: math.unit(20, "earths")
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(5, "feet"),
  24459. weight: math.unit(180, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/mekana/front.svg",
  24463. extra: 1671 / 1605,
  24464. bottom: 3.5 / 1691
  24465. }
  24466. },
  24467. side: {
  24468. height: math.unit(5, "feet"),
  24469. weight: math.unit(180, "lb"),
  24470. name: "Side",
  24471. image: {
  24472. source: "./media/characters/mekana/side.svg",
  24473. extra: 1671 / 1605,
  24474. bottom: 3.5 / 1691
  24475. }
  24476. },
  24477. back: {
  24478. height: math.unit(5, "feet"),
  24479. weight: math.unit(180, "lb"),
  24480. name: "Back",
  24481. image: {
  24482. source: "./media/characters/mekana/back.svg",
  24483. extra: 1671 / 1605,
  24484. bottom: 3.5 / 1691
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Normal",
  24491. height: math.unit(5, "feet"),
  24492. default: true
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(4 + 6 / 12, "feet"),
  24501. weight: math.unit(80, "lb"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/pixie/front.svg",
  24505. extra: 1924 / 1825,
  24506. bottom: 22.4 / 1946
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(4 + 6 / 12, "feet"),
  24514. default: true
  24515. },
  24516. {
  24517. name: "Macro",
  24518. height: math.unit(40, "feet")
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24524. {
  24525. front: {
  24526. height: math.unit(2.1, "meters"),
  24527. weight: math.unit(200, "lb"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/the-lascivious/front.svg",
  24531. extra: 1 / 0.893,
  24532. bottom: 3.5 / 573.7
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Human Scale",
  24539. height: math.unit(2.1, "meters")
  24540. },
  24541. {
  24542. name: "Wolxi Scale",
  24543. height: math.unit(46.2, "m"),
  24544. default: true
  24545. },
  24546. {
  24547. name: "Boinker of Buildings",
  24548. height: math.unit(10, "km")
  24549. },
  24550. {
  24551. name: "Shagger of Skyscrapers",
  24552. height: math.unit(40, "km")
  24553. },
  24554. {
  24555. name: "Banger of Boroughs",
  24556. height: math.unit(4000, "km")
  24557. },
  24558. {
  24559. name: "Screwer of States",
  24560. height: math.unit(100000, "km")
  24561. },
  24562. {
  24563. name: "Pounder of Planets",
  24564. height: math.unit(2000000, "km")
  24565. },
  24566. ]
  24567. ))
  24568. characterMakers.push(() => makeCharacter(
  24569. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24570. {
  24571. front: {
  24572. height: math.unit(6, "feet"),
  24573. weight: math.unit(150, "lb"),
  24574. name: "Front",
  24575. image: {
  24576. source: "./media/characters/aj/front.svg",
  24577. extra: 2039 / 1562,
  24578. bottom: 40 / 2079
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(11 + 6 / 12, "feet"),
  24586. default: true
  24587. },
  24588. {
  24589. name: "Megamacro",
  24590. height: math.unit(60, "megameters")
  24591. },
  24592. ]
  24593. ))
  24594. characterMakers.push(() => makeCharacter(
  24595. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24596. {
  24597. side: {
  24598. height: math.unit(31 + 8 / 12, "feet"),
  24599. weight: math.unit(75000, "kg"),
  24600. name: "Side",
  24601. image: {
  24602. source: "./media/characters/koros/side.svg",
  24603. extra: 1442 / 1297,
  24604. bottom: 122.7 / 1562
  24605. }
  24606. },
  24607. dicksKingsCrown: {
  24608. height: math.unit(6, "feet"),
  24609. name: "Dicks (King's Crown)",
  24610. image: {
  24611. source: "./media/characters/koros/dicks-kings-crown.svg"
  24612. }
  24613. },
  24614. dicksTailSet: {
  24615. height: math.unit(3, "feet"),
  24616. name: "Dicks (Tail Set)",
  24617. image: {
  24618. source: "./media/characters/koros/dicks-tail-set.svg"
  24619. }
  24620. },
  24621. dickCumming: {
  24622. height: math.unit(7.98, "feet"),
  24623. name: "Dick (Cumming)",
  24624. image: {
  24625. source: "./media/characters/koros/dick-cumming.svg"
  24626. }
  24627. },
  24628. dicksBack: {
  24629. height: math.unit(5.9, "feet"),
  24630. name: "Dicks (Back)",
  24631. image: {
  24632. source: "./media/characters/koros/dicks-back.svg"
  24633. }
  24634. },
  24635. dicksFront: {
  24636. height: math.unit(3.72, "feet"),
  24637. name: "Dicks (Front)",
  24638. image: {
  24639. source: "./media/characters/koros/dicks-front.svg"
  24640. }
  24641. },
  24642. dicksPeeking: {
  24643. height: math.unit(3.0, "feet"),
  24644. name: "Dicks (Peeking)",
  24645. image: {
  24646. source: "./media/characters/koros/dicks-peeking.svg"
  24647. }
  24648. },
  24649. eye: {
  24650. height: math.unit(1.7, "feet"),
  24651. name: "Eye",
  24652. image: {
  24653. source: "./media/characters/koros/eye.svg"
  24654. }
  24655. },
  24656. headFront: {
  24657. height: math.unit(11.69, "feet"),
  24658. name: "Head (Front)",
  24659. image: {
  24660. source: "./media/characters/koros/head-front.svg"
  24661. }
  24662. },
  24663. headSide: {
  24664. height: math.unit(14, "feet"),
  24665. name: "Head (Side)",
  24666. image: {
  24667. source: "./media/characters/koros/head-side.svg"
  24668. }
  24669. },
  24670. leg: {
  24671. height: math.unit(17, "feet"),
  24672. name: "Leg",
  24673. image: {
  24674. source: "./media/characters/koros/leg.svg"
  24675. }
  24676. },
  24677. mawSide: {
  24678. height: math.unit(12.8, "feet"),
  24679. name: "Maw (Side)",
  24680. image: {
  24681. source: "./media/characters/koros/maw-side.svg"
  24682. }
  24683. },
  24684. mawSpitting: {
  24685. height: math.unit(17, "feet"),
  24686. name: "Maw (Spitting)",
  24687. image: {
  24688. source: "./media/characters/koros/maw-spitting.svg"
  24689. }
  24690. },
  24691. slit: {
  24692. height: math.unit(2.8, "feet"),
  24693. name: "Slit",
  24694. image: {
  24695. source: "./media/characters/koros/slit.svg"
  24696. }
  24697. },
  24698. stomach: {
  24699. height: math.unit(6.8, "feet"),
  24700. capacity: math.unit(20, "people"),
  24701. name: "Stomach",
  24702. image: {
  24703. source: "./media/characters/koros/stomach.svg"
  24704. }
  24705. },
  24706. wingspanBottom: {
  24707. height: math.unit(114, "feet"),
  24708. name: "Wingspan (Bottom)",
  24709. image: {
  24710. source: "./media/characters/koros/wingspan-bottom.svg"
  24711. }
  24712. },
  24713. wingspanTop: {
  24714. height: math.unit(104, "feet"),
  24715. name: "Wingspan (Top)",
  24716. image: {
  24717. source: "./media/characters/koros/wingspan-top.svg"
  24718. }
  24719. },
  24720. },
  24721. [
  24722. {
  24723. name: "Normal",
  24724. height: math.unit(31 + 8 / 12, "feet"),
  24725. default: true
  24726. },
  24727. ]
  24728. ))
  24729. characterMakers.push(() => makeCharacter(
  24730. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24731. {
  24732. front: {
  24733. height: math.unit(18 + 5 / 12, "feet"),
  24734. weight: math.unit(3750, "kg"),
  24735. name: "Front",
  24736. image: {
  24737. source: "./media/characters/vexx/front.svg",
  24738. extra: 426 / 396,
  24739. bottom: 31.5 / 458
  24740. }
  24741. },
  24742. maw: {
  24743. height: math.unit(6, "feet"),
  24744. name: "Maw",
  24745. image: {
  24746. source: "./media/characters/vexx/maw.svg"
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(18 + 5 / 12, "feet"),
  24754. default: true
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24760. {
  24761. front: {
  24762. height: math.unit(17 + 6 / 12, "feet"),
  24763. weight: math.unit(150, "lb"),
  24764. name: "Front",
  24765. image: {
  24766. source: "./media/characters/baadra/front.svg",
  24767. extra: 3137 / 2890,
  24768. bottom: 168.4 / 3305
  24769. }
  24770. },
  24771. back: {
  24772. height: math.unit(17 + 6 / 12, "feet"),
  24773. weight: math.unit(150, "lb"),
  24774. name: "Back",
  24775. image: {
  24776. source: "./media/characters/baadra/back.svg",
  24777. extra: 3142 / 2890,
  24778. bottom: 220 / 3371
  24779. }
  24780. },
  24781. head: {
  24782. height: math.unit(5.45, "feet"),
  24783. name: "Head",
  24784. image: {
  24785. source: "./media/characters/baadra/head.svg"
  24786. }
  24787. },
  24788. headAngry: {
  24789. height: math.unit(4.95, "feet"),
  24790. name: "Head (Angry)",
  24791. image: {
  24792. source: "./media/characters/baadra/head-angry.svg"
  24793. }
  24794. },
  24795. headOpen: {
  24796. height: math.unit(6, "feet"),
  24797. name: "Head (Open)",
  24798. image: {
  24799. source: "./media/characters/baadra/head-open.svg"
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Normal",
  24806. height: math.unit(17 + 6 / 12, "feet"),
  24807. default: true
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(7 + 3 / 12, "feet"),
  24816. weight: math.unit(180, "lb"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/juri/front.svg",
  24820. extra: 1401 / 1237,
  24821. bottom: 18.5 / 1418
  24822. }
  24823. },
  24824. side: {
  24825. height: math.unit(7 + 3 / 12, "feet"),
  24826. weight: math.unit(180, "lb"),
  24827. name: "Side",
  24828. image: {
  24829. source: "./media/characters/juri/side.svg",
  24830. extra: 1424 / 1242,
  24831. bottom: 18.5 / 1447
  24832. }
  24833. },
  24834. sitting: {
  24835. height: math.unit(6, "feet"),
  24836. weight: math.unit(180, "lb"),
  24837. name: "Sitting",
  24838. image: {
  24839. source: "./media/characters/juri/sitting.svg",
  24840. extra: 1270 / 1143,
  24841. bottom: 100 / 1343
  24842. }
  24843. },
  24844. back: {
  24845. height: math.unit(7 + 3 / 12, "feet"),
  24846. weight: math.unit(180, "lb"),
  24847. name: "Back",
  24848. image: {
  24849. source: "./media/characters/juri/back.svg",
  24850. extra: 1377 / 1240,
  24851. bottom: 23.7 / 1405
  24852. }
  24853. },
  24854. maw: {
  24855. height: math.unit(2.8, "feet"),
  24856. name: "Maw",
  24857. image: {
  24858. source: "./media/characters/juri/maw.svg"
  24859. }
  24860. },
  24861. stomach: {
  24862. height: math.unit(0.89, "feet"),
  24863. capacity: math.unit(4, "liters"),
  24864. name: "Stomach",
  24865. image: {
  24866. source: "./media/characters/juri/stomach.svg"
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(7 + 3 / 12, "feet"),
  24874. default: true
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24880. {
  24881. fox: {
  24882. height: math.unit(5 + 6 / 12, "feet"),
  24883. weight: math.unit(140, "lb"),
  24884. name: "Fox",
  24885. image: {
  24886. source: "./media/characters/maxene-sita/fox.svg",
  24887. extra: 146 / 138,
  24888. bottom: 2.1 / 148.19
  24889. }
  24890. },
  24891. foxLaying: {
  24892. height: math.unit(1.70, "feet"),
  24893. weight: math.unit(140, "lb"),
  24894. name: "Fox (Laying)",
  24895. image: {
  24896. source: "./media/characters/maxene-sita/fox-laying.svg",
  24897. extra: 910 / 572,
  24898. bottom: 71 / 981
  24899. }
  24900. },
  24901. kitsune: {
  24902. height: math.unit(10, "feet"),
  24903. weight: math.unit(800, "lb"),
  24904. name: "Kitsune",
  24905. image: {
  24906. source: "./media/characters/maxene-sita/kitsune.svg",
  24907. extra: 185 / 176,
  24908. bottom: 4.7 / 189.9
  24909. }
  24910. },
  24911. hellhound: {
  24912. height: math.unit(10, "feet"),
  24913. weight: math.unit(700, "lb"),
  24914. name: "Hellhound",
  24915. image: {
  24916. source: "./media/characters/maxene-sita/hellhound.svg",
  24917. extra: 1600 / 1545,
  24918. bottom: 81 / 1681
  24919. }
  24920. },
  24921. },
  24922. [
  24923. {
  24924. name: "Normal",
  24925. height: math.unit(5 + 6 / 12, "feet"),
  24926. default: true
  24927. },
  24928. ]
  24929. ))
  24930. characterMakers.push(() => makeCharacter(
  24931. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24932. {
  24933. front: {
  24934. height: math.unit(3 + 4 / 12, "feet"),
  24935. weight: math.unit(70, "lb"),
  24936. name: "Front",
  24937. image: {
  24938. source: "./media/characters/maia/front.svg",
  24939. extra: 227 / 219.5,
  24940. bottom: 40 / 267
  24941. }
  24942. },
  24943. back: {
  24944. height: math.unit(3 + 4 / 12, "feet"),
  24945. weight: math.unit(70, "lb"),
  24946. name: "Back",
  24947. image: {
  24948. source: "./media/characters/maia/back.svg",
  24949. extra: 237 / 225
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Normal",
  24956. height: math.unit(3 + 4 / 12, "feet"),
  24957. default: true
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24963. {
  24964. front: {
  24965. height: math.unit(5 + 10 / 12, "feet"),
  24966. weight: math.unit(197, "lb"),
  24967. name: "Front",
  24968. image: {
  24969. source: "./media/characters/jabaro/front.svg",
  24970. extra: 225 / 216,
  24971. bottom: 5.06 / 230
  24972. }
  24973. },
  24974. back: {
  24975. height: math.unit(5 + 10 / 12, "feet"),
  24976. weight: math.unit(197, "lb"),
  24977. name: "Back",
  24978. image: {
  24979. source: "./media/characters/jabaro/back.svg",
  24980. extra: 225 / 219,
  24981. bottom: 1.9 / 227
  24982. }
  24983. },
  24984. },
  24985. [
  24986. {
  24987. name: "Normal",
  24988. height: math.unit(5 + 10 / 12, "feet"),
  24989. default: true
  24990. },
  24991. ]
  24992. ))
  24993. characterMakers.push(() => makeCharacter(
  24994. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24995. {
  24996. front: {
  24997. height: math.unit(5 + 8 / 12, "feet"),
  24998. weight: math.unit(139, "lb"),
  24999. name: "Front",
  25000. image: {
  25001. source: "./media/characters/risa/front.svg",
  25002. extra: 270 / 260,
  25003. bottom: 11.2 / 282
  25004. }
  25005. },
  25006. back: {
  25007. height: math.unit(5 + 8 / 12, "feet"),
  25008. weight: math.unit(139, "lb"),
  25009. name: "Back",
  25010. image: {
  25011. source: "./media/characters/risa/back.svg",
  25012. extra: 264 / 255,
  25013. bottom: 4 / 268
  25014. }
  25015. },
  25016. },
  25017. [
  25018. {
  25019. name: "Normal",
  25020. height: math.unit(5 + 8 / 12, "feet"),
  25021. default: true
  25022. },
  25023. ]
  25024. ))
  25025. characterMakers.push(() => makeCharacter(
  25026. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25027. {
  25028. front: {
  25029. height: math.unit(2 + 11 / 12, "feet"),
  25030. weight: math.unit(30, "lb"),
  25031. name: "Front",
  25032. image: {
  25033. source: "./media/characters/weatley/front.svg",
  25034. bottom: 10.7 / 414,
  25035. extra: 403.5 / 362
  25036. }
  25037. },
  25038. back: {
  25039. height: math.unit(2 + 11 / 12, "feet"),
  25040. weight: math.unit(30, "lb"),
  25041. name: "Back",
  25042. image: {
  25043. source: "./media/characters/weatley/back.svg",
  25044. bottom: 10.7 / 414,
  25045. extra: 403.5 / 362
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(2 + 11 / 12, "feet"),
  25053. default: true
  25054. },
  25055. ]
  25056. ))
  25057. characterMakers.push(() => makeCharacter(
  25058. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25059. {
  25060. front: {
  25061. height: math.unit(5 + 2 / 12, "feet"),
  25062. weight: math.unit(50, "kg"),
  25063. name: "Front",
  25064. image: {
  25065. source: "./media/characters/mercury-crescent/front.svg",
  25066. extra: 1088 / 1033,
  25067. bottom: 18.9 / 1109
  25068. }
  25069. },
  25070. },
  25071. [
  25072. {
  25073. name: "Normal",
  25074. height: math.unit(5 + 2 / 12, "feet"),
  25075. default: true
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25081. {
  25082. front: {
  25083. height: math.unit(2, "feet"),
  25084. weight: math.unit(15, "kg"),
  25085. name: "Front",
  25086. image: {
  25087. source: "./media/characters/diamond-jones/front.svg",
  25088. bottom: 16 / 568
  25089. }
  25090. },
  25091. },
  25092. [
  25093. {
  25094. name: "Normal",
  25095. height: math.unit(2, "feet"),
  25096. default: true
  25097. },
  25098. ]
  25099. ))
  25100. characterMakers.push(() => makeCharacter(
  25101. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25102. {
  25103. front: {
  25104. height: math.unit(3, "feet"),
  25105. weight: math.unit(30, "kg"),
  25106. name: "Front",
  25107. image: {
  25108. source: "./media/characters/sweet-bit/front.svg",
  25109. extra: 675 / 567,
  25110. bottom: 27.7 / 703
  25111. }
  25112. },
  25113. },
  25114. [
  25115. {
  25116. name: "Normal",
  25117. height: math.unit(3, "feet"),
  25118. default: true
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25124. {
  25125. side: {
  25126. height: math.unit(9.178, "feet"),
  25127. weight: math.unit(500, "lb"),
  25128. name: "Side",
  25129. image: {
  25130. source: "./media/characters/umbrazen/side.svg",
  25131. extra: 1730 / 1473,
  25132. bottom: 34.6 / 1765
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(9.178, "feet"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(10, "feet"),
  25149. weight: math.unit(750, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/arlist/front.svg",
  25153. extra: 961 / 778,
  25154. bottom: 6.2 / 986
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(10, "feet"),
  25162. default: true
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(5 + 1 / 12, "feet"),
  25171. weight: math.unit(110, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/aradel/front.svg",
  25175. extra: 324 / 303,
  25176. bottom: 3.6 / 329.4
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(5 + 1 / 12, "feet"),
  25184. default: true
  25185. },
  25186. ]
  25187. ))
  25188. characterMakers.push(() => makeCharacter(
  25189. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25190. {
  25191. front: {
  25192. height: math.unit(3 + 8 / 12, "feet"),
  25193. weight: math.unit(50, "lb"),
  25194. name: "Front",
  25195. image: {
  25196. source: "./media/characters/serryn/front.svg",
  25197. extra: 1792 / 1656,
  25198. bottom: 43.5 / 1840
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(3 + 8 / 12, "feet"),
  25206. default: true
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "Xavier Thyme" },
  25212. {
  25213. front: {
  25214. height: math.unit(7 + 10 / 12, "feet"),
  25215. weight: math.unit(255, "lb"),
  25216. name: "Front",
  25217. image: {
  25218. source: "./media/characters/xavier-thyme/front.svg",
  25219. extra: 3733 / 3642,
  25220. bottom: 131 / 3869
  25221. }
  25222. },
  25223. frontRaven: {
  25224. height: math.unit(7 + 10 / 12, "feet"),
  25225. weight: math.unit(255, "lb"),
  25226. name: "Front (Raven)",
  25227. image: {
  25228. source: "./media/characters/xavier-thyme/front-raven.svg",
  25229. extra: 4385 / 3642,
  25230. bottom: 131 / 4517
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(7 + 10 / 12, "feet"),
  25238. default: true
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(1.6, "m"),
  25247. weight: math.unit(50, "kg"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/kiki/front.svg",
  25251. extra: 4682 / 3610,
  25252. bottom: 115 / 4777
  25253. }
  25254. },
  25255. },
  25256. [
  25257. {
  25258. name: "Normal",
  25259. height: math.unit(1.6, "meters"),
  25260. default: true
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(50, "m"),
  25269. weight: math.unit(500, "tonnes"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/ryoko/front.svg",
  25273. extra: 4632 / 3926,
  25274. bottom: 193 / 4823
  25275. }
  25276. },
  25277. },
  25278. [
  25279. {
  25280. name: "Normal",
  25281. height: math.unit(50, "meters"),
  25282. default: true
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25288. {
  25289. front: {
  25290. height: math.unit(30, "m"),
  25291. weight: math.unit(22, "tonnes"),
  25292. name: "Front",
  25293. image: {
  25294. source: "./media/characters/elio/front.svg",
  25295. extra: 4582 / 3720,
  25296. bottom: 236 / 4828
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Normal",
  25303. height: math.unit(30, "meters"),
  25304. default: true
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25310. {
  25311. front: {
  25312. height: math.unit(6 + 3 / 12, "feet"),
  25313. weight: math.unit(120, "lb"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/azura/front.svg",
  25317. extra: 1149 / 1135,
  25318. bottom: 45 / 1194
  25319. }
  25320. },
  25321. frontClothed: {
  25322. height: math.unit(6 + 3 / 12, "feet"),
  25323. weight: math.unit(120, "lb"),
  25324. name: "Front (Clothed)",
  25325. image: {
  25326. source: "./media/characters/azura/front-clothed.svg",
  25327. extra: 1149 / 1135,
  25328. bottom: 45 / 1194
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(6 + 3 / 12, "feet"),
  25336. default: true
  25337. },
  25338. {
  25339. name: "Macro",
  25340. height: math.unit(20 + 6 / 12, "feet")
  25341. },
  25342. {
  25343. name: "Megamacro",
  25344. height: math.unit(12, "miles")
  25345. },
  25346. {
  25347. name: "Gigamacro",
  25348. height: math.unit(10000, "miles")
  25349. },
  25350. {
  25351. name: "Teramacro",
  25352. height: math.unit(900000, "miles")
  25353. },
  25354. ]
  25355. ))
  25356. characterMakers.push(() => makeCharacter(
  25357. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25358. {
  25359. front: {
  25360. height: math.unit(12, "feet"),
  25361. weight: math.unit(1, "ton"),
  25362. capacity: math.unit(660000, "gallons"),
  25363. name: "Front",
  25364. image: {
  25365. source: "./media/characters/zeus/front.svg",
  25366. extra: 5005 / 4717,
  25367. bottom: 363 / 5388
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Normal",
  25374. height: math.unit(12, "feet")
  25375. },
  25376. {
  25377. name: "Preferred Size",
  25378. height: math.unit(0.5, "miles"),
  25379. default: true
  25380. },
  25381. {
  25382. name: "Giga Horse",
  25383. height: math.unit(300, "miles")
  25384. },
  25385. {
  25386. name: "Riding Planets",
  25387. height: math.unit(30, "megameters")
  25388. },
  25389. {
  25390. name: "Cosmic Giant",
  25391. height: math.unit(3, "zettameters")
  25392. },
  25393. {
  25394. name: "Breeding God",
  25395. height: math.unit(9.92e22, "yottameters")
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25401. {
  25402. side: {
  25403. height: math.unit(9, "feet"),
  25404. weight: math.unit(1500, "kg"),
  25405. name: "Side",
  25406. image: {
  25407. source: "./media/characters/fang/side.svg",
  25408. extra: 924 / 866,
  25409. bottom: 47.5 / 972.3
  25410. }
  25411. },
  25412. },
  25413. [
  25414. {
  25415. name: "Normal",
  25416. height: math.unit(9, "feet"),
  25417. default: true
  25418. },
  25419. {
  25420. name: "Macro",
  25421. height: math.unit(75 + 6 / 12, "feet")
  25422. },
  25423. {
  25424. name: "Teramacro",
  25425. height: math.unit(50000, "miles")
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25431. {
  25432. front: {
  25433. height: math.unit(10, "feet"),
  25434. weight: math.unit(2, "tons"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/rekhit/front.svg",
  25438. extra: 2796 / 2590,
  25439. bottom: 225 / 3022
  25440. }
  25441. },
  25442. },
  25443. [
  25444. {
  25445. name: "Normal",
  25446. height: math.unit(10, "feet"),
  25447. default: true
  25448. },
  25449. {
  25450. name: "Macro",
  25451. height: math.unit(500, "feet")
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Dahlia Verrick" },
  25457. {
  25458. front: {
  25459. height: math.unit(7 + 6.451 / 12, "feet"),
  25460. weight: math.unit(310, "lb"),
  25461. name: "Front",
  25462. image: {
  25463. source: "./media/characters/dahlia-verrick/front.svg",
  25464. extra: 1488 / 1365,
  25465. bottom: 6.2 / 1495
  25466. }
  25467. },
  25468. back: {
  25469. height: math.unit(7 + 6.451 / 12, "feet"),
  25470. weight: math.unit(310, "lb"),
  25471. name: "Back",
  25472. image: {
  25473. source: "./media/characters/dahlia-verrick/back.svg",
  25474. extra: 1472 / 1351,
  25475. bottom: 5.28 / 1477
  25476. }
  25477. },
  25478. frontBusiness: {
  25479. height: math.unit(7 + 6.451 / 12, "feet"),
  25480. weight: math.unit(200, "lb"),
  25481. name: "Front (Business)",
  25482. image: {
  25483. source: "./media/characters/dahlia-verrick/front-business.svg",
  25484. extra: 1478 / 1381,
  25485. bottom: 5.5 / 1484
  25486. }
  25487. },
  25488. frontCasual: {
  25489. height: math.unit(7 + 6.451 / 12, "feet"),
  25490. weight: math.unit(200, "lb"),
  25491. name: "Front (Casual)",
  25492. image: {
  25493. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25494. extra: 1478 / 1381,
  25495. bottom: 5.5 / 1484
  25496. }
  25497. },
  25498. },
  25499. [
  25500. {
  25501. name: "Travel-Sized",
  25502. height: math.unit(7.45, "inches")
  25503. },
  25504. {
  25505. name: "Normal",
  25506. height: math.unit(7 + 6.451 / 12, "feet"),
  25507. default: true
  25508. },
  25509. {
  25510. name: "Hitting the Town",
  25511. height: math.unit(37 + 8 / 12, "feet")
  25512. },
  25513. {
  25514. name: "Stomp in the Suburbs",
  25515. height: math.unit(964 + 9.728 / 12, "feet")
  25516. },
  25517. {
  25518. name: "Sit on the City",
  25519. height: math.unit(61747 + 10.592 / 12, "feet")
  25520. },
  25521. {
  25522. name: "Glomp the Globe",
  25523. height: math.unit(252919327 + 4.832 / 12, "feet")
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(6 + 4 / 12, "feet"),
  25532. weight: math.unit(320, "lb"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/balina-mahigan/front.svg",
  25536. extra: 447 / 428,
  25537. bottom: 18 / 466
  25538. }
  25539. },
  25540. back: {
  25541. height: math.unit(6 + 4 / 12, "feet"),
  25542. weight: math.unit(320, "lb"),
  25543. name: "Back",
  25544. image: {
  25545. source: "./media/characters/balina-mahigan/back.svg",
  25546. extra: 445 / 428,
  25547. bottom: 4.07 / 448
  25548. }
  25549. },
  25550. arm: {
  25551. height: math.unit(1.88, "feet"),
  25552. name: "Arm",
  25553. image: {
  25554. source: "./media/characters/balina-mahigan/arm.svg"
  25555. }
  25556. },
  25557. backPort: {
  25558. height: math.unit(0.685, "feet"),
  25559. name: "Back Port",
  25560. image: {
  25561. source: "./media/characters/balina-mahigan/back-port.svg"
  25562. }
  25563. },
  25564. hoofpaw: {
  25565. height: math.unit(1.41, "feet"),
  25566. name: "Hoofpaw",
  25567. image: {
  25568. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25569. }
  25570. },
  25571. leftHandBack: {
  25572. height: math.unit(0.938, "feet"),
  25573. name: "Left Hand (Back)",
  25574. image: {
  25575. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25576. }
  25577. },
  25578. leftHandFront: {
  25579. height: math.unit(0.938, "feet"),
  25580. name: "Left Hand (Front)",
  25581. image: {
  25582. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25583. }
  25584. },
  25585. rightHandBack: {
  25586. height: math.unit(0.95, "feet"),
  25587. name: "Right Hand (Back)",
  25588. image: {
  25589. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25590. }
  25591. },
  25592. rightHandFront: {
  25593. height: math.unit(0.95, "feet"),
  25594. name: "Right Hand (Front)",
  25595. image: {
  25596. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25597. }
  25598. },
  25599. },
  25600. [
  25601. {
  25602. name: "Normal",
  25603. height: math.unit(6 + 4 / 12, "feet"),
  25604. default: true
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25610. {
  25611. front: {
  25612. height: math.unit(6, "feet"),
  25613. weight: math.unit(320, "lb"),
  25614. name: "Front",
  25615. image: {
  25616. source: "./media/characters/balina-mejeri/front.svg",
  25617. extra: 517 / 488,
  25618. bottom: 44.2 / 561
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(6 + 4 / 12, "feet")
  25626. },
  25627. {
  25628. name: "Business",
  25629. height: math.unit(155, "feet"),
  25630. default: true
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25636. {
  25637. kneeling: {
  25638. height: math.unit(6 + 4 / 12, "feet"),
  25639. weight: math.unit(300 * 20, "lb"),
  25640. name: "Kneeling",
  25641. image: {
  25642. source: "./media/characters/balbarian/kneeling.svg",
  25643. extra: 922 / 862,
  25644. bottom: 42.4 / 965
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Normal",
  25651. height: math.unit(6 + 4 / 12, "feet")
  25652. },
  25653. {
  25654. name: "Treasured",
  25655. height: math.unit(18 + 9 / 12, "feet"),
  25656. default: true
  25657. },
  25658. {
  25659. name: "Macro",
  25660. height: math.unit(900, "feet")
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25666. {
  25667. front: {
  25668. height: math.unit(6 + 4 / 12, "feet"),
  25669. weight: math.unit(325, "lb"),
  25670. name: "Front",
  25671. image: {
  25672. source: "./media/characters/balina-amarini/front.svg",
  25673. extra: 415 / 403,
  25674. bottom: 19 / 433.4
  25675. }
  25676. },
  25677. back: {
  25678. height: math.unit(6 + 4 / 12, "feet"),
  25679. weight: math.unit(325, "lb"),
  25680. name: "Back",
  25681. image: {
  25682. source: "./media/characters/balina-amarini/back.svg",
  25683. extra: 415 / 403,
  25684. bottom: 13.5 / 432
  25685. }
  25686. },
  25687. overdrive: {
  25688. height: math.unit(6 + 4 / 12, "feet"),
  25689. weight: math.unit(400, "lb"),
  25690. name: "Overdrive",
  25691. image: {
  25692. source: "./media/characters/balina-amarini/overdrive.svg",
  25693. extra: 269 / 259,
  25694. bottom: 12 / 282
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Boom",
  25701. height: math.unit(9 + 10 / 12, "feet"),
  25702. default: true
  25703. },
  25704. {
  25705. name: "Macro",
  25706. height: math.unit(280, "feet")
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25712. {
  25713. goddess: {
  25714. height: math.unit(600, "feet"),
  25715. weight: math.unit(2000000, "tons"),
  25716. name: "Goddess",
  25717. image: {
  25718. source: "./media/characters/lady-kubwa/goddess.svg",
  25719. extra: 1240.5 / 1223,
  25720. bottom: 22 / 1263
  25721. }
  25722. },
  25723. goddesser: {
  25724. height: math.unit(900, "feet"),
  25725. weight: math.unit(20000000, "lb"),
  25726. name: "Goddess-er",
  25727. image: {
  25728. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25729. extra: 899 / 888,
  25730. bottom: 12.6 / 912
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Macro",
  25737. height: math.unit(600, "feet"),
  25738. default: true
  25739. },
  25740. {
  25741. name: "Megamacro",
  25742. height: math.unit(250, "miles")
  25743. },
  25744. ]
  25745. ))
  25746. characterMakers.push(() => makeCharacter(
  25747. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25748. {
  25749. front: {
  25750. height: math.unit(7 + 7 / 12, "feet"),
  25751. weight: math.unit(250, "lb"),
  25752. name: "Front",
  25753. image: {
  25754. source: "./media/characters/tala-grovehorn/front.svg",
  25755. extra: 2636 / 2525,
  25756. bottom: 147 / 2781
  25757. }
  25758. },
  25759. back: {
  25760. height: math.unit(7 + 7 / 12, "feet"),
  25761. weight: math.unit(250, "lb"),
  25762. name: "Back",
  25763. image: {
  25764. source: "./media/characters/tala-grovehorn/back.svg",
  25765. extra: 2635 / 2539,
  25766. bottom: 100 / 2732.8
  25767. }
  25768. },
  25769. mouth: {
  25770. height: math.unit(1.15, "feet"),
  25771. name: "Mouth",
  25772. image: {
  25773. source: "./media/characters/tala-grovehorn/mouth.svg"
  25774. }
  25775. },
  25776. dick: {
  25777. height: math.unit(2.36, "feet"),
  25778. name: "Dick",
  25779. image: {
  25780. source: "./media/characters/tala-grovehorn/dick.svg"
  25781. }
  25782. },
  25783. slit: {
  25784. height: math.unit(0.61, "feet"),
  25785. name: "Slit",
  25786. image: {
  25787. source: "./media/characters/tala-grovehorn/slit.svg"
  25788. }
  25789. },
  25790. },
  25791. [
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(7 + 7 / 12, "feet"),
  25799. weight: math.unit(225, "lb"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/epona/front.svg",
  25803. extra: 2445 / 2290,
  25804. bottom: 251 / 2696
  25805. }
  25806. },
  25807. back: {
  25808. height: math.unit(7 + 7 / 12, "feet"),
  25809. weight: math.unit(225, "lb"),
  25810. name: "Back",
  25811. image: {
  25812. source: "./media/characters/epona/back.svg",
  25813. extra: 2546 / 2408,
  25814. bottom: 44 / 2589
  25815. }
  25816. },
  25817. genitals: {
  25818. height: math.unit(1.5, "feet"),
  25819. name: "Genitals",
  25820. image: {
  25821. source: "./media/characters/epona/genitals.svg"
  25822. }
  25823. },
  25824. },
  25825. [
  25826. {
  25827. name: "Normal",
  25828. height: math.unit(7 + 7 / 12, "feet")
  25829. },
  25830. ]
  25831. ))
  25832. characterMakers.push(() => makeCharacter(
  25833. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25834. {
  25835. front: {
  25836. height: math.unit(7, "feet"),
  25837. weight: math.unit(518, "lb"),
  25838. name: "Front",
  25839. image: {
  25840. source: "./media/characters/avia-bloodbourn/front.svg",
  25841. extra: 1466 / 1350,
  25842. bottom: 65 / 1527
  25843. }
  25844. },
  25845. },
  25846. [
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(9.35, "feet"),
  25854. weight: math.unit(600, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/amera/front.svg",
  25858. extra: 891 / 818,
  25859. bottom: 30 / 922.7
  25860. }
  25861. },
  25862. back: {
  25863. height: math.unit(9.35, "feet"),
  25864. weight: math.unit(600, "lb"),
  25865. name: "Back",
  25866. image: {
  25867. source: "./media/characters/amera/back.svg",
  25868. extra: 876 / 824,
  25869. bottom: 6.8 / 884
  25870. }
  25871. },
  25872. dick: {
  25873. height: math.unit(2.14, "feet"),
  25874. name: "Dick",
  25875. image: {
  25876. source: "./media/characters/amera/dick.svg"
  25877. }
  25878. },
  25879. },
  25880. [
  25881. {
  25882. name: "Normal",
  25883. height: math.unit(9.35, "feet"),
  25884. default: true
  25885. },
  25886. ]
  25887. ))
  25888. characterMakers.push(() => makeCharacter(
  25889. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25890. {
  25891. kneeling: {
  25892. height: math.unit(3 + 4 / 12, "feet"),
  25893. weight: math.unit(90, "lb"),
  25894. name: "Kneeling",
  25895. image: {
  25896. source: "./media/characters/rosewen/kneeling.svg",
  25897. extra: 1835 / 1571,
  25898. bottom: 27.7 / 1862
  25899. }
  25900. },
  25901. },
  25902. [
  25903. {
  25904. name: "Normal",
  25905. height: math.unit(3 + 4 / 12, "feet"),
  25906. default: true
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25912. {
  25913. front: {
  25914. height: math.unit(5 + 10 / 12, "feet"),
  25915. weight: math.unit(200, "lb"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/sabah/front.svg",
  25919. extra: 849 / 763,
  25920. bottom: 33.9 / 881
  25921. }
  25922. },
  25923. },
  25924. [
  25925. {
  25926. name: "Normal",
  25927. height: math.unit(5 + 10 / 12, "feet"),
  25928. default: true
  25929. },
  25930. ]
  25931. ))
  25932. characterMakers.push(() => makeCharacter(
  25933. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25934. {
  25935. front: {
  25936. height: math.unit(3 + 5 / 12, "feet"),
  25937. weight: math.unit(40, "kg"),
  25938. name: "Front",
  25939. image: {
  25940. source: "./media/characters/purple-flame/front.svg",
  25941. extra: 1577 / 1412,
  25942. bottom: 97 / 1694
  25943. }
  25944. },
  25945. frontDressed: {
  25946. height: math.unit(3 + 5 / 12, "feet"),
  25947. weight: math.unit(40, "kg"),
  25948. name: "Front (Dressed)",
  25949. image: {
  25950. source: "./media/characters/purple-flame/front-dressed.svg",
  25951. extra: 1577 / 1412,
  25952. bottom: 97 / 1694
  25953. }
  25954. },
  25955. headphones: {
  25956. height: math.unit(0.85, "feet"),
  25957. name: "Headphones",
  25958. image: {
  25959. source: "./media/characters/purple-flame/headphones.svg"
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Really Small",
  25966. height: math.unit(5, "cm")
  25967. },
  25968. {
  25969. name: "Micro",
  25970. height: math.unit(1 + 5 / 12, "feet")
  25971. },
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(3 + 5 / 12, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Minimacro",
  25979. height: math.unit(125, "feet")
  25980. },
  25981. {
  25982. name: "Macro",
  25983. height: math.unit(0.5, "miles")
  25984. },
  25985. {
  25986. name: "Megamacro",
  25987. height: math.unit(50, "miles")
  25988. },
  25989. {
  25990. name: "Gigantic",
  25991. height: math.unit(750, "miles")
  25992. },
  25993. {
  25994. name: "Planetary",
  25995. height: math.unit(15000, "miles")
  25996. },
  25997. ]
  25998. ))
  25999. characterMakers.push(() => makeCharacter(
  26000. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26001. {
  26002. front: {
  26003. height: math.unit(14, "feet"),
  26004. weight: math.unit(959, "lb"),
  26005. name: "Front",
  26006. image: {
  26007. source: "./media/characters/arsenal/front.svg",
  26008. extra: 2357 / 2157,
  26009. bottom: 93 / 2458
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(14, "feet"),
  26017. default: true
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(6, "feet"),
  26026. weight: math.unit(150, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/adira/front.svg",
  26030. extra: 1078 / 1029,
  26031. bottom: 87 / 1166
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Micro",
  26038. height: math.unit(4, "inches"),
  26039. default: true
  26040. },
  26041. {
  26042. name: "Macro",
  26043. height: math.unit(50, "feet")
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(16, "feet"),
  26052. weight: math.unit(1000, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/grim/front.svg",
  26056. extra: 622 / 614,
  26057. bottom: 18.1 / 642
  26058. }
  26059. },
  26060. back: {
  26061. height: math.unit(16, "feet"),
  26062. weight: math.unit(1000, "lb"),
  26063. name: "Back",
  26064. image: {
  26065. source: "./media/characters/grim/back.svg",
  26066. extra: 610.6 / 602,
  26067. bottom: 40.8 / 652
  26068. }
  26069. },
  26070. hunched: {
  26071. height: math.unit(9.75, "feet"),
  26072. weight: math.unit(1000, "lb"),
  26073. name: "Hunched",
  26074. image: {
  26075. source: "./media/characters/grim/hunched.svg",
  26076. extra: 304 / 297,
  26077. bottom: 35.4 / 394
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Normal",
  26084. height: math.unit(16, "feet"),
  26085. default: true
  26086. },
  26087. ]
  26088. ))
  26089. characterMakers.push(() => makeCharacter(
  26090. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26091. {
  26092. front: {
  26093. height: math.unit(2.3, "meters"),
  26094. weight: math.unit(300, "lb"),
  26095. name: "Front",
  26096. image: {
  26097. source: "./media/characters/sinja/front-sfw.svg",
  26098. extra: 1393 / 1294,
  26099. bottom: 70 / 1463
  26100. }
  26101. },
  26102. frontNsfw: {
  26103. height: math.unit(2.3, "meters"),
  26104. weight: math.unit(300, "lb"),
  26105. name: "Front (NSFW)",
  26106. image: {
  26107. source: "./media/characters/sinja/front-nsfw.svg",
  26108. extra: 1393 / 1294,
  26109. bottom: 70 / 1463
  26110. }
  26111. },
  26112. back: {
  26113. height: math.unit(2.3, "meters"),
  26114. weight: math.unit(300, "lb"),
  26115. name: "Back",
  26116. image: {
  26117. source: "./media/characters/sinja/back.svg",
  26118. extra: 1393 / 1294,
  26119. bottom: 70 / 1463
  26120. }
  26121. },
  26122. head: {
  26123. height: math.unit(1.771, "feet"),
  26124. name: "Head",
  26125. image: {
  26126. source: "./media/characters/sinja/head.svg"
  26127. }
  26128. },
  26129. slit: {
  26130. height: math.unit(0.8, "feet"),
  26131. name: "Slit",
  26132. image: {
  26133. source: "./media/characters/sinja/slit.svg"
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Normal",
  26140. height: math.unit(2.3, "meters")
  26141. },
  26142. {
  26143. name: "Macro",
  26144. height: math.unit(91, "meters"),
  26145. default: true
  26146. },
  26147. {
  26148. name: "Megamacro",
  26149. height: math.unit(91440, "meters")
  26150. },
  26151. {
  26152. name: "Gigamacro",
  26153. height: math.unit(60960000, "meters")
  26154. },
  26155. {
  26156. name: "Teramacro",
  26157. height: math.unit(9144000000, "meters")
  26158. },
  26159. ]
  26160. ))
  26161. characterMakers.push(() => makeCharacter(
  26162. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26163. {
  26164. front: {
  26165. height: math.unit(1.7, "meters"),
  26166. weight: math.unit(130, "lb"),
  26167. name: "Front",
  26168. image: {
  26169. source: "./media/characters/kyu/front.svg",
  26170. extra: 415 / 395,
  26171. bottom: 5 / 420
  26172. }
  26173. },
  26174. head: {
  26175. height: math.unit(1.75, "feet"),
  26176. name: "Head",
  26177. image: {
  26178. source: "./media/characters/kyu/head.svg"
  26179. }
  26180. },
  26181. foot: {
  26182. height: math.unit(0.81, "feet"),
  26183. name: "Foot",
  26184. image: {
  26185. source: "./media/characters/kyu/foot.svg"
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(1.7, "meters")
  26193. },
  26194. {
  26195. name: "Macro",
  26196. height: math.unit(131, "feet"),
  26197. default: true
  26198. },
  26199. {
  26200. name: "Megamacro",
  26201. height: math.unit(91440, "meters")
  26202. },
  26203. {
  26204. name: "Gigamacro",
  26205. height: math.unit(60960000, "meters")
  26206. },
  26207. {
  26208. name: "Teramacro",
  26209. height: math.unit(9144000000, "meters")
  26210. },
  26211. ]
  26212. ))
  26213. characterMakers.push(() => makeCharacter(
  26214. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26215. {
  26216. front: {
  26217. height: math.unit(7 + 1 / 12, "feet"),
  26218. weight: math.unit(250, "lb"),
  26219. name: "Front",
  26220. image: {
  26221. source: "./media/characters/joey/front.svg",
  26222. extra: 1791 / 1537,
  26223. bottom: 28 / 1816
  26224. }
  26225. },
  26226. },
  26227. [
  26228. {
  26229. name: "Micro",
  26230. height: math.unit(3, "inches")
  26231. },
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(7 + 1 / 12, "feet"),
  26235. default: true
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26241. {
  26242. front: {
  26243. height: math.unit(165, "cm"),
  26244. weight: math.unit(140, "lb"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/sam-evans/front.svg",
  26248. extra: 3417 / 3230,
  26249. bottom: 41.3 / 3417
  26250. }
  26251. },
  26252. frontSixTails: {
  26253. height: math.unit(165, "cm"),
  26254. weight: math.unit(140, "lb"),
  26255. name: "Front-six-tails",
  26256. image: {
  26257. source: "./media/characters/sam-evans/front-six-tails.svg",
  26258. extra: 3417 / 3230,
  26259. bottom: 41.3 / 3417
  26260. }
  26261. },
  26262. back: {
  26263. height: math.unit(165, "cm"),
  26264. weight: math.unit(140, "lb"),
  26265. name: "Back",
  26266. image: {
  26267. source: "./media/characters/sam-evans/back.svg",
  26268. extra: 3227 / 3032,
  26269. bottom: 6.8 / 3234
  26270. }
  26271. },
  26272. face: {
  26273. height: math.unit(0.68, "feet"),
  26274. name: "Face",
  26275. image: {
  26276. source: "./media/characters/sam-evans/face.svg"
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(165, "cm"),
  26284. default: true
  26285. },
  26286. {
  26287. name: "Macro",
  26288. height: math.unit(100, "meters")
  26289. },
  26290. {
  26291. name: "Macro+",
  26292. height: math.unit(800, "meters")
  26293. },
  26294. {
  26295. name: "Macro++",
  26296. height: math.unit(3, "km")
  26297. },
  26298. {
  26299. name: "Macro+++",
  26300. height: math.unit(30, "km")
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26306. {
  26307. front: {
  26308. height: math.unit(10, "feet"),
  26309. weight: math.unit(750, "lb"),
  26310. name: "Front",
  26311. image: {
  26312. source: "./media/characters/juliet-a/front.svg",
  26313. extra: 1766 / 1720,
  26314. bottom: 43 / 1809
  26315. }
  26316. },
  26317. back: {
  26318. height: math.unit(10, "feet"),
  26319. weight: math.unit(750, "lb"),
  26320. name: "Back",
  26321. image: {
  26322. source: "./media/characters/juliet-a/back.svg",
  26323. extra: 1781 / 1734,
  26324. bottom: 35 / 1810,
  26325. }
  26326. },
  26327. },
  26328. [
  26329. {
  26330. name: "Normal",
  26331. height: math.unit(10, "feet"),
  26332. default: true
  26333. },
  26334. {
  26335. name: "Dragon Form",
  26336. height: math.unit(250, "feet")
  26337. },
  26338. {
  26339. name: "Macro",
  26340. height: math.unit(1000, "feet")
  26341. },
  26342. {
  26343. name: "Megamacro",
  26344. height: math.unit(10000, "feet")
  26345. }
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26350. {
  26351. regular: {
  26352. height: math.unit(7 + 3 / 12, "feet"),
  26353. weight: math.unit(260, "lb"),
  26354. name: "Regular",
  26355. image: {
  26356. source: "./media/characters/wild/regular.svg",
  26357. extra: 97.45 / 92,
  26358. bottom: 6.8 / 104.3
  26359. }
  26360. },
  26361. biggums: {
  26362. height: math.unit(8 + 6 / 12, "feet"),
  26363. weight: math.unit(425, "lb"),
  26364. name: "Biggums",
  26365. image: {
  26366. source: "./media/characters/wild/biggums.svg",
  26367. extra: 97.45 / 92,
  26368. bottom: 7.5 / 132.34
  26369. }
  26370. },
  26371. mawRegular: {
  26372. height: math.unit(1.24, "feet"),
  26373. name: "Maw (Regular)",
  26374. image: {
  26375. source: "./media/characters/wild/maw.svg"
  26376. }
  26377. },
  26378. mawBiggums: {
  26379. height: math.unit(1.47, "feet"),
  26380. name: "Maw (Biggums)",
  26381. image: {
  26382. source: "./media/characters/wild/maw.svg"
  26383. }
  26384. },
  26385. },
  26386. [
  26387. {
  26388. name: "Normal",
  26389. height: math.unit(7 + 3 / 12, "feet"),
  26390. default: true
  26391. },
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26396. {
  26397. front: {
  26398. height: math.unit(2.5, "meters"),
  26399. weight: math.unit(200, "kg"),
  26400. name: "Front",
  26401. image: {
  26402. source: "./media/characters/vidar/front.svg",
  26403. extra: 2994 / 2795,
  26404. bottom: 56 / 3061
  26405. }
  26406. },
  26407. back: {
  26408. height: math.unit(2.5, "meters"),
  26409. weight: math.unit(200, "kg"),
  26410. name: "Back",
  26411. image: {
  26412. source: "./media/characters/vidar/back.svg",
  26413. extra: 3131 / 2928,
  26414. bottom: 13.5 / 3141.5
  26415. }
  26416. },
  26417. feral: {
  26418. height: math.unit(2.5, "meters"),
  26419. weight: math.unit(2000, "kg"),
  26420. name: "Feral",
  26421. image: {
  26422. source: "./media/characters/vidar/feral.svg",
  26423. extra: 2790 / 1765,
  26424. bottom: 6 / 2796
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Normal",
  26431. height: math.unit(2.5, "meters"),
  26432. default: true
  26433. },
  26434. {
  26435. name: "Macro",
  26436. height: math.unit(100, "meters")
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(5 + 9 / 12, "feet"),
  26445. weight: math.unit(120, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/ash/front.svg",
  26449. extra: 2189 / 1961,
  26450. bottom: 5.2 / 2194
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Normal",
  26457. height: math.unit(5 + 9 / 12, "feet"),
  26458. default: true
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(9, "feet"),
  26467. weight: math.unit(10000, "lb"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/gygabite/front.svg",
  26471. bottom: 31.7 / 537.8,
  26472. extra: 505 / 370
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Normal",
  26479. height: math.unit(9, "feet"),
  26480. default: true
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26486. {
  26487. front: {
  26488. height: math.unit(12, "feet"),
  26489. weight: math.unit(35000, "lb"),
  26490. name: "Front",
  26491. image: {
  26492. source: "./media/characters/p0tat0/front.svg",
  26493. extra: 1065 / 921,
  26494. bottom: 55.7 / 1121.25
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(12, "feet"),
  26502. default: true
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26508. {
  26509. side: {
  26510. height: math.unit(6.5, "feet"),
  26511. weight: math.unit(800, "lb"),
  26512. name: "Side",
  26513. image: {
  26514. source: "./media/characters/dusk/side.svg",
  26515. extra: 615 / 373,
  26516. bottom: 53 / 664
  26517. }
  26518. },
  26519. sitting: {
  26520. height: math.unit(7, "feet"),
  26521. weight: math.unit(800, "lb"),
  26522. name: "Sitting",
  26523. image: {
  26524. source: "./media/characters/dusk/sitting.svg",
  26525. extra: 753 / 425,
  26526. bottom: 33 / 774
  26527. }
  26528. },
  26529. head: {
  26530. height: math.unit(6.1, "feet"),
  26531. name: "Head",
  26532. image: {
  26533. source: "./media/characters/dusk/head.svg"
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Normal",
  26540. height: math.unit(7, "feet"),
  26541. default: true
  26542. },
  26543. ]
  26544. ))
  26545. characterMakers.push(() => makeCharacter(
  26546. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26547. {
  26548. front: {
  26549. height: math.unit(15, "feet"),
  26550. weight: math.unit(7000, "lb"),
  26551. name: "Front",
  26552. image: {
  26553. source: "./media/characters/jay-direwolf/front.svg",
  26554. extra: 1810 / 1732,
  26555. bottom: 66 / 1892
  26556. }
  26557. },
  26558. },
  26559. [
  26560. {
  26561. name: "Normal",
  26562. height: math.unit(15, "feet"),
  26563. default: true
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26569. {
  26570. front: {
  26571. height: math.unit(4 + 9 / 12, "feet"),
  26572. weight: math.unit(130, "lb"),
  26573. name: "Front",
  26574. image: {
  26575. source: "./media/characters/anchovie/front.svg",
  26576. extra: 382 / 350,
  26577. bottom: 25 / 409
  26578. }
  26579. },
  26580. back: {
  26581. height: math.unit(4 + 9 / 12, "feet"),
  26582. weight: math.unit(130, "lb"),
  26583. name: "Back",
  26584. image: {
  26585. source: "./media/characters/anchovie/back.svg",
  26586. extra: 385 / 352,
  26587. bottom: 16.6 / 402
  26588. }
  26589. },
  26590. frontDressed: {
  26591. height: math.unit(4 + 9 / 12, "feet"),
  26592. weight: math.unit(130, "lb"),
  26593. name: "Front (Dressed)",
  26594. image: {
  26595. source: "./media/characters/anchovie/front-dressed.svg",
  26596. extra: 382 / 350,
  26597. bottom: 25 / 409
  26598. }
  26599. },
  26600. backDressed: {
  26601. height: math.unit(4 + 9 / 12, "feet"),
  26602. weight: math.unit(130, "lb"),
  26603. name: "Back (Dressed)",
  26604. image: {
  26605. source: "./media/characters/anchovie/back-dressed.svg",
  26606. extra: 385 / 352,
  26607. bottom: 16.6 / 402
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Micro",
  26614. height: math.unit(6.4, "inches")
  26615. },
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(4 + 9 / 12, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(2, "meters"),
  26628. weight: math.unit(180, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/acidrenamon/front.svg",
  26632. extra: 987 / 890,
  26633. bottom: 22.8 / 1009
  26634. }
  26635. },
  26636. back: {
  26637. height: math.unit(2, "meters"),
  26638. weight: math.unit(180, "lb"),
  26639. name: "Back",
  26640. image: {
  26641. source: "./media/characters/acidrenamon/back.svg",
  26642. extra: 983 / 891,
  26643. bottom: 8.4 / 992
  26644. }
  26645. },
  26646. head: {
  26647. height: math.unit(1.92, "feet"),
  26648. name: "Head",
  26649. image: {
  26650. source: "./media/characters/acidrenamon/head.svg"
  26651. }
  26652. },
  26653. rump: {
  26654. height: math.unit(1.72, "feet"),
  26655. name: "Rump",
  26656. image: {
  26657. source: "./media/characters/acidrenamon/rump.svg"
  26658. }
  26659. },
  26660. tail: {
  26661. height: math.unit(4.2, "feet"),
  26662. name: "Tail",
  26663. image: {
  26664. source: "./media/characters/acidrenamon/tail.svg"
  26665. }
  26666. },
  26667. },
  26668. [
  26669. {
  26670. name: "Normal",
  26671. height: math.unit(2, "meters"),
  26672. default: true
  26673. },
  26674. {
  26675. name: "Minimacro",
  26676. height: math.unit(7, "meters")
  26677. },
  26678. {
  26679. name: "Macro",
  26680. height: math.unit(200, "meters")
  26681. },
  26682. {
  26683. name: "Gigamacro",
  26684. height: math.unit(0.2, "earths")
  26685. },
  26686. ]
  26687. ))
  26688. characterMakers.push(() => makeCharacter(
  26689. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26690. {
  26691. front: {
  26692. height: math.unit(6, "feet"),
  26693. weight: math.unit(150, "lb"),
  26694. name: "Front",
  26695. image: {
  26696. source: "./media/characters/kenzie-lee/front.svg",
  26697. extra: 1525 / 1465,
  26698. bottom: 45 / 1570
  26699. }
  26700. },
  26701. side: {
  26702. height: math.unit(6, "feet"),
  26703. weight: math.unit(150, "lb"),
  26704. name: "Side",
  26705. image: {
  26706. source: "./media/characters/kenzie-lee/side.svg",
  26707. extra: 5505 / 5383,
  26708. bottom: 60 / 5573
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Normal",
  26715. height: math.unit(152, "feet"),
  26716. default: true
  26717. },
  26718. {
  26719. name: "Megamacro",
  26720. height: math.unit(7, "miles")
  26721. },
  26722. {
  26723. name: "Gigamacro",
  26724. height: math.unit(8000, "miles")
  26725. },
  26726. ]
  26727. ))
  26728. characterMakers.push(() => makeCharacter(
  26729. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26730. {
  26731. side: {
  26732. height: math.unit(6, "feet"),
  26733. weight: math.unit(150, "lb"),
  26734. name: "Side",
  26735. image: {
  26736. source: "./media/characters/withers/side.svg",
  26737. extra: 1830 / 1728,
  26738. bottom: 96 / 1927
  26739. }
  26740. },
  26741. front: {
  26742. height: math.unit(6, "feet"),
  26743. weight: math.unit(150, "lb"),
  26744. name: "Front",
  26745. image: {
  26746. source: "./media/characters/withers/front.svg",
  26747. extra: 1514 / 1438,
  26748. bottom: 118 / 1632
  26749. }
  26750. },
  26751. },
  26752. [
  26753. {
  26754. name: "Macro",
  26755. height: math.unit(168, "feet"),
  26756. default: true
  26757. },
  26758. {
  26759. name: "Megamacro",
  26760. height: math.unit(15, "miles")
  26761. }
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(6 + 7 / 12, "feet"),
  26769. weight: math.unit(250, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/nemoskii/front.svg",
  26773. extra: 2270 / 1734,
  26774. bottom: 86 / 2354
  26775. }
  26776. },
  26777. back: {
  26778. height: math.unit(6 + 7 / 12, "feet"),
  26779. weight: math.unit(250, "lb"),
  26780. name: "Back",
  26781. image: {
  26782. source: "./media/characters/nemoskii/back.svg",
  26783. extra: 1845 / 1788,
  26784. bottom: 10.5 / 1852
  26785. }
  26786. },
  26787. head: {
  26788. height: math.unit(1.31, "feet"),
  26789. name: "Head",
  26790. image: {
  26791. source: "./media/characters/nemoskii/head.svg"
  26792. }
  26793. },
  26794. },
  26795. [
  26796. {
  26797. name: "Normal",
  26798. height: math.unit(6 + 7 / 12, "feet"),
  26799. default: true
  26800. },
  26801. ]
  26802. ))
  26803. characterMakers.push(() => makeCharacter(
  26804. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26805. {
  26806. front: {
  26807. height: math.unit(1, "mile"),
  26808. weight: math.unit(265261.9, "lb"),
  26809. name: "Front",
  26810. image: {
  26811. source: "./media/characters/shui/front.svg",
  26812. extra: 1633 / 1564,
  26813. bottom: 91.5 / 1726
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Macro",
  26820. height: math.unit(1, "mile"),
  26821. default: true
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(12 + 6 / 12, "feet"),
  26830. weight: math.unit(1342, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/arokh-takakura/front.svg",
  26834. extra: 1089 / 1043,
  26835. bottom: 77.4 / 1176.7
  26836. }
  26837. },
  26838. back: {
  26839. height: math.unit(12 + 6 / 12, "feet"),
  26840. weight: math.unit(1342, "lb"),
  26841. name: "Back",
  26842. image: {
  26843. source: "./media/characters/arokh-takakura/back.svg",
  26844. extra: 1046 / 1019,
  26845. bottom: 102 / 1150
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Big",
  26852. height: math.unit(12 + 6 / 12, "feet"),
  26853. default: true
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(5 + 6 / 12, "feet"),
  26862. weight: math.unit(150, "lb"),
  26863. name: "Front",
  26864. image: {
  26865. source: "./media/characters/theo/front.svg",
  26866. extra: 1184 / 1131,
  26867. bottom: 7.4 / 1191
  26868. }
  26869. },
  26870. },
  26871. [
  26872. {
  26873. name: "Micro",
  26874. height: math.unit(5, "inches")
  26875. },
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(5 + 6 / 12, "feet"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26885. {
  26886. front: {
  26887. height: math.unit(5 + 9 / 12, "feet"),
  26888. weight: math.unit(130, "lb"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/cecelia-swift/front.svg",
  26892. extra: 502 / 484,
  26893. bottom: 23 / 523
  26894. }
  26895. },
  26896. back: {
  26897. height: math.unit(5 + 9 / 12, "feet"),
  26898. weight: math.unit(130, "lb"),
  26899. name: "Back",
  26900. image: {
  26901. source: "./media/characters/cecelia-swift/back.svg",
  26902. extra: 499 / 485,
  26903. bottom: 12 / 511
  26904. }
  26905. },
  26906. head: {
  26907. height: math.unit(0.90, "feet"),
  26908. name: "Head",
  26909. image: {
  26910. source: "./media/characters/cecelia-swift/head.svg"
  26911. }
  26912. },
  26913. rump: {
  26914. height: math.unit(1.75, "feet"),
  26915. name: "Rump",
  26916. image: {
  26917. source: "./media/characters/cecelia-swift/rump.svg"
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(5 + 9 / 12, "feet"),
  26925. default: true
  26926. },
  26927. {
  26928. name: "Big",
  26929. height: math.unit(50, "feet")
  26930. },
  26931. {
  26932. name: "Macro",
  26933. height: math.unit(100, "feet")
  26934. },
  26935. {
  26936. name: "Macro+",
  26937. height: math.unit(500, "feet")
  26938. },
  26939. {
  26940. name: "Macro++",
  26941. height: math.unit(1000, "feet")
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26947. {
  26948. front: {
  26949. height: math.unit(6, "feet"),
  26950. weight: math.unit(150, "lb"),
  26951. name: "Front",
  26952. image: {
  26953. source: "./media/characters/kaunan/front.svg",
  26954. extra: 2890 / 2523,
  26955. bottom: 49 / 2939
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Macro",
  26962. height: math.unit(150, "feet"),
  26963. default: true
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26969. {
  26970. front: {
  26971. height: math.unit(175, "cm"),
  26972. weight: math.unit(60, "kg"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/fei/front.svg",
  26976. extra: 2581 / 2400,
  26977. bottom: 82.2 / 2663
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Mortal",
  26984. height: math.unit(175, "cm")
  26985. },
  26986. {
  26987. name: "Normal",
  26988. height: math.unit(3500, "m"),
  26989. default: true
  26990. },
  26991. {
  26992. name: "Stroll",
  26993. height: math.unit(17.5, "km")
  26994. },
  26995. {
  26996. name: "Showoff",
  26997. height: math.unit(175, "km")
  26998. },
  26999. ]
  27000. ))
  27001. characterMakers.push(() => makeCharacter(
  27002. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27003. {
  27004. front: {
  27005. height: math.unit(7, "feet"),
  27006. weight: math.unit(1000, "kg"),
  27007. name: "Front",
  27008. image: {
  27009. source: "./media/characters/edrax/front.svg",
  27010. extra: 2838 / 2550,
  27011. bottom: 130 / 2968
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Small",
  27018. height: math.unit(7, "feet")
  27019. },
  27020. {
  27021. name: "Normal",
  27022. height: math.unit(1500, "meters")
  27023. },
  27024. {
  27025. name: "Mega",
  27026. height: math.unit(12000000, "km"),
  27027. default: true
  27028. },
  27029. {
  27030. name: "Megamacro",
  27031. height: math.unit(10600000, "lightyears")
  27032. },
  27033. {
  27034. name: "Hypermacro",
  27035. height: math.unit(256, "yottameters")
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(10, "feet"),
  27044. weight: math.unit(750, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/clove/front.svg",
  27048. extra: 2031 / 1860,
  27049. bottom: 47.8 / 2080
  27050. }
  27051. },
  27052. back: {
  27053. height: math.unit(10, "feet"),
  27054. weight: math.unit(750, "lb"),
  27055. name: "Back",
  27056. image: {
  27057. source: "./media/characters/clove/back.svg",
  27058. extra: 2025 / 1859,
  27059. bottom: 46 / 2071
  27060. }
  27061. },
  27062. },
  27063. [
  27064. {
  27065. name: "Normal",
  27066. height: math.unit(10, "feet")
  27067. },
  27068. ]
  27069. ))
  27070. characterMakers.push(() => makeCharacter(
  27071. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27072. {
  27073. front: {
  27074. height: math.unit(4, "feet"),
  27075. weight: math.unit(50, "lb"),
  27076. name: "Front",
  27077. image: {
  27078. source: "./media/characters/alex-rabbit/front.svg",
  27079. extra: 507 / 458,
  27080. bottom: 18.5 / 527
  27081. }
  27082. },
  27083. back: {
  27084. height: math.unit(4, "feet"),
  27085. weight: math.unit(50, "lb"),
  27086. name: "Back",
  27087. image: {
  27088. source: "./media/characters/alex-rabbit/back.svg",
  27089. extra: 502 / 460,
  27090. bottom: 18.9 / 521
  27091. }
  27092. },
  27093. },
  27094. [
  27095. {
  27096. name: "Normal",
  27097. height: math.unit(4, "feet"),
  27098. default: true
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27104. {
  27105. front: {
  27106. height: math.unit(1 + 3 / 12, "feet"),
  27107. weight: math.unit(80, "lb"),
  27108. name: "Front",
  27109. image: {
  27110. source: "./media/characters/zander-rose/front.svg",
  27111. extra: 916 / 797,
  27112. bottom: 17 / 933
  27113. }
  27114. },
  27115. back: {
  27116. height: math.unit(1 + 3 / 12, "feet"),
  27117. weight: math.unit(80, "lb"),
  27118. name: "Back",
  27119. image: {
  27120. source: "./media/characters/zander-rose/back.svg",
  27121. extra: 903 / 779,
  27122. bottom: 31 / 934
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(1 + 3 / 12, "feet"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27136. {
  27137. anthro: {
  27138. height: math.unit(6, "feet"),
  27139. weight: math.unit(150, "lb"),
  27140. name: "Anthro",
  27141. image: {
  27142. source: "./media/characters/razz/anthro.svg",
  27143. extra: 1437 / 1343,
  27144. bottom: 48 / 1485
  27145. }
  27146. },
  27147. feral: {
  27148. height: math.unit(6, "feet"),
  27149. weight: math.unit(150, "lb"),
  27150. name: "Feral",
  27151. image: {
  27152. source: "./media/characters/razz/feral.svg",
  27153. extra: 2569 / 1385,
  27154. bottom: 95 / 2664
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(6, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(9 + 4 / 12, "feet"),
  27171. weight: math.unit(500, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/morrigan/front.svg",
  27175. extra: 2707 / 2579,
  27176. bottom: 156 / 2863
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(9 + 4 / 12, "feet"),
  27184. default: true
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27190. {
  27191. front: {
  27192. height: math.unit(5, "stories"),
  27193. weight: math.unit(4000, "lb"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/jenene/front.svg",
  27197. extra: 1780 / 1710,
  27198. bottom: 57 / 1837
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(5, "stories"),
  27206. default: true
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(6, "feet"),
  27215. weight: math.unit(150, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/vix-archaser/front.svg",
  27219. extra: 2767 / 2562,
  27220. bottom: 36 / 2803
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Micro",
  27227. height: math.unit(1, "foot")
  27228. },
  27229. {
  27230. name: "Normal",
  27231. height: math.unit(6 + 5 / 12, "feet")
  27232. },
  27233. {
  27234. name: "Minimacro",
  27235. height: math.unit(500, "feet")
  27236. },
  27237. {
  27238. name: "Macro",
  27239. height: math.unit(4, "miles")
  27240. },
  27241. {
  27242. name: "Megamacro",
  27243. height: math.unit(250, "miles"),
  27244. default: true
  27245. },
  27246. {
  27247. name: "Gigamacro",
  27248. height: math.unit(1, "universe")
  27249. },
  27250. {
  27251. name: "Endgame",
  27252. height: math.unit(100, "multiverses")
  27253. }
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27258. {
  27259. taurSfw: {
  27260. height: math.unit(10, "meters"),
  27261. weight: math.unit(17500, "kg"),
  27262. name: "Taur",
  27263. image: {
  27264. source: "./media/characters/faey/taur-sfw.svg",
  27265. extra: 1200 / 968,
  27266. bottom: 41 / 1241
  27267. }
  27268. },
  27269. chestmaw: {
  27270. height: math.unit(2.01, "meters"),
  27271. name: "Chestmaw",
  27272. image: {
  27273. source: "./media/characters/faey/chestmaw.svg"
  27274. }
  27275. },
  27276. foot: {
  27277. height: math.unit(2.43, "meters"),
  27278. name: "Foot",
  27279. image: {
  27280. source: "./media/characters/faey/foot.svg"
  27281. }
  27282. },
  27283. jaws: {
  27284. height: math.unit(1.66, "meters"),
  27285. name: "Jaws",
  27286. image: {
  27287. source: "./media/characters/faey/jaws.svg"
  27288. }
  27289. },
  27290. tongues: {
  27291. height: math.unit(2.01, "meters"),
  27292. name: "Tongues",
  27293. image: {
  27294. source: "./media/characters/faey/tongues.svg"
  27295. }
  27296. },
  27297. },
  27298. [
  27299. {
  27300. name: "Small",
  27301. height: math.unit(10, "meters"),
  27302. default: true
  27303. },
  27304. {
  27305. name: "Big",
  27306. height: math.unit(500000, "km")
  27307. },
  27308. ]
  27309. ))
  27310. characterMakers.push(() => makeCharacter(
  27311. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27312. {
  27313. front: {
  27314. height: math.unit(7, "feet"),
  27315. weight: math.unit(275, "lb"),
  27316. name: "Front",
  27317. image: {
  27318. source: "./media/characters/roku/front.svg",
  27319. extra: 903 / 878,
  27320. bottom: 37 / 940
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(7, "feet"),
  27328. default: true
  27329. },
  27330. {
  27331. name: "Macro",
  27332. height: math.unit(500, "feet")
  27333. },
  27334. {
  27335. name: "Megamacro",
  27336. height: math.unit(200, "miles")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27342. {
  27343. front: {
  27344. height: math.unit(6 + 2 / 12, "feet"),
  27345. weight: math.unit(150, "lb"),
  27346. name: "Front",
  27347. image: {
  27348. source: "./media/characters/lira/front.svg",
  27349. extra: 1727 / 1605,
  27350. bottom: 26 / 1753
  27351. }
  27352. },
  27353. back: {
  27354. height: math.unit(6 + 2 / 12, "feet"),
  27355. weight: math.unit(150, "lb"),
  27356. name: "Back",
  27357. image: {
  27358. source: "./media/characters/lira/back.svg",
  27359. extra: 1713 / 159,
  27360. bottom: 20 / 1733
  27361. }
  27362. },
  27363. hand: {
  27364. height: math.unit(0.75, "feet"),
  27365. name: "Hand",
  27366. image: {
  27367. source: "./media/characters/lira/hand.svg"
  27368. }
  27369. },
  27370. maw: {
  27371. height: math.unit(0.65, "feet"),
  27372. name: "Maw",
  27373. image: {
  27374. source: "./media/characters/lira/maw.svg"
  27375. }
  27376. },
  27377. pawDigi: {
  27378. height: math.unit(1.6, "feet"),
  27379. name: "Paw Digi",
  27380. image: {
  27381. source: "./media/characters/lira/paw-digi.svg"
  27382. }
  27383. },
  27384. pawPlanti: {
  27385. height: math.unit(1.4, "feet"),
  27386. name: "Paw Planti",
  27387. image: {
  27388. source: "./media/characters/lira/paw-planti.svg"
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(6 + 2 / 12, "feet"),
  27396. default: true
  27397. },
  27398. {
  27399. name: "Macro",
  27400. height: math.unit(100, "feet")
  27401. },
  27402. {
  27403. name: "Macro²",
  27404. height: math.unit(1600, "feet")
  27405. },
  27406. {
  27407. name: "Planetary",
  27408. height: math.unit(20, "earths")
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27414. {
  27415. front: {
  27416. height: math.unit(6, "feet"),
  27417. weight: math.unit(150, "lb"),
  27418. name: "Front",
  27419. image: {
  27420. source: "./media/characters/hadjet/front.svg",
  27421. extra: 1480 / 1346,
  27422. bottom: 26 / 1506
  27423. }
  27424. },
  27425. frontNsfw: {
  27426. height: math.unit(6, "feet"),
  27427. weight: math.unit(150, "lb"),
  27428. name: "Front (NSFW)",
  27429. image: {
  27430. source: "./media/characters/hadjet/front-nsfw.svg",
  27431. extra: 1440 / 1358,
  27432. bottom: 52 / 1492
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Macro",
  27439. height: math.unit(10, "stories"),
  27440. default: true
  27441. },
  27442. {
  27443. name: "Megamacro",
  27444. height: math.unit(1.5, "miles")
  27445. },
  27446. {
  27447. name: "Megamacro+",
  27448. height: math.unit(5, "miles")
  27449. },
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27454. {
  27455. side: {
  27456. height: math.unit(106, "feet"),
  27457. weight: math.unit(500, "tonnes"),
  27458. name: "Side",
  27459. image: {
  27460. source: "./media/characters/kodran/side.svg",
  27461. extra: 553 / 480,
  27462. bottom: 33 / 586
  27463. }
  27464. },
  27465. front: {
  27466. height: math.unit(132, "feet"),
  27467. weight: math.unit(500, "tonnes"),
  27468. name: "Front",
  27469. image: {
  27470. source: "./media/characters/kodran/front.svg",
  27471. extra: 667 / 643,
  27472. bottom: 42 / 709
  27473. }
  27474. },
  27475. flying: {
  27476. height: math.unit(350, "feet"),
  27477. weight: math.unit(500, "tonnes"),
  27478. name: "Flying",
  27479. image: {
  27480. source: "./media/characters/kodran/flying.svg"
  27481. }
  27482. },
  27483. foot: {
  27484. height: math.unit(33, "feet"),
  27485. name: "Foot",
  27486. image: {
  27487. source: "./media/characters/kodran/foot.svg"
  27488. }
  27489. },
  27490. footFront: {
  27491. height: math.unit(19, "feet"),
  27492. name: "Foot (Front)",
  27493. image: {
  27494. source: "./media/characters/kodran/foot-front.svg",
  27495. extra: 261 / 261,
  27496. bottom: 91 / 352
  27497. }
  27498. },
  27499. headFront: {
  27500. height: math.unit(53, "feet"),
  27501. name: "Head (Front)",
  27502. image: {
  27503. source: "./media/characters/kodran/head-front.svg"
  27504. }
  27505. },
  27506. headSide: {
  27507. height: math.unit(65, "feet"),
  27508. name: "Head (Side)",
  27509. image: {
  27510. source: "./media/characters/kodran/head-side.svg"
  27511. }
  27512. },
  27513. throat: {
  27514. height: math.unit(79, "feet"),
  27515. name: "Throat",
  27516. image: {
  27517. source: "./media/characters/kodran/throat.svg"
  27518. }
  27519. },
  27520. },
  27521. [
  27522. {
  27523. name: "Large",
  27524. height: math.unit(106, "feet"),
  27525. default: true
  27526. },
  27527. ]
  27528. ))
  27529. characterMakers.push(() => makeCharacter(
  27530. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27531. {
  27532. side: {
  27533. height: math.unit(11, "feet"),
  27534. weight: math.unit(150, "lb"),
  27535. name: "Side",
  27536. image: {
  27537. source: "./media/characters/pyxaron/side.svg",
  27538. extra: 305 / 195,
  27539. bottom: 17 / 322
  27540. }
  27541. },
  27542. },
  27543. [
  27544. {
  27545. name: "Normal",
  27546. height: math.unit(11, "feet")
  27547. },
  27548. ]
  27549. ))
  27550. characterMakers.push(() => makeCharacter(
  27551. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27552. {
  27553. front: {
  27554. height: math.unit(6, "feet"),
  27555. weight: math.unit(150, "lb"),
  27556. name: "Front",
  27557. image: {
  27558. source: "./media/characters/meep/front.svg",
  27559. extra: 88 / 80,
  27560. bottom: 6 / 94
  27561. }
  27562. },
  27563. },
  27564. [
  27565. {
  27566. name: "Fun Sized",
  27567. height: math.unit(2, "inches"),
  27568. default: true
  27569. },
  27570. {
  27571. name: "Friend Sized",
  27572. height: math.unit(8, "inches")
  27573. },
  27574. ]
  27575. ))
  27576. characterMakers.push(() => makeCharacter(
  27577. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27578. {
  27579. front: {
  27580. height: math.unit(15, "feet"),
  27581. weight: math.unit(2500, "lb"),
  27582. name: "Front",
  27583. image: {
  27584. source: "./media/characters/holly-rabbit/front.svg",
  27585. extra: 1433 / 1233,
  27586. bottom: 125 / 1558
  27587. }
  27588. },
  27589. dick: {
  27590. height: math.unit(4.6, "feet"),
  27591. name: "Dick",
  27592. image: {
  27593. source: "./media/characters/holly-rabbit/dick.svg"
  27594. }
  27595. },
  27596. },
  27597. [
  27598. {
  27599. name: "Normal",
  27600. height: math.unit(15, "feet"),
  27601. default: true
  27602. },
  27603. {
  27604. name: "Macro",
  27605. height: math.unit(250, "feet")
  27606. },
  27607. {
  27608. name: "Macro+",
  27609. height: math.unit(2500, "feet")
  27610. },
  27611. ]
  27612. ))
  27613. characterMakers.push(() => makeCharacter(
  27614. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27615. {
  27616. front: {
  27617. height: math.unit(3.02, "meters"),
  27618. weight: math.unit(500, "kg"),
  27619. name: "Front",
  27620. image: {
  27621. source: "./media/characters/drena/front.svg",
  27622. extra: 282 / 243,
  27623. bottom: 8 / 290
  27624. }
  27625. },
  27626. side: {
  27627. height: math.unit(3.02, "meters"),
  27628. weight: math.unit(500, "kg"),
  27629. name: "Side",
  27630. image: {
  27631. source: "./media/characters/drena/side.svg",
  27632. extra: 280 / 245,
  27633. bottom: 10 / 290
  27634. }
  27635. },
  27636. back: {
  27637. height: math.unit(3.02, "meters"),
  27638. weight: math.unit(500, "kg"),
  27639. name: "Back",
  27640. image: {
  27641. source: "./media/characters/drena/back.svg",
  27642. extra: 278 / 243,
  27643. bottom: 2 / 280
  27644. }
  27645. },
  27646. foot: {
  27647. height: math.unit(0.75, "meters"),
  27648. name: "Foot",
  27649. image: {
  27650. source: "./media/characters/drena/foot.svg"
  27651. }
  27652. },
  27653. maw: {
  27654. height: math.unit(0.82, "meters"),
  27655. name: "Maw",
  27656. image: {
  27657. source: "./media/characters/drena/maw.svg"
  27658. }
  27659. },
  27660. rump: {
  27661. height: math.unit(0.93, "meters"),
  27662. name: "Rump",
  27663. image: {
  27664. source: "./media/characters/drena/rump.svg"
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Normal",
  27671. height: math.unit(3.02, "meters"),
  27672. default: true
  27673. },
  27674. ]
  27675. ))
  27676. characterMakers.push(() => makeCharacter(
  27677. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27678. {
  27679. front: {
  27680. height: math.unit(6 + 4 / 12, "feet"),
  27681. weight: math.unit(250, "lb"),
  27682. name: "Front",
  27683. image: {
  27684. source: "./media/characters/remmyzilla/front.svg",
  27685. extra: 4033 / 3588,
  27686. bottom: 123 / 4156
  27687. }
  27688. },
  27689. back: {
  27690. height: math.unit(6 + 4 / 12, "feet"),
  27691. weight: math.unit(250, "lb"),
  27692. name: "Back",
  27693. image: {
  27694. source: "./media/characters/remmyzilla/back.svg",
  27695. extra: 2687 / 2555,
  27696. bottom: 48 / 2735
  27697. }
  27698. },
  27699. frontFancy: {
  27700. height: math.unit(6 + 4 / 12, "feet"),
  27701. weight: math.unit(250, "lb"),
  27702. name: "Front (Fancy)",
  27703. image: {
  27704. source: "./media/characters/remmyzilla/front-fancy.svg",
  27705. extra: 4119 / 3419,
  27706. bottom: 237 / 4356
  27707. }
  27708. },
  27709. paw: {
  27710. height: math.unit(1.73, "feet"),
  27711. name: "Paw",
  27712. image: {
  27713. source: "./media/characters/remmyzilla/paw.svg"
  27714. }
  27715. },
  27716. maw: {
  27717. height: math.unit(1.73, "feet"),
  27718. name: "Maw",
  27719. image: {
  27720. source: "./media/characters/remmyzilla/maw.svg"
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(6 + 4 / 12, "feet")
  27728. },
  27729. {
  27730. name: "Minimacro",
  27731. height: math.unit(12 + 8 / 12, "feet")
  27732. },
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(640, "feet"),
  27736. default: true
  27737. },
  27738. {
  27739. name: "Megamacro",
  27740. height: math.unit(6400, "feet")
  27741. },
  27742. {
  27743. name: "Gigamacro",
  27744. height: math.unit(64000, "miles")
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27750. {
  27751. front: {
  27752. height: math.unit(2.5, "meters"),
  27753. weight: math.unit(300, "lb"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/lawrence/front.svg",
  27757. extra: 357 / 335,
  27758. bottom: 30 / 387
  27759. }
  27760. },
  27761. back: {
  27762. height: math.unit(2.5, "meters"),
  27763. weight: math.unit(300, "lb"),
  27764. name: "Back",
  27765. image: {
  27766. source: "./media/characters/lawrence/back.svg",
  27767. extra: 357 / 338,
  27768. bottom: 16 / 373
  27769. }
  27770. },
  27771. head: {
  27772. height: math.unit(0.9, "meter"),
  27773. name: "Head",
  27774. image: {
  27775. source: "./media/characters/lawrence/head.svg"
  27776. }
  27777. },
  27778. maw: {
  27779. height: math.unit(0.7, "meter"),
  27780. name: "Maw",
  27781. image: {
  27782. source: "./media/characters/lawrence/maw.svg"
  27783. }
  27784. },
  27785. footBottom: {
  27786. height: math.unit(0.5, "meter"),
  27787. name: "Foot (Bottom)",
  27788. image: {
  27789. source: "./media/characters/lawrence/foot-bottom.svg"
  27790. }
  27791. },
  27792. footTop: {
  27793. height: math.unit(0.5, "meter"),
  27794. name: "Foot (Top)",
  27795. image: {
  27796. source: "./media/characters/lawrence/foot-top.svg"
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(2.5, "meters"),
  27804. default: true
  27805. },
  27806. {
  27807. name: "Macro",
  27808. height: math.unit(95, "meters")
  27809. },
  27810. {
  27811. name: "Megamacro",
  27812. height: math.unit(150, "km")
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27818. {
  27819. front: {
  27820. height: math.unit(4.2, "meters"),
  27821. name: "Front",
  27822. image: {
  27823. source: "./media/characters/sydney/front.svg",
  27824. extra: 1323 / 1277,
  27825. bottom: 111 / 1434
  27826. }
  27827. },
  27828. },
  27829. [
  27830. {
  27831. name: "Normal",
  27832. height: math.unit(4.2, "meters")
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27838. {
  27839. back: {
  27840. height: math.unit(201, "feet"),
  27841. name: "Back",
  27842. image: {
  27843. source: "./media/characters/jessica/back.svg",
  27844. extra: 273 / 259,
  27845. bottom: 7 / 280
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(201, "feet"),
  27853. default: true
  27854. },
  27855. {
  27856. name: "Megamacro",
  27857. height: math.unit(8, "miles")
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27863. {
  27864. side: {
  27865. height: math.unit(320, "cm"),
  27866. name: "Side",
  27867. image: {
  27868. source: "./media/characters/victoria/side.svg",
  27869. extra: 778 / 346,
  27870. bottom: 56 / 834
  27871. }
  27872. },
  27873. maw: {
  27874. height: math.unit(5.9, "feet"),
  27875. name: "Maw",
  27876. image: {
  27877. source: "./media/characters/victoria/maw.svg"
  27878. }
  27879. },
  27880. },
  27881. [
  27882. {
  27883. name: "Normal",
  27884. height: math.unit(320, "cm"),
  27885. default: true
  27886. },
  27887. ]
  27888. ))
  27889. characterMakers.push(() => makeCharacter(
  27890. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27891. {
  27892. front: {
  27893. height: math.unit(5 + 6 / 12, "feet"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/cat/front.svg",
  27897. extra: 1374 / 1257,
  27898. bottom: 59 / 1433
  27899. }
  27900. },
  27901. back: {
  27902. height: math.unit(5 + 6 / 12, "feet"),
  27903. name: "Back",
  27904. image: {
  27905. source: "./media/characters/cat/back.svg",
  27906. extra: 1337 / 1226,
  27907. bottom: 34 / 1371
  27908. }
  27909. },
  27910. taur: {
  27911. height: math.unit(7, "feet"),
  27912. name: "Taur",
  27913. image: {
  27914. source: "./media/characters/cat/taur.svg",
  27915. extra: 1345 / 1231,
  27916. bottom: 66 / 1411
  27917. }
  27918. },
  27919. lucario: {
  27920. height: math.unit(4, "feet"),
  27921. name: "Lucario",
  27922. image: {
  27923. source: "./media/characters/cat/lucario.svg",
  27924. extra: 1470 / 1318,
  27925. bottom: 65 / 1535
  27926. }
  27927. },
  27928. megaLucario: {
  27929. height: math.unit(4, "feet"),
  27930. name: "Mega Lucario",
  27931. image: {
  27932. source: "./media/characters/cat/mega-lucario.svg",
  27933. extra: 1515 / 1319,
  27934. bottom: 63 / 1578
  27935. }
  27936. },
  27937. nickit: {
  27938. height: math.unit(2, "feet"),
  27939. name: "Nickit",
  27940. image: {
  27941. source: "./media/characters/cat/nickit.svg",
  27942. extra: 1980 / 1585,
  27943. bottom: 102 / 2082
  27944. }
  27945. },
  27946. lopunnyFront: {
  27947. height: math.unit(5, "feet"),
  27948. name: "Lopunny (Front)",
  27949. image: {
  27950. source: "./media/characters/cat/lopunny-front.svg",
  27951. extra: 1782 / 1469,
  27952. bottom: 38 / 1820
  27953. }
  27954. },
  27955. lopunnyBack: {
  27956. height: math.unit(5, "feet"),
  27957. name: "Lopunny (Back)",
  27958. image: {
  27959. source: "./media/characters/cat/lopunny-back.svg",
  27960. extra: 1660 / 1490,
  27961. bottom: 25 / 1685
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Really small",
  27968. height: math.unit(1, "nm")
  27969. },
  27970. {
  27971. name: "Micro",
  27972. height: math.unit(5, "inches")
  27973. },
  27974. {
  27975. name: "Normal",
  27976. height: math.unit(5 + 6 / 12, "feet"),
  27977. default: true
  27978. },
  27979. {
  27980. name: "Macro",
  27981. height: math.unit(50, "feet")
  27982. },
  27983. {
  27984. name: "Macro+",
  27985. height: math.unit(150, "feet")
  27986. },
  27987. {
  27988. name: "Megamacro",
  27989. height: math.unit(100, "miles")
  27990. },
  27991. ]
  27992. ))
  27993. characterMakers.push(() => makeCharacter(
  27994. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27995. {
  27996. front: {
  27997. height: math.unit(63.4, "meters"),
  27998. weight: math.unit(3.28349e+6, "kilograms"),
  27999. name: "Front",
  28000. image: {
  28001. source: "./media/characters/kirina-violet/front.svg",
  28002. extra: 2812 / 2725,
  28003. bottom: 0 / 2812
  28004. }
  28005. },
  28006. back: {
  28007. height: math.unit(63.4, "meters"),
  28008. weight: math.unit(3.28349e+6, "kilograms"),
  28009. name: "Back",
  28010. image: {
  28011. source: "./media/characters/kirina-violet/back.svg",
  28012. extra: 2812 / 2725,
  28013. bottom: 0 / 2812
  28014. }
  28015. },
  28016. mouth: {
  28017. height: math.unit(4.35, "meters"),
  28018. name: "Mouth",
  28019. image: {
  28020. source: "./media/characters/kirina-violet/mouth.svg"
  28021. }
  28022. },
  28023. paw: {
  28024. height: math.unit(5.6, "meters"),
  28025. name: "Paw",
  28026. image: {
  28027. source: "./media/characters/kirina-violet/paw.svg"
  28028. }
  28029. },
  28030. tail: {
  28031. height: math.unit(18, "meters"),
  28032. name: "Tail",
  28033. image: {
  28034. source: "./media/characters/kirina-violet/tail.svg"
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Macro",
  28041. height: math.unit(63.4, "meters"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(60, "feet"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/cat-gigachu/front.svg",
  28054. extra: 1024 / 780,
  28055. bottom: 23 / 1047
  28056. }
  28057. },
  28058. back: {
  28059. height: math.unit(60, "feet"),
  28060. name: "Back",
  28061. image: {
  28062. source: "./media/characters/cat-gigachu/back.svg",
  28063. extra: 1024 / 780,
  28064. bottom: 23 / 1047
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Dynamax",
  28071. height: math.unit(60, "feet"),
  28072. default: true
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(6, "feet"),
  28081. weight: math.unit(150, "lb"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/sfaiyan/front.svg",
  28085. extra: 999 / 978,
  28086. bottom: 5 / 1004
  28087. }
  28088. },
  28089. },
  28090. [
  28091. {
  28092. name: "Normal",
  28093. height: math.unit(1.82, "meters")
  28094. },
  28095. {
  28096. name: "Giant",
  28097. height: math.unit(2.27, "km"),
  28098. default: true
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(179, "cm"),
  28107. weight: math.unit(100, "kg"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/raunehkeli/front.svg",
  28111. extra: 1934 / 1926,
  28112. bottom: 0 / 1934
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(179, "cm")
  28120. },
  28121. {
  28122. name: "Maximum",
  28123. height: math.unit(575, "meters"),
  28124. default: true
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(6, "feet"),
  28133. weight: math.unit(150, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28137. extra: 2625 / 2518,
  28138. bottom: 60 / 2685
  28139. }
  28140. },
  28141. },
  28142. [
  28143. {
  28144. name: "Normal",
  28145. height: math.unit(6 + 2 / 12, "feet"),
  28146. default: true
  28147. },
  28148. {
  28149. name: "Macro",
  28150. height: math.unit(1180, "feet")
  28151. },
  28152. ]
  28153. ))
  28154. characterMakers.push(() => makeCharacter(
  28155. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28156. {
  28157. front: {
  28158. height: math.unit(5 + 6 / 12, "feet"),
  28159. weight: math.unit(108, "lb"),
  28160. name: "Front",
  28161. image: {
  28162. source: "./media/characters/lilith-zott/front.svg",
  28163. extra: 2510 / 2238,
  28164. bottom: 100 / 2610
  28165. }
  28166. },
  28167. frontDressed: {
  28168. height: math.unit(5 + 6 / 12, "feet"),
  28169. weight: math.unit(108, "lb"),
  28170. name: "Front (Dressed)",
  28171. image: {
  28172. source: "./media/characters/lilith-zott/front-dressed.svg",
  28173. extra: 2510 / 2238,
  28174. bottom: 100 / 2610
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Normal",
  28181. height: math.unit(5 + 6 / 12, "feet")
  28182. },
  28183. {
  28184. name: "Macro",
  28185. height: math.unit(200, "feet"),
  28186. default: true
  28187. },
  28188. {
  28189. name: "Macro+",
  28190. height: math.unit(1030, "feet")
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(6, "feet"),
  28199. weight: math.unit(150, "lb"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28203. extra: 2567 / 2435,
  28204. bottom: 39 / 2606
  28205. }
  28206. },
  28207. frontSuper: {
  28208. height: math.unit(6, "feet"),
  28209. name: "Front (Super)",
  28210. image: {
  28211. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28212. extra: 2567 / 2435,
  28213. bottom: 39 / 2606
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Normal",
  28220. height: math.unit(5 + 10 / 12, "feet")
  28221. },
  28222. {
  28223. name: "Macro",
  28224. height: math.unit(220, "feet"),
  28225. default: true
  28226. },
  28227. {
  28228. name: "Macro+",
  28229. height: math.unit(1100, "feet")
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28235. {
  28236. front: {
  28237. height: math.unit(100, "miles"),
  28238. name: "Front",
  28239. image: {
  28240. source: "./media/characters/sona/front.svg",
  28241. extra: 2433 / 2201,
  28242. bottom: 53 / 2486
  28243. }
  28244. },
  28245. foot: {
  28246. height: math.unit(16.1, "miles"),
  28247. name: "Foot",
  28248. image: {
  28249. source: "./media/characters/sona/foot.svg"
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Macro",
  28256. height: math.unit(100, "miles"),
  28257. default: true
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28263. {
  28264. front: {
  28265. height: math.unit(6, "feet"),
  28266. weight: math.unit(150, "lb"),
  28267. name: "Front",
  28268. image: {
  28269. source: "./media/characters/bailey/front.svg",
  28270. extra: 1778 / 1724,
  28271. bottom: 30 / 1808
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Micro",
  28278. height: math.unit(4, "inches")
  28279. },
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(5 + 5 / 12, "feet"),
  28283. default: true
  28284. },
  28285. {
  28286. name: "Macro",
  28287. height: math.unit(250, "feet")
  28288. },
  28289. {
  28290. name: "Megamacro",
  28291. height: math.unit(100, "miles")
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(5 + 2 / 12, "feet"),
  28300. weight: math.unit(120, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/snaps/front.svg",
  28304. extra: 2370 / 2177,
  28305. bottom: 48 / 2418
  28306. }
  28307. },
  28308. back: {
  28309. height: math.unit(5 + 2 / 12, "feet"),
  28310. weight: math.unit(120, "lb"),
  28311. name: "Back",
  28312. image: {
  28313. source: "./media/characters/snaps/back.svg",
  28314. extra: 2408 / 2258,
  28315. bottom: 15 / 2423
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Micro",
  28322. height: math.unit(9, "inches")
  28323. },
  28324. {
  28325. name: "Normal",
  28326. height: math.unit(5 + 2 / 12, "feet"),
  28327. default: true
  28328. },
  28329. {
  28330. name: "Mini Macro",
  28331. height: math.unit(10, "feet")
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28337. {
  28338. front: {
  28339. height: math.unit(1.8, "meters"),
  28340. weight: math.unit(85, "kg"),
  28341. name: "Front",
  28342. image: {
  28343. source: "./media/characters/azteck/front.svg",
  28344. extra: 2815 / 2625,
  28345. bottom: 89 / 2904
  28346. }
  28347. },
  28348. back: {
  28349. height: math.unit(1.8, "meters"),
  28350. weight: math.unit(85, "kg"),
  28351. name: "Back",
  28352. image: {
  28353. source: "./media/characters/azteck/back.svg",
  28354. extra: 2856 / 2648,
  28355. bottom: 85 / 2941
  28356. }
  28357. },
  28358. frontDressed: {
  28359. height: math.unit(1.8, "meters"),
  28360. weight: math.unit(85, "kg"),
  28361. name: "Front (Dressed)",
  28362. image: {
  28363. source: "./media/characters/azteck/front-dressed.svg",
  28364. extra: 2147 / 2003,
  28365. bottom: 68 / 2215
  28366. }
  28367. },
  28368. head: {
  28369. height: math.unit(0.47, "meters"),
  28370. weight: math.unit(85, "kg"),
  28371. name: "Head",
  28372. image: {
  28373. source: "./media/characters/azteck/head.svg"
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Bite sized",
  28380. height: math.unit(16, "cm")
  28381. },
  28382. {
  28383. name: "Normal",
  28384. height: math.unit(1.8, "meters"),
  28385. default: true
  28386. },
  28387. ]
  28388. ))
  28389. characterMakers.push(() => makeCharacter(
  28390. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28391. {
  28392. front: {
  28393. height: math.unit(6, "feet"),
  28394. weight: math.unit(150, "lb"),
  28395. name: "Front",
  28396. image: {
  28397. source: "./media/characters/pidge/front.svg",
  28398. extra: 620 / 588,
  28399. bottom: 9 / 629
  28400. }
  28401. },
  28402. back: {
  28403. height: math.unit(6, "feet"),
  28404. weight: math.unit(150, "lb"),
  28405. name: "Back",
  28406. image: {
  28407. source: "./media/characters/pidge/back.svg",
  28408. extra: 620 / 588,
  28409. bottom: 9 / 629
  28410. }
  28411. },
  28412. },
  28413. [
  28414. {
  28415. name: "Macro",
  28416. height: math.unit(1, "mile"),
  28417. default: true
  28418. },
  28419. ]
  28420. ))
  28421. characterMakers.push(() => makeCharacter(
  28422. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28423. {
  28424. front: {
  28425. height: math.unit(6, "feet"),
  28426. weight: math.unit(150, "lb"),
  28427. name: "Front",
  28428. image: {
  28429. source: "./media/characters/en/front.svg",
  28430. extra: 1697 / 1563,
  28431. bottom: 103 / 1800
  28432. }
  28433. },
  28434. back: {
  28435. height: math.unit(6, "feet"),
  28436. weight: math.unit(150, "lb"),
  28437. name: "Back",
  28438. image: {
  28439. source: "./media/characters/en/back.svg",
  28440. extra: 1700 / 1570,
  28441. bottom: 51 / 1751
  28442. }
  28443. },
  28444. frontDressed: {
  28445. height: math.unit(6, "feet"),
  28446. weight: math.unit(150, "lb"),
  28447. name: "Front (Dressed)",
  28448. image: {
  28449. source: "./media/characters/en/front-dressed.svg",
  28450. extra: 1697 / 1563,
  28451. bottom: 103 / 1800
  28452. }
  28453. },
  28454. backDressed: {
  28455. height: math.unit(6, "feet"),
  28456. weight: math.unit(150, "lb"),
  28457. name: "Back (Dressed)",
  28458. image: {
  28459. source: "./media/characters/en/back-dressed.svg",
  28460. extra: 1700 / 1570,
  28461. bottom: 51 / 1751
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Macro",
  28468. height: math.unit(210, "feet"),
  28469. default: true
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28475. {
  28476. front: {
  28477. height: math.unit(6, "feet"),
  28478. weight: math.unit(150, "lb"),
  28479. name: "Front",
  28480. image: {
  28481. source: "./media/characters/haze-orris/front.svg",
  28482. extra: 3975 / 3525,
  28483. bottom: 137 / 4112
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Micro",
  28490. height: math.unit(150, "mm"),
  28491. default: true
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28497. {
  28498. front: {
  28499. height: math.unit(6, "feet"),
  28500. weight: math.unit(150, "lb"),
  28501. name: "Front",
  28502. image: {
  28503. source: "./media/characters/casselene-yaro/front.svg",
  28504. extra: 4721 / 4541,
  28505. bottom: 82 / 4803
  28506. }
  28507. },
  28508. back: {
  28509. height: math.unit(6, "feet"),
  28510. weight: math.unit(150, "lb"),
  28511. name: "Back",
  28512. image: {
  28513. source: "./media/characters/casselene-yaro/back.svg",
  28514. extra: 4569 / 4377,
  28515. bottom: 69 / 4638
  28516. }
  28517. },
  28518. frontDressed: {
  28519. height: math.unit(6, "feet"),
  28520. weight: math.unit(150, "lb"),
  28521. name: "Front-dressed",
  28522. image: {
  28523. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28524. extra: 4721 / 4541,
  28525. bottom: 82 / 4803
  28526. }
  28527. },
  28528. },
  28529. [
  28530. {
  28531. name: "Macro",
  28532. height: math.unit(190, "feet")
  28533. },
  28534. ]
  28535. ))
  28536. characterMakers.push(() => makeCharacter(
  28537. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28538. {
  28539. front: {
  28540. height: math.unit(6, "feet"),
  28541. weight: math.unit(150, "lb"),
  28542. name: "Front",
  28543. image: {
  28544. source: "./media/characters/myra-rue-delore/front.svg",
  28545. extra: 1340 / 1308,
  28546. bottom: 67 / 1407
  28547. }
  28548. },
  28549. back: {
  28550. height: math.unit(6, "feet"),
  28551. weight: math.unit(150, "lb"),
  28552. name: "Back",
  28553. image: {
  28554. source: "./media/characters/myra-rue-delore/back.svg",
  28555. extra: 1341 / 1310,
  28556. bottom: 40 / 1381
  28557. }
  28558. },
  28559. frontDressed: {
  28560. height: math.unit(6, "feet"),
  28561. weight: math.unit(150, "lb"),
  28562. name: "Front (Dressed)",
  28563. image: {
  28564. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28565. extra: 1340 / 1308,
  28566. bottom: 67 / 1407
  28567. }
  28568. },
  28569. },
  28570. [
  28571. {
  28572. name: "Macro",
  28573. height: math.unit(150, "feet")
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28579. {
  28580. front: {
  28581. height: math.unit(10, "feet"),
  28582. weight: math.unit(15015, "lb"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/fem!plat/front.svg",
  28586. extra: 2799 / 2604,
  28587. bottom: 149 / 2948
  28588. }
  28589. },
  28590. },
  28591. [
  28592. {
  28593. name: "Normal",
  28594. height: math.unit(10, "feet"),
  28595. default: true
  28596. },
  28597. {
  28598. name: "Macro",
  28599. height: math.unit(100, "feet")
  28600. },
  28601. {
  28602. name: "Megamacro",
  28603. height: math.unit(1000, "feet")
  28604. },
  28605. ]
  28606. ))
  28607. characterMakers.push(() => makeCharacter(
  28608. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28609. {
  28610. front: {
  28611. height: math.unit(15 + 5 / 12, "feet"),
  28612. weight: math.unit(4600, "lb"),
  28613. name: "Front",
  28614. image: {
  28615. source: "./media/characters/neapolitan-ananassa/front.svg",
  28616. extra: 2903 / 2736,
  28617. bottom: 0 / 2903
  28618. }
  28619. },
  28620. side: {
  28621. height: math.unit(15 + 5 / 12, "feet"),
  28622. weight: math.unit(4600, "lb"),
  28623. name: "Side",
  28624. image: {
  28625. source: "./media/characters/neapolitan-ananassa/side.svg",
  28626. extra: 2925 / 2719,
  28627. bottom: 0 / 2925
  28628. }
  28629. },
  28630. back: {
  28631. height: math.unit(15 + 5 / 12, "feet"),
  28632. weight: math.unit(4600, "lb"),
  28633. name: "Back",
  28634. image: {
  28635. source: "./media/characters/neapolitan-ananassa/back.svg",
  28636. extra: 2903 / 2736,
  28637. bottom: 0 / 2903
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(15 + 5 / 12, "feet"),
  28645. default: true
  28646. },
  28647. {
  28648. name: "Post-Millenium",
  28649. height: math.unit(35 + 5 / 12, "feet")
  28650. },
  28651. {
  28652. name: "Post-Era",
  28653. height: math.unit(450 + 5 / 12, "feet")
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(300, "meters"),
  28662. weight: math.unit(125000, "tonnes"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/pazuzu/front.svg",
  28666. extra: 877 / 794,
  28667. bottom: 47 / 924
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Macro",
  28674. height: math.unit(300, "meters"),
  28675. default: true
  28676. },
  28677. ]
  28678. ))
  28679. characterMakers.push(() => makeCharacter(
  28680. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28681. {
  28682. side: {
  28683. height: math.unit(10 + 7 / 12, "feet"),
  28684. weight: math.unit(2.5, "tons"),
  28685. name: "Side",
  28686. image: {
  28687. source: "./media/characters/aasha/side.svg",
  28688. extra: 1345 / 1245,
  28689. bottom: 111 / 1456
  28690. }
  28691. },
  28692. back: {
  28693. height: math.unit(10 + 7 / 12, "feet"),
  28694. weight: math.unit(2.5, "tons"),
  28695. name: "Back",
  28696. image: {
  28697. source: "./media/characters/aasha/back.svg",
  28698. extra: 1133 / 1057,
  28699. bottom: 257 / 1390
  28700. }
  28701. },
  28702. },
  28703. [
  28704. {
  28705. name: "Normal",
  28706. height: math.unit(10 + 7 / 12, "feet"),
  28707. default: true
  28708. },
  28709. ]
  28710. ))
  28711. characterMakers.push(() => makeCharacter(
  28712. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28713. {
  28714. front: {
  28715. height: math.unit(6 + 3 / 12, "feet"),
  28716. name: "Front",
  28717. image: {
  28718. source: "./media/characters/nevan/front.svg",
  28719. extra: 704 / 704,
  28720. bottom: 28 / 732
  28721. }
  28722. },
  28723. back: {
  28724. height: math.unit(6 + 3 / 12, "feet"),
  28725. name: "Back",
  28726. image: {
  28727. source: "./media/characters/nevan/back.svg",
  28728. extra: 714 / 714,
  28729. bottom: 21 / 735
  28730. }
  28731. },
  28732. frontFlaccid: {
  28733. height: math.unit(6 + 3 / 12, "feet"),
  28734. name: "Front (Flaccid)",
  28735. image: {
  28736. source: "./media/characters/nevan/front-flaccid.svg",
  28737. extra: 704 / 704,
  28738. bottom: 28 / 732
  28739. }
  28740. },
  28741. frontErect: {
  28742. height: math.unit(6 + 3 / 12, "feet"),
  28743. name: "Front (Erect)",
  28744. image: {
  28745. source: "./media/characters/nevan/front-erect.svg",
  28746. extra: 704 / 704,
  28747. bottom: 28 / 732
  28748. }
  28749. },
  28750. backFlaccid: {
  28751. height: math.unit(6 + 3 / 12, "feet"),
  28752. name: "Back (Flaccid)",
  28753. image: {
  28754. source: "./media/characters/nevan/back-flaccid.svg",
  28755. extra: 714 / 714,
  28756. bottom: 21 / 735
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Normal",
  28763. height: math.unit(6 + 3 / 12, "feet"),
  28764. default: true
  28765. },
  28766. ]
  28767. ))
  28768. characterMakers.push(() => makeCharacter(
  28769. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28770. {
  28771. front: {
  28772. height: math.unit(4, "feet"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/arhan/front.svg",
  28776. extra: 3368 / 3133,
  28777. bottom: 0 / 3368
  28778. }
  28779. },
  28780. side: {
  28781. height: math.unit(4, "feet"),
  28782. name: "Side",
  28783. image: {
  28784. source: "./media/characters/arhan/side.svg",
  28785. extra: 3347 / 3105,
  28786. bottom: 0 / 3347
  28787. }
  28788. },
  28789. tongue: {
  28790. height: math.unit(1.42, "feet"),
  28791. name: "Tongue",
  28792. image: {
  28793. source: "./media/characters/arhan/tongue.svg"
  28794. }
  28795. },
  28796. head: {
  28797. height: math.unit(0.85, "feet"),
  28798. name: "Head",
  28799. image: {
  28800. source: "./media/characters/arhan/head.svg"
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Normal",
  28807. height: math.unit(4, "feet"),
  28808. default: true
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28814. {
  28815. front: {
  28816. height: math.unit(5 + 7.5 / 12, "feet"),
  28817. weight: math.unit(120, "lb"),
  28818. name: "Front",
  28819. image: {
  28820. source: "./media/characters/digi-duncan/front.svg",
  28821. extra: 330 / 326,
  28822. bottom: 16 / 346
  28823. }
  28824. },
  28825. side: {
  28826. height: math.unit(5 + 7.5 / 12, "feet"),
  28827. weight: math.unit(120, "lb"),
  28828. name: "Side",
  28829. image: {
  28830. source: "./media/characters/digi-duncan/side.svg",
  28831. extra: 341 / 337,
  28832. bottom: 1 / 342
  28833. }
  28834. },
  28835. back: {
  28836. height: math.unit(5 + 7.5 / 12, "feet"),
  28837. weight: math.unit(120, "lb"),
  28838. name: "Back",
  28839. image: {
  28840. source: "./media/characters/digi-duncan/back.svg",
  28841. extra: 330 / 326,
  28842. bottom: 12 / 342
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Speck",
  28849. height: math.unit(0.25, "mm")
  28850. },
  28851. {
  28852. name: "Micro",
  28853. height: math.unit(5, "mm")
  28854. },
  28855. {
  28856. name: "Tiny",
  28857. height: math.unit(0.5, "inches"),
  28858. default: true
  28859. },
  28860. {
  28861. name: "Human",
  28862. height: math.unit(5 + 7.5 / 12, "feet")
  28863. },
  28864. {
  28865. name: "Minigiant",
  28866. height: math.unit(8 + 5.25, "feet")
  28867. },
  28868. {
  28869. name: "Giant",
  28870. height: math.unit(2000, "feet")
  28871. },
  28872. {
  28873. name: "Mega",
  28874. height: math.unit(371.1, "miles")
  28875. },
  28876. ]
  28877. ))
  28878. characterMakers.push(() => makeCharacter(
  28879. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28880. {
  28881. front: {
  28882. height: math.unit(2, "meters"),
  28883. weight: math.unit(350, "kg"),
  28884. name: "Front",
  28885. image: {
  28886. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28887. extra: 898 / 838,
  28888. bottom: 9 / 907
  28889. }
  28890. },
  28891. },
  28892. [
  28893. {
  28894. name: "Micro",
  28895. height: math.unit(8, "meters")
  28896. },
  28897. {
  28898. name: "Normal",
  28899. height: math.unit(50, "meters"),
  28900. default: true
  28901. },
  28902. {
  28903. name: "Macro",
  28904. height: math.unit(500, "meters")
  28905. },
  28906. ]
  28907. ))
  28908. characterMakers.push(() => makeCharacter(
  28909. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28910. {
  28911. front: {
  28912. height: math.unit(6 + 6 / 12, "feet"),
  28913. name: "Front",
  28914. image: {
  28915. source: "./media/characters/khardesh/front.svg",
  28916. extra: 888 / 797,
  28917. bottom: 25 / 913
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(6 + 6 / 12, "feet"),
  28925. default: true
  28926. },
  28927. {
  28928. name: "Normal+",
  28929. height: math.unit(4, "meters")
  28930. },
  28931. {
  28932. name: "Macro",
  28933. height: math.unit(50, "meters")
  28934. },
  28935. {
  28936. name: "Macro+",
  28937. height: math.unit(100, "meters")
  28938. },
  28939. {
  28940. name: "Megamacro",
  28941. height: math.unit(20, "km")
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(6, "feet"),
  28950. weight: math.unit(150, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/kosho/front.svg",
  28954. extra: 1847 / 1847,
  28955. bottom: 86 / 1933
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Second-stage micro",
  28962. height: math.unit(0.5, "inches")
  28963. },
  28964. {
  28965. name: "First-stage micro",
  28966. height: math.unit(6, "inches")
  28967. },
  28968. {
  28969. name: "Normal",
  28970. height: math.unit(6, "feet"),
  28971. default: true
  28972. },
  28973. {
  28974. name: "First-stage macro",
  28975. height: math.unit(72, "feet")
  28976. },
  28977. {
  28978. name: "Second-stage macro",
  28979. height: math.unit(864, "feet")
  28980. },
  28981. ]
  28982. ))
  28983. characterMakers.push(() => makeCharacter(
  28984. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28985. {
  28986. normal: {
  28987. height: math.unit(4 + 6 / 12, "feet"),
  28988. name: "Normal",
  28989. image: {
  28990. source: "./media/characters/hydra/normal.svg",
  28991. extra: 2833 / 2634,
  28992. bottom: 68 / 2901
  28993. }
  28994. },
  28995. smol: {
  28996. height: math.unit(0.705, "inches"),
  28997. name: "Smol",
  28998. image: {
  28999. source: "./media/characters/hydra/smol.svg",
  29000. extra: 2715 / 2540,
  29001. bottom: 0 / 2715
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(4 + 6 / 12, "feet"),
  29009. default: true
  29010. }
  29011. ]
  29012. ))
  29013. characterMakers.push(() => makeCharacter(
  29014. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29015. {
  29016. front: {
  29017. height: math.unit(0.6, "cm"),
  29018. name: "Front",
  29019. image: {
  29020. source: "./media/characters/daz/front.svg",
  29021. extra: 1682 / 1164,
  29022. bottom: 42 / 1724
  29023. }
  29024. },
  29025. },
  29026. [
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(0.6, "cm"),
  29030. default: true
  29031. },
  29032. ]
  29033. ))
  29034. characterMakers.push(() => makeCharacter(
  29035. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29036. {
  29037. front: {
  29038. height: math.unit(6, "feet"),
  29039. weight: math.unit(235, "lb"),
  29040. name: "Front",
  29041. image: {
  29042. source: "./media/characters/theo-pangolin/front.svg",
  29043. extra: 1996 / 1969,
  29044. bottom: 115 / 2111
  29045. }
  29046. },
  29047. back: {
  29048. height: math.unit(6, "feet"),
  29049. weight: math.unit(235, "lb"),
  29050. name: "Back",
  29051. image: {
  29052. source: "./media/characters/theo-pangolin/back.svg",
  29053. extra: 1979 / 1979,
  29054. bottom: 40 / 2019
  29055. }
  29056. },
  29057. feral: {
  29058. height: math.unit(2, "feet"),
  29059. weight: math.unit(30, "lb"),
  29060. name: "Feral",
  29061. image: {
  29062. source: "./media/characters/theo-pangolin/feral.svg",
  29063. extra: 803 / 791,
  29064. bottom: 181 / 984
  29065. }
  29066. },
  29067. footFive: {
  29068. height: math.unit(1.43, "feet"),
  29069. name: "Foot (Five Toes)",
  29070. image: {
  29071. source: "./media/characters/theo-pangolin/foot-five.svg"
  29072. }
  29073. },
  29074. footFour: {
  29075. height: math.unit(1.43, "feet"),
  29076. name: "Foot (Four Toes)",
  29077. image: {
  29078. source: "./media/characters/theo-pangolin/foot-four.svg"
  29079. }
  29080. },
  29081. handFour: {
  29082. height: math.unit(0.81, "feet"),
  29083. name: "Hand (Four Fingers)",
  29084. image: {
  29085. source: "./media/characters/theo-pangolin/hand-four.svg"
  29086. }
  29087. },
  29088. handThree: {
  29089. height: math.unit(0.81, "feet"),
  29090. name: "Hand (Three Fingers)",
  29091. image: {
  29092. source: "./media/characters/theo-pangolin/hand-three.svg"
  29093. }
  29094. },
  29095. headFront: {
  29096. height: math.unit(1.37, "feet"),
  29097. name: "Head (Front)",
  29098. image: {
  29099. source: "./media/characters/theo-pangolin/head-front.svg"
  29100. }
  29101. },
  29102. headSide: {
  29103. height: math.unit(1.43, "feet"),
  29104. name: "Head (Side)",
  29105. image: {
  29106. source: "./media/characters/theo-pangolin/head-side.svg"
  29107. }
  29108. },
  29109. tongue: {
  29110. height: math.unit(2.29, "feet"),
  29111. name: "Tongue",
  29112. image: {
  29113. source: "./media/characters/theo-pangolin/tongue.svg"
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(6, "feet")
  29121. },
  29122. {
  29123. name: "Macro",
  29124. height: math.unit(400, "feet"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(6, "inches"),
  29134. weight: math.unit(0.036, "kg"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/renée/front.svg",
  29138. extra: 900 / 886,
  29139. bottom: 8 / 908
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Nano",
  29146. height: math.unit(1, "nm")
  29147. },
  29148. {
  29149. name: "Micro",
  29150. height: math.unit(1, "mm")
  29151. },
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(6, "inches")
  29155. },
  29156. {
  29157. name: "Macro",
  29158. height: math.unit(2000, "feet"),
  29159. default: true
  29160. },
  29161. {
  29162. name: "Megamacro",
  29163. height: math.unit(2, "km")
  29164. },
  29165. {
  29166. name: "Gigamacro",
  29167. height: math.unit(2000, "km")
  29168. },
  29169. {
  29170. name: "Teramacro",
  29171. height: math.unit(250000, "km")
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(4, "meters"),
  29180. weight: math.unit(150, "kg"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/caledvwlch/front.svg",
  29184. extra: 1760 / 1551,
  29185. bottom: 28 / 1788
  29186. }
  29187. },
  29188. side: {
  29189. height: math.unit(4, "meters"),
  29190. weight: math.unit(150, "kg"),
  29191. name: "Side",
  29192. image: {
  29193. source: "./media/characters/caledvwlch/side.svg",
  29194. extra: 1605 / 1536,
  29195. bottom: 31 / 1636
  29196. }
  29197. },
  29198. back: {
  29199. height: math.unit(4, "meters"),
  29200. weight: math.unit(150, "kg"),
  29201. name: "Back",
  29202. image: {
  29203. source: "./media/characters/caledvwlch/back.svg",
  29204. extra: 1635 / 1565,
  29205. bottom: 27 / 1662
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "\"Incognito\"",
  29212. height: math.unit(4, "meters")
  29213. },
  29214. {
  29215. name: "Small rampage",
  29216. height: math.unit(600, "meters")
  29217. },
  29218. {
  29219. name: "Mega",
  29220. height: math.unit(30, "km")
  29221. },
  29222. {
  29223. name: "Home-size",
  29224. height: math.unit(50, "km"),
  29225. default: true
  29226. },
  29227. {
  29228. name: "Giga",
  29229. height: math.unit(300, "km")
  29230. },
  29231. {
  29232. name: "Lounging",
  29233. height: math.unit(11000, "km")
  29234. },
  29235. {
  29236. name: "Planet snacking",
  29237. height: math.unit(2000000, "km")
  29238. },
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29243. {
  29244. front: {
  29245. height: math.unit(6, "feet"),
  29246. weight: math.unit(215, "lb"),
  29247. name: "Front",
  29248. image: {
  29249. source: "./media/characters/sapphire-svell/front.svg",
  29250. extra: 495 / 455,
  29251. bottom: 20 / 515
  29252. }
  29253. },
  29254. back: {
  29255. height: math.unit(6, "feet"),
  29256. weight: math.unit(216, "lb"),
  29257. name: "Back",
  29258. image: {
  29259. source: "./media/characters/sapphire-svell/back.svg",
  29260. extra: 497 / 477,
  29261. bottom: 7 / 504
  29262. }
  29263. },
  29264. maw: {
  29265. height: math.unit(1.57, "feet"),
  29266. name: "Maw",
  29267. image: {
  29268. source: "./media/characters/sapphire-svell/maw.svg"
  29269. }
  29270. },
  29271. foot: {
  29272. height: math.unit(1.07, "feet"),
  29273. name: "Foot",
  29274. image: {
  29275. source: "./media/characters/sapphire-svell/foot.svg"
  29276. }
  29277. },
  29278. toering: {
  29279. height: math.unit(1.7, "inch"),
  29280. name: "Toering",
  29281. image: {
  29282. source: "./media/characters/sapphire-svell/toering.svg"
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Normal",
  29289. height: math.unit(300, "feet"),
  29290. default: true
  29291. },
  29292. {
  29293. name: "Augmented",
  29294. height: math.unit(1250, "feet")
  29295. },
  29296. {
  29297. name: "Unleashed",
  29298. height: math.unit(3000, "feet")
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29304. {
  29305. side: {
  29306. height: math.unit(2 + 3 / 12, "feet"),
  29307. weight: math.unit(110, "lb"),
  29308. name: "Side",
  29309. image: {
  29310. source: "./media/characters/glitch-flux/side.svg",
  29311. extra: 997 / 805,
  29312. bottom: 20 / 1017
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(2 + 3 / 12, "feet"),
  29320. default: true
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(4, "meters"),
  29329. name: "Front",
  29330. image: {
  29331. source: "./media/characters/mid/front.svg",
  29332. extra: 507 / 476,
  29333. bottom: 17 / 524
  29334. }
  29335. },
  29336. back: {
  29337. height: math.unit(4, "meters"),
  29338. name: "Back",
  29339. image: {
  29340. source: "./media/characters/mid/back.svg",
  29341. extra: 519 / 487,
  29342. bottom: 7 / 526
  29343. }
  29344. },
  29345. stuck: {
  29346. height: math.unit(2.2, "meters"),
  29347. name: "Stuck",
  29348. image: {
  29349. source: "./media/characters/mid/stuck.svg",
  29350. extra: 1951 / 1869,
  29351. bottom: 88 / 2039
  29352. }
  29353. }
  29354. },
  29355. [
  29356. {
  29357. name: "Normal",
  29358. height: math.unit(4, "meters"),
  29359. default: true
  29360. },
  29361. {
  29362. name: "Big",
  29363. height: math.unit(10, "meters")
  29364. },
  29365. {
  29366. name: "Macro",
  29367. height: math.unit(800, "meters")
  29368. },
  29369. {
  29370. name: "Megamacro",
  29371. height: math.unit(100, "km")
  29372. },
  29373. {
  29374. name: "Overgrown",
  29375. height: math.unit(1, "parsec")
  29376. },
  29377. ]
  29378. ))
  29379. characterMakers.push(() => makeCharacter(
  29380. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29381. {
  29382. front: {
  29383. height: math.unit(2.5, "meters"),
  29384. weight: math.unit(225, "kg"),
  29385. name: "Front",
  29386. image: {
  29387. source: "./media/characters/iris/front.svg",
  29388. extra: 3348 / 3251,
  29389. bottom: 205 / 3553
  29390. }
  29391. },
  29392. maw: {
  29393. height: math.unit(0.56, "meter"),
  29394. name: "Maw",
  29395. image: {
  29396. source: "./media/characters/iris/maw.svg"
  29397. }
  29398. },
  29399. },
  29400. [
  29401. {
  29402. name: "Mewter cat",
  29403. height: math.unit(1.2, "meters")
  29404. },
  29405. {
  29406. name: "Minimacro",
  29407. height: math.unit(2.5, "meters"),
  29408. default: true
  29409. },
  29410. {
  29411. name: "Macro",
  29412. height: math.unit(180, "meters")
  29413. },
  29414. {
  29415. name: "Megamacro",
  29416. height: math.unit(2746, "meters")
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29422. {
  29423. front: {
  29424. height: math.unit(6, "feet"),
  29425. weight: math.unit(135, "lb"),
  29426. name: "Front",
  29427. image: {
  29428. source: "./media/characters/axel/front.svg",
  29429. extra: 908 / 908,
  29430. bottom: 58 / 966
  29431. }
  29432. },
  29433. side: {
  29434. height: math.unit(6, "feet"),
  29435. weight: math.unit(135, "lb"),
  29436. name: "Side",
  29437. image: {
  29438. source: "./media/characters/axel/side.svg",
  29439. extra: 958 / 958,
  29440. bottom: 11 / 969
  29441. }
  29442. },
  29443. back: {
  29444. height: math.unit(6, "feet"),
  29445. weight: math.unit(135, "lb"),
  29446. name: "Back",
  29447. image: {
  29448. source: "./media/characters/axel/back.svg",
  29449. extra: 887 / 887,
  29450. bottom: 34 / 921
  29451. }
  29452. },
  29453. head: {
  29454. height: math.unit(1.07, "feet"),
  29455. name: "Head",
  29456. image: {
  29457. source: "./media/characters/axel/head.svg"
  29458. }
  29459. },
  29460. beak: {
  29461. height: math.unit(1.4, "feet"),
  29462. name: "Beak",
  29463. image: {
  29464. source: "./media/characters/axel/beak.svg"
  29465. }
  29466. },
  29467. beakSide: {
  29468. height: math.unit(1.4, "feet"),
  29469. name: "Beak Side",
  29470. image: {
  29471. source: "./media/characters/axel/beak-side.svg"
  29472. }
  29473. },
  29474. sheath: {
  29475. height: math.unit(0.5, "feet"),
  29476. name: "Sheath",
  29477. image: {
  29478. source: "./media/characters/axel/sheath.svg"
  29479. }
  29480. },
  29481. dick: {
  29482. height: math.unit(0.98, "feet"),
  29483. name: "Dick",
  29484. image: {
  29485. source: "./media/characters/axel/dick.svg"
  29486. }
  29487. },
  29488. },
  29489. [
  29490. {
  29491. name: "Macro",
  29492. height: math.unit(68, "meters"),
  29493. default: true
  29494. },
  29495. ]
  29496. ))
  29497. characterMakers.push(() => makeCharacter(
  29498. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29499. {
  29500. front: {
  29501. height: math.unit(3.5, "meters"),
  29502. weight: math.unit(1200, "kg"),
  29503. name: "Front",
  29504. image: {
  29505. source: "./media/characters/joanna/front.svg",
  29506. extra: 1596 / 1488,
  29507. bottom: 29 / 1625
  29508. }
  29509. },
  29510. back: {
  29511. height: math.unit(3.5, "meters"),
  29512. weight: math.unit(1200, "kg"),
  29513. name: "Back",
  29514. image: {
  29515. source: "./media/characters/joanna/back.svg",
  29516. extra: 1594 / 1495,
  29517. bottom: 26 / 1620
  29518. }
  29519. },
  29520. frontShorts: {
  29521. height: math.unit(3.5, "meters"),
  29522. weight: math.unit(1200, "kg"),
  29523. name: "Front (Shorts)",
  29524. image: {
  29525. source: "./media/characters/joanna/front-shorts.svg",
  29526. extra: 1596 / 1488,
  29527. bottom: 29 / 1625
  29528. }
  29529. },
  29530. frontBiker: {
  29531. height: math.unit(3.5, "meters"),
  29532. weight: math.unit(1200, "kg"),
  29533. name: "Front (Biker)",
  29534. image: {
  29535. source: "./media/characters/joanna/front-biker.svg",
  29536. extra: 1596 / 1488,
  29537. bottom: 29 / 1625
  29538. }
  29539. },
  29540. backBiker: {
  29541. height: math.unit(3.5, "meters"),
  29542. weight: math.unit(1200, "kg"),
  29543. name: "Back (Biker)",
  29544. image: {
  29545. source: "./media/characters/joanna/back-biker.svg",
  29546. extra: 1594 / 1495,
  29547. bottom: 88 / 1682
  29548. }
  29549. },
  29550. bikeLeft: {
  29551. height: math.unit(2.4, "meters"),
  29552. weight: math.unit(1600, "kg"),
  29553. name: "Bike (Left)",
  29554. image: {
  29555. source: "./media/characters/joanna/bike-left.svg",
  29556. extra: 720 / 720,
  29557. bottom: 8 / 728
  29558. }
  29559. },
  29560. bikeRight: {
  29561. height: math.unit(2.4, "meters"),
  29562. weight: math.unit(1600, "kg"),
  29563. name: "Bike (Right)",
  29564. image: {
  29565. source: "./media/characters/joanna/bike-right.svg",
  29566. extra: 720 / 720,
  29567. bottom: 8 / 728
  29568. }
  29569. },
  29570. },
  29571. [
  29572. {
  29573. name: "Incognito",
  29574. height: math.unit(3.5, "meters")
  29575. },
  29576. {
  29577. name: "Casual Big",
  29578. height: math.unit(200, "meters")
  29579. },
  29580. {
  29581. name: "Macro",
  29582. height: math.unit(600, "meters")
  29583. },
  29584. {
  29585. name: "Original",
  29586. height: math.unit(20, "km"),
  29587. default: true
  29588. },
  29589. {
  29590. name: "Giga",
  29591. height: math.unit(400, "km")
  29592. },
  29593. {
  29594. name: "Lounging",
  29595. height: math.unit(1500, "km")
  29596. },
  29597. {
  29598. name: "Planetary",
  29599. height: math.unit(200000, "km")
  29600. },
  29601. ]
  29602. ))
  29603. characterMakers.push(() => makeCharacter(
  29604. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29605. {
  29606. front: {
  29607. height: math.unit(6, "feet"),
  29608. weight: math.unit(150, "lb"),
  29609. name: "Front",
  29610. image: {
  29611. source: "./media/characters/hugo-sigil/front.svg",
  29612. extra: 522 / 500,
  29613. bottom: 2 / 524
  29614. }
  29615. },
  29616. back: {
  29617. height: math.unit(6, "feet"),
  29618. weight: math.unit(150, "lb"),
  29619. name: "Back",
  29620. image: {
  29621. source: "./media/characters/hugo-sigil/back.svg",
  29622. extra: 519 / 495,
  29623. bottom: 5 / 524
  29624. }
  29625. },
  29626. maw: {
  29627. height: math.unit(1.4, "feet"),
  29628. weight: math.unit(150, "lb"),
  29629. name: "Maw",
  29630. image: {
  29631. source: "./media/characters/hugo-sigil/maw.svg"
  29632. }
  29633. },
  29634. feet: {
  29635. height: math.unit(1.56, "feet"),
  29636. weight: math.unit(150, "lb"),
  29637. name: "Feet",
  29638. image: {
  29639. source: "./media/characters/hugo-sigil/feet.svg",
  29640. extra: 177 / 177,
  29641. bottom: 12 / 189
  29642. }
  29643. },
  29644. },
  29645. [
  29646. {
  29647. name: "Normal",
  29648. height: math.unit(6, "feet")
  29649. },
  29650. {
  29651. name: "Macro",
  29652. height: math.unit(200, "feet"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(6, "feet"),
  29662. weight: math.unit(150, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/peri/front.svg",
  29666. extra: 2354 / 2233,
  29667. bottom: 49 / 2403
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Really Small",
  29674. height: math.unit(1, "nm")
  29675. },
  29676. {
  29677. name: "Micro",
  29678. height: math.unit(4, "inches")
  29679. },
  29680. {
  29681. name: "Normal",
  29682. height: math.unit(7, "inches"),
  29683. default: true
  29684. },
  29685. {
  29686. name: "Macro",
  29687. height: math.unit(400, "feet")
  29688. },
  29689. {
  29690. name: "Megamacro",
  29691. height: math.unit(100, "miles")
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29697. {
  29698. frontSlim: {
  29699. height: math.unit(7, "feet"),
  29700. name: "Front (Slim)",
  29701. image: {
  29702. source: "./media/characters/issilora/front-slim.svg",
  29703. extra: 529 / 449,
  29704. bottom: 53 / 582
  29705. }
  29706. },
  29707. sideSlim: {
  29708. height: math.unit(7, "feet"),
  29709. name: "Side (Slim)",
  29710. image: {
  29711. source: "./media/characters/issilora/side-slim.svg",
  29712. extra: 570 / 480,
  29713. bottom: 30 / 600
  29714. }
  29715. },
  29716. backSlim: {
  29717. height: math.unit(7, "feet"),
  29718. name: "Back (Slim)",
  29719. image: {
  29720. source: "./media/characters/issilora/back-slim.svg",
  29721. extra: 537 / 455,
  29722. bottom: 46 / 583
  29723. }
  29724. },
  29725. frontBuff: {
  29726. height: math.unit(7, "feet"),
  29727. name: "Front (Buff)",
  29728. image: {
  29729. source: "./media/characters/issilora/front-buff.svg",
  29730. extra: 2310 / 2035,
  29731. bottom: 335 / 2645
  29732. }
  29733. },
  29734. head: {
  29735. height: math.unit(1.94, "feet"),
  29736. name: "Head",
  29737. image: {
  29738. source: "./media/characters/issilora/head.svg"
  29739. }
  29740. },
  29741. },
  29742. [
  29743. {
  29744. name: "Minimum",
  29745. height: math.unit(7, "feet")
  29746. },
  29747. {
  29748. name: "Comfortable",
  29749. height: math.unit(17, "feet")
  29750. },
  29751. {
  29752. name: "Fun Size",
  29753. height: math.unit(47, "feet")
  29754. },
  29755. {
  29756. name: "Natural Macro",
  29757. height: math.unit(137, "feet"),
  29758. default: true
  29759. },
  29760. {
  29761. name: "Maximum Kaiju",
  29762. height: math.unit(397, "feet")
  29763. },
  29764. ]
  29765. ))
  29766. characterMakers.push(() => makeCharacter(
  29767. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29768. {
  29769. front: {
  29770. height: math.unit(50 + 9/12, "feet"),
  29771. weight: math.unit(32.8, "tons"),
  29772. name: "Front",
  29773. image: {
  29774. source: "./media/characters/irb'iiritaahn/front.svg",
  29775. extra: 1878/1826,
  29776. bottom: 326/2204
  29777. }
  29778. },
  29779. back: {
  29780. height: math.unit(50 + 9/12, "feet"),
  29781. weight: math.unit(32.8, "tons"),
  29782. name: "Back",
  29783. image: {
  29784. source: "./media/characters/irb'iiritaahn/back.svg",
  29785. extra: 2052/2018,
  29786. bottom: 152/2204
  29787. }
  29788. },
  29789. head: {
  29790. height: math.unit(12.86, "feet"),
  29791. name: "Head",
  29792. image: {
  29793. source: "./media/characters/irb'iiritaahn/head.svg"
  29794. }
  29795. },
  29796. maw: {
  29797. height: math.unit(9.66, "feet"),
  29798. name: "Maw",
  29799. image: {
  29800. source: "./media/characters/irb'iiritaahn/maw.svg"
  29801. }
  29802. },
  29803. frontDick: {
  29804. height: math.unit(8.78461, "feet"),
  29805. name: "Front Dick",
  29806. image: {
  29807. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29808. }
  29809. },
  29810. rearDick: {
  29811. height: math.unit(8.78461, "feet"),
  29812. name: "Rear Dick",
  29813. image: {
  29814. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29815. }
  29816. },
  29817. rearDickUnfolded: {
  29818. height: math.unit(8.78, "feet"),
  29819. name: "Rear Dick (Unfolded)",
  29820. image: {
  29821. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29822. }
  29823. },
  29824. wings: {
  29825. height: math.unit(43, "feet"),
  29826. name: "Wings",
  29827. image: {
  29828. source: "./media/characters/irb'iiritaahn/wings.svg"
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Macro",
  29835. height: math.unit(50 + 9/12, "feet"),
  29836. default: true
  29837. },
  29838. ]
  29839. ))
  29840. characterMakers.push(() => makeCharacter(
  29841. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29842. {
  29843. front: {
  29844. height: math.unit(205, "cm"),
  29845. weight: math.unit(102, "kg"),
  29846. name: "Front",
  29847. image: {
  29848. source: "./media/characters/irbisgreif/front.svg",
  29849. extra: 785/706,
  29850. bottom: 13/798
  29851. }
  29852. },
  29853. back: {
  29854. height: math.unit(205, "cm"),
  29855. weight: math.unit(102, "kg"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/irbisgreif/back.svg",
  29859. extra: 713/701,
  29860. bottom: 26/739
  29861. }
  29862. },
  29863. frontDressed: {
  29864. height: math.unit(216, "cm"),
  29865. weight: math.unit(102, "kg"),
  29866. name: "Front-dressed",
  29867. image: {
  29868. source: "./media/characters/irbisgreif/front-dressed.svg",
  29869. extra: 902/776,
  29870. bottom: 14/916
  29871. }
  29872. },
  29873. sideDressed: {
  29874. height: math.unit(195, "cm"),
  29875. weight: math.unit(102, "kg"),
  29876. name: "Side-dressed",
  29877. image: {
  29878. source: "./media/characters/irbisgreif/side-dressed.svg",
  29879. extra: 788/688,
  29880. bottom: 21/809
  29881. }
  29882. },
  29883. backDressed: {
  29884. height: math.unit(216, "cm"),
  29885. weight: math.unit(102, "kg"),
  29886. name: "Back-dressed",
  29887. image: {
  29888. source: "./media/characters/irbisgreif/back-dressed.svg",
  29889. extra: 901/783,
  29890. bottom: 10/911
  29891. }
  29892. },
  29893. dick: {
  29894. height: math.unit(0.49, "feet"),
  29895. name: "Dick",
  29896. image: {
  29897. source: "./media/characters/irbisgreif/dick.svg"
  29898. }
  29899. },
  29900. wingTop: {
  29901. height: math.unit(1.93 , "feet"),
  29902. name: "Wing-top",
  29903. image: {
  29904. source: "./media/characters/irbisgreif/wing-top.svg"
  29905. }
  29906. },
  29907. wingBottom: {
  29908. height: math.unit(1.93 , "feet"),
  29909. name: "Wing-bottom",
  29910. image: {
  29911. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29912. }
  29913. },
  29914. },
  29915. [
  29916. {
  29917. name: "Normal",
  29918. height: math.unit(216, "cm"),
  29919. default: true
  29920. },
  29921. ]
  29922. ))
  29923. //characters
  29924. function makeCharacters() {
  29925. const results = [];
  29926. characterMakers.forEach(character => {
  29927. results.push(character());
  29928. });
  29929. return results;
  29930. }