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

28814 строки
719 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. }
  1360. //species
  1361. function getSpeciesInfo(speciesList) {
  1362. let result = new Set();
  1363. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1364. result.add(entry)
  1365. });
  1366. return Array.from(result);
  1367. };
  1368. function getSpeciesInfoHelper(species) {
  1369. if (!speciesData[species]) {
  1370. console.warn(species + " doesn't exist");
  1371. return [];
  1372. }
  1373. if (speciesData[species].parents) {
  1374. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1375. } else {
  1376. return [species];
  1377. }
  1378. }
  1379. characterMakers.push(() => makeCharacter(
  1380. {
  1381. name: "Fen",
  1382. species: ["crux"],
  1383. description: {
  1384. title: "Bio",
  1385. text: "Very furry. Sheds on everything."
  1386. },
  1387. tags: [
  1388. "anthro",
  1389. "goo"
  1390. ]
  1391. },
  1392. {
  1393. back: {
  1394. height: math.unit(2.2428, "meter"),
  1395. weight: math.unit(124.738, "kg"),
  1396. name: "Back",
  1397. image: {
  1398. source: "./media/characters/fen/back.svg",
  1399. extra: 2024 / 1867,
  1400. bottom: 13 / 2037
  1401. },
  1402. info: {
  1403. description: {
  1404. mode: "append",
  1405. text: "\n\nHe is not currently looking at you."
  1406. }
  1407. }
  1408. },
  1409. full: {
  1410. height: math.unit(1.34, "meter"),
  1411. weight: math.unit(225, "kg"),
  1412. name: "Full",
  1413. image: {
  1414. source: "./media/characters/fen/full.svg"
  1415. },
  1416. info: {
  1417. description: {
  1418. mode: "append",
  1419. text: "\n\nMunch."
  1420. }
  1421. }
  1422. },
  1423. kneeling: {
  1424. height: math.unit(5.4, "feet"),
  1425. weight: math.unit(124.738, "kg"),
  1426. name: "Kneeling",
  1427. image: {
  1428. source: "./media/characters/fen/kneeling.svg",
  1429. extra: 563 / 507
  1430. }
  1431. },
  1432. goo: {
  1433. height: math.unit(2.8, "feet"),
  1434. weight: math.unit(125, "kg"),
  1435. capacity: math.unit(1, "people"),
  1436. name: "Goo",
  1437. image: {
  1438. source: "./media/characters/fen/goo.svg",
  1439. bottom: 116 / 613
  1440. }
  1441. },
  1442. lounging: {
  1443. height: math.unit(6.5, "feet"),
  1444. weight: math.unit(125, "kg"),
  1445. name: "Lounging",
  1446. image: {
  1447. source: "./media/characters/fen/lounging.svg"
  1448. }
  1449. },
  1450. },
  1451. [
  1452. {
  1453. name: "Normal",
  1454. height: math.unit(2.2428, "meter")
  1455. },
  1456. {
  1457. name: "Big",
  1458. height: math.unit(12, "feet")
  1459. },
  1460. {
  1461. name: "Minimacro",
  1462. height: math.unit(40, "feet"),
  1463. default: true,
  1464. info: {
  1465. description: {
  1466. mode: "append",
  1467. text: "\n\nTOO DAMN BIG"
  1468. }
  1469. }
  1470. },
  1471. {
  1472. name: "Macro",
  1473. height: math.unit(100, "feet"),
  1474. info: {
  1475. description: {
  1476. mode: "append",
  1477. text: "\n\nTOO DAMN BIG"
  1478. }
  1479. }
  1480. },
  1481. {
  1482. name: "Macro+",
  1483. height: math.unit(300, "feet")
  1484. },
  1485. {
  1486. name: "Megamacro",
  1487. height: math.unit(2, "miles")
  1488. }
  1489. ]
  1490. ))
  1491. characterMakers.push(() => makeCharacter(
  1492. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1493. {
  1494. front: {
  1495. height: math.unit(183, "cm"),
  1496. weight: math.unit(80, "kg"),
  1497. name: "Front",
  1498. image: {
  1499. source: "./media/characters/sofia-fluttertail/front.svg",
  1500. bottom: 0.01,
  1501. extra: 2154 / 2081
  1502. }
  1503. },
  1504. frontAlt: {
  1505. height: math.unit(183, "cm"),
  1506. weight: math.unit(80, "kg"),
  1507. name: "Front (alt)",
  1508. image: {
  1509. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1510. }
  1511. },
  1512. back: {
  1513. height: math.unit(183, "cm"),
  1514. weight: math.unit(80, "kg"),
  1515. name: "Back",
  1516. image: {
  1517. source: "./media/characters/sofia-fluttertail/back.svg"
  1518. }
  1519. },
  1520. kneeling: {
  1521. height: math.unit(125, "cm"),
  1522. weight: math.unit(80, "kg"),
  1523. name: "Kneeling",
  1524. image: {
  1525. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1526. extra: 1033 / 977,
  1527. bottom: 23.7 / 1057
  1528. }
  1529. },
  1530. maw: {
  1531. height: math.unit(183 / 5, "cm"),
  1532. name: "Maw",
  1533. image: {
  1534. source: "./media/characters/sofia-fluttertail/maw.svg"
  1535. }
  1536. },
  1537. mawcloseup: {
  1538. height: math.unit(183 / 5 * 0.41, "cm"),
  1539. name: "Maw (Closeup)",
  1540. image: {
  1541. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1542. }
  1543. },
  1544. },
  1545. [
  1546. {
  1547. name: "Normal",
  1548. height: math.unit(1.83, "meter")
  1549. },
  1550. {
  1551. name: "Size Thief",
  1552. height: math.unit(18, "feet")
  1553. },
  1554. {
  1555. name: "50 Foot Collie",
  1556. height: math.unit(50, "feet")
  1557. },
  1558. {
  1559. name: "Macro",
  1560. height: math.unit(96, "feet"),
  1561. default: true
  1562. },
  1563. {
  1564. name: "Megamerger",
  1565. height: math.unit(650, "feet")
  1566. },
  1567. ]
  1568. ))
  1569. characterMakers.push(() => makeCharacter(
  1570. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1571. {
  1572. front: {
  1573. height: math.unit(7, "feet"),
  1574. weight: math.unit(100, "kg"),
  1575. name: "Front",
  1576. image: {
  1577. source: "./media/characters/march/front.svg",
  1578. extra: 1,
  1579. bottom: 0.015
  1580. }
  1581. },
  1582. foot: {
  1583. height: math.unit(0.9, "feet"),
  1584. name: "Foot",
  1585. image: {
  1586. source: "./media/characters/march/foot.svg"
  1587. }
  1588. },
  1589. },
  1590. [
  1591. {
  1592. name: "Normal",
  1593. height: math.unit(7.9, "feet")
  1594. },
  1595. {
  1596. name: "Macro",
  1597. height: math.unit(220, "meters")
  1598. },
  1599. {
  1600. name: "Megamacro",
  1601. height: math.unit(2.98, "km"),
  1602. default: true
  1603. },
  1604. {
  1605. name: "Gigamacro",
  1606. height: math.unit(15963, "km")
  1607. },
  1608. {
  1609. name: "Teramacro",
  1610. height: math.unit(2980000000, "km")
  1611. },
  1612. {
  1613. name: "Examacro",
  1614. height: math.unit(250, "parsecs")
  1615. },
  1616. ]
  1617. ))
  1618. characterMakers.push(() => makeCharacter(
  1619. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1620. {
  1621. front: {
  1622. height: math.unit(6, "feet"),
  1623. weight: math.unit(60, "kg"),
  1624. name: "Front",
  1625. image: {
  1626. source: "./media/characters/noir/front.svg",
  1627. extra: 1,
  1628. bottom: 0.032
  1629. }
  1630. },
  1631. },
  1632. [
  1633. {
  1634. name: "Normal",
  1635. height: math.unit(6.6, "feet")
  1636. },
  1637. {
  1638. name: "Macro",
  1639. height: math.unit(500, "feet")
  1640. },
  1641. {
  1642. name: "Megamacro",
  1643. height: math.unit(2.5, "km"),
  1644. default: true
  1645. },
  1646. {
  1647. name: "Gigamacro",
  1648. height: math.unit(22500, "km")
  1649. },
  1650. {
  1651. name: "Teramacro",
  1652. height: math.unit(2500000000, "km")
  1653. },
  1654. {
  1655. name: "Examacro",
  1656. height: math.unit(200, "parsecs")
  1657. },
  1658. ]
  1659. ))
  1660. characterMakers.push(() => makeCharacter(
  1661. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1662. {
  1663. front: {
  1664. height: math.unit(7, "feet"),
  1665. weight: math.unit(100, "kg"),
  1666. name: "Front",
  1667. image: {
  1668. source: "./media/characters/okuri/front.svg",
  1669. extra: 1,
  1670. bottom: 0.037
  1671. }
  1672. },
  1673. back: {
  1674. height: math.unit(7, "feet"),
  1675. weight: math.unit(100, "kg"),
  1676. name: "Back",
  1677. image: {
  1678. source: "./media/characters/okuri/back.svg",
  1679. extra: 1,
  1680. bottom: 0.007
  1681. }
  1682. },
  1683. },
  1684. [
  1685. {
  1686. name: "Megamacro",
  1687. height: math.unit(100, "miles"),
  1688. default: true
  1689. },
  1690. ]
  1691. ))
  1692. characterMakers.push(() => makeCharacter(
  1693. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1694. {
  1695. front: {
  1696. height: math.unit(7, "feet"),
  1697. weight: math.unit(100, "kg"),
  1698. name: "Front",
  1699. image: {
  1700. source: "./media/characters/manny/front.svg",
  1701. extra: 1,
  1702. bottom: 0.06
  1703. }
  1704. },
  1705. back: {
  1706. height: math.unit(7, "feet"),
  1707. weight: math.unit(100, "kg"),
  1708. name: "Back",
  1709. image: {
  1710. source: "./media/characters/manny/back.svg",
  1711. extra: 1,
  1712. bottom: 0.014
  1713. }
  1714. },
  1715. },
  1716. [
  1717. {
  1718. name: "Normal",
  1719. height: math.unit(7, "feet"),
  1720. },
  1721. {
  1722. name: "Macro",
  1723. height: math.unit(78, "feet"),
  1724. default: true
  1725. },
  1726. {
  1727. name: "Macro+",
  1728. height: math.unit(300, "meters")
  1729. },
  1730. {
  1731. name: "Macro++",
  1732. height: math.unit(2400, "meters")
  1733. },
  1734. {
  1735. name: "Megamacro",
  1736. height: math.unit(5167, "meters")
  1737. },
  1738. {
  1739. name: "Gigamacro",
  1740. height: math.unit(41769, "miles")
  1741. },
  1742. ]
  1743. ))
  1744. characterMakers.push(() => makeCharacter(
  1745. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1746. {
  1747. front: {
  1748. height: math.unit(7, "feet"),
  1749. weight: math.unit(100, "kg"),
  1750. name: "Front",
  1751. image: {
  1752. source: "./media/characters/adake/front-1.svg"
  1753. }
  1754. },
  1755. frontAlt: {
  1756. height: math.unit(7, "feet"),
  1757. weight: math.unit(100, "kg"),
  1758. name: "Front (Alt)",
  1759. image: {
  1760. source: "./media/characters/adake/front-2.svg",
  1761. extra: 1,
  1762. bottom: 0.01
  1763. }
  1764. },
  1765. back: {
  1766. height: math.unit(7, "feet"),
  1767. weight: math.unit(100, "kg"),
  1768. name: "Back",
  1769. image: {
  1770. source: "./media/characters/adake/back.svg",
  1771. }
  1772. },
  1773. kneel: {
  1774. height: math.unit(5.385, "feet"),
  1775. weight: math.unit(100, "kg"),
  1776. name: "Kneeling",
  1777. image: {
  1778. source: "./media/characters/adake/kneel.svg",
  1779. bottom: 0.052
  1780. }
  1781. },
  1782. },
  1783. [
  1784. {
  1785. name: "Normal",
  1786. height: math.unit(7, "feet"),
  1787. },
  1788. {
  1789. name: "Macro",
  1790. height: math.unit(78, "feet"),
  1791. default: true
  1792. },
  1793. {
  1794. name: "Macro+",
  1795. height: math.unit(300, "meters")
  1796. },
  1797. {
  1798. name: "Macro++",
  1799. height: math.unit(2400, "meters")
  1800. },
  1801. {
  1802. name: "Megamacro",
  1803. height: math.unit(5167, "meters")
  1804. },
  1805. {
  1806. name: "Gigamacro",
  1807. height: math.unit(41769, "miles")
  1808. },
  1809. ]
  1810. ))
  1811. characterMakers.push(() => makeCharacter(
  1812. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1813. {
  1814. front: {
  1815. height: math.unit(1.65, "meters"),
  1816. weight: math.unit(50, "kg"),
  1817. name: "Front",
  1818. image: {
  1819. source: "./media/characters/elijah/front.svg",
  1820. extra: 858 / 830,
  1821. bottom: 95.5 / 953.8559
  1822. }
  1823. },
  1824. back: {
  1825. height: math.unit(1.65, "meters"),
  1826. weight: math.unit(50, "kg"),
  1827. name: "Back",
  1828. image: {
  1829. source: "./media/characters/elijah/back.svg",
  1830. extra: 895 / 850,
  1831. bottom: 5.3 / 897.956
  1832. }
  1833. },
  1834. frontNsfw: {
  1835. height: math.unit(1.65, "meters"),
  1836. weight: math.unit(50, "kg"),
  1837. name: "Front (NSFW)",
  1838. image: {
  1839. source: "./media/characters/elijah/front-nsfw.svg",
  1840. extra: 858 / 830,
  1841. bottom: 95.5 / 953.8559
  1842. }
  1843. },
  1844. backNsfw: {
  1845. height: math.unit(1.65, "meters"),
  1846. weight: math.unit(50, "kg"),
  1847. name: "Back (NSFW)",
  1848. image: {
  1849. source: "./media/characters/elijah/back-nsfw.svg",
  1850. extra: 895 / 850,
  1851. bottom: 5.3 / 897.956
  1852. }
  1853. },
  1854. dick: {
  1855. height: math.unit(1, "feet"),
  1856. name: "Dick",
  1857. image: {
  1858. source: "./media/characters/elijah/dick.svg"
  1859. }
  1860. },
  1861. beakOpen: {
  1862. height: math.unit(1.25, "feet"),
  1863. name: "Beak (Open)",
  1864. image: {
  1865. source: "./media/characters/elijah/beak-open.svg"
  1866. }
  1867. },
  1868. beakShut: {
  1869. height: math.unit(1.25, "feet"),
  1870. name: "Beak (Shut)",
  1871. image: {
  1872. source: "./media/characters/elijah/beak-shut.svg"
  1873. }
  1874. },
  1875. footFlexing: {
  1876. height: math.unit(1.61, "feet"),
  1877. name: "Foot (Flexing)",
  1878. image: {
  1879. source: "./media/characters/elijah/foot-flexing.svg"
  1880. }
  1881. },
  1882. footStepping: {
  1883. height: math.unit(1.44, "feet"),
  1884. name: "Foot (Stepping)",
  1885. image: {
  1886. source: "./media/characters/elijah/foot-stepping.svg"
  1887. }
  1888. },
  1889. plantigradeLeg: {
  1890. height: math.unit(2.34, "feet"),
  1891. name: "Plantigrade Leg",
  1892. image: {
  1893. source: "./media/characters/elijah/plantigrade-leg.svg"
  1894. }
  1895. },
  1896. plantigradeFootLeft: {
  1897. height: math.unit(0.9, "feet"),
  1898. name: "Plantigrade Foot (Left)",
  1899. image: {
  1900. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1901. }
  1902. },
  1903. plantigradeFootRight: {
  1904. height: math.unit(0.9, "feet"),
  1905. name: "Plantigrade Foot (Right)",
  1906. image: {
  1907. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1908. }
  1909. },
  1910. },
  1911. [
  1912. {
  1913. name: "Normal",
  1914. height: math.unit(1.65, "meters")
  1915. },
  1916. {
  1917. name: "Macro",
  1918. height: math.unit(55, "meters"),
  1919. default: true
  1920. },
  1921. {
  1922. name: "Macro+",
  1923. height: math.unit(105, "meters")
  1924. },
  1925. ]
  1926. ))
  1927. characterMakers.push(() => makeCharacter(
  1928. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1929. {
  1930. front: {
  1931. height: math.unit(11, "feet"),
  1932. weight: math.unit(80, "kg"),
  1933. name: "Front",
  1934. image: {
  1935. source: "./media/characters/rai/front.svg",
  1936. extra: 1,
  1937. bottom: 0.03
  1938. }
  1939. },
  1940. side: {
  1941. height: math.unit(11, "feet"),
  1942. weight: math.unit(80, "kg"),
  1943. name: "Side",
  1944. image: {
  1945. source: "./media/characters/rai/side.svg"
  1946. }
  1947. },
  1948. back: {
  1949. height: math.unit(11, "feet"),
  1950. weight: math.unit(80, "lb"),
  1951. name: "Back",
  1952. image: {
  1953. source: "./media/characters/rai/back.svg",
  1954. extra: 1,
  1955. bottom: 0.01
  1956. }
  1957. },
  1958. feral: {
  1959. height: math.unit(11, "feet"),
  1960. weight: math.unit(800, "lb"),
  1961. name: "Feral",
  1962. image: {
  1963. source: "./media/characters/rai/feral.svg",
  1964. extra: 1050 / 659,
  1965. bottom: 0.07
  1966. }
  1967. },
  1968. dragon: {
  1969. height: math.unit(23, "feet"),
  1970. weight: math.unit(50000, "lb"),
  1971. name: "Dragon",
  1972. image: {
  1973. source: "./media/characters/rai/dragon.svg",
  1974. extra: 2498 / 2030,
  1975. bottom: 85.2 / 2584
  1976. }
  1977. },
  1978. maw: {
  1979. height: math.unit(6 / 3.81416, "feet"),
  1980. name: "Maw",
  1981. image: {
  1982. source: "./media/characters/rai/maw.svg"
  1983. }
  1984. },
  1985. },
  1986. [
  1987. {
  1988. name: "Normal",
  1989. height: math.unit(11, "feet")
  1990. },
  1991. {
  1992. name: "Macro",
  1993. height: math.unit(302, "feet"),
  1994. default: true
  1995. },
  1996. ]
  1997. ))
  1998. characterMakers.push(() => makeCharacter(
  1999. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2000. {
  2001. frontDressed: {
  2002. height: math.unit(216, "feet"),
  2003. weight: math.unit(7000000, "lb"),
  2004. name: "Front (Dressed)",
  2005. image: {
  2006. source: "./media/characters/jazzy/front-dressed.svg",
  2007. extra: 2738 / 2651,
  2008. bottom: 41.8 / 2786
  2009. }
  2010. },
  2011. backDressed: {
  2012. height: math.unit(216, "feet"),
  2013. weight: math.unit(7000000, "lb"),
  2014. name: "Back (Dressed)",
  2015. image: {
  2016. source: "./media/characters/jazzy/back-dressed.svg",
  2017. extra: 2775 / 2673,
  2018. bottom: 36.8 / 2817
  2019. }
  2020. },
  2021. front: {
  2022. height: math.unit(216, "feet"),
  2023. weight: math.unit(7000000, "lb"),
  2024. name: "Front",
  2025. image: {
  2026. source: "./media/characters/jazzy/front.svg",
  2027. extra: 2738 / 2651,
  2028. bottom: 41.8 / 2786
  2029. }
  2030. },
  2031. back: {
  2032. height: math.unit(216, "feet"),
  2033. weight: math.unit(7000000, "lb"),
  2034. name: "Back",
  2035. image: {
  2036. source: "./media/characters/jazzy/back.svg",
  2037. extra: 2775 / 2673,
  2038. bottom: 36.8 / 2817
  2039. }
  2040. },
  2041. maw: {
  2042. height: math.unit(20, "feet"),
  2043. name: "Maw",
  2044. image: {
  2045. source: "./media/characters/jazzy/maw.svg"
  2046. }
  2047. },
  2048. paws: {
  2049. height: math.unit(27.5, "feet"),
  2050. name: "Paws",
  2051. image: {
  2052. source: "./media/characters/jazzy/paws.svg"
  2053. }
  2054. },
  2055. eye: {
  2056. height: math.unit(4.4, "feet"),
  2057. name: "Eye",
  2058. image: {
  2059. source: "./media/characters/jazzy/eye.svg"
  2060. }
  2061. },
  2062. droneOffense: {
  2063. height: math.unit(9.5, "inches"),
  2064. name: "Drone (Offense)",
  2065. image: {
  2066. source: "./media/characters/jazzy/drone-offense.svg"
  2067. }
  2068. },
  2069. droneRecon: {
  2070. height: math.unit(9.5, "inches"),
  2071. name: "Drone (Recon)",
  2072. image: {
  2073. source: "./media/characters/jazzy/drone-recon.svg"
  2074. }
  2075. },
  2076. droneDefense: {
  2077. height: math.unit(9.5, "inches"),
  2078. name: "Drone (Defense)",
  2079. image: {
  2080. source: "./media/characters/jazzy/drone-defense.svg"
  2081. }
  2082. },
  2083. },
  2084. [
  2085. {
  2086. name: "Macro",
  2087. height: math.unit(216, "feet"),
  2088. default: true
  2089. },
  2090. ]
  2091. ))
  2092. characterMakers.push(() => makeCharacter(
  2093. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2094. {
  2095. front: {
  2096. height: math.unit(7, "feet"),
  2097. weight: math.unit(80, "kg"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/flamm/front.svg",
  2101. extra: 1794 / 1677,
  2102. bottom: 31.7 / 1828.5
  2103. }
  2104. },
  2105. },
  2106. [
  2107. {
  2108. name: "Normal",
  2109. height: math.unit(9.5, "feet")
  2110. },
  2111. {
  2112. name: "Macro",
  2113. height: math.unit(200, "feet"),
  2114. default: true
  2115. },
  2116. ]
  2117. ))
  2118. characterMakers.push(() => makeCharacter(
  2119. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2120. {
  2121. front: {
  2122. height: math.unit(7, "feet"),
  2123. weight: math.unit(80, "kg"),
  2124. name: "Front",
  2125. image: {
  2126. source: "./media/characters/zephiro/front.svg",
  2127. extra: 2309 / 2162,
  2128. bottom: 0.069
  2129. }
  2130. },
  2131. side: {
  2132. height: math.unit(7, "feet"),
  2133. weight: math.unit(80, "kg"),
  2134. name: "Side",
  2135. image: {
  2136. source: "./media/characters/zephiro/side.svg",
  2137. extra: 2403 / 2279,
  2138. bottom: 0.015
  2139. }
  2140. },
  2141. back: {
  2142. height: math.unit(7, "feet"),
  2143. weight: math.unit(80, "kg"),
  2144. name: "Back",
  2145. image: {
  2146. source: "./media/characters/zephiro/back.svg",
  2147. extra: 2373 / 2244,
  2148. bottom: 0.013
  2149. }
  2150. },
  2151. },
  2152. [
  2153. {
  2154. name: "Micro",
  2155. height: math.unit(3, "inches")
  2156. },
  2157. {
  2158. name: "Normal",
  2159. height: math.unit(5 + 3 / 12, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Macro",
  2164. height: math.unit(118, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(5, "feet"),
  2173. weight: math.unit(90, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/fory/front.svg",
  2177. extra: 2862 / 2674,
  2178. bottom: 180 / 3043.8
  2179. }
  2180. },
  2181. back: {
  2182. height: math.unit(5, "feet"),
  2183. weight: math.unit(90, "kg"),
  2184. name: "Back",
  2185. image: {
  2186. source: "./media/characters/fory/back.svg",
  2187. extra: 2962 / 2791,
  2188. bottom: 106 / 3071.8
  2189. }
  2190. },
  2191. foot: {
  2192. height: math.unit(2.14, "feet"),
  2193. name: "Foot",
  2194. image: {
  2195. source: "./media/characters/fory/foot.svg"
  2196. }
  2197. },
  2198. },
  2199. [
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(5, "feet")
  2203. },
  2204. {
  2205. name: "Macro",
  2206. height: math.unit(50, "feet"),
  2207. default: true
  2208. },
  2209. {
  2210. name: "Megamacro",
  2211. height: math.unit(10, "miles")
  2212. },
  2213. {
  2214. name: "Gigamacro",
  2215. height: math.unit(5, "earths")
  2216. },
  2217. ]
  2218. ))
  2219. characterMakers.push(() => makeCharacter(
  2220. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2221. {
  2222. front: {
  2223. height: math.unit(7, "feet"),
  2224. weight: math.unit(90, "kg"),
  2225. name: "Front",
  2226. image: {
  2227. source: "./media/characters/kurrikage/front.svg",
  2228. extra: 1,
  2229. bottom: 0.035
  2230. }
  2231. },
  2232. back: {
  2233. height: math.unit(7, "feet"),
  2234. weight: math.unit(90, "lb"),
  2235. name: "Back",
  2236. image: {
  2237. source: "./media/characters/kurrikage/back.svg"
  2238. }
  2239. },
  2240. paw: {
  2241. height: math.unit(1.5, "feet"),
  2242. name: "Paw",
  2243. image: {
  2244. source: "./media/characters/kurrikage/paw.svg"
  2245. }
  2246. },
  2247. staff: {
  2248. height: math.unit(6.7, "feet"),
  2249. name: "Staff",
  2250. image: {
  2251. source: "./media/characters/kurrikage/staff.svg"
  2252. }
  2253. },
  2254. peek: {
  2255. height: math.unit(1.05, "feet"),
  2256. name: "Peeking",
  2257. image: {
  2258. source: "./media/characters/kurrikage/peek.svg",
  2259. bottom: 0.08
  2260. }
  2261. },
  2262. },
  2263. [
  2264. {
  2265. name: "Normal",
  2266. height: math.unit(12, "feet"),
  2267. default: true
  2268. },
  2269. {
  2270. name: "Big",
  2271. height: math.unit(20, "feet")
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(500, "feet")
  2276. },
  2277. {
  2278. name: "Megamacro",
  2279. height: math.unit(20, "miles")
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(6, "feet"),
  2288. weight: math.unit(75, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/shingo/front.svg",
  2292. extra: 3511 / 3338,
  2293. bottom: 0.005
  2294. }
  2295. },
  2296. paw: {
  2297. height: math.unit(1, "feet"),
  2298. name: "Paw",
  2299. image: {
  2300. source: "./media/characters/shingo/paw.svg"
  2301. }
  2302. },
  2303. },
  2304. [
  2305. {
  2306. name: "Micro",
  2307. height: math.unit(4, "inches")
  2308. },
  2309. {
  2310. name: "Normal",
  2311. height: math.unit(6, "feet"),
  2312. default: true
  2313. },
  2314. {
  2315. name: "Macro",
  2316. height: math.unit(108, "feet")
  2317. }
  2318. ]
  2319. ))
  2320. characterMakers.push(() => makeCharacter(
  2321. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2322. {
  2323. side: {
  2324. height: math.unit(6, "feet"),
  2325. weight: math.unit(75, "kg"),
  2326. name: "Side",
  2327. image: {
  2328. source: "./media/characters/aigey/side.svg"
  2329. }
  2330. },
  2331. },
  2332. [
  2333. {
  2334. name: "Macro",
  2335. height: math.unit(200, "feet"),
  2336. default: true
  2337. },
  2338. {
  2339. name: "Megamacro",
  2340. height: math.unit(100, "miles")
  2341. },
  2342. ]
  2343. )
  2344. )
  2345. characterMakers.push(() => makeCharacter(
  2346. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2347. {
  2348. front: {
  2349. height: math.unit(5 + 5 / 12, "feet"),
  2350. weight: math.unit(75, "kg"),
  2351. name: "Front",
  2352. image: {
  2353. source: "./media/characters/natasha/front.svg",
  2354. extra: 859 / 824,
  2355. bottom: 23 / 879.6
  2356. }
  2357. },
  2358. frontNsfw: {
  2359. height: math.unit(5 + 5 / 12, "feet"),
  2360. weight: math.unit(75, "kg"),
  2361. name: "Front (NSFW)",
  2362. image: {
  2363. source: "./media/characters/natasha/front-nsfw.svg",
  2364. extra: 859 / 824,
  2365. bottom: 23 / 879.6
  2366. }
  2367. },
  2368. frontErect: {
  2369. height: math.unit(5 + 5 / 12, "feet"),
  2370. weight: math.unit(75, "kg"),
  2371. name: "Front (Erect)",
  2372. image: {
  2373. source: "./media/characters/natasha/front-erect.svg",
  2374. extra: 859 / 824,
  2375. bottom: 23 / 879.6
  2376. }
  2377. },
  2378. back: {
  2379. height: math.unit(5 + 5 / 12, "feet"),
  2380. weight: math.unit(75, "kg"),
  2381. name: "Back",
  2382. image: {
  2383. source: "./media/characters/natasha/back.svg",
  2384. extra: 887.9 / 852.6,
  2385. bottom: 9.7 / 896.4
  2386. }
  2387. },
  2388. backAlt: {
  2389. height: math.unit(5 + 5 / 12, "feet"),
  2390. weight: math.unit(75, "kg"),
  2391. name: "Back (Alt)",
  2392. image: {
  2393. source: "./media/characters/natasha/back-alt.svg",
  2394. extra: 1236.7 / 1192,
  2395. bottom: 22.3 / 1258.2
  2396. }
  2397. },
  2398. dick: {
  2399. height: math.unit(1.772, "feet"),
  2400. name: "Dick",
  2401. image: {
  2402. source: "./media/characters/natasha/dick.svg"
  2403. }
  2404. },
  2405. },
  2406. [
  2407. {
  2408. name: "Normal",
  2409. height: math.unit(5 + 5 / 12, "feet")
  2410. },
  2411. {
  2412. name: "Large",
  2413. height: math.unit(12, "feet")
  2414. },
  2415. {
  2416. name: "Macro",
  2417. height: math.unit(100, "feet"),
  2418. default: true
  2419. },
  2420. {
  2421. name: "Macro+",
  2422. height: math.unit(260, "feet")
  2423. },
  2424. {
  2425. name: "Macro++",
  2426. height: math.unit(1, "mile")
  2427. },
  2428. ]
  2429. ))
  2430. characterMakers.push(() => makeCharacter(
  2431. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2432. {
  2433. front: {
  2434. height: math.unit(6, "feet"),
  2435. weight: math.unit(75, "kg"),
  2436. name: "Front",
  2437. image: {
  2438. source: "./media/characters/malik/front.svg"
  2439. }
  2440. },
  2441. side: {
  2442. height: math.unit(6, "feet"),
  2443. weight: math.unit(75, "kg"),
  2444. name: "Side",
  2445. image: {
  2446. source: "./media/characters/malik/side.svg",
  2447. extra: 1.1539
  2448. }
  2449. },
  2450. back: {
  2451. height: math.unit(6, "feet"),
  2452. weight: math.unit(75, "kg"),
  2453. name: "Back",
  2454. image: {
  2455. source: "./media/characters/malik/back.svg"
  2456. }
  2457. },
  2458. },
  2459. [
  2460. {
  2461. name: "Macro",
  2462. height: math.unit(156, "feet"),
  2463. default: true
  2464. },
  2465. {
  2466. name: "Macro+",
  2467. height: math.unit(1188, "feet")
  2468. },
  2469. ]
  2470. ))
  2471. characterMakers.push(() => makeCharacter(
  2472. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2473. {
  2474. front: {
  2475. height: math.unit(6, "feet"),
  2476. weight: math.unit(75, "kg"),
  2477. name: "Front",
  2478. image: {
  2479. source: "./media/characters/sefer/front.svg",
  2480. extra: 848 / 659,
  2481. bottom: 28.3 / 876.442
  2482. }
  2483. },
  2484. back: {
  2485. height: math.unit(6, "feet"),
  2486. weight: math.unit(75, "kg"),
  2487. name: "Back",
  2488. image: {
  2489. source: "./media/characters/sefer/back.svg",
  2490. extra: 864 / 695,
  2491. bottom: 10 / 871
  2492. }
  2493. },
  2494. frontDressed: {
  2495. height: math.unit(6, "feet"),
  2496. weight: math.unit(75, "kg"),
  2497. name: "Front (Dressed)",
  2498. image: {
  2499. source: "./media/characters/sefer/front-dressed.svg",
  2500. extra: 839 / 653,
  2501. bottom: 37.6 / 878
  2502. }
  2503. },
  2504. },
  2505. [
  2506. {
  2507. name: "Normal",
  2508. height: math.unit(6, "feet"),
  2509. default: true
  2510. },
  2511. ]
  2512. ))
  2513. characterMakers.push(() => makeCharacter(
  2514. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2515. {
  2516. body: {
  2517. height: math.unit(2.2428, "meter"),
  2518. weight: math.unit(124.738, "kg"),
  2519. name: "Body",
  2520. image: {
  2521. extra: 1225 / 1050,
  2522. source: "./media/characters/north/front.svg"
  2523. }
  2524. }
  2525. },
  2526. [
  2527. {
  2528. name: "Micro",
  2529. height: math.unit(4, "inches")
  2530. },
  2531. {
  2532. name: "Macro",
  2533. height: math.unit(63, "meters")
  2534. },
  2535. {
  2536. name: "Megamacro",
  2537. height: math.unit(101, "miles"),
  2538. default: true
  2539. }
  2540. ]
  2541. ))
  2542. characterMakers.push(() => makeCharacter(
  2543. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2544. {
  2545. angled: {
  2546. height: math.unit(4, "meter"),
  2547. weight: math.unit(150, "kg"),
  2548. name: "Angled",
  2549. image: {
  2550. source: "./media/characters/talan/angled-sfw.svg",
  2551. bottom: 29 / 3734
  2552. }
  2553. },
  2554. angledNsfw: {
  2555. height: math.unit(4, "meter"),
  2556. weight: math.unit(150, "kg"),
  2557. name: "Angled (NSFW)",
  2558. image: {
  2559. source: "./media/characters/talan/angled-nsfw.svg",
  2560. bottom: 29 / 3734
  2561. }
  2562. },
  2563. frontNsfw: {
  2564. height: math.unit(4, "meter"),
  2565. weight: math.unit(150, "kg"),
  2566. name: "Front (NSFW)",
  2567. image: {
  2568. source: "./media/characters/talan/front-nsfw.svg",
  2569. bottom: 29 / 3734
  2570. }
  2571. },
  2572. sideNsfw: {
  2573. height: math.unit(4, "meter"),
  2574. weight: math.unit(150, "kg"),
  2575. name: "Side (NSFW)",
  2576. image: {
  2577. source: "./media/characters/talan/side-nsfw.svg",
  2578. bottom: 29 / 3734
  2579. }
  2580. },
  2581. back: {
  2582. height: math.unit(4, "meter"),
  2583. weight: math.unit(150, "kg"),
  2584. name: "Back",
  2585. image: {
  2586. source: "./media/characters/talan/back.svg"
  2587. }
  2588. },
  2589. dickBottom: {
  2590. height: math.unit(0.621, "meter"),
  2591. name: "Dick (Bottom)",
  2592. image: {
  2593. source: "./media/characters/talan/dick-bottom.svg"
  2594. }
  2595. },
  2596. dickTop: {
  2597. height: math.unit(0.621, "meter"),
  2598. name: "Dick (Top)",
  2599. image: {
  2600. source: "./media/characters/talan/dick-top.svg"
  2601. }
  2602. },
  2603. dickSide: {
  2604. height: math.unit(0.305, "meter"),
  2605. name: "Dick (Side)",
  2606. image: {
  2607. source: "./media/characters/talan/dick-side.svg"
  2608. }
  2609. },
  2610. dickFront: {
  2611. height: math.unit(0.305, "meter"),
  2612. name: "Dick (Front)",
  2613. image: {
  2614. source: "./media/characters/talan/dick-front.svg"
  2615. }
  2616. },
  2617. },
  2618. [
  2619. {
  2620. name: "Normal",
  2621. height: math.unit(4, "meters")
  2622. },
  2623. {
  2624. name: "Macro",
  2625. height: math.unit(100, "meters")
  2626. },
  2627. {
  2628. name: "Megamacro",
  2629. height: math.unit(2, "miles"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Gigamacro",
  2634. height: math.unit(5000, "miles")
  2635. },
  2636. {
  2637. name: "Teramacro",
  2638. height: math.unit(100, "parsecs")
  2639. }
  2640. ]
  2641. ))
  2642. characterMakers.push(() => makeCharacter(
  2643. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2644. {
  2645. front: {
  2646. height: math.unit(2, "meter"),
  2647. weight: math.unit(90, "kg"),
  2648. name: "Front",
  2649. image: {
  2650. source: "./media/characters/gael'rathus/front.svg"
  2651. }
  2652. },
  2653. frontAlt: {
  2654. height: math.unit(2, "meter"),
  2655. weight: math.unit(90, "kg"),
  2656. name: "Front (alt)",
  2657. image: {
  2658. source: "./media/characters/gael'rathus/front-alt.svg"
  2659. }
  2660. },
  2661. frontAlt2: {
  2662. height: math.unit(2, "meter"),
  2663. weight: math.unit(90, "kg"),
  2664. name: "Front (alt 2)",
  2665. image: {
  2666. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2667. }
  2668. }
  2669. },
  2670. [
  2671. {
  2672. name: "Normal",
  2673. height: math.unit(9, "feet"),
  2674. default: true
  2675. },
  2676. {
  2677. name: "Large",
  2678. height: math.unit(25, "feet")
  2679. },
  2680. {
  2681. name: "Macro",
  2682. height: math.unit(0.25, "miles")
  2683. },
  2684. {
  2685. name: "Megamacro",
  2686. height: math.unit(10, "miles")
  2687. }
  2688. ]
  2689. ))
  2690. characterMakers.push(() => makeCharacter(
  2691. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2692. {
  2693. side: {
  2694. height: math.unit(2, "meter"),
  2695. weight: math.unit(140, "kg"),
  2696. name: "Side",
  2697. image: {
  2698. source: "./media/characters/sosha/side.svg",
  2699. bottom: 0.042
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(12, "feet"),
  2707. default: true
  2708. }
  2709. ]
  2710. ))
  2711. characterMakers.push(() => makeCharacter(
  2712. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2713. {
  2714. side: {
  2715. height: math.unit(5 + 5 / 12, "feet"),
  2716. weight: math.unit(170, "kg"),
  2717. name: "Side",
  2718. image: {
  2719. source: "./media/characters/runnola/side.svg",
  2720. extra: 741 / 448,
  2721. bottom: 0.05
  2722. }
  2723. },
  2724. },
  2725. [
  2726. {
  2727. name: "Small",
  2728. height: math.unit(3, "feet")
  2729. },
  2730. {
  2731. name: "Normal",
  2732. height: math.unit(5 + 5 / 12, "feet"),
  2733. default: true
  2734. },
  2735. {
  2736. name: "Big",
  2737. height: math.unit(10, "feet")
  2738. },
  2739. ]
  2740. ))
  2741. characterMakers.push(() => makeCharacter(
  2742. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2743. {
  2744. front: {
  2745. height: math.unit(2, "meter"),
  2746. weight: math.unit(50, "kg"),
  2747. name: "Front",
  2748. image: {
  2749. source: "./media/characters/kurribird/front.svg",
  2750. bottom: 0.015
  2751. }
  2752. },
  2753. frontAlt: {
  2754. height: math.unit(1.5, "meter"),
  2755. weight: math.unit(50, "kg"),
  2756. name: "Front (Alt)",
  2757. image: {
  2758. source: "./media/characters/kurribird/front-alt.svg",
  2759. extra: 1.45
  2760. }
  2761. },
  2762. },
  2763. [
  2764. {
  2765. name: "Normal",
  2766. height: math.unit(7, "feet")
  2767. },
  2768. {
  2769. name: "Big",
  2770. height: math.unit(12, "feet"),
  2771. default: true
  2772. },
  2773. {
  2774. name: "Macro",
  2775. height: math.unit(1500, "feet")
  2776. },
  2777. {
  2778. name: "Megamacro",
  2779. height: math.unit(2, "miles")
  2780. }
  2781. ]
  2782. ))
  2783. characterMakers.push(() => makeCharacter(
  2784. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2785. {
  2786. front: {
  2787. height: math.unit(2, "meter"),
  2788. weight: math.unit(80, "kg"),
  2789. name: "Front",
  2790. image: {
  2791. source: "./media/characters/elbial/front.svg",
  2792. extra: 1643 / 1556,
  2793. bottom: 60.2 / 1696
  2794. }
  2795. },
  2796. side: {
  2797. height: math.unit(2, "meter"),
  2798. weight: math.unit(80, "kg"),
  2799. name: "Side",
  2800. image: {
  2801. source: "./media/characters/elbial/side.svg",
  2802. extra: 1630 / 1565,
  2803. bottom: 71.5 / 1697
  2804. }
  2805. },
  2806. back: {
  2807. height: math.unit(2, "meter"),
  2808. weight: math.unit(80, "kg"),
  2809. name: "Back",
  2810. image: {
  2811. source: "./media/characters/elbial/back.svg",
  2812. extra: 1668 / 1595,
  2813. bottom: 5.6 / 1672
  2814. }
  2815. },
  2816. frontDressed: {
  2817. height: math.unit(2, "meter"),
  2818. weight: math.unit(80, "kg"),
  2819. name: "Front (Dressed)",
  2820. image: {
  2821. source: "./media/characters/elbial/front-dressed.svg",
  2822. extra: 1653 / 1584,
  2823. bottom: 57 / 1708
  2824. }
  2825. },
  2826. genitals: {
  2827. height: math.unit(2 / 3.367, "meter"),
  2828. name: "Genitals",
  2829. image: {
  2830. source: "./media/characters/elbial/genitals.svg"
  2831. }
  2832. },
  2833. },
  2834. [
  2835. {
  2836. name: "Large",
  2837. height: math.unit(100, "feet")
  2838. },
  2839. {
  2840. name: "Macro",
  2841. height: math.unit(500, "feet"),
  2842. default: true
  2843. },
  2844. {
  2845. name: "Megamacro",
  2846. height: math.unit(10, "miles")
  2847. },
  2848. {
  2849. name: "Gigamacro",
  2850. height: math.unit(25000, "miles")
  2851. },
  2852. {
  2853. name: "Full-Size",
  2854. height: math.unit(8000000, "gigaparsecs")
  2855. }
  2856. ]
  2857. ))
  2858. characterMakers.push(() => makeCharacter(
  2859. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2860. {
  2861. front: {
  2862. height: math.unit(2, "meter"),
  2863. weight: math.unit(60, "kg"),
  2864. name: "Front",
  2865. image: {
  2866. source: "./media/characters/noah/front.svg"
  2867. }
  2868. },
  2869. talons: {
  2870. height: math.unit(0.315, "meter"),
  2871. name: "Talons",
  2872. image: {
  2873. source: "./media/characters/noah/talons.svg"
  2874. }
  2875. }
  2876. },
  2877. [
  2878. {
  2879. name: "Large",
  2880. height: math.unit(50, "feet")
  2881. },
  2882. {
  2883. name: "Macro",
  2884. height: math.unit(750, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(50, "miles")
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(100000, "miles")
  2894. },
  2895. {
  2896. name: "Full-Size",
  2897. height: math.unit(3000000000, "miles")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(80, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/natalya/front.svg"
  2910. }
  2911. },
  2912. back: {
  2913. height: math.unit(2, "meter"),
  2914. weight: math.unit(80, "kg"),
  2915. name: "Back",
  2916. image: {
  2917. source: "./media/characters/natalya/back.svg"
  2918. }
  2919. }
  2920. },
  2921. [
  2922. {
  2923. name: "Normal",
  2924. height: math.unit(150, "feet"),
  2925. default: true
  2926. },
  2927. {
  2928. name: "Megamacro",
  2929. height: math.unit(5, "miles")
  2930. },
  2931. {
  2932. name: "Full-Size",
  2933. height: math.unit(600, "kiloparsecs")
  2934. }
  2935. ]
  2936. ))
  2937. characterMakers.push(() => makeCharacter(
  2938. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2939. {
  2940. front: {
  2941. height: math.unit(2, "meter"),
  2942. weight: math.unit(50, "kg"),
  2943. name: "Front",
  2944. image: {
  2945. source: "./media/characters/erestrebah/front.svg",
  2946. extra: 208 / 193,
  2947. bottom: 0.055
  2948. }
  2949. },
  2950. back: {
  2951. height: math.unit(2, "meter"),
  2952. weight: math.unit(50, "kg"),
  2953. name: "Back",
  2954. image: {
  2955. source: "./media/characters/erestrebah/back.svg",
  2956. extra: 1.3
  2957. }
  2958. }
  2959. },
  2960. [
  2961. {
  2962. name: "Normal",
  2963. height: math.unit(10, "feet")
  2964. },
  2965. {
  2966. name: "Large",
  2967. height: math.unit(50, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Macro",
  2972. height: math.unit(300, "feet")
  2973. },
  2974. {
  2975. name: "Macro+",
  2976. height: math.unit(750, "feet")
  2977. },
  2978. {
  2979. name: "Megamacro",
  2980. height: math.unit(3, "miles")
  2981. }
  2982. ]
  2983. ))
  2984. characterMakers.push(() => makeCharacter(
  2985. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2986. {
  2987. front: {
  2988. height: math.unit(2, "meter"),
  2989. weight: math.unit(80, "kg"),
  2990. name: "Front",
  2991. image: {
  2992. source: "./media/characters/jennifer/front.svg",
  2993. bottom: 0.11,
  2994. extra: 1.16
  2995. }
  2996. },
  2997. frontAlt: {
  2998. height: math.unit(2, "meter"),
  2999. weight: math.unit(80, "kg"),
  3000. name: "Front (Alt)",
  3001. image: {
  3002. source: "./media/characters/jennifer/front-alt.svg"
  3003. }
  3004. }
  3005. },
  3006. [
  3007. {
  3008. name: "Canon Height",
  3009. height: math.unit(120, "feet"),
  3010. default: true
  3011. },
  3012. {
  3013. name: "Macro+",
  3014. height: math.unit(300, "feet")
  3015. },
  3016. {
  3017. name: "Megamacro",
  3018. height: math.unit(20000, "feet")
  3019. }
  3020. ]
  3021. ))
  3022. characterMakers.push(() => makeCharacter(
  3023. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3024. {
  3025. front: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(50, "kg"),
  3028. name: "Front",
  3029. image: {
  3030. source: "./media/characters/kalista/front.svg",
  3031. extra: 1947 / 1700,
  3032. bottom: 76.6 / 1412.98
  3033. }
  3034. },
  3035. back: {
  3036. height: math.unit(2, "meter"),
  3037. weight: math.unit(50, "kg"),
  3038. name: "Back",
  3039. image: {
  3040. source: "./media/characters/kalista/back.svg",
  3041. extra: 1366 / 1156,
  3042. bottom: 33.9 / 1362.78
  3043. }
  3044. }
  3045. },
  3046. [
  3047. {
  3048. name: "Uncomfortably Small",
  3049. height: math.unit(10, "feet")
  3050. },
  3051. {
  3052. name: "Small",
  3053. height: math.unit(30, "feet")
  3054. },
  3055. {
  3056. name: "Macro",
  3057. height: math.unit(100, "feet"),
  3058. default: true
  3059. },
  3060. {
  3061. name: "Macro+",
  3062. height: math.unit(2000, "feet")
  3063. },
  3064. {
  3065. name: "True Form",
  3066. height: math.unit(8924, "miles")
  3067. }
  3068. ]
  3069. ))
  3070. characterMakers.push(() => makeCharacter(
  3071. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3072. {
  3073. front: {
  3074. height: math.unit(2, "meter"),
  3075. weight: math.unit(120, "kg"),
  3076. name: "Front",
  3077. image: {
  3078. source: "./media/characters/ggv/front.svg"
  3079. }
  3080. },
  3081. side: {
  3082. height: math.unit(2, "meter"),
  3083. weight: math.unit(120, "kg"),
  3084. name: "Side",
  3085. image: {
  3086. source: "./media/characters/ggv/side.svg"
  3087. }
  3088. }
  3089. },
  3090. [
  3091. {
  3092. name: "Extremely Puny",
  3093. height: math.unit(9 + 5 / 12, "feet")
  3094. },
  3095. {
  3096. name: "Horribly Small",
  3097. height: math.unit(47.7, "miles"),
  3098. default: true
  3099. },
  3100. {
  3101. name: "Reasonably Sized",
  3102. height: math.unit(25000, "parsecs")
  3103. },
  3104. {
  3105. name: "Slightly Uncompressed",
  3106. height: math.unit(7.77e31, "parsecs")
  3107. },
  3108. {
  3109. name: "Omniversal",
  3110. height: math.unit(1e300, "meters")
  3111. },
  3112. ]
  3113. ))
  3114. characterMakers.push(() => makeCharacter(
  3115. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3116. {
  3117. front: {
  3118. height: math.unit(2, "meter"),
  3119. weight: math.unit(75, "lb"),
  3120. name: "Front",
  3121. image: {
  3122. source: "./media/characters/napalm/front.svg"
  3123. }
  3124. },
  3125. back: {
  3126. height: math.unit(2, "meter"),
  3127. weight: math.unit(75, "lb"),
  3128. name: "Back",
  3129. image: {
  3130. source: "./media/characters/napalm/back.svg"
  3131. }
  3132. }
  3133. },
  3134. [
  3135. {
  3136. name: "Standard",
  3137. height: math.unit(55, "feet"),
  3138. default: true
  3139. }
  3140. ]
  3141. ))
  3142. characterMakers.push(() => makeCharacter(
  3143. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3144. {
  3145. front: {
  3146. height: math.unit(7 + 5 / 6, "feet"),
  3147. weight: math.unit(325, "lb"),
  3148. name: "Front",
  3149. image: {
  3150. source: "./media/characters/asana/front.svg",
  3151. extra: 1133 / 1060,
  3152. bottom: 15.2 / 1148.6
  3153. }
  3154. },
  3155. back: {
  3156. height: math.unit(7 + 5 / 6, "feet"),
  3157. weight: math.unit(325, "lb"),
  3158. name: "Back",
  3159. image: {
  3160. source: "./media/characters/asana/back.svg",
  3161. extra: 1114 / 1043,
  3162. bottom: 5 / 1120
  3163. }
  3164. },
  3165. dressedDark: {
  3166. height: math.unit(7 + 5 / 6, "feet"),
  3167. weight: math.unit(325, "lb"),
  3168. name: "Dressed (Dark)",
  3169. image: {
  3170. source: "./media/characters/asana/dressed-dark.svg",
  3171. extra: 1133 / 1060,
  3172. bottom: 15.2 / 1148.6
  3173. }
  3174. },
  3175. dressedLight: {
  3176. height: math.unit(7 + 5 / 6, "feet"),
  3177. weight: math.unit(325, "lb"),
  3178. name: "Dressed (Light)",
  3179. image: {
  3180. source: "./media/characters/asana/dressed-light.svg",
  3181. extra: 1133 / 1060,
  3182. bottom: 15.2 / 1148.6
  3183. }
  3184. },
  3185. },
  3186. [
  3187. {
  3188. name: "Standard",
  3189. height: math.unit(7 + 5 / 6, "feet"),
  3190. default: true
  3191. },
  3192. {
  3193. name: "Large",
  3194. height: math.unit(10, "meters")
  3195. },
  3196. {
  3197. name: "Macro",
  3198. height: math.unit(2500, "meters")
  3199. },
  3200. {
  3201. name: "Megamacro",
  3202. height: math.unit(5e6, "meters")
  3203. },
  3204. {
  3205. name: "Examacro",
  3206. height: math.unit(5e12, "lightyears")
  3207. },
  3208. {
  3209. name: "Max Size",
  3210. height: math.unit(1e31, "lightyears")
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3216. {
  3217. front: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(60, "kg"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/ebony/front.svg",
  3223. bottom: 0.03,
  3224. extra: 1045 / 810 + 0.03
  3225. }
  3226. },
  3227. side: {
  3228. height: math.unit(2, "meter"),
  3229. weight: math.unit(60, "kg"),
  3230. name: "Side",
  3231. image: {
  3232. source: "./media/characters/ebony/side.svg",
  3233. bottom: 0.03,
  3234. extra: 1045 / 810 + 0.03
  3235. }
  3236. },
  3237. back: {
  3238. height: math.unit(2, "meter"),
  3239. weight: math.unit(60, "kg"),
  3240. name: "Back",
  3241. image: {
  3242. source: "./media/characters/ebony/back.svg",
  3243. bottom: 0.01,
  3244. extra: 1045 / 810 + 0.01
  3245. }
  3246. },
  3247. },
  3248. [
  3249. // TODO check why I did this lol
  3250. {
  3251. name: "Standard",
  3252. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3253. default: true
  3254. },
  3255. {
  3256. name: "Macro",
  3257. height: math.unit(200, "feet")
  3258. },
  3259. {
  3260. name: "Gigamacro",
  3261. height: math.unit(13000, "km")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(6, "feet"),
  3270. weight: math.unit(175, "lb"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/mountain/front.svg",
  3274. extra: 972 / 955,
  3275. bottom: 64 / 1036.6
  3276. }
  3277. },
  3278. back: {
  3279. height: math.unit(6, "feet"),
  3280. weight: math.unit(175, "lb"),
  3281. name: "Back",
  3282. image: {
  3283. source: "./media/characters/mountain/back.svg",
  3284. extra: 970 / 950,
  3285. bottom: 28.25 / 999
  3286. }
  3287. },
  3288. },
  3289. [
  3290. {
  3291. name: "Large",
  3292. height: math.unit(20, "meters")
  3293. },
  3294. {
  3295. name: "Macro",
  3296. height: math.unit(300, "meters")
  3297. },
  3298. {
  3299. name: "Gigamacro",
  3300. height: math.unit(10000, "km"),
  3301. default: true
  3302. },
  3303. {
  3304. name: "Examacro",
  3305. height: math.unit(10e9, "lightyears")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(8, "feet"),
  3314. weight: math.unit(500, "lb"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/rick/front.svg"
  3318. }
  3319. }
  3320. },
  3321. [
  3322. {
  3323. name: "Normal",
  3324. height: math.unit(8, "feet"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Macro",
  3329. height: math.unit(5, "km")
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(8, "feet"),
  3338. weight: math.unit(120, "lb"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/ona/front.svg"
  3342. }
  3343. },
  3344. frontAlt: {
  3345. height: math.unit(8, "feet"),
  3346. weight: math.unit(120, "lb"),
  3347. name: "Front (Alt)",
  3348. image: {
  3349. source: "./media/characters/ona/front-alt.svg"
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(8, "feet"),
  3354. weight: math.unit(120, "lb"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/ona/back.svg"
  3358. }
  3359. },
  3360. foot: {
  3361. height: math.unit(1.1, "feet"),
  3362. name: "Foot",
  3363. image: {
  3364. source: "./media/characters/ona/foot.svg"
  3365. }
  3366. }
  3367. },
  3368. [
  3369. {
  3370. name: "Megamacro",
  3371. height: math.unit(70, "km"),
  3372. default: true
  3373. },
  3374. {
  3375. name: "Gigamacro",
  3376. height: math.unit(681818, "miles")
  3377. },
  3378. {
  3379. name: "Examacro",
  3380. height: math.unit(3800000, "lightyears")
  3381. },
  3382. ]
  3383. ))
  3384. characterMakers.push(() => makeCharacter(
  3385. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3386. {
  3387. front: {
  3388. height: math.unit(12, "feet"),
  3389. weight: math.unit(3000, "lb"),
  3390. name: "Front",
  3391. image: {
  3392. source: "./media/characters/mech/front.svg",
  3393. bottom: 0.025,
  3394. }
  3395. },
  3396. back: {
  3397. height: math.unit(12, "feet"),
  3398. weight: math.unit(3000, "lb"),
  3399. name: "Back",
  3400. image: {
  3401. source: "./media/characters/mech/back.svg",
  3402. bottom: 0.03,
  3403. }
  3404. }
  3405. },
  3406. [
  3407. {
  3408. name: "Normal",
  3409. height: math.unit(12, "feet")
  3410. },
  3411. {
  3412. name: "Macro",
  3413. height: math.unit(300, "feet"),
  3414. default: true
  3415. },
  3416. {
  3417. name: "Macro+",
  3418. height: math.unit(1500, "feet")
  3419. },
  3420. ]
  3421. ))
  3422. characterMakers.push(() => makeCharacter(
  3423. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3424. {
  3425. front: {
  3426. height: math.unit(1.3, "meter"),
  3427. weight: math.unit(30, "kg"),
  3428. name: "Front",
  3429. image: {
  3430. source: "./media/characters/gregory/front.svg",
  3431. }
  3432. }
  3433. },
  3434. [
  3435. {
  3436. name: "Normal",
  3437. height: math.unit(1.3, "meter"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(20, "meter")
  3443. }
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(2.8, "meter"),
  3451. weight: math.unit(200, "kg"),
  3452. name: "Front",
  3453. image: {
  3454. source: "./media/characters/elory/front.svg",
  3455. }
  3456. }
  3457. },
  3458. [
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(2.8, "meter"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(38, "meter")
  3467. }
  3468. ]
  3469. ))
  3470. characterMakers.push(() => makeCharacter(
  3471. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3472. {
  3473. front: {
  3474. height: math.unit(470, "feet"),
  3475. weight: math.unit(924, "tons"),
  3476. name: "Front",
  3477. image: {
  3478. source: "./media/characters/angelpatamon/front.svg",
  3479. }
  3480. }
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(470, "feet"),
  3486. default: true
  3487. },
  3488. {
  3489. name: "Deity Size I",
  3490. height: math.unit(28651.2, "km")
  3491. },
  3492. {
  3493. name: "Deity Size II",
  3494. height: math.unit(171907.2, "km")
  3495. }
  3496. ]
  3497. ))
  3498. characterMakers.push(() => makeCharacter(
  3499. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3500. {
  3501. side: {
  3502. height: math.unit(7.2, "meter"),
  3503. weight: math.unit(8.2, "tons"),
  3504. name: "Side",
  3505. image: {
  3506. source: "./media/characters/cryae/side.svg",
  3507. extra: 3500 / 1500
  3508. }
  3509. }
  3510. },
  3511. [
  3512. {
  3513. name: "Normal",
  3514. height: math.unit(7.2, "meter"),
  3515. default: true
  3516. }
  3517. ]
  3518. ))
  3519. characterMakers.push(() => makeCharacter(
  3520. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3521. {
  3522. front: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(175, "lb"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/xera/front.svg",
  3528. extra: 2377 / 1972,
  3529. bottom: 75.5 / 2452
  3530. }
  3531. },
  3532. side: {
  3533. height: math.unit(6, "feet"),
  3534. weight: math.unit(175, "lb"),
  3535. name: "Side",
  3536. image: {
  3537. source: "./media/characters/xera/side.svg",
  3538. extra: 2345 / 2019,
  3539. bottom: 39.7 / 2384
  3540. }
  3541. },
  3542. back: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(175, "lb"),
  3545. name: "Back",
  3546. image: {
  3547. source: "./media/characters/xera/back.svg",
  3548. extra: 2095 / 1984,
  3549. bottom: 67 / 2166
  3550. }
  3551. },
  3552. },
  3553. [
  3554. {
  3555. name: "Small",
  3556. height: math.unit(10, "feet")
  3557. },
  3558. {
  3559. name: "Macro",
  3560. height: math.unit(500, "meters"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Macro+",
  3565. height: math.unit(10, "km")
  3566. },
  3567. {
  3568. name: "Gigamacro",
  3569. height: math.unit(25000, "km")
  3570. },
  3571. {
  3572. name: "Teramacro",
  3573. height: math.unit(3e6, "km")
  3574. }
  3575. ]
  3576. ))
  3577. characterMakers.push(() => makeCharacter(
  3578. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3579. {
  3580. front: {
  3581. height: math.unit(6, "feet"),
  3582. weight: math.unit(175, "lb"),
  3583. name: "Front",
  3584. image: {
  3585. source: "./media/characters/nebula/front.svg",
  3586. extra: 2566 / 2362,
  3587. bottom: 81 / 2644
  3588. }
  3589. }
  3590. },
  3591. [
  3592. {
  3593. name: "Small",
  3594. height: math.unit(4.5, "meters")
  3595. },
  3596. {
  3597. name: "Macro",
  3598. height: math.unit(1500, "meters"),
  3599. default: true
  3600. },
  3601. {
  3602. name: "Megamacro",
  3603. height: math.unit(150, "km")
  3604. },
  3605. {
  3606. name: "Gigamacro",
  3607. height: math.unit(27000, "km")
  3608. }
  3609. ]
  3610. ))
  3611. characterMakers.push(() => makeCharacter(
  3612. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3613. {
  3614. front: {
  3615. height: math.unit(6, "feet"),
  3616. weight: math.unit(225, "lb"),
  3617. name: "Front",
  3618. image: {
  3619. source: "./media/characters/abysgar/front.svg"
  3620. }
  3621. }
  3622. },
  3623. [
  3624. {
  3625. name: "Small",
  3626. height: math.unit(4.5, "meters")
  3627. },
  3628. {
  3629. name: "Macro",
  3630. height: math.unit(1250, "meters"),
  3631. default: true
  3632. },
  3633. {
  3634. name: "Megamacro",
  3635. height: math.unit(125, "km")
  3636. },
  3637. {
  3638. name: "Gigamacro",
  3639. height: math.unit(26000, "km")
  3640. }
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(6, "feet"),
  3648. weight: math.unit(180, "lb"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/yakuz/front.svg"
  3652. }
  3653. }
  3654. },
  3655. [
  3656. {
  3657. name: "Small",
  3658. height: math.unit(5, "meters")
  3659. },
  3660. {
  3661. name: "Macro",
  3662. height: math.unit(1500, "meters"),
  3663. default: true
  3664. },
  3665. {
  3666. name: "Megamacro",
  3667. height: math.unit(200, "km")
  3668. },
  3669. {
  3670. name: "Gigamacro",
  3671. height: math.unit(100000, "km")
  3672. }
  3673. ]
  3674. ))
  3675. characterMakers.push(() => makeCharacter(
  3676. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3677. {
  3678. front: {
  3679. height: math.unit(6, "feet"),
  3680. weight: math.unit(175, "lb"),
  3681. name: "Front",
  3682. image: {
  3683. source: "./media/characters/mirova/front.svg",
  3684. extra: 3334 / 3071,
  3685. bottom: 42 / 3375.6
  3686. }
  3687. }
  3688. },
  3689. [
  3690. {
  3691. name: "Small",
  3692. height: math.unit(5, "meters")
  3693. },
  3694. {
  3695. name: "Macro",
  3696. height: math.unit(900, "meters"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Megamacro",
  3701. height: math.unit(135, "km")
  3702. },
  3703. {
  3704. name: "Gigamacro",
  3705. height: math.unit(20000, "km")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3711. {
  3712. side: {
  3713. height: math.unit(28.35, "feet"),
  3714. weight: math.unit(99.75, "tons"),
  3715. name: "Side",
  3716. image: {
  3717. source: "./media/characters/asana-mech/side.svg",
  3718. extra: 923 / 699,
  3719. bottom: 50 / 975
  3720. }
  3721. },
  3722. chaingun: {
  3723. height: math.unit(7, "feet"),
  3724. weight: math.unit(2400, "lb"),
  3725. name: "Chaingun",
  3726. image: {
  3727. source: "./media/characters/asana-mech/chaingun.svg"
  3728. }
  3729. },
  3730. laser: {
  3731. height: math.unit(7.12, "feet"),
  3732. weight: math.unit(2000, "lb"),
  3733. name: "Laser",
  3734. image: {
  3735. source: "./media/characters/asana-mech/laser.svg"
  3736. }
  3737. },
  3738. },
  3739. [
  3740. {
  3741. name: "Normal",
  3742. height: math.unit(28.35, "feet"),
  3743. default: true
  3744. },
  3745. {
  3746. name: "Macro",
  3747. height: math.unit(2500, "feet")
  3748. },
  3749. {
  3750. name: "Megamacro",
  3751. height: math.unit(25, "miles")
  3752. },
  3753. {
  3754. name: "Examacro",
  3755. height: math.unit(6e8, "lightyears")
  3756. },
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(5, "meters"),
  3764. weight: math.unit(1000, "kg"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/asche/front.svg",
  3768. extra: 1258 / 1190,
  3769. bottom: 47 / 1305
  3770. }
  3771. },
  3772. frontUnderwear: {
  3773. height: math.unit(5, "meters"),
  3774. weight: math.unit(1000, "kg"),
  3775. name: "Front (Underwear)",
  3776. image: {
  3777. source: "./media/characters/asche/front-underwear.svg",
  3778. extra: 1258 / 1190,
  3779. bottom: 47 / 1305
  3780. }
  3781. },
  3782. frontDressed: {
  3783. height: math.unit(5, "meters"),
  3784. weight: math.unit(1000, "kg"),
  3785. name: "Front (Dressed)",
  3786. image: {
  3787. source: "./media/characters/asche/front-dressed.svg",
  3788. extra: 1258 / 1190,
  3789. bottom: 47 / 1305
  3790. }
  3791. },
  3792. frontArmor: {
  3793. height: math.unit(5, "meters"),
  3794. weight: math.unit(1000, "kg"),
  3795. name: "Front (Armored)",
  3796. image: {
  3797. source: "./media/characters/asche/front-armored.svg",
  3798. extra: 1374 / 1308,
  3799. bottom: 23 / 1397
  3800. }
  3801. },
  3802. mp724: {
  3803. height: math.unit(0.96, "meters"),
  3804. weight: math.unit(38, "kg"),
  3805. name: "H&K MP724",
  3806. image: {
  3807. source: "./media/characters/asche/h&k-mp724.svg"
  3808. }
  3809. },
  3810. side: {
  3811. height: math.unit(5, "meters"),
  3812. weight: math.unit(1000, "kg"),
  3813. name: "Side",
  3814. image: {
  3815. source: "./media/characters/asche/side.svg",
  3816. extra: 1717 / 1609,
  3817. bottom: 0.005
  3818. }
  3819. },
  3820. back: {
  3821. height: math.unit(5, "meters"),
  3822. weight: math.unit(1000, "kg"),
  3823. name: "Back",
  3824. image: {
  3825. source: "./media/characters/asche/back.svg",
  3826. extra: 1570 / 1501
  3827. }
  3828. },
  3829. },
  3830. [
  3831. {
  3832. name: "DEFCON 5",
  3833. height: math.unit(5, "meters")
  3834. },
  3835. {
  3836. name: "DEFCON 4",
  3837. height: math.unit(500, "meters"),
  3838. default: true
  3839. },
  3840. {
  3841. name: "DEFCON 3",
  3842. height: math.unit(5, "km")
  3843. },
  3844. {
  3845. name: "DEFCON 2",
  3846. height: math.unit(500, "km")
  3847. },
  3848. {
  3849. name: "DEFCON 1",
  3850. height: math.unit(500000, "km")
  3851. },
  3852. {
  3853. name: "DEFCON 0",
  3854. height: math.unit(3, "gigaparsecs")
  3855. },
  3856. ]
  3857. ))
  3858. characterMakers.push(() => makeCharacter(
  3859. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3860. {
  3861. front: {
  3862. height: math.unit(2, "meters"),
  3863. weight: math.unit(76, "kg"),
  3864. name: "Front",
  3865. image: {
  3866. source: "./media/characters/gale/front.svg"
  3867. }
  3868. },
  3869. frontAlt1: {
  3870. height: math.unit(2, "meters"),
  3871. weight: math.unit(76, "kg"),
  3872. name: "Front (Alt 1)",
  3873. image: {
  3874. source: "./media/characters/gale/front-alt-1.svg"
  3875. }
  3876. },
  3877. frontAlt2: {
  3878. height: math.unit(2, "meters"),
  3879. weight: math.unit(76, "kg"),
  3880. name: "Front (Alt 2)",
  3881. image: {
  3882. source: "./media/characters/gale/front-alt-2.svg"
  3883. }
  3884. },
  3885. },
  3886. [
  3887. {
  3888. name: "Normal",
  3889. height: math.unit(7, "feet")
  3890. },
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(150, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Macro+",
  3898. height: math.unit(300, "feet")
  3899. },
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(2, "meters"),
  3907. weight: math.unit(76, "kg"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/draylen/front.svg"
  3911. }
  3912. }
  3913. },
  3914. [
  3915. {
  3916. name: "Macro",
  3917. height: math.unit(150, "feet"),
  3918. default: true
  3919. }
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(7 + 9 / 12, "feet"),
  3927. weight: math.unit(379, "lbs"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/chez/front.svg"
  3931. }
  3932. },
  3933. side: {
  3934. height: math.unit(7 + 9 / 12, "feet"),
  3935. weight: math.unit(379, "lbs"),
  3936. name: "Side",
  3937. image: {
  3938. source: "./media/characters/chez/side.svg"
  3939. }
  3940. }
  3941. },
  3942. [
  3943. {
  3944. name: "Normal",
  3945. height: math.unit(7 + 9 / 12, "feet"),
  3946. default: true
  3947. },
  3948. {
  3949. name: "God King",
  3950. height: math.unit(9750000, "meters")
  3951. }
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3956. {
  3957. front: {
  3958. height: math.unit(6, "feet"),
  3959. weight: math.unit(275, "lbs"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/kaylum/front.svg",
  3963. bottom: 0.01,
  3964. extra: 1166 / 1031
  3965. }
  3966. },
  3967. frontWingless: {
  3968. height: math.unit(6, "feet"),
  3969. weight: math.unit(275, "lbs"),
  3970. name: "Front (Wingless)",
  3971. image: {
  3972. source: "./media/characters/kaylum/front-wingless.svg",
  3973. bottom: 0.01,
  3974. extra: 1117 / 1031
  3975. }
  3976. }
  3977. },
  3978. [
  3979. {
  3980. name: "Normal",
  3981. height: math.unit(3.05, "meters")
  3982. },
  3983. {
  3984. name: "Master",
  3985. height: math.unit(5.5, "meters")
  3986. },
  3987. {
  3988. name: "Rampage",
  3989. height: math.unit(19, "meters")
  3990. },
  3991. {
  3992. name: "Macro Lite",
  3993. height: math.unit(37, "meters")
  3994. },
  3995. {
  3996. name: "Hyper Predator",
  3997. height: math.unit(61, "meters")
  3998. },
  3999. {
  4000. name: "Macro",
  4001. height: math.unit(138, "meters"),
  4002. default: true
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(6, "feet"),
  4011. weight: math.unit(150, "lbs"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/geta/front.svg"
  4015. }
  4016. }
  4017. },
  4018. [
  4019. {
  4020. name: "Micro",
  4021. height: math.unit(3, "inches"),
  4022. default: true
  4023. },
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(5 + 5 / 12, "feet")
  4027. }
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(300, "lbs"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/tyrnn/front.svg"
  4039. }
  4040. }
  4041. },
  4042. [
  4043. {
  4044. name: "Main Height",
  4045. height: math.unit(355, "feet"),
  4046. default: true
  4047. },
  4048. {
  4049. name: "Fave. Height",
  4050. height: math.unit(2400, "feet")
  4051. }
  4052. ]
  4053. ))
  4054. characterMakers.push(() => makeCharacter(
  4055. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4056. {
  4057. front: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(300, "lbs"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/appledectomy/front.svg"
  4063. }
  4064. }
  4065. },
  4066. [
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(2500, "feet")
  4070. },
  4071. {
  4072. name: "Megamacro",
  4073. height: math.unit(50, "miles"),
  4074. default: true
  4075. },
  4076. {
  4077. name: "Gigamacro",
  4078. height: math.unit(5000, "miles")
  4079. },
  4080. {
  4081. name: "Teramacro",
  4082. height: math.unit(250000, "miles")
  4083. },
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4088. {
  4089. front: {
  4090. height: math.unit(6, "feet"),
  4091. weight: math.unit(200, "lbs"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/vulpes/front.svg",
  4095. extra: 573 / 543,
  4096. bottom: 0.033
  4097. }
  4098. },
  4099. side: {
  4100. height: math.unit(6, "feet"),
  4101. weight: math.unit(200, "lbs"),
  4102. name: "Side",
  4103. image: {
  4104. source: "./media/characters/vulpes/side.svg",
  4105. extra: 577 / 549,
  4106. bottom: 11 / 588
  4107. }
  4108. },
  4109. back: {
  4110. height: math.unit(6, "feet"),
  4111. weight: math.unit(200, "lbs"),
  4112. name: "Back",
  4113. image: {
  4114. source: "./media/characters/vulpes/back.svg",
  4115. extra: 573 / 549,
  4116. bottom: 20 / 593
  4117. }
  4118. },
  4119. feet: {
  4120. height: math.unit(1.276, "feet"),
  4121. name: "Feet",
  4122. image: {
  4123. source: "./media/characters/vulpes/feet.svg"
  4124. }
  4125. },
  4126. maw: {
  4127. height: math.unit(1.18, "feet"),
  4128. name: "Maw",
  4129. image: {
  4130. source: "./media/characters/vulpes/maw.svg"
  4131. }
  4132. },
  4133. },
  4134. [
  4135. {
  4136. name: "Micro",
  4137. height: math.unit(2, "inches")
  4138. },
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(6.3, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(850, "feet")
  4146. },
  4147. {
  4148. name: "Megamacro",
  4149. height: math.unit(7500, "feet"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(570000, "miles")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4160. {
  4161. front: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(210, "lbs"),
  4164. name: "Front",
  4165. image: {
  4166. source: "./media/characters/rain-fallen/front.svg"
  4167. }
  4168. },
  4169. side: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(210, "lbs"),
  4172. name: "Side",
  4173. image: {
  4174. source: "./media/characters/rain-fallen/side.svg"
  4175. }
  4176. },
  4177. back: {
  4178. height: math.unit(6, "feet"),
  4179. weight: math.unit(210, "lbs"),
  4180. name: "Back",
  4181. image: {
  4182. source: "./media/characters/rain-fallen/back.svg"
  4183. }
  4184. },
  4185. feral: {
  4186. height: math.unit(9, "feet"),
  4187. weight: math.unit(700, "lbs"),
  4188. name: "Feral",
  4189. image: {
  4190. source: "./media/characters/rain-fallen/feral.svg"
  4191. }
  4192. },
  4193. },
  4194. [
  4195. {
  4196. name: "Normal",
  4197. height: math.unit(5, "meter")
  4198. },
  4199. {
  4200. name: "Macro",
  4201. height: math.unit(150, "meter"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Megamacro",
  4206. height: math.unit(278e6, "meter")
  4207. },
  4208. {
  4209. name: "Gigamacro",
  4210. height: math.unit(2e9, "meter")
  4211. },
  4212. {
  4213. name: "Teramacro",
  4214. height: math.unit(8e12, "meter")
  4215. },
  4216. {
  4217. name: "Devourer",
  4218. height: math.unit(14, "zettameters")
  4219. },
  4220. {
  4221. name: "Scarlet King",
  4222. height: math.unit(18, "yottameters")
  4223. },
  4224. {
  4225. name: "Void",
  4226. height: math.unit(6.66e66, "yottameters")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4232. {
  4233. standing: {
  4234. height: math.unit(6, "feet"),
  4235. weight: math.unit(180, "lbs"),
  4236. name: "Standing",
  4237. image: {
  4238. source: "./media/characters/zaakira/standing.svg"
  4239. }
  4240. },
  4241. laying: {
  4242. height: math.unit(3, "feet"),
  4243. weight: math.unit(180, "lbs"),
  4244. name: "Laying",
  4245. image: {
  4246. source: "./media/characters/zaakira/laying.svg"
  4247. }
  4248. },
  4249. },
  4250. [
  4251. {
  4252. name: "Normal",
  4253. height: math.unit(12, "feet")
  4254. },
  4255. {
  4256. name: "Macro",
  4257. height: math.unit(279, "feet"),
  4258. default: true
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4264. {
  4265. femSfw: {
  4266. height: math.unit(8, "feet"),
  4267. weight: math.unit(350, "lb"),
  4268. name: "Fem",
  4269. image: {
  4270. source: "./media/characters/sigvald/fem-sfw.svg",
  4271. extra: 182 / 164,
  4272. bottom: 8.7 / 190.5
  4273. }
  4274. },
  4275. femNsfw: {
  4276. height: math.unit(8, "feet"),
  4277. weight: math.unit(350, "lb"),
  4278. name: "Fem (NSFW)",
  4279. image: {
  4280. source: "./media/characters/sigvald/fem-nsfw.svg",
  4281. extra: 182 / 164,
  4282. bottom: 8.7 / 190.5
  4283. }
  4284. },
  4285. maleNsfw: {
  4286. height: math.unit(8, "feet"),
  4287. weight: math.unit(350, "lb"),
  4288. name: "Male (NSFW)",
  4289. image: {
  4290. source: "./media/characters/sigvald/male-nsfw.svg",
  4291. extra: 182 / 164,
  4292. bottom: 8.7 / 190.5
  4293. }
  4294. },
  4295. hermNsfw: {
  4296. height: math.unit(8, "feet"),
  4297. weight: math.unit(350, "lb"),
  4298. name: "Herm (NSFW)",
  4299. image: {
  4300. source: "./media/characters/sigvald/herm-nsfw.svg",
  4301. extra: 182 / 164,
  4302. bottom: 8.7 / 190.5
  4303. }
  4304. },
  4305. dick: {
  4306. height: math.unit(2.36, "feet"),
  4307. name: "Dick",
  4308. image: {
  4309. source: "./media/characters/sigvald/dick.svg"
  4310. }
  4311. },
  4312. eye: {
  4313. height: math.unit(0.31, "feet"),
  4314. name: "Eye",
  4315. image: {
  4316. source: "./media/characters/sigvald/eye.svg"
  4317. }
  4318. },
  4319. mouth: {
  4320. height: math.unit(0.92, "feet"),
  4321. name: "Mouth",
  4322. image: {
  4323. source: "./media/characters/sigvald/mouth.svg"
  4324. }
  4325. },
  4326. paws: {
  4327. height: math.unit(2.2, "feet"),
  4328. name: "Paws",
  4329. image: {
  4330. source: "./media/characters/sigvald/paws.svg"
  4331. }
  4332. }
  4333. },
  4334. [
  4335. {
  4336. name: "Normal",
  4337. height: math.unit(8, "feet")
  4338. },
  4339. {
  4340. name: "Large",
  4341. height: math.unit(12, "feet")
  4342. },
  4343. {
  4344. name: "Larger",
  4345. height: math.unit(20, "feet")
  4346. },
  4347. {
  4348. name: "Macro",
  4349. height: math.unit(150, "feet")
  4350. },
  4351. {
  4352. name: "Macro+",
  4353. height: math.unit(200, "feet"),
  4354. default: true
  4355. },
  4356. ]
  4357. ))
  4358. characterMakers.push(() => makeCharacter(
  4359. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4360. {
  4361. side: {
  4362. height: math.unit(12, "feet"),
  4363. weight: math.unit(2000, "kg"),
  4364. name: "Side",
  4365. image: {
  4366. source: "./media/characters/scott/side.svg",
  4367. extra: 754 / 724,
  4368. bottom: 0.069
  4369. }
  4370. },
  4371. upright: {
  4372. height: math.unit(12, "feet"),
  4373. weight: math.unit(2000, "kg"),
  4374. name: "Upright",
  4375. image: {
  4376. source: "./media/characters/scott/upright.svg",
  4377. extra: 3881 / 3722,
  4378. bottom: 0.05
  4379. }
  4380. },
  4381. },
  4382. [
  4383. {
  4384. name: "Normal",
  4385. height: math.unit(12, "feet"),
  4386. default: true
  4387. },
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4392. {
  4393. side: {
  4394. height: math.unit(8, "meters"),
  4395. weight: math.unit(84755, "lbs"),
  4396. name: "Side",
  4397. image: {
  4398. source: "./media/characters/tobias/side.svg",
  4399. extra: 1474 / 1096,
  4400. bottom: 38.9 / 1513.1235
  4401. }
  4402. },
  4403. },
  4404. [
  4405. {
  4406. name: "Normal",
  4407. height: math.unit(8, "meters"),
  4408. default: true
  4409. },
  4410. ]
  4411. ))
  4412. characterMakers.push(() => makeCharacter(
  4413. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4414. {
  4415. front: {
  4416. height: math.unit(5.5, "feet"),
  4417. weight: math.unit(400, "lbs"),
  4418. name: "Front",
  4419. image: {
  4420. source: "./media/characters/kieran/front.svg",
  4421. extra: 2694 / 2364,
  4422. bottom: 217 / 2908
  4423. }
  4424. },
  4425. side: {
  4426. height: math.unit(5.5, "feet"),
  4427. weight: math.unit(400, "lbs"),
  4428. name: "Side",
  4429. image: {
  4430. source: "./media/characters/kieran/side.svg",
  4431. extra: 875 / 777,
  4432. bottom: 84.6 / 959
  4433. }
  4434. },
  4435. },
  4436. [
  4437. {
  4438. name: "Normal",
  4439. height: math.unit(5.5, "feet"),
  4440. default: true
  4441. },
  4442. ]
  4443. ))
  4444. characterMakers.push(() => makeCharacter(
  4445. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4446. {
  4447. side: {
  4448. height: math.unit(2, "meters"),
  4449. weight: math.unit(70, "kg"),
  4450. name: "Side",
  4451. image: {
  4452. source: "./media/characters/sanya/side.svg",
  4453. bottom: 0.02,
  4454. extra: 1.02
  4455. }
  4456. },
  4457. },
  4458. [
  4459. {
  4460. name: "Small",
  4461. height: math.unit(2, "meters")
  4462. },
  4463. {
  4464. name: "Normal",
  4465. height: math.unit(3, "meters")
  4466. },
  4467. {
  4468. name: "Macro",
  4469. height: math.unit(16, "meters"),
  4470. default: true
  4471. },
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4476. {
  4477. front: {
  4478. height: math.unit(2, "meters"),
  4479. weight: math.unit(120, "kg"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/miranda/front.svg",
  4483. extra: 195 / 185,
  4484. bottom: 10.9 / 206.5
  4485. }
  4486. },
  4487. back: {
  4488. height: math.unit(2, "meters"),
  4489. weight: math.unit(120, "kg"),
  4490. name: "Back",
  4491. image: {
  4492. source: "./media/characters/miranda/back.svg",
  4493. extra: 201 / 193,
  4494. bottom: 2.3 / 203.7
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(10, "feet"),
  4502. default: true
  4503. }
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "James", species: ["deer"], tags: ["anthro"] },
  4508. {
  4509. side: {
  4510. height: math.unit(2, "meters"),
  4511. weight: math.unit(100, "kg"),
  4512. name: "Front",
  4513. image: {
  4514. source: "./media/characters/james/front.svg",
  4515. extra: 10 / 8.5
  4516. }
  4517. },
  4518. },
  4519. [
  4520. {
  4521. name: "Normal",
  4522. height: math.unit(8.5, "feet"),
  4523. default: true
  4524. }
  4525. ]
  4526. ))
  4527. characterMakers.push(() => makeCharacter(
  4528. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4529. {
  4530. side: {
  4531. height: math.unit(9.5, "feet"),
  4532. weight: math.unit(2500, "lbs"),
  4533. name: "Side",
  4534. image: {
  4535. source: "./media/characters/heather/side.svg"
  4536. }
  4537. },
  4538. },
  4539. [
  4540. {
  4541. name: "Normal",
  4542. height: math.unit(9.5, "feet"),
  4543. default: true
  4544. }
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4549. {
  4550. side: {
  4551. height: math.unit(6.5, "feet"),
  4552. weight: math.unit(400, "lbs"),
  4553. name: "Side",
  4554. image: {
  4555. source: "./media/characters/lukas/side.svg",
  4556. extra: 7.25 / 6.5
  4557. }
  4558. },
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(6.5, "feet"),
  4564. default: true
  4565. }
  4566. ]
  4567. ))
  4568. characterMakers.push(() => makeCharacter(
  4569. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4570. {
  4571. side: {
  4572. height: math.unit(5, "feet"),
  4573. weight: math.unit(3000, "lbs"),
  4574. name: "Side",
  4575. image: {
  4576. source: "./media/characters/louise/side.svg"
  4577. }
  4578. },
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(5, "feet"),
  4584. default: true
  4585. }
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4590. {
  4591. side: {
  4592. height: math.unit(6, "feet"),
  4593. weight: math.unit(150, "lbs"),
  4594. name: "Side",
  4595. image: {
  4596. source: "./media/characters/ramona/side.svg"
  4597. }
  4598. },
  4599. },
  4600. [
  4601. {
  4602. name: "Normal",
  4603. height: math.unit(5.3, "meters"),
  4604. default: true
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(20, "stories")
  4609. },
  4610. {
  4611. name: "Macro+",
  4612. height: math.unit(50, "stories")
  4613. },
  4614. ]
  4615. ))
  4616. characterMakers.push(() => makeCharacter(
  4617. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4618. {
  4619. standing: {
  4620. height: math.unit(5.75, "feet"),
  4621. weight: math.unit(160, "lbs"),
  4622. name: "Standing",
  4623. image: {
  4624. source: "./media/characters/deerpuff/standing.svg",
  4625. extra: 682 / 624
  4626. }
  4627. },
  4628. sitting: {
  4629. height: math.unit(5.75 / 1.79, "feet"),
  4630. weight: math.unit(160, "lbs"),
  4631. name: "Sitting",
  4632. image: {
  4633. source: "./media/characters/deerpuff/sitting.svg",
  4634. bottom: 44 / 400,
  4635. extra: 1
  4636. }
  4637. },
  4638. taurLaying: {
  4639. height: math.unit(6, "feet"),
  4640. weight: math.unit(400, "lbs"),
  4641. name: "Taur (Laying)",
  4642. image: {
  4643. source: "./media/characters/deerpuff/taur-laying.svg"
  4644. }
  4645. },
  4646. },
  4647. [
  4648. {
  4649. name: "Puffball",
  4650. height: math.unit(6, "inches")
  4651. },
  4652. {
  4653. name: "Normalpuff",
  4654. height: math.unit(5.75, "feet")
  4655. },
  4656. {
  4657. name: "Macropuff",
  4658. height: math.unit(1500, "feet"),
  4659. default: true
  4660. },
  4661. {
  4662. name: "Megapuff",
  4663. height: math.unit(500, "miles")
  4664. },
  4665. {
  4666. name: "Gigapuff",
  4667. height: math.unit(250000, "miles")
  4668. },
  4669. {
  4670. name: "Omegapuff",
  4671. height: math.unit(1000, "lightyears")
  4672. },
  4673. ]
  4674. ))
  4675. characterMakers.push(() => makeCharacter(
  4676. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4677. {
  4678. stomping: {
  4679. height: math.unit(6, "feet"),
  4680. weight: math.unit(170, "lbs"),
  4681. name: "Stomping",
  4682. image: {
  4683. source: "./media/characters/vivian/stomping.svg"
  4684. }
  4685. },
  4686. sitting: {
  4687. height: math.unit(6 / 1.75, "feet"),
  4688. weight: math.unit(170, "lbs"),
  4689. name: "Sitting",
  4690. image: {
  4691. source: "./media/characters/vivian/sitting.svg",
  4692. bottom: 1 / 6.4,
  4693. extra: 1,
  4694. }
  4695. },
  4696. },
  4697. [
  4698. {
  4699. name: "Normal",
  4700. height: math.unit(7, "feet"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Macro",
  4705. height: math.unit(10, "stories")
  4706. },
  4707. {
  4708. name: "Macro+",
  4709. height: math.unit(30, "stories")
  4710. },
  4711. {
  4712. name: "Megamacro",
  4713. height: math.unit(10, "miles")
  4714. },
  4715. {
  4716. name: "Megamacro+",
  4717. height: math.unit(2750000, "meters")
  4718. },
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(160, "lbs"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/prince/front.svg",
  4730. extra: 3400 / 3000
  4731. }
  4732. },
  4733. jumping: {
  4734. height: math.unit(6, "feet"),
  4735. weight: math.unit(160, "lbs"),
  4736. name: "Jumping",
  4737. image: {
  4738. source: "./media/characters/prince/jump.svg",
  4739. extra: 2555 / 2134
  4740. }
  4741. },
  4742. },
  4743. [
  4744. {
  4745. name: "Normal",
  4746. height: math.unit(7.75, "feet"),
  4747. default: true
  4748. },
  4749. {
  4750. name: "Not cute",
  4751. height: math.unit(17, "feet")
  4752. },
  4753. {
  4754. name: "I said NOT",
  4755. height: math.unit(91, "feet")
  4756. },
  4757. {
  4758. name: "Please stop",
  4759. height: math.unit(560, "feet")
  4760. },
  4761. {
  4762. name: "What have you done",
  4763. height: math.unit(2200, "feet")
  4764. },
  4765. {
  4766. name: "Deer God",
  4767. height: math.unit(3.6, "miles")
  4768. },
  4769. ]
  4770. ))
  4771. characterMakers.push(() => makeCharacter(
  4772. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4773. {
  4774. standing: {
  4775. height: math.unit(6, "feet"),
  4776. weight: math.unit(300, "lbs"),
  4777. name: "Standing",
  4778. image: {
  4779. source: "./media/characters/psymon/standing.svg",
  4780. extra: 1888 / 1810,
  4781. bottom: 0.05
  4782. }
  4783. },
  4784. slithering: {
  4785. height: math.unit(6, "feet"),
  4786. weight: math.unit(300, "lbs"),
  4787. name: "Slithering",
  4788. image: {
  4789. source: "./media/characters/psymon/slithering.svg",
  4790. extra: 1330 / 1224
  4791. }
  4792. },
  4793. slitheringAlt: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(300, "lbs"),
  4796. name: "Slithering (Alt)",
  4797. image: {
  4798. source: "./media/characters/psymon/slithering-alt.svg",
  4799. extra: 1330 / 1224
  4800. }
  4801. },
  4802. },
  4803. [
  4804. {
  4805. name: "Normal",
  4806. height: math.unit(11.25, "feet"),
  4807. default: true
  4808. },
  4809. {
  4810. name: "Large",
  4811. height: math.unit(27, "feet")
  4812. },
  4813. {
  4814. name: "Giant",
  4815. height: math.unit(87, "feet")
  4816. },
  4817. {
  4818. name: "Macro",
  4819. height: math.unit(365, "feet")
  4820. },
  4821. {
  4822. name: "Megamacro",
  4823. height: math.unit(3, "miles")
  4824. },
  4825. {
  4826. name: "World Serpent",
  4827. height: math.unit(8000, "miles")
  4828. },
  4829. ]
  4830. ))
  4831. characterMakers.push(() => makeCharacter(
  4832. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4833. {
  4834. front: {
  4835. height: math.unit(6, "feet"),
  4836. weight: math.unit(180, "lbs"),
  4837. name: "Front",
  4838. image: {
  4839. source: "./media/characters/daimos/front.svg",
  4840. extra: 4160 / 3897,
  4841. bottom: 0.021
  4842. }
  4843. }
  4844. },
  4845. [
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(8, "feet"),
  4849. default: true
  4850. },
  4851. {
  4852. name: "Big Dog",
  4853. height: math.unit(22, "feet")
  4854. },
  4855. {
  4856. name: "Macro",
  4857. height: math.unit(127, "feet")
  4858. },
  4859. {
  4860. name: "Megamacro",
  4861. height: math.unit(3600, "feet")
  4862. },
  4863. ]
  4864. ))
  4865. characterMakers.push(() => makeCharacter(
  4866. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4867. {
  4868. side: {
  4869. height: math.unit(6, "feet"),
  4870. weight: math.unit(180, "lbs"),
  4871. name: "Side",
  4872. image: {
  4873. source: "./media/characters/blake/side.svg",
  4874. extra: 1212 / 1120,
  4875. bottom: 0.05
  4876. }
  4877. },
  4878. crouched: {
  4879. height: math.unit(6 * 0.57, "feet"),
  4880. weight: math.unit(180, "lbs"),
  4881. name: "Crouched",
  4882. image: {
  4883. source: "./media/characters/blake/crouched.svg",
  4884. extra: 840 / 587,
  4885. bottom: 0.04
  4886. }
  4887. },
  4888. bent: {
  4889. height: math.unit(6 * 0.75, "feet"),
  4890. weight: math.unit(180, "lbs"),
  4891. name: "Bent",
  4892. image: {
  4893. source: "./media/characters/blake/bent.svg",
  4894. extra: 592 / 544,
  4895. bottom: 0.035
  4896. }
  4897. },
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(8 + 1 / 6, "feet"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Big Backside",
  4907. height: math.unit(37, "feet")
  4908. },
  4909. {
  4910. name: "Subway Shredder",
  4911. height: math.unit(72, "feet")
  4912. },
  4913. {
  4914. name: "City Carver",
  4915. height: math.unit(1675, "feet")
  4916. },
  4917. {
  4918. name: "Tectonic Tweaker",
  4919. height: math.unit(2300, "miles")
  4920. },
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4925. {
  4926. front: {
  4927. height: math.unit(6, "feet"),
  4928. weight: math.unit(180, "lbs"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/guisetto/front.svg",
  4932. extra: 856 / 817,
  4933. bottom: 0.06
  4934. }
  4935. },
  4936. airborne: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(180, "lbs"),
  4939. name: "Airborne",
  4940. image: {
  4941. source: "./media/characters/guisetto/airborne.svg",
  4942. extra: 584 / 525
  4943. }
  4944. },
  4945. },
  4946. [
  4947. {
  4948. name: "Normal",
  4949. height: math.unit(10 + 11 / 12, "feet"),
  4950. default: true
  4951. },
  4952. {
  4953. name: "Large",
  4954. height: math.unit(35, "feet")
  4955. },
  4956. {
  4957. name: "Macro",
  4958. height: math.unit(475, "feet")
  4959. },
  4960. ]
  4961. ))
  4962. characterMakers.push(() => makeCharacter(
  4963. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4964. {
  4965. front: {
  4966. height: math.unit(6, "feet"),
  4967. weight: math.unit(180, "lbs"),
  4968. name: "Front",
  4969. image: {
  4970. source: "./media/characters/luxor/front.svg",
  4971. extra: 2940 / 2152
  4972. }
  4973. },
  4974. back: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(180, "lbs"),
  4977. name: "Back",
  4978. image: {
  4979. source: "./media/characters/luxor/back.svg",
  4980. extra: 1083 / 960
  4981. }
  4982. },
  4983. },
  4984. [
  4985. {
  4986. name: "Normal",
  4987. height: math.unit(5 + 5 / 6, "feet"),
  4988. default: true
  4989. },
  4990. {
  4991. name: "Lamp",
  4992. height: math.unit(50, "feet")
  4993. },
  4994. {
  4995. name: "Lämp",
  4996. height: math.unit(300, "feet")
  4997. },
  4998. {
  4999. name: "The sun is a lamp",
  5000. height: math.unit(250000, "miles")
  5001. },
  5002. ]
  5003. ))
  5004. characterMakers.push(() => makeCharacter(
  5005. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5006. {
  5007. front: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(50, "lbs"),
  5010. name: "Front",
  5011. image: {
  5012. source: "./media/characters/huoyan/front.svg"
  5013. }
  5014. },
  5015. side: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(180, "lbs"),
  5018. name: "Side",
  5019. image: {
  5020. source: "./media/characters/huoyan/side.svg"
  5021. }
  5022. },
  5023. },
  5024. [
  5025. {
  5026. name: "Chef",
  5027. height: math.unit(9, "feet")
  5028. },
  5029. {
  5030. name: "Normal",
  5031. height: math.unit(65, "feet"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Macro",
  5036. height: math.unit(780, "feet")
  5037. },
  5038. {
  5039. name: "Flaming Mountain",
  5040. height: math.unit(4.8, "miles")
  5041. },
  5042. {
  5043. name: "Celestial",
  5044. height: math.unit(765000, "miles")
  5045. },
  5046. ]
  5047. ))
  5048. characterMakers.push(() => makeCharacter(
  5049. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5050. {
  5051. front: {
  5052. height: math.unit(5 + 3 / 4, "feet"),
  5053. weight: math.unit(120, "lbs"),
  5054. name: "Front",
  5055. image: {
  5056. source: "./media/characters/tails/front.svg"
  5057. }
  5058. }
  5059. },
  5060. [
  5061. {
  5062. name: "Normal",
  5063. height: math.unit(5 + 3 / 4, "feet"),
  5064. default: true
  5065. }
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5070. {
  5071. front: {
  5072. height: math.unit(4, "feet"),
  5073. weight: math.unit(50, "lbs"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/rainy/front.svg"
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Macro",
  5083. height: math.unit(800, "feet"),
  5084. default: true
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(6, "feet"),
  5093. weight: math.unit(150, "lbs"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/rainier/front.svg"
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Micro",
  5103. height: math.unit(2, "mm"),
  5104. default: true
  5105. }
  5106. ]
  5107. ))
  5108. characterMakers.push(() => makeCharacter(
  5109. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5110. {
  5111. front: {
  5112. height: math.unit(6, "feet"),
  5113. weight: math.unit(180, "lbs"),
  5114. name: "Front",
  5115. image: {
  5116. source: "./media/characters/andy/front.svg"
  5117. }
  5118. }
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(8, "feet"),
  5124. default: true
  5125. },
  5126. {
  5127. name: "Macro",
  5128. height: math.unit(1000, "feet")
  5129. },
  5130. {
  5131. name: "Megamacro",
  5132. height: math.unit(5, "miles")
  5133. },
  5134. {
  5135. name: "Gigamacro",
  5136. height: math.unit(5000, "miles")
  5137. },
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5142. {
  5143. front: {
  5144. height: math.unit(6, "feet"),
  5145. weight: math.unit(210, "lbs"),
  5146. name: "Front",
  5147. image: {
  5148. source: "./media/characters/cimmaron/front-sfw.svg",
  5149. extra: 701 / 676,
  5150. bottom: 0.046
  5151. }
  5152. },
  5153. back: {
  5154. height: math.unit(6, "feet"),
  5155. weight: math.unit(210, "lbs"),
  5156. name: "Back",
  5157. image: {
  5158. source: "./media/characters/cimmaron/back-sfw.svg",
  5159. extra: 701 / 676,
  5160. bottom: 0.046
  5161. }
  5162. },
  5163. frontNsfw: {
  5164. height: math.unit(6, "feet"),
  5165. weight: math.unit(210, "lbs"),
  5166. name: "Front (NSFW)",
  5167. image: {
  5168. source: "./media/characters/cimmaron/front-nsfw.svg",
  5169. extra: 701 / 676,
  5170. bottom: 0.046
  5171. }
  5172. },
  5173. backNsfw: {
  5174. height: math.unit(6, "feet"),
  5175. weight: math.unit(210, "lbs"),
  5176. name: "Back (NSFW)",
  5177. image: {
  5178. source: "./media/characters/cimmaron/back-nsfw.svg",
  5179. extra: 701 / 676,
  5180. bottom: 0.046
  5181. }
  5182. },
  5183. dick: {
  5184. height: math.unit(1.714, "feet"),
  5185. name: "Dick",
  5186. image: {
  5187. source: "./media/characters/cimmaron/dick.svg"
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(6, "feet"),
  5195. default: true
  5196. },
  5197. {
  5198. name: "Macro Mayor",
  5199. height: math.unit(350, "meters")
  5200. },
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5205. {
  5206. front: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(200, "lbs"),
  5209. name: "Front",
  5210. image: {
  5211. source: "./media/characters/akari/front.svg",
  5212. extra: 962 / 901,
  5213. bottom: 0.04
  5214. }
  5215. }
  5216. },
  5217. [
  5218. {
  5219. name: "Micro",
  5220. height: math.unit(5, "inches"),
  5221. default: true
  5222. },
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(7, "feet")
  5226. },
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5231. {
  5232. front: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(140, "lbs"),
  5235. name: "Front",
  5236. image: {
  5237. source: "./media/characters/cynosura/front.svg",
  5238. extra: 896 / 847
  5239. }
  5240. },
  5241. back: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(140, "lbs"),
  5244. name: "Back",
  5245. image: {
  5246. source: "./media/characters/cynosura/back.svg",
  5247. extra: 1365 / 1250
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "Micro",
  5254. height: math.unit(4, "inches")
  5255. },
  5256. {
  5257. name: "Normal",
  5258. height: math.unit(5.75, "feet"),
  5259. default: true
  5260. },
  5261. {
  5262. name: "Tall",
  5263. height: math.unit(10, "feet")
  5264. },
  5265. {
  5266. name: "Big",
  5267. height: math.unit(20, "feet")
  5268. },
  5269. {
  5270. name: "Macro",
  5271. height: math.unit(50, "feet")
  5272. },
  5273. ]
  5274. ))
  5275. characterMakers.push(() => makeCharacter(
  5276. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5277. {
  5278. front: {
  5279. height: math.unit(6, "feet"),
  5280. weight: math.unit(170, "lbs"),
  5281. name: "Front",
  5282. image: {
  5283. source: "./media/characters/gin/front.svg",
  5284. extra: 1.053,
  5285. bottom: 0.025
  5286. }
  5287. },
  5288. foot: {
  5289. height: math.unit(6 / 4.25, "feet"),
  5290. name: "Foot",
  5291. image: {
  5292. source: "./media/characters/gin/foot.svg"
  5293. }
  5294. },
  5295. sole: {
  5296. height: math.unit(6 / 4.40, "feet"),
  5297. name: "Sole",
  5298. image: {
  5299. source: "./media/characters/gin/sole.svg"
  5300. }
  5301. },
  5302. },
  5303. [
  5304. {
  5305. name: "Normal",
  5306. height: math.unit(13 + 2 / 12, "feet")
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(1500, "feet")
  5311. },
  5312. {
  5313. name: "Megamacro",
  5314. height: math.unit(200, "miles"),
  5315. default: true
  5316. },
  5317. {
  5318. name: "Gigamacro",
  5319. height: math.unit(500, "megameters")
  5320. },
  5321. {
  5322. name: "Teramacro",
  5323. height: math.unit(15, "lightyears")
  5324. }
  5325. ]
  5326. ))
  5327. characterMakers.push(() => makeCharacter(
  5328. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5329. {
  5330. front: {
  5331. height: math.unit(6 + 1 / 6, "feet"),
  5332. weight: math.unit(178, "lbs"),
  5333. name: "Front",
  5334. image: {
  5335. source: "./media/characters/guy/front.svg"
  5336. }
  5337. }
  5338. },
  5339. [
  5340. {
  5341. name: "Normal",
  5342. height: math.unit(6 + 1 / 6, "feet"),
  5343. default: true
  5344. },
  5345. {
  5346. name: "Large",
  5347. height: math.unit(25 + 7 / 12, "feet")
  5348. },
  5349. {
  5350. name: "Macro",
  5351. height: math.unit(60 + 9 / 12, "feet")
  5352. },
  5353. {
  5354. name: "Macro+",
  5355. height: math.unit(246, "feet")
  5356. },
  5357. {
  5358. name: "Macro++",
  5359. height: math.unit(878, "feet")
  5360. }
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5365. {
  5366. front: {
  5367. height: math.unit(9, "feet"),
  5368. weight: math.unit(800, "lbs"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/tiberius/front.svg",
  5372. extra: 2295 / 2071
  5373. }
  5374. },
  5375. back: {
  5376. height: math.unit(9, "feet"),
  5377. weight: math.unit(800, "lbs"),
  5378. name: "Back",
  5379. image: {
  5380. source: "./media/characters/tiberius/back.svg",
  5381. extra: 2373 / 2160
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(9, "feet"),
  5389. default: true
  5390. }
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6, "feet"),
  5398. weight: math.unit(600, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/surgo/front.svg",
  5402. extra: 3591 / 2227
  5403. }
  5404. },
  5405. back: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(600, "lbs"),
  5408. name: "Back",
  5409. image: {
  5410. source: "./media/characters/surgo/back.svg",
  5411. extra: 3557 / 2228
  5412. }
  5413. },
  5414. laying: {
  5415. height: math.unit(6 * 0.85, "feet"),
  5416. weight: math.unit(600, "lbs"),
  5417. name: "Laying",
  5418. image: {
  5419. source: "./media/characters/surgo/laying.svg"
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(6, "feet"),
  5427. default: true
  5428. }
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5433. {
  5434. side: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(150, "lbs"),
  5437. name: "Side",
  5438. image: {
  5439. source: "./media/characters/cibus/side.svg",
  5440. extra: 800 / 400
  5441. }
  5442. },
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(6, "feet"),
  5448. default: true
  5449. }
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5454. {
  5455. front: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(240, "lbs"),
  5458. name: "Front",
  5459. image: {
  5460. source: "./media/characters/nibbles/front.svg"
  5461. }
  5462. },
  5463. side: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(240, "lbs"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/nibbles/side.svg"
  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: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5482. {
  5483. side: {
  5484. height: math.unit(5 + 1 / 6, "feet"),
  5485. weight: math.unit(130, "lbs"),
  5486. name: "Side",
  5487. image: {
  5488. source: "./media/characters/rikky/side.svg",
  5489. extra: 851 / 801
  5490. }
  5491. },
  5492. },
  5493. [
  5494. {
  5495. name: "Normal",
  5496. height: math.unit(5 + 1 / 6, "feet")
  5497. },
  5498. {
  5499. name: "Macro",
  5500. height: math.unit(152, "feet"),
  5501. default: true
  5502. },
  5503. {
  5504. name: "Megamacro",
  5505. height: math.unit(7, "miles")
  5506. }
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5511. {
  5512. side: {
  5513. height: math.unit(370, "cm"),
  5514. weight: math.unit(350, "lbs"),
  5515. name: "Side",
  5516. image: {
  5517. source: "./media/characters/malfressa/side.svg"
  5518. }
  5519. },
  5520. walking: {
  5521. height: math.unit(370, "cm"),
  5522. weight: math.unit(350, "lbs"),
  5523. name: "Walking",
  5524. image: {
  5525. source: "./media/characters/malfressa/walking.svg"
  5526. }
  5527. },
  5528. feral: {
  5529. height: math.unit(2500, "cm"),
  5530. weight: math.unit(100000, "lbs"),
  5531. name: "Feral",
  5532. image: {
  5533. source: "./media/characters/malfressa/feral.svg",
  5534. extra: 2108 / 837,
  5535. bottom: 0.02
  5536. }
  5537. },
  5538. },
  5539. [
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(370, "cm")
  5543. },
  5544. {
  5545. name: "Macro",
  5546. height: math.unit(300, "meters"),
  5547. default: true
  5548. }
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(60, "kg"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/jaro/front.svg"
  5560. }
  5561. },
  5562. back: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(60, "kg"),
  5565. name: "Back",
  5566. image: {
  5567. source: "./media/characters/jaro/back.svg"
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Micro",
  5574. height: math.unit(7, "inches")
  5575. },
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(5.5, "feet"),
  5579. default: true
  5580. },
  5581. {
  5582. name: "Minimacro",
  5583. height: math.unit(20, "feet")
  5584. },
  5585. {
  5586. name: "Macro",
  5587. height: math.unit(200, "meters")
  5588. }
  5589. ]
  5590. ))
  5591. characterMakers.push(() => makeCharacter(
  5592. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5593. {
  5594. front: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(195, "lb"),
  5597. name: "Front",
  5598. image: {
  5599. source: "./media/characters/rogue/front.svg"
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Macro",
  5606. height: math.unit(90, "feet"),
  5607. default: true
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5613. {
  5614. front: {
  5615. height: math.unit(5 + 8 / 12, "feet"),
  5616. weight: math.unit(140, "lb"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/piper/front.svg",
  5620. extra: 3928 / 3681
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Micro",
  5627. height: math.unit(2, "inches")
  5628. },
  5629. {
  5630. name: "Normal",
  5631. height: math.unit(5 + 8 / 12, "feet")
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(250, "feet"),
  5636. default: true
  5637. },
  5638. {
  5639. name: "Megamacro",
  5640. height: math.unit(7, "miles")
  5641. },
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5646. {
  5647. front: {
  5648. height: math.unit(6, "feet"),
  5649. weight: math.unit(220, "lb"),
  5650. name: "Front",
  5651. image: {
  5652. source: "./media/characters/gemini/front.svg"
  5653. }
  5654. },
  5655. back: {
  5656. height: math.unit(6, "feet"),
  5657. weight: math.unit(220, "lb"),
  5658. name: "Back",
  5659. image: {
  5660. source: "./media/characters/gemini/back.svg"
  5661. }
  5662. },
  5663. kneeling: {
  5664. height: math.unit(6 / 1.5, "feet"),
  5665. weight: math.unit(220, "lb"),
  5666. name: "Kneeling",
  5667. image: {
  5668. source: "./media/characters/gemini/kneeling.svg",
  5669. bottom: 0.02
  5670. }
  5671. },
  5672. },
  5673. [
  5674. {
  5675. name: "Macro",
  5676. height: math.unit(300, "meters"),
  5677. default: true
  5678. },
  5679. {
  5680. name: "Megamacro",
  5681. height: math.unit(6900, "meters")
  5682. },
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5687. {
  5688. anthro: {
  5689. height: math.unit(2.35, "meters"),
  5690. weight: math.unit(73, "kg"),
  5691. name: "Anthro",
  5692. image: {
  5693. source: "./media/characters/alicia/anthro.svg",
  5694. extra: 2571 / 2385,
  5695. bottom: 75 / 2648
  5696. }
  5697. },
  5698. paw: {
  5699. height: math.unit(1.32, "feet"),
  5700. name: "Paw",
  5701. image: {
  5702. source: "./media/characters/alicia/paw.svg"
  5703. }
  5704. },
  5705. feral: {
  5706. height: math.unit(1.69, "meters"),
  5707. weight: math.unit(73, "kg"),
  5708. name: "Feral",
  5709. image: {
  5710. source: "./media/characters/alicia/feral.svg",
  5711. extra: 2123 / 1715,
  5712. bottom: 222 / 2349
  5713. }
  5714. },
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(2.35, "meters")
  5720. },
  5721. {
  5722. name: "Macro",
  5723. height: math.unit(60, "meters"),
  5724. default: true
  5725. },
  5726. {
  5727. name: "Megamacro",
  5728. height: math.unit(10000, "kilometers")
  5729. },
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5734. {
  5735. front: {
  5736. height: math.unit(7, "feet"),
  5737. weight: math.unit(250, "lbs"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/archy/front.svg"
  5741. }
  5742. }
  5743. },
  5744. [
  5745. {
  5746. name: "Micro",
  5747. height: math.unit(1, "inch")
  5748. },
  5749. {
  5750. name: "Shorty",
  5751. height: math.unit(5, "feet")
  5752. },
  5753. {
  5754. name: "Normal",
  5755. height: math.unit(7, "feet")
  5756. },
  5757. {
  5758. name: "Macro",
  5759. height: math.unit(600, "meters"),
  5760. default: true
  5761. },
  5762. {
  5763. name: "Megamacro",
  5764. height: math.unit(1, "mile")
  5765. },
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5770. {
  5771. front: {
  5772. height: math.unit(1.65, "meters"),
  5773. weight: math.unit(74, "kg"),
  5774. name: "Front",
  5775. image: {
  5776. source: "./media/characters/berri/front.svg",
  5777. extra: 857 / 837,
  5778. bottom: 18 / 877
  5779. }
  5780. },
  5781. bum: {
  5782. height: math.unit(1.46, "feet"),
  5783. name: "Bum",
  5784. image: {
  5785. source: "./media/characters/berri/bum.svg"
  5786. }
  5787. },
  5788. mouth: {
  5789. height: math.unit(0.44, "feet"),
  5790. name: "Mouth",
  5791. image: {
  5792. source: "./media/characters/berri/mouth.svg"
  5793. }
  5794. },
  5795. paw: {
  5796. height: math.unit(0.826, "feet"),
  5797. name: "Paw",
  5798. image: {
  5799. source: "./media/characters/berri/paw.svg"
  5800. }
  5801. },
  5802. },
  5803. [
  5804. {
  5805. name: "Normal",
  5806. height: math.unit(1.65, "meters")
  5807. },
  5808. {
  5809. name: "Macro",
  5810. height: math.unit(60, "m"),
  5811. default: true
  5812. },
  5813. {
  5814. name: "Megamacro",
  5815. height: math.unit(9.213, "km")
  5816. },
  5817. {
  5818. name: "Planet Eater",
  5819. height: math.unit(489, "megameters")
  5820. },
  5821. {
  5822. name: "Teramacro",
  5823. height: math.unit(2471635000000, "meters")
  5824. },
  5825. {
  5826. name: "Examacro",
  5827. height: math.unit(8.0624e+26, "meters")
  5828. }
  5829. ]
  5830. ))
  5831. characterMakers.push(() => makeCharacter(
  5832. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5833. {
  5834. front: {
  5835. height: math.unit(1.72, "meters"),
  5836. weight: math.unit(68, "kg"),
  5837. name: "Front",
  5838. image: {
  5839. source: "./media/characters/lexi/front.svg"
  5840. }
  5841. }
  5842. },
  5843. [
  5844. {
  5845. name: "Very Smol",
  5846. height: math.unit(10, "mm")
  5847. },
  5848. {
  5849. name: "Micro",
  5850. height: math.unit(6.8, "cm"),
  5851. default: true
  5852. },
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(1.72, "m")
  5856. }
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5861. {
  5862. front: {
  5863. height: math.unit(1.69, "meters"),
  5864. weight: math.unit(68, "kg"),
  5865. name: "Front",
  5866. image: {
  5867. source: "./media/characters/martin/front.svg",
  5868. extra: 596 / 581
  5869. }
  5870. }
  5871. },
  5872. [
  5873. {
  5874. name: "Micro",
  5875. height: math.unit(6.85, "cm"),
  5876. default: true
  5877. },
  5878. {
  5879. name: "Normal",
  5880. height: math.unit(1.69, "m")
  5881. }
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5886. {
  5887. front: {
  5888. height: math.unit(1.69, "meters"),
  5889. weight: math.unit(68, "kg"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/juno/front.svg"
  5893. }
  5894. }
  5895. },
  5896. [
  5897. {
  5898. name: "Micro",
  5899. height: math.unit(7, "cm")
  5900. },
  5901. {
  5902. name: "Normal",
  5903. height: math.unit(1.89, "m")
  5904. },
  5905. {
  5906. name: "Macro",
  5907. height: math.unit(353, "meters"),
  5908. default: true
  5909. }
  5910. ]
  5911. ))
  5912. characterMakers.push(() => makeCharacter(
  5913. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5914. {
  5915. front: {
  5916. height: math.unit(1.93, "meters"),
  5917. weight: math.unit(83, "kg"),
  5918. name: "Front",
  5919. image: {
  5920. source: "./media/characters/samantha/front.svg"
  5921. }
  5922. },
  5923. frontClothed: {
  5924. height: math.unit(1.93, "meters"),
  5925. weight: math.unit(83, "kg"),
  5926. name: "Front (Clothed)",
  5927. image: {
  5928. source: "./media/characters/samantha/front-clothed.svg"
  5929. }
  5930. },
  5931. back: {
  5932. height: math.unit(1.93, "meters"),
  5933. weight: math.unit(83, "kg"),
  5934. name: "Back",
  5935. image: {
  5936. source: "./media/characters/samantha/back.svg"
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(1.93, "m")
  5944. },
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(74, "meters"),
  5948. default: true
  5949. },
  5950. {
  5951. name: "Macro+",
  5952. height: math.unit(223, "meters"),
  5953. },
  5954. {
  5955. name: "Megamacro",
  5956. height: math.unit(8381, "meters"),
  5957. },
  5958. {
  5959. name: "Megamacro+",
  5960. height: math.unit(12000, "kilometers")
  5961. },
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5966. {
  5967. front: {
  5968. height: math.unit(1.92, "meters"),
  5969. weight: math.unit(80, "kg"),
  5970. name: "Front",
  5971. image: {
  5972. source: "./media/characters/dr-clay/front.svg"
  5973. }
  5974. },
  5975. frontClothed: {
  5976. height: math.unit(1.92, "meters"),
  5977. weight: math.unit(80, "kg"),
  5978. name: "Front (Clothed)",
  5979. image: {
  5980. source: "./media/characters/dr-clay/front-clothed.svg"
  5981. }
  5982. }
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(1.92, "m")
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(214, "meters"),
  5992. default: true
  5993. },
  5994. {
  5995. name: "Macro+",
  5996. height: math.unit(12.237, "meters"),
  5997. },
  5998. {
  5999. name: "Megamacro",
  6000. height: math.unit(557, "megameters"),
  6001. },
  6002. {
  6003. name: "Unimaginable",
  6004. height: math.unit(120e9, "lightyears")
  6005. },
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6010. {
  6011. front: {
  6012. height: math.unit(2, "meters"),
  6013. weight: math.unit(80, "kg"),
  6014. name: "Front",
  6015. image: {
  6016. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6017. }
  6018. }
  6019. },
  6020. [
  6021. {
  6022. name: "Teramacro",
  6023. height: math.unit(500000, "lightyears"),
  6024. default: true
  6025. },
  6026. ]
  6027. ))
  6028. characterMakers.push(() => makeCharacter(
  6029. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6030. {
  6031. front: {
  6032. height: math.unit(2, "meters"),
  6033. weight: math.unit(150, "kg"),
  6034. name: "Front",
  6035. image: {
  6036. source: "./media/characters/vemus/front.svg",
  6037. extra: 2384 / 2084,
  6038. bottom: 0.0123
  6039. }
  6040. }
  6041. },
  6042. [
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(3.75, "meters"),
  6046. default: true
  6047. },
  6048. {
  6049. name: "Big",
  6050. height: math.unit(8, "meters")
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(100, "meters")
  6055. },
  6056. {
  6057. name: "Macro+",
  6058. height: math.unit(1500, "meters")
  6059. },
  6060. {
  6061. name: "Stellar",
  6062. height: math.unit(14e8, "meters")
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(2, "meters"),
  6071. weight: math.unit(70, "kg"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/beherit/front.svg",
  6075. extra: 1408 / 1242
  6076. }
  6077. }
  6078. },
  6079. [
  6080. {
  6081. name: "Normal",
  6082. height: math.unit(6, "feet")
  6083. },
  6084. {
  6085. name: "Lorg",
  6086. height: math.unit(25, "feet"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Lorger",
  6091. height: math.unit(75, "feet")
  6092. },
  6093. {
  6094. name: "Macro",
  6095. height: math.unit(200, "meters")
  6096. },
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6101. {
  6102. front: {
  6103. height: math.unit(2, "meters"),
  6104. weight: math.unit(150, "kg"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/everett/front.svg",
  6108. extra: 2038 / 1737,
  6109. bottom: 0.03
  6110. }
  6111. },
  6112. paw: {
  6113. height: math.unit(2 / 3.6, "meters"),
  6114. name: "Paw",
  6115. image: {
  6116. source: "./media/characters/everett/paw.svg"
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(15, "feet"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Lorg",
  6128. height: math.unit(70, "feet"),
  6129. default: true
  6130. },
  6131. {
  6132. name: "Lorger",
  6133. height: math.unit(250, "feet")
  6134. },
  6135. {
  6136. name: "Macro",
  6137. height: math.unit(500, "meters")
  6138. },
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6143. {
  6144. front: {
  6145. height: math.unit(2, "meters"),
  6146. weight: math.unit(86, "kg"),
  6147. name: "Front",
  6148. image: {
  6149. source: "./media/characters/rose-lion/front.svg"
  6150. }
  6151. },
  6152. bent: {
  6153. height: math.unit(2 / 1.4288, "meters"),
  6154. weight: math.unit(86, "kg"),
  6155. name: "Bent",
  6156. image: {
  6157. source: "./media/characters/rose-lion/bent.svg"
  6158. }
  6159. }
  6160. },
  6161. [
  6162. {
  6163. name: "Mini-Micro",
  6164. height: math.unit(1, "cm")
  6165. },
  6166. {
  6167. name: "Micro",
  6168. height: math.unit(3.5, "inches"),
  6169. default: true
  6170. },
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(6 + 1 / 6, "feet")
  6174. },
  6175. {
  6176. name: "Mini-Macro",
  6177. height: math.unit(9 + 10 / 12, "feet")
  6178. },
  6179. ]
  6180. ))
  6181. characterMakers.push(() => makeCharacter(
  6182. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6183. {
  6184. front: {
  6185. height: math.unit(2, "meters"),
  6186. weight: math.unit(350, "lbs"),
  6187. name: "Front",
  6188. image: {
  6189. source: "./media/characters/regal/front.svg"
  6190. }
  6191. },
  6192. back: {
  6193. height: math.unit(2, "meters"),
  6194. weight: math.unit(350, "lbs"),
  6195. name: "Back",
  6196. image: {
  6197. source: "./media/characters/regal/back.svg"
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Macro",
  6204. height: math.unit(350, "feet"),
  6205. default: true
  6206. }
  6207. ]
  6208. ))
  6209. characterMakers.push(() => makeCharacter(
  6210. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6211. {
  6212. front: {
  6213. height: math.unit(4 + 11 / 12, "feet"),
  6214. weight: math.unit(100, "lbs"),
  6215. name: "Front",
  6216. image: {
  6217. source: "./media/characters/opal/front.svg"
  6218. }
  6219. },
  6220. frontAlt: {
  6221. height: math.unit(4 + 11 / 12, "feet"),
  6222. weight: math.unit(100, "lbs"),
  6223. name: "Front (Alt)",
  6224. image: {
  6225. source: "./media/characters/opal/front-alt.svg"
  6226. }
  6227. },
  6228. },
  6229. [
  6230. {
  6231. name: "Small",
  6232. height: math.unit(4 + 11 / 12, "feet")
  6233. },
  6234. {
  6235. name: "Normal",
  6236. height: math.unit(20, "feet"),
  6237. default: true
  6238. },
  6239. {
  6240. name: "Macro",
  6241. height: math.unit(120, "feet")
  6242. },
  6243. {
  6244. name: "Megamacro",
  6245. height: math.unit(80, "miles")
  6246. },
  6247. {
  6248. name: "True Size",
  6249. height: math.unit(100000, "lightyears")
  6250. },
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6255. {
  6256. front: {
  6257. height: math.unit(6, "feet"),
  6258. weight: math.unit(200, "lbs"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/vector-wuff/front.svg"
  6262. }
  6263. }
  6264. },
  6265. [
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(2.8, "meters")
  6269. },
  6270. {
  6271. name: "Macro",
  6272. height: math.unit(450, "meters"),
  6273. default: true
  6274. },
  6275. {
  6276. name: "Megamacro",
  6277. height: math.unit(15, "kilometers")
  6278. }
  6279. ]
  6280. ))
  6281. characterMakers.push(() => makeCharacter(
  6282. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6283. {
  6284. front: {
  6285. height: math.unit(6, "feet"),
  6286. weight: math.unit(256, "lbs"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/dannik/front.svg"
  6290. }
  6291. }
  6292. },
  6293. [
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(69.57, "meters"),
  6297. default: true
  6298. },
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6303. {
  6304. front: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(120, "lbs"),
  6307. name: "Front",
  6308. image: {
  6309. source: "./media/characters/azura-saharah/front.svg"
  6310. }
  6311. },
  6312. back: {
  6313. height: math.unit(6, "feet"),
  6314. weight: math.unit(120, "lbs"),
  6315. name: "Back",
  6316. image: {
  6317. source: "./media/characters/azura-saharah/back.svg"
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Macro",
  6324. height: math.unit(100, "feet"),
  6325. default: true
  6326. },
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6331. {
  6332. side: {
  6333. height: math.unit(5 + 4 / 12, "feet"),
  6334. weight: math.unit(163, "lbs"),
  6335. name: "Side",
  6336. image: {
  6337. source: "./media/characters/kennedy/side.svg"
  6338. }
  6339. }
  6340. },
  6341. [
  6342. {
  6343. name: "Standard Doggo",
  6344. height: math.unit(5 + 4 / 12, "feet")
  6345. },
  6346. {
  6347. name: "Big Doggo",
  6348. height: math.unit(25 + 3 / 12, "feet"),
  6349. default: true
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(90, "lbs"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/odi-lunar/front.svg"
  6362. }
  6363. }
  6364. },
  6365. [
  6366. {
  6367. name: "Micro",
  6368. height: math.unit(3, "inches"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(5.5, "feet")
  6374. }
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6379. {
  6380. back: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(220, "lbs"),
  6383. name: "Back",
  6384. image: {
  6385. source: "./media/characters/mandake/back.svg"
  6386. }
  6387. }
  6388. },
  6389. [
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(7, "feet"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(78, "feet")
  6398. },
  6399. {
  6400. name: "Macro+",
  6401. height: math.unit(300, "meters")
  6402. },
  6403. {
  6404. name: "Macro++",
  6405. height: math.unit(2400, "feet")
  6406. },
  6407. {
  6408. name: "Megamacro",
  6409. height: math.unit(5167, "meters")
  6410. },
  6411. {
  6412. name: "Gigamacro",
  6413. height: math.unit(41769, "miles")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(120, "lbs"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/yozey/front.svg"
  6426. }
  6427. },
  6428. frontAlt: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(120, "lbs"),
  6431. name: "Front (Alt)",
  6432. image: {
  6433. source: "./media/characters/yozey/front-alt.svg"
  6434. }
  6435. },
  6436. side: {
  6437. height: math.unit(6, "feet"),
  6438. weight: math.unit(120, "lbs"),
  6439. name: "Side",
  6440. image: {
  6441. source: "./media/characters/yozey/side.svg"
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(3, "inches"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Normal",
  6453. height: math.unit(6, "feet")
  6454. }
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6459. {
  6460. front: {
  6461. height: math.unit(6, "feet"),
  6462. weight: math.unit(103, "lbs"),
  6463. name: "Front",
  6464. image: {
  6465. source: "./media/characters/valeska-voss/front.svg"
  6466. }
  6467. }
  6468. },
  6469. [
  6470. {
  6471. name: "Mini-Sized Sub",
  6472. height: math.unit(3.1, "inches")
  6473. },
  6474. {
  6475. name: "Mid-Sized Sub",
  6476. height: math.unit(6.2, "inches")
  6477. },
  6478. {
  6479. name: "Full-Sized Sub",
  6480. height: math.unit(9.3, "inches")
  6481. },
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(5 + 2 / 12, "foot"),
  6485. default: true
  6486. },
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6491. {
  6492. front: {
  6493. height: math.unit(6, "feet"),
  6494. weight: math.unit(160, "lbs"),
  6495. name: "Front",
  6496. image: {
  6497. source: "./media/characters/gene-zeta/front.svg",
  6498. bottom: 0.03,
  6499. extra: 1
  6500. }
  6501. }
  6502. },
  6503. [
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(6.25, "foot"),
  6507. default: true
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6513. {
  6514. front: {
  6515. height: math.unit(6, "feet"),
  6516. weight: math.unit(350, "lbs"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/razinox/front.svg",
  6520. extra: 1686 / 1548,
  6521. bottom: 28.2 / 1868
  6522. }
  6523. },
  6524. back: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(350, "lbs"),
  6527. name: "Back",
  6528. image: {
  6529. source: "./media/characters/razinox/back.svg",
  6530. extra: 1660 / 1590,
  6531. bottom: 15 / 1665
  6532. }
  6533. },
  6534. },
  6535. [
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(10 + 8 / 12, "foot")
  6539. },
  6540. {
  6541. name: "Minimacro",
  6542. height: math.unit(15, "foot")
  6543. },
  6544. {
  6545. name: "Macro",
  6546. height: math.unit(60, "foot"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Megamacro",
  6551. height: math.unit(5, "miles")
  6552. },
  6553. {
  6554. name: "Gigamacro",
  6555. height: math.unit(6000, "miles")
  6556. },
  6557. ]
  6558. ))
  6559. characterMakers.push(() => makeCharacter(
  6560. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6561. {
  6562. front: {
  6563. height: math.unit(6, "feet"),
  6564. weight: math.unit(150, "lbs"),
  6565. name: "Front",
  6566. image: {
  6567. source: "./media/characters/cobalt/front.svg"
  6568. }
  6569. }
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(8 + 1 / 12, "foot")
  6575. },
  6576. {
  6577. name: "Macro",
  6578. height: math.unit(111, "foot"),
  6579. default: true
  6580. },
  6581. {
  6582. name: "Supracosmic",
  6583. height: math.unit(1e42, "feet")
  6584. },
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6589. {
  6590. front: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(140, "lbs"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/amanda/front.svg"
  6596. }
  6597. }
  6598. },
  6599. [
  6600. {
  6601. name: "Micro",
  6602. height: math.unit(5, "inches"),
  6603. default: true
  6604. },
  6605. ]
  6606. ))
  6607. characterMakers.push(() => makeCharacter(
  6608. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6609. {
  6610. front: {
  6611. height: math.unit(5.59, "feet"),
  6612. weight: math.unit(250, "lbs"),
  6613. name: "Front",
  6614. image: {
  6615. source: "./media/characters/teal/front.svg"
  6616. }
  6617. },
  6618. frontAlt: {
  6619. height: math.unit(6, "feet"),
  6620. weight: math.unit(250, "lbs"),
  6621. name: "Front (Alt)",
  6622. image: {
  6623. source: "./media/characters/teal/front-alt.svg",
  6624. bottom: 0.04,
  6625. extra: 1
  6626. }
  6627. },
  6628. },
  6629. [
  6630. {
  6631. name: "Normal",
  6632. height: math.unit(12, "feet"),
  6633. default: true
  6634. },
  6635. {
  6636. name: "Macro",
  6637. height: math.unit(300, "feet")
  6638. },
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6643. {
  6644. frontCat: {
  6645. height: math.unit(6, "feet"),
  6646. weight: math.unit(180, "lbs"),
  6647. name: "Front (Cat)",
  6648. image: {
  6649. source: "./media/characters/ravin-amulet/front-cat.svg"
  6650. }
  6651. },
  6652. frontCatAlt: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(180, "lbs"),
  6655. name: "Front (Alt, Cat)",
  6656. image: {
  6657. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6658. }
  6659. },
  6660. frontWerewolf: {
  6661. height: math.unit(6 * 1.2, "feet"),
  6662. weight: math.unit(225, "lbs"),
  6663. name: "Front (Werewolf)",
  6664. image: {
  6665. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6666. }
  6667. },
  6668. backWerewolf: {
  6669. height: math.unit(6 * 1.2, "feet"),
  6670. weight: math.unit(225, "lbs"),
  6671. name: "Back (Werewolf)",
  6672. image: {
  6673. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6674. }
  6675. },
  6676. },
  6677. [
  6678. {
  6679. name: "Nano",
  6680. height: math.unit(1, "micrometer")
  6681. },
  6682. {
  6683. name: "Micro",
  6684. height: math.unit(1, "inch")
  6685. },
  6686. {
  6687. name: "Normal",
  6688. height: math.unit(6, "feet"),
  6689. default: true
  6690. },
  6691. {
  6692. name: "Macro",
  6693. height: math.unit(60, "feet")
  6694. }
  6695. ]
  6696. ))
  6697. characterMakers.push(() => makeCharacter(
  6698. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6699. {
  6700. front: {
  6701. height: math.unit(6, "feet"),
  6702. weight: math.unit(165, "lbs"),
  6703. name: "Front",
  6704. image: {
  6705. source: "./media/characters/fluoresce/front.svg"
  6706. }
  6707. }
  6708. },
  6709. [
  6710. {
  6711. name: "Micro",
  6712. height: math.unit(6, "cm")
  6713. },
  6714. {
  6715. name: "Normal",
  6716. height: math.unit(5 + 7 / 12, "feet"),
  6717. default: true
  6718. },
  6719. {
  6720. name: "Macro",
  6721. height: math.unit(56, "feet")
  6722. },
  6723. {
  6724. name: "Megamacro",
  6725. height: math.unit(1.9, "miles")
  6726. },
  6727. ]
  6728. ))
  6729. characterMakers.push(() => makeCharacter(
  6730. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6731. {
  6732. front: {
  6733. height: math.unit(9 + 6 / 12, "feet"),
  6734. weight: math.unit(523, "lbs"),
  6735. name: "Side",
  6736. image: {
  6737. source: "./media/characters/aurora/side.svg"
  6738. }
  6739. }
  6740. },
  6741. [
  6742. {
  6743. name: "Normal",
  6744. height: math.unit(9 + 6 / 12, "feet")
  6745. },
  6746. {
  6747. name: "Macro",
  6748. height: math.unit(96, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Macro+",
  6753. height: math.unit(243, "feet")
  6754. },
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6759. {
  6760. front: {
  6761. height: math.unit(194, "cm"),
  6762. weight: math.unit(90, "kg"),
  6763. name: "Front",
  6764. image: {
  6765. source: "./media/characters/ranek/front.svg"
  6766. }
  6767. },
  6768. side: {
  6769. height: math.unit(194, "cm"),
  6770. weight: math.unit(90, "kg"),
  6771. name: "Side",
  6772. image: {
  6773. source: "./media/characters/ranek/side.svg"
  6774. }
  6775. },
  6776. back: {
  6777. height: math.unit(194, "cm"),
  6778. weight: math.unit(90, "kg"),
  6779. name: "Back",
  6780. image: {
  6781. source: "./media/characters/ranek/back.svg"
  6782. }
  6783. },
  6784. feral: {
  6785. height: math.unit(30, "cm"),
  6786. weight: math.unit(1.6, "lbs"),
  6787. name: "Feral",
  6788. image: {
  6789. source: "./media/characters/ranek/feral.svg"
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(194, "cm"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "Macro",
  6801. height: math.unit(100, "meters")
  6802. },
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6807. {
  6808. front: {
  6809. height: math.unit(5 + 6 / 12, "feet"),
  6810. weight: math.unit(153, "lbs"),
  6811. name: "Front",
  6812. image: {
  6813. source: "./media/characters/andrew-cooper/front.svg"
  6814. }
  6815. },
  6816. },
  6817. [
  6818. {
  6819. name: "Nano",
  6820. height: math.unit(1, "mm")
  6821. },
  6822. {
  6823. name: "Micro",
  6824. height: math.unit(2, "inches")
  6825. },
  6826. {
  6827. name: "Normal",
  6828. height: math.unit(5 + 6 / 12, "feet"),
  6829. default: true
  6830. }
  6831. ]
  6832. ))
  6833. characterMakers.push(() => makeCharacter(
  6834. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6835. {
  6836. front: {
  6837. height: math.unit(6, "feet"),
  6838. weight: math.unit(180, "lbs"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/akane-sato/front.svg",
  6842. extra: 1219 / 1140
  6843. }
  6844. },
  6845. back: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(180, "lbs"),
  6848. name: "Back",
  6849. image: {
  6850. source: "./media/characters/akane-sato/back.svg",
  6851. extra: 1219 / 1170
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(2.5, "meters")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(250, "meters"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Megamacro",
  6867. height: math.unit(25, "km")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(65, "kg"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/rook/front.svg",
  6880. extra: 960 / 950
  6881. }
  6882. }
  6883. },
  6884. [
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(8.8, "feet")
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(88, "feet"),
  6892. default: true
  6893. },
  6894. {
  6895. name: "Megamacro",
  6896. height: math.unit(8, "miles")
  6897. },
  6898. ]
  6899. ))
  6900. characterMakers.push(() => makeCharacter(
  6901. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6902. {
  6903. front: {
  6904. height: math.unit(12 + 2 / 12, "feet"),
  6905. weight: math.unit(808, "lbs"),
  6906. name: "Front",
  6907. image: {
  6908. source: "./media/characters/prodigy/front.svg"
  6909. }
  6910. }
  6911. },
  6912. [
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(12 + 2 / 12, "feet"),
  6916. default: true
  6917. },
  6918. {
  6919. name: "Macro",
  6920. height: math.unit(143, "feet")
  6921. },
  6922. {
  6923. name: "Macro+",
  6924. height: math.unit(400, "feet")
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6930. {
  6931. front: {
  6932. height: math.unit(6, "feet"),
  6933. weight: math.unit(225, "lbs"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/daniel/front.svg"
  6937. }
  6938. },
  6939. leaning: {
  6940. height: math.unit(6, "feet"),
  6941. weight: math.unit(225, "lbs"),
  6942. name: "Leaning",
  6943. image: {
  6944. source: "./media/characters/daniel/leaning.svg"
  6945. }
  6946. },
  6947. },
  6948. [
  6949. {
  6950. name: "Macro",
  6951. height: math.unit(1000, "feet"),
  6952. default: true
  6953. },
  6954. ]
  6955. ))
  6956. characterMakers.push(() => makeCharacter(
  6957. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6958. {
  6959. front: {
  6960. height: math.unit(6, "feet"),
  6961. weight: math.unit(88, "lbs"),
  6962. name: "Front",
  6963. image: {
  6964. source: "./media/characters/chiros/front.svg",
  6965. extra: 306 / 226
  6966. }
  6967. },
  6968. side: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(88, "lbs"),
  6971. name: "Side",
  6972. image: {
  6973. source: "./media/characters/chiros/side.svg",
  6974. extra: 306 / 226
  6975. }
  6976. },
  6977. },
  6978. [
  6979. {
  6980. name: "Normal",
  6981. height: math.unit(6, "cm"),
  6982. default: true
  6983. },
  6984. ]
  6985. ))
  6986. characterMakers.push(() => makeCharacter(
  6987. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6988. {
  6989. front: {
  6990. height: math.unit(6, "feet"),
  6991. weight: math.unit(100, "lbs"),
  6992. name: "Front",
  6993. image: {
  6994. source: "./media/characters/selka/front.svg",
  6995. extra: 947 / 887
  6996. }
  6997. }
  6998. },
  6999. [
  7000. {
  7001. name: "Normal",
  7002. height: math.unit(5, "cm"),
  7003. default: true
  7004. },
  7005. ]
  7006. ))
  7007. characterMakers.push(() => makeCharacter(
  7008. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7009. {
  7010. front: {
  7011. height: math.unit(8 + 3 / 12, "feet"),
  7012. weight: math.unit(424, "lbs"),
  7013. name: "Front",
  7014. image: {
  7015. source: "./media/characters/verin/front.svg",
  7016. extra: 1845 / 1550
  7017. }
  7018. },
  7019. frontArmored: {
  7020. height: math.unit(8 + 3 / 12, "feet"),
  7021. weight: math.unit(424, "lbs"),
  7022. name: "Front (Armored)",
  7023. image: {
  7024. source: "./media/characters/verin/front-armor.svg",
  7025. extra: 1845 / 1550,
  7026. bottom: 0.01
  7027. }
  7028. },
  7029. back: {
  7030. height: math.unit(8 + 3 / 12, "feet"),
  7031. weight: math.unit(424, "lbs"),
  7032. name: "Back",
  7033. image: {
  7034. source: "./media/characters/verin/back.svg",
  7035. bottom: 0.1,
  7036. extra: 1
  7037. }
  7038. },
  7039. foot: {
  7040. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7041. name: "Foot",
  7042. image: {
  7043. source: "./media/characters/verin/foot.svg"
  7044. }
  7045. },
  7046. },
  7047. [
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(8 + 3 / 12, "feet")
  7051. },
  7052. {
  7053. name: "Minimacro",
  7054. height: math.unit(21, "feet"),
  7055. default: true
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(626, "feet")
  7060. },
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7065. {
  7066. front: {
  7067. height: math.unit(2.718, "meters"),
  7068. weight: math.unit(150, "lbs"),
  7069. name: "Front",
  7070. image: {
  7071. source: "./media/characters/sovrim-terraquian/front.svg"
  7072. }
  7073. },
  7074. back: {
  7075. height: math.unit(2.718, "meters"),
  7076. weight: math.unit(150, "lbs"),
  7077. name: "Back",
  7078. image: {
  7079. source: "./media/characters/sovrim-terraquian/back.svg"
  7080. }
  7081. }
  7082. },
  7083. [
  7084. {
  7085. name: "Micro",
  7086. height: math.unit(2, "inches")
  7087. },
  7088. {
  7089. name: "Small",
  7090. height: math.unit(1, "meter")
  7091. },
  7092. {
  7093. name: "Normal",
  7094. height: math.unit(Math.E, "meters"),
  7095. default: true
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(20, "meters")
  7100. },
  7101. {
  7102. name: "Macro+",
  7103. height: math.unit(400, "meters")
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7109. {
  7110. front: {
  7111. height: math.unit(7, "feet"),
  7112. weight: math.unit(489, "lbs"),
  7113. name: "Front",
  7114. image: {
  7115. source: "./media/characters/reece-silvermane/front.svg",
  7116. bottom: 0.02,
  7117. extra: 1
  7118. }
  7119. },
  7120. },
  7121. [
  7122. {
  7123. name: "Macro",
  7124. height: math.unit(1.5, "miles"),
  7125. default: true
  7126. },
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7131. {
  7132. front: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(78, "kg"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/kane/front.svg",
  7138. extra: 978 / 899
  7139. }
  7140. },
  7141. },
  7142. [
  7143. {
  7144. name: "Normal",
  7145. height: math.unit(2.1, "m"),
  7146. },
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(1, "km"),
  7150. default: true
  7151. },
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(200, "kg"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/tegon/front.svg",
  7163. bottom: 0.01,
  7164. extra: 1
  7165. }
  7166. },
  7167. },
  7168. [
  7169. {
  7170. name: "Micro",
  7171. height: math.unit(1, "inch")
  7172. },
  7173. {
  7174. name: "Normal",
  7175. height: math.unit(6 + 3 / 12, "feet"),
  7176. default: true
  7177. },
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(300, "feet")
  7181. },
  7182. {
  7183. name: "Megamacro",
  7184. height: math.unit(69, "miles")
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7190. {
  7191. side: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(2304, "lbs"),
  7194. name: "Side",
  7195. image: {
  7196. source: "./media/characters/arcturax/side.svg",
  7197. extra: 790 / 376,
  7198. bottom: 0.01
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Micro",
  7205. height: math.unit(2, "inch")
  7206. },
  7207. {
  7208. name: "Normal",
  7209. height: math.unit(6, "feet")
  7210. },
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(39, "feet"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Megamacro",
  7218. height: math.unit(7, "miles")
  7219. },
  7220. ]
  7221. ))
  7222. characterMakers.push(() => makeCharacter(
  7223. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7224. {
  7225. front: {
  7226. height: math.unit(6, "feet"),
  7227. weight: math.unit(50, "lbs"),
  7228. name: "Front",
  7229. image: {
  7230. source: "./media/characters/sentri/front.svg",
  7231. extra: 1750 / 1570,
  7232. bottom: 0.025
  7233. }
  7234. },
  7235. frontAlt: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(50, "lbs"),
  7238. name: "Front (Alt)",
  7239. image: {
  7240. source: "./media/characters/sentri/front-alt.svg",
  7241. extra: 1750 / 1570,
  7242. bottom: 0.025
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(15, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(2500, "feet")
  7255. }
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(5 + 8 / 12, "feet"),
  7263. weight: math.unit(130, "lbs"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/corvin/front.svg",
  7267. extra: 1803 / 1629
  7268. }
  7269. },
  7270. frontShirt: {
  7271. height: math.unit(5 + 8 / 12, "feet"),
  7272. weight: math.unit(130, "lbs"),
  7273. name: "Front (Shirt)",
  7274. image: {
  7275. source: "./media/characters/corvin/front-shirt.svg",
  7276. extra: 1803 / 1629
  7277. }
  7278. },
  7279. frontPoncho: {
  7280. height: math.unit(5 + 8 / 12, "feet"),
  7281. weight: math.unit(130, "lbs"),
  7282. name: "Front (Poncho)",
  7283. image: {
  7284. source: "./media/characters/corvin/front-poncho.svg",
  7285. extra: 1803 / 1629
  7286. }
  7287. },
  7288. side: {
  7289. height: math.unit(5 + 8 / 12, "feet"),
  7290. weight: math.unit(130, "lbs"),
  7291. name: "Side",
  7292. image: {
  7293. source: "./media/characters/corvin/side.svg",
  7294. extra: 1012 / 945
  7295. }
  7296. },
  7297. back: {
  7298. height: math.unit(5 + 8 / 12, "feet"),
  7299. weight: math.unit(130, "lbs"),
  7300. name: "Back",
  7301. image: {
  7302. source: "./media/characters/corvin/back.svg",
  7303. extra: 1803 / 1629
  7304. }
  7305. },
  7306. },
  7307. [
  7308. {
  7309. name: "Micro",
  7310. height: math.unit(3, "inches")
  7311. },
  7312. {
  7313. name: "Normal",
  7314. height: math.unit(5 + 8 / 12, "feet")
  7315. },
  7316. {
  7317. name: "Macro",
  7318. height: math.unit(300, "feet"),
  7319. default: true
  7320. },
  7321. {
  7322. name: "Megamacro",
  7323. height: math.unit(500, "miles")
  7324. }
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(135, "lbs"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/q/front.svg",
  7336. extra: 854 / 752,
  7337. bottom: 0.005
  7338. }
  7339. },
  7340. back: {
  7341. height: math.unit(6, "feet"),
  7342. weight: math.unit(130, "lbs"),
  7343. name: "Back",
  7344. image: {
  7345. source: "./media/characters/q/back.svg",
  7346. extra: 854 / 752
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Macro",
  7353. height: math.unit(90, "feet"),
  7354. default: true
  7355. },
  7356. {
  7357. name: "Extra Macro",
  7358. height: math.unit(300, "feet"),
  7359. },
  7360. {
  7361. name: "BIG WALF",
  7362. height: math.unit(750, "feet"),
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7368. {
  7369. front: {
  7370. height: math.unit(6, "feet"),
  7371. weight: math.unit(150, "lbs"),
  7372. name: "Front",
  7373. image: {
  7374. source: "./media/characters/carley/front.svg",
  7375. extra: 3927 / 3540,
  7376. bottom: 29.2 / 735
  7377. }
  7378. }
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(6 + 3 / 12, "feet")
  7384. },
  7385. {
  7386. name: "Macro",
  7387. height: math.unit(185, "feet"),
  7388. default: true
  7389. },
  7390. {
  7391. name: "Megamacro",
  7392. height: math.unit(8, "miles"),
  7393. },
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7398. {
  7399. front: {
  7400. height: math.unit(3, "feet"),
  7401. weight: math.unit(28, "lbs"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/citrine/front.svg"
  7405. }
  7406. }
  7407. },
  7408. [
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(3, "feet"),
  7412. default: true
  7413. }
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7418. {
  7419. front: {
  7420. height: math.unit(14, "feet"),
  7421. weight: math.unit(1450, "kg"),
  7422. capacity: math.unit(15, "people"),
  7423. name: "Front",
  7424. image: {
  7425. source: "./media/characters/aura-starwind/front.svg",
  7426. extra: 1455 / 1335
  7427. }
  7428. },
  7429. side: {
  7430. height: math.unit(14, "feet"),
  7431. weight: math.unit(1450, "kg"),
  7432. capacity: math.unit(15, "people"),
  7433. name: "Side",
  7434. image: {
  7435. source: "./media/characters/aura-starwind/side.svg",
  7436. extra: 1654 / 1497
  7437. }
  7438. },
  7439. taur: {
  7440. height: math.unit(18, "feet"),
  7441. weight: math.unit(5500, "kg"),
  7442. capacity: math.unit(50, "people"),
  7443. name: "Taur",
  7444. image: {
  7445. source: "./media/characters/aura-starwind/taur.svg",
  7446. extra: 1760 / 1650
  7447. }
  7448. },
  7449. feral: {
  7450. height: math.unit(46, "feet"),
  7451. weight: math.unit(25000, "kg"),
  7452. capacity: math.unit(120, "people"),
  7453. name: "Feral",
  7454. image: {
  7455. source: "./media/characters/aura-starwind/feral.svg"
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(14, "feet"),
  7463. default: true
  7464. },
  7465. {
  7466. name: "Macro",
  7467. height: math.unit(50, "meters")
  7468. },
  7469. {
  7470. name: "Megamacro",
  7471. height: math.unit(5000, "meters")
  7472. },
  7473. {
  7474. name: "Gigamacro",
  7475. height: math.unit(100000, "kilometers")
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(2 + 7 / 12, "feet"),
  7484. weight: math.unit(32, "lbs"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/rivet/front.svg",
  7488. extra: 1716 / 1658,
  7489. bottom: 0.03
  7490. }
  7491. },
  7492. foot: {
  7493. height: math.unit(0.551, "feet"),
  7494. name: "Rivet's Foot",
  7495. image: {
  7496. source: "./media/characters/rivet/foot.svg"
  7497. },
  7498. rename: true
  7499. }
  7500. },
  7501. [
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(1.5, "inches"),
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(2 + 7 / 12, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(85, "feet")
  7514. },
  7515. {
  7516. name: "Megamacro",
  7517. height: math.unit(2.2, "km")
  7518. }
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(5 + 9 / 12, "feet"),
  7526. weight: math.unit(150, "lbs"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/coffee/front.svg",
  7530. extra: 3666 / 3032,
  7531. bottom: 0.04
  7532. }
  7533. },
  7534. foot: {
  7535. height: math.unit(1.29, "feet"),
  7536. name: "Foot",
  7537. image: {
  7538. source: "./media/characters/coffee/foot.svg"
  7539. }
  7540. },
  7541. },
  7542. [
  7543. {
  7544. name: "Micro",
  7545. height: math.unit(2, "inches"),
  7546. },
  7547. {
  7548. name: "Normal",
  7549. height: math.unit(5 + 9 / 12, "feet"),
  7550. default: true
  7551. },
  7552. {
  7553. name: "Macro",
  7554. height: math.unit(800, "feet")
  7555. },
  7556. {
  7557. name: "Megamacro",
  7558. height: math.unit(25, "miles")
  7559. }
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(200, "lbs"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/chari-gal/front.svg",
  7571. extra: 1568 / 1385,
  7572. bottom: 0.047
  7573. }
  7574. },
  7575. gigantamax: {
  7576. height: math.unit(6 * 16, "feet"),
  7577. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7578. name: "Gigantamax",
  7579. image: {
  7580. source: "./media/characters/chari-gal/gigantamax.svg",
  7581. extra: 1124 / 888,
  7582. bottom: 0.03
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(5 + 7 / 12, "feet")
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(200, "feet"),
  7594. default: true
  7595. }
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(150, "lbs"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/nova/front.svg",
  7607. extra: 5000 / 4722,
  7608. bottom: 0.02
  7609. }
  7610. }
  7611. },
  7612. [
  7613. {
  7614. name: "Micro-",
  7615. height: math.unit(0.8, "inches")
  7616. },
  7617. {
  7618. name: "Micro",
  7619. height: math.unit(2, "inches"),
  7620. default: true
  7621. },
  7622. ]
  7623. ))
  7624. characterMakers.push(() => makeCharacter(
  7625. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7626. {
  7627. front: {
  7628. height: math.unit(3 + 1 / 12, "feet"),
  7629. weight: math.unit(21.7, "lbs"),
  7630. name: "Front",
  7631. image: {
  7632. source: "./media/characters/argent/front.svg",
  7633. extra: 1471 / 1331,
  7634. bottom: 100.8 / 1575.5
  7635. }
  7636. }
  7637. },
  7638. [
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(2, "inches")
  7642. },
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(3 + 1 / 12, "feet"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(120, "feet")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7656. {
  7657. lamp: {
  7658. height: math.unit(7 * 1559 / 989, "feet"),
  7659. name: "Magic Lamp",
  7660. image: {
  7661. source: "./media/characters/mira-al-cul/lamp.svg",
  7662. extra: 1617 / 1559
  7663. }
  7664. },
  7665. front: {
  7666. height: math.unit(7, "feet"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/mira-al-cul/front.svg",
  7670. extra: 1044 / 990
  7671. }
  7672. },
  7673. },
  7674. [
  7675. {
  7676. name: "Heavily Restricted",
  7677. height: math.unit(7 * 1559 / 989, "feet")
  7678. },
  7679. {
  7680. name: "Freshly Freed",
  7681. height: math.unit(50 * 1559 / 989, "feet")
  7682. },
  7683. {
  7684. name: "World Encompassing",
  7685. height: math.unit(10000 * 1559 / 989, "miles")
  7686. },
  7687. {
  7688. name: "Galactic",
  7689. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7690. },
  7691. {
  7692. name: "Palmed Universe",
  7693. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Multiversal Matriarch",
  7698. height: math.unit(8.87e10, "yottameters")
  7699. },
  7700. {
  7701. name: "Void Mother",
  7702. height: math.unit(3.14e110, "yottaparsecs")
  7703. },
  7704. {
  7705. name: "Toying with Transcendence",
  7706. height: math.unit(1e307, "meters")
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7712. {
  7713. front: {
  7714. height: math.unit(17 + 1 / 12, "feet"),
  7715. weight: math.unit(476.2 * 5, "lbs"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/kuro-shi-uchū/front.svg",
  7719. extra: 2329 / 1835,
  7720. bottom: 0.02
  7721. }
  7722. },
  7723. },
  7724. [
  7725. {
  7726. name: "Micro",
  7727. height: math.unit(2, "inches")
  7728. },
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(12, "meters")
  7732. },
  7733. {
  7734. name: "Planetary",
  7735. height: math.unit(0.00929, "AU"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Universal",
  7740. height: math.unit(20, "gigaparsecs")
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(5 + 2 / 12, "feet"),
  7749. weight: math.unit(120, "lbs"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/katherine/front.svg",
  7753. extra: 2075 / 1969
  7754. }
  7755. },
  7756. dress: {
  7757. height: math.unit(5 + 2 / 12, "feet"),
  7758. weight: math.unit(120, "lbs"),
  7759. name: "Dress",
  7760. image: {
  7761. source: "./media/characters/katherine/dress.svg",
  7762. extra: 2258 / 2064
  7763. }
  7764. },
  7765. },
  7766. [
  7767. {
  7768. name: "Micro",
  7769. height: math.unit(1, "inches"),
  7770. default: true
  7771. },
  7772. {
  7773. name: "Normal",
  7774. height: math.unit(5 + 2 / 12, "feet")
  7775. },
  7776. {
  7777. name: "Macro",
  7778. height: math.unit(100, "meters")
  7779. },
  7780. {
  7781. name: "Megamacro",
  7782. height: math.unit(80, "miles")
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7788. {
  7789. front: {
  7790. height: math.unit(7 + 8 / 12, "feet"),
  7791. weight: math.unit(250, "lbs"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/yevis/front.svg",
  7795. extra: 1938 / 1755
  7796. }
  7797. }
  7798. },
  7799. [
  7800. {
  7801. name: "Mortal",
  7802. height: math.unit(7 + 8 / 12, "feet")
  7803. },
  7804. {
  7805. name: "Battle",
  7806. height: math.unit(25 + 11 / 12, "feet")
  7807. },
  7808. {
  7809. name: "Wrath",
  7810. height: math.unit(1654 + 11 / 12, "feet")
  7811. },
  7812. {
  7813. name: "Planet Destroyer",
  7814. height: math.unit(12000, "miles")
  7815. },
  7816. {
  7817. name: "Galaxy Conqueror",
  7818. height: math.unit(1.45, "zettameters"),
  7819. default: true
  7820. },
  7821. {
  7822. name: "Universal War",
  7823. height: math.unit(184, "gigaparsecs")
  7824. },
  7825. {
  7826. name: "Eternity War",
  7827. height: math.unit(1.98e55, "yottaparsecs")
  7828. },
  7829. ]
  7830. ))
  7831. characterMakers.push(() => makeCharacter(
  7832. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7833. {
  7834. front: {
  7835. height: math.unit(5 + 8 / 12, "feet"),
  7836. weight: math.unit(63, "kg"),
  7837. name: "Front",
  7838. image: {
  7839. source: "./media/characters/xavier/front.svg",
  7840. extra: 944 / 883
  7841. }
  7842. },
  7843. frontStretch: {
  7844. height: math.unit(5 + 8 / 12, "feet"),
  7845. weight: math.unit(63, "kg"),
  7846. name: "Stretching",
  7847. image: {
  7848. source: "./media/characters/xavier/front-stretch.svg",
  7849. extra: 962 / 820
  7850. }
  7851. },
  7852. },
  7853. [
  7854. {
  7855. name: "Normal",
  7856. height: math.unit(5 + 8 / 12, "feet")
  7857. },
  7858. {
  7859. name: "Macro",
  7860. height: math.unit(100, "meters"),
  7861. default: true
  7862. },
  7863. {
  7864. name: "McLargeHuge",
  7865. height: math.unit(10, "miles")
  7866. },
  7867. ]
  7868. ))
  7869. characterMakers.push(() => makeCharacter(
  7870. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7871. {
  7872. front: {
  7873. height: math.unit(5 + 5 / 12, "feet"),
  7874. weight: math.unit(150, "lb"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/joshii/front.svg"
  7878. }
  7879. },
  7880. foot: {
  7881. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7882. name: "Foot",
  7883. image: {
  7884. source: "./media/characters/joshii/foot.svg"
  7885. }
  7886. },
  7887. },
  7888. [
  7889. {
  7890. name: "Micro",
  7891. height: math.unit(2, "inches")
  7892. },
  7893. {
  7894. name: "Normal",
  7895. height: math.unit(5 + 5 / 12, "feet"),
  7896. default: true
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(785, "feet")
  7901. },
  7902. {
  7903. name: "Megamacro",
  7904. height: math.unit(24.5, "miles")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(6, "feet"),
  7913. weight: math.unit(150, "lb"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/goddess-elizabeth/front.svg",
  7917. extra: 1800 / 1525,
  7918. bottom: 0.005
  7919. }
  7920. },
  7921. foot: {
  7922. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7923. name: "Foot",
  7924. image: {
  7925. source: "./media/characters/goddess-elizabeth/foot.svg"
  7926. }
  7927. },
  7928. mouth: {
  7929. height: math.unit(6, "feet"),
  7930. name: "Mouth",
  7931. image: {
  7932. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7933. }
  7934. },
  7935. },
  7936. [
  7937. {
  7938. name: "Micro",
  7939. height: math.unit(12, "feet")
  7940. },
  7941. {
  7942. name: "Normal",
  7943. height: math.unit(80, "miles"),
  7944. default: true
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(15000, "parsecs")
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(5 + 9 / 12, "feet"),
  7957. weight: math.unit(144, "lb"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/kara/front.svg"
  7961. }
  7962. },
  7963. feet: {
  7964. height: math.unit(6 / 6.765, "feet"),
  7965. name: "Kara's Feet",
  7966. rename: true,
  7967. image: {
  7968. source: "./media/characters/kara/feet.svg"
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Normal",
  7975. height: math.unit(5 + 9 / 12, "feet")
  7976. },
  7977. {
  7978. name: "Macro",
  7979. height: math.unit(174, "feet"),
  7980. default: true
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(18, "feet"),
  7989. weight: math.unit(4050, "lb"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/tyrone/front.svg",
  7993. extra: 2520 / 2402,
  7994. bottom: 0.025
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(18, "feet"),
  8002. default: true
  8003. },
  8004. {
  8005. name: "Macro",
  8006. height: math.unit(300, "feet")
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(7 + 8 / 12, "feet"),
  8015. weight: math.unit(120, "lb"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/danny/front.svg",
  8019. extra: 1490 / 1350
  8020. }
  8021. },
  8022. back: {
  8023. height: math.unit(7 + 8 / 12, "feet"),
  8024. weight: math.unit(120, "lb"),
  8025. name: "Back",
  8026. image: {
  8027. source: "./media/characters/danny/back.svg",
  8028. extra: 1490 / 1350
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(7 + 8 / 12, "feet"),
  8036. default: true
  8037. },
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8042. {
  8043. front: {
  8044. height: math.unit(3.5, "inches"),
  8045. weight: math.unit(19, "grams"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/mallow/front.svg",
  8049. extra: 471 / 431
  8050. }
  8051. },
  8052. back: {
  8053. height: math.unit(3.5, "inches"),
  8054. weight: math.unit(19, "grams"),
  8055. name: "Back",
  8056. image: {
  8057. source: "./media/characters/mallow/back.svg",
  8058. extra: 471 / 431
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(3.5, "inches"),
  8066. default: true
  8067. },
  8068. ]
  8069. ))
  8070. characterMakers.push(() => makeCharacter(
  8071. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8072. {
  8073. front: {
  8074. height: math.unit(9, "feet"),
  8075. weight: math.unit(230, "kg"),
  8076. name: "Front",
  8077. image: {
  8078. source: "./media/characters/starry-aqua/front.svg"
  8079. }
  8080. },
  8081. back: {
  8082. height: math.unit(9, "feet"),
  8083. weight: math.unit(230, "kg"),
  8084. name: "Back",
  8085. image: {
  8086. source: "./media/characters/starry-aqua/back.svg"
  8087. }
  8088. },
  8089. hand: {
  8090. height: math.unit(9 * 0.1168, "feet"),
  8091. name: "Hand",
  8092. image: {
  8093. source: "./media/characters/starry-aqua/hand.svg"
  8094. }
  8095. },
  8096. foot: {
  8097. height: math.unit(9 * 0.18, "feet"),
  8098. name: "Foot",
  8099. image: {
  8100. source: "./media/characters/starry-aqua/foot.svg"
  8101. }
  8102. }
  8103. },
  8104. [
  8105. {
  8106. name: "Micro",
  8107. height: math.unit(3, "inches")
  8108. },
  8109. {
  8110. name: "Normal",
  8111. height: math.unit(9, "feet")
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(300, "feet"),
  8116. default: true
  8117. },
  8118. {
  8119. name: "Megamacro",
  8120. height: math.unit(3200, "feet")
  8121. }
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(230, "lb"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/luka/front.svg",
  8133. extra: 1,
  8134. bottom: 0.025
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(12 + 8 / 12, "feet"),
  8142. default: true
  8143. },
  8144. {
  8145. name: "Minimacro",
  8146. height: math.unit(20, "feet")
  8147. },
  8148. {
  8149. name: "Macro",
  8150. height: math.unit(250, "feet")
  8151. },
  8152. {
  8153. name: "Megamacro",
  8154. height: math.unit(5, "miles")
  8155. },
  8156. {
  8157. name: "Gigamacro",
  8158. height: math.unit(8000, "miles")
  8159. },
  8160. ]
  8161. ))
  8162. characterMakers.push(() => makeCharacter(
  8163. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8164. {
  8165. front: {
  8166. height: math.unit(6, "feet"),
  8167. weight: math.unit(150, "lb"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/natalie-nightring/front.svg",
  8171. extra: 1,
  8172. bottom: 0.06
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Uh Oh",
  8179. height: math.unit(0.1, "mm")
  8180. },
  8181. {
  8182. name: "Small",
  8183. height: math.unit(3, "inches")
  8184. },
  8185. {
  8186. name: "Human Scale",
  8187. height: math.unit(6, "feet")
  8188. },
  8189. {
  8190. name: "Librarian",
  8191. height: math.unit(50, "feet"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Immense",
  8196. height: math.unit(200, "miles")
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(6, "feet"),
  8205. weight: math.unit(180, "lbs"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/danni-rosie/front.svg",
  8209. extra: 1260 / 1128,
  8210. bottom: 0.022
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Micro",
  8217. height: math.unit(2, "inches"),
  8218. default: true
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(5 + 9 / 12, "feet"),
  8227. weight: math.unit(220, "lb"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/samantha-kruse/front.svg",
  8231. extra: (985 / 935),
  8232. bottom: 0.03
  8233. }
  8234. },
  8235. frontUndressed: {
  8236. height: math.unit(5 + 9 / 12, "feet"),
  8237. weight: math.unit(220, "lb"),
  8238. name: "Front (Undressed)",
  8239. image: {
  8240. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8241. extra: (973 / 923),
  8242. bottom: 0.025
  8243. }
  8244. },
  8245. fat: {
  8246. height: math.unit(5 + 9 / 12, "feet"),
  8247. weight: math.unit(900, "lb"),
  8248. name: "Front (Fat)",
  8249. image: {
  8250. source: "./media/characters/samantha-kruse/fat.svg",
  8251. extra: 2688 / 2561
  8252. }
  8253. },
  8254. },
  8255. [
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(5 + 9 / 12, "feet"),
  8259. default: true
  8260. }
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8265. {
  8266. back: {
  8267. height: math.unit(5 + 4 / 12, "feet"),
  8268. weight: math.unit(4963, "lb"),
  8269. name: "Back",
  8270. image: {
  8271. source: "./media/characters/amelia-rosie/back.svg",
  8272. extra: 1113 / 963,
  8273. bottom: 0.01
  8274. }
  8275. },
  8276. },
  8277. [
  8278. {
  8279. name: "Level 0",
  8280. height: math.unit(5 + 4 / 12, "feet")
  8281. },
  8282. {
  8283. name: "Level 1",
  8284. height: math.unit(164597, "feet"),
  8285. default: true
  8286. },
  8287. {
  8288. name: "Level 2",
  8289. height: math.unit(956243, "miles")
  8290. },
  8291. {
  8292. name: "Level 3",
  8293. height: math.unit(29421709423, "miles")
  8294. },
  8295. {
  8296. name: "Level 4",
  8297. height: math.unit(154, "lightyears")
  8298. },
  8299. {
  8300. name: "Level 5",
  8301. height: math.unit(4738272, "lightyears")
  8302. },
  8303. {
  8304. name: "Level 6",
  8305. height: math.unit(145787152896, "lightyears")
  8306. },
  8307. ]
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(5 + 11 / 12, "feet"),
  8314. weight: math.unit(65, "kg"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/rook-kitara/front.svg",
  8318. extra: 1347 / 1274,
  8319. bottom: 0.005
  8320. }
  8321. },
  8322. },
  8323. [
  8324. {
  8325. name: "Totally Unfair",
  8326. height: math.unit(1.8, "mm")
  8327. },
  8328. {
  8329. name: "Lap Rookie",
  8330. height: math.unit(1.4, "feet")
  8331. },
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(5 + 11 / 12, "feet"),
  8335. default: true
  8336. },
  8337. {
  8338. name: "How Did This Happen",
  8339. height: math.unit(80, "miles")
  8340. }
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(7, "feet"),
  8348. weight: math.unit(300, "lb"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/pisces/front.svg",
  8352. extra: 2255 / 2115,
  8353. bottom: 0.03
  8354. }
  8355. },
  8356. back: {
  8357. height: math.unit(7, "feet"),
  8358. weight: math.unit(300, "lb"),
  8359. name: "Back",
  8360. image: {
  8361. source: "./media/characters/pisces/back.svg",
  8362. extra: 2146 / 2055,
  8363. bottom: 0.04
  8364. }
  8365. },
  8366. },
  8367. [
  8368. {
  8369. name: "Normal",
  8370. height: math.unit(7, "feet"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Swimming Pool",
  8375. height: math.unit(12.2, "meters")
  8376. },
  8377. {
  8378. name: "Olympic Swimming Pool",
  8379. height: math.unit(56.3, "meters")
  8380. },
  8381. {
  8382. name: "Lake Superior",
  8383. height: math.unit(93900, "meters")
  8384. },
  8385. {
  8386. name: "Mediterranean Sea",
  8387. height: math.unit(644457, "meters")
  8388. },
  8389. {
  8390. name: "World's Oceans",
  8391. height: math.unit(4567491, "meters")
  8392. },
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8397. {
  8398. front: {
  8399. height: math.unit(2.3, "meters"),
  8400. weight: math.unit(120, "kg"),
  8401. name: "Front",
  8402. image: {
  8403. source: "./media/characters/zelas/front.svg"
  8404. }
  8405. },
  8406. side: {
  8407. height: math.unit(2.3, "meters"),
  8408. weight: math.unit(120, "kg"),
  8409. name: "Side",
  8410. image: {
  8411. source: "./media/characters/zelas/side.svg"
  8412. }
  8413. },
  8414. back: {
  8415. height: math.unit(2.3, "meters"),
  8416. weight: math.unit(120, "kg"),
  8417. name: "Back",
  8418. image: {
  8419. source: "./media/characters/zelas/back.svg"
  8420. }
  8421. },
  8422. foot: {
  8423. height: math.unit(1.116, "feet"),
  8424. name: "Foot",
  8425. image: {
  8426. source: "./media/characters/zelas/foot.svg"
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(2.3, "meters")
  8434. },
  8435. {
  8436. name: "Macro",
  8437. height: math.unit(30, "meters"),
  8438. default: true
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8444. {
  8445. front: {
  8446. height: math.unit(1, "inch"),
  8447. weight: math.unit(0.21, "grams"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/talbot/front.svg",
  8451. extra: 594 / 544
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Micro",
  8458. height: math.unit(1, "inch"),
  8459. default: true
  8460. },
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8465. {
  8466. front: {
  8467. height: math.unit(3 + 3 / 12, "feet"),
  8468. weight: math.unit(51.8, "lb"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/fliss/front.svg",
  8472. extra: 840 / 640
  8473. }
  8474. },
  8475. },
  8476. [
  8477. {
  8478. name: "Teeny Tiny",
  8479. height: math.unit(1, "mm")
  8480. },
  8481. {
  8482. name: "Small",
  8483. height: math.unit(1, "inch"),
  8484. default: true
  8485. },
  8486. {
  8487. name: "Standard Sylveon",
  8488. height: math.unit(3 + 3 / 12, "feet")
  8489. },
  8490. {
  8491. name: "Large Nuisance",
  8492. height: math.unit(33, "feet")
  8493. },
  8494. {
  8495. name: "City Filler",
  8496. height: math.unit(3000, "feet")
  8497. },
  8498. {
  8499. name: "New Horizon",
  8500. height: math.unit(6000, "miles")
  8501. },
  8502. ]
  8503. ))
  8504. characterMakers.push(() => makeCharacter(
  8505. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8506. {
  8507. front: {
  8508. height: math.unit(5, "cm"),
  8509. weight: math.unit(1.94, "g"),
  8510. name: "Front",
  8511. image: {
  8512. source: "./media/characters/fleta/front.svg",
  8513. extra: 835 / 803
  8514. }
  8515. },
  8516. back: {
  8517. height: math.unit(5, "cm"),
  8518. weight: math.unit(1.94, "g"),
  8519. name: "Back",
  8520. image: {
  8521. source: "./media/characters/fleta/back.svg",
  8522. extra: 835 / 803
  8523. }
  8524. },
  8525. },
  8526. [
  8527. {
  8528. name: "Micro",
  8529. height: math.unit(5, "cm"),
  8530. default: true
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8536. {
  8537. front: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(225, "lb"),
  8540. name: "Front",
  8541. image: {
  8542. source: "./media/characters/dominic/front.svg",
  8543. extra: 1770 / 1620,
  8544. bottom: 0.025
  8545. }
  8546. },
  8547. back: {
  8548. height: math.unit(6, "feet"),
  8549. weight: math.unit(225, "lb"),
  8550. name: "Back",
  8551. image: {
  8552. source: "./media/characters/dominic/back.svg",
  8553. extra: 1745 / 1620,
  8554. bottom: 0.065
  8555. }
  8556. },
  8557. },
  8558. [
  8559. {
  8560. name: "Nano",
  8561. height: math.unit(0.1, "mm")
  8562. },
  8563. {
  8564. name: "Micro-",
  8565. height: math.unit(1, "mm")
  8566. },
  8567. {
  8568. name: "Micro",
  8569. height: math.unit(4, "inches")
  8570. },
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(6 + 4 / 12, "feet"),
  8574. default: true
  8575. },
  8576. {
  8577. name: "Macro",
  8578. height: math.unit(115, "feet")
  8579. },
  8580. {
  8581. name: "Macro+",
  8582. height: math.unit(955, "feet")
  8583. },
  8584. {
  8585. name: "Megamacro",
  8586. height: math.unit(8990, "feet")
  8587. },
  8588. {
  8589. name: "Gigmacro",
  8590. height: math.unit(9310, "miles")
  8591. },
  8592. {
  8593. name: "Teramacro",
  8594. height: math.unit(1567005010, "miles")
  8595. },
  8596. {
  8597. name: "Examacro",
  8598. height: math.unit(1425, "parsecs")
  8599. },
  8600. ]
  8601. ))
  8602. characterMakers.push(() => makeCharacter(
  8603. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8604. {
  8605. front: {
  8606. height: math.unit(400, "feet"),
  8607. weight: math.unit(44444444, "lb"),
  8608. name: "Front",
  8609. image: {
  8610. source: "./media/characters/major-colonel/front.svg"
  8611. }
  8612. },
  8613. back: {
  8614. height: math.unit(400, "feet"),
  8615. weight: math.unit(44444444, "lb"),
  8616. name: "Back",
  8617. image: {
  8618. source: "./media/characters/major-colonel/back.svg"
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Macro",
  8625. height: math.unit(400, "feet"),
  8626. default: true
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8632. {
  8633. catFront: {
  8634. height: math.unit(6, "feet"),
  8635. weight: math.unit(120, "lb"),
  8636. name: "Front (Cat Side)",
  8637. image: {
  8638. source: "./media/characters/axel-lycan/cat-front.svg",
  8639. extra: 430 / 402,
  8640. bottom: 43 / 472.35
  8641. }
  8642. },
  8643. catBack: {
  8644. height: math.unit(6, "feet"),
  8645. weight: math.unit(120, "lb"),
  8646. name: "Back (Cat Side)",
  8647. image: {
  8648. source: "./media/characters/axel-lycan/cat-back.svg",
  8649. extra: 447 / 419,
  8650. bottom: 23.3 / 469
  8651. }
  8652. },
  8653. wolfFront: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(120, "lb"),
  8656. name: "Front (Wolf Side)",
  8657. image: {
  8658. source: "./media/characters/axel-lycan/wolf-front.svg",
  8659. extra: 485 / 456,
  8660. bottom: 19 / 504
  8661. }
  8662. },
  8663. wolfBack: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(120, "lb"),
  8666. name: "Back (Wolf Side)",
  8667. image: {
  8668. source: "./media/characters/axel-lycan/wolf-back.svg",
  8669. extra: 475 / 438,
  8670. bottom: 39.2 / 514
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Macro",
  8677. height: math.unit(1, "km"),
  8678. default: true
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(5 + 9 / 12, "feet"),
  8687. weight: math.unit(175, "lb"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/vanrel-hyena/front.svg",
  8691. extra: 1086 / 1010,
  8692. bottom: 0.04
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Normal",
  8699. height: math.unit(5 + 9 / 12, "feet"),
  8700. default: true
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8706. {
  8707. front: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(103, "lb"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/abbott-absol/front.svg",
  8713. extra: 2010 / 1842
  8714. }
  8715. },
  8716. },
  8717. [
  8718. {
  8719. name: "Megamicro",
  8720. height: math.unit(0.1, "mm")
  8721. },
  8722. {
  8723. name: "Micro",
  8724. height: math.unit(1, "inch")
  8725. },
  8726. {
  8727. name: "Normal",
  8728. height: math.unit(6, "feet"),
  8729. default: true
  8730. },
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8735. {
  8736. front: {
  8737. height: math.unit(6, "feet"),
  8738. weight: math.unit(264, "lb"),
  8739. name: "Front",
  8740. image: {
  8741. source: "./media/characters/hector/front.svg",
  8742. extra: 2280 / 2130,
  8743. bottom: 0.07
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Normal",
  8750. height: math.unit(12.25, "foot"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(160, "feet")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(150, "lb"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/sal/front.svg",
  8768. extra: 1846 / 1699,
  8769. bottom: 0.04
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Megamacro",
  8776. height: math.unit(10, "miles"),
  8777. default: true
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8783. {
  8784. front: {
  8785. height: math.unit(3, "meters"),
  8786. weight: math.unit(450, "kg"),
  8787. name: "front",
  8788. image: {
  8789. source: "./media/characters/ranger/front.svg",
  8790. extra: 2401 / 2243,
  8791. bottom: 0.05
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(3, "meters"),
  8799. default: true
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(14, "feet"),
  8808. weight: math.unit(800, "kg"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/theresa/front.svg",
  8812. extra: 3575 / 3346,
  8813. bottom: 0.03
  8814. }
  8815. },
  8816. },
  8817. [
  8818. {
  8819. name: "Normal",
  8820. height: math.unit(14, "feet"),
  8821. default: true
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8827. {
  8828. front: {
  8829. height: math.unit(6, "feet"),
  8830. weight: math.unit(3, "kg"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/ine/front.svg",
  8834. extra: 678 / 539,
  8835. bottom: 0.023
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Normal",
  8842. height: math.unit(2.265, "feet"),
  8843. default: true
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(5, "feet"),
  8852. weight: math.unit(30, "kg"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/vial/front.svg",
  8856. extra: 1365 / 1277,
  8857. bottom: 0.04
  8858. }
  8859. },
  8860. },
  8861. [
  8862. {
  8863. name: "Normal",
  8864. height: math.unit(5, "feet"),
  8865. default: true
  8866. },
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8871. {
  8872. side: {
  8873. height: math.unit(3.4, "meters"),
  8874. weight: math.unit(1000, "lb"),
  8875. name: "Side",
  8876. image: {
  8877. source: "./media/characters/rovoska/side.svg",
  8878. extra: 4403 / 1515
  8879. }
  8880. },
  8881. },
  8882. [
  8883. {
  8884. name: "Normal",
  8885. height: math.unit(3.4, "meters"),
  8886. default: true
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(8, "feet"),
  8895. weight: math.unit(315, "lb"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/gunner-rotthbauer/front.svg"
  8899. }
  8900. },
  8901. back: {
  8902. height: math.unit(8, "feet"),
  8903. weight: math.unit(315, "lb"),
  8904. name: "Back",
  8905. image: {
  8906. source: "./media/characters/gunner-rotthbauer/back.svg"
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Micro",
  8913. height: math.unit(3.5, "inches")
  8914. },
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(8, "feet"),
  8918. default: true
  8919. },
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(250, "feet")
  8923. },
  8924. {
  8925. name: "Megamacro",
  8926. height: math.unit(1, "AU")
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8932. {
  8933. front: {
  8934. height: math.unit(5 + 5 / 12, "feet"),
  8935. weight: math.unit(140, "lb"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/allatia/front.svg",
  8939. extra: 1227 / 1180,
  8940. bottom: 0.027
  8941. }
  8942. },
  8943. },
  8944. [
  8945. {
  8946. name: "Normal",
  8947. height: math.unit(5 + 5 / 12, "feet")
  8948. },
  8949. {
  8950. name: "Macro",
  8951. height: math.unit(250, "feet"),
  8952. default: true
  8953. },
  8954. {
  8955. name: "Megamacro",
  8956. height: math.unit(8, "miles")
  8957. }
  8958. ]
  8959. ))
  8960. characterMakers.push(() => makeCharacter(
  8961. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8962. {
  8963. front: {
  8964. height: math.unit(6, "feet"),
  8965. weight: math.unit(120, "lb"),
  8966. name: "Front",
  8967. image: {
  8968. source: "./media/characters/tene/front.svg",
  8969. extra: 1728 / 1578,
  8970. bottom: 0.022
  8971. }
  8972. },
  8973. stomping: {
  8974. height: math.unit(2.025, "meters"),
  8975. weight: math.unit(120, "lb"),
  8976. name: "Stomping",
  8977. image: {
  8978. source: "./media/characters/tene/stomping.svg",
  8979. extra: 938 / 873,
  8980. bottom: 0.01
  8981. }
  8982. },
  8983. sitting: {
  8984. height: math.unit(1, "meter"),
  8985. weight: math.unit(120, "lb"),
  8986. name: "Sitting",
  8987. image: {
  8988. source: "./media/characters/tene/sitting.svg",
  8989. extra: 437 / 415,
  8990. bottom: 0.1
  8991. }
  8992. },
  8993. feral: {
  8994. height: math.unit(3.9, "feet"),
  8995. weight: math.unit(250, "lb"),
  8996. name: "Feral",
  8997. image: {
  8998. source: "./media/characters/tene/feral.svg",
  8999. extra: 717 / 458,
  9000. bottom: 0.179
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Normal",
  9007. height: math.unit(6, "feet")
  9008. },
  9009. {
  9010. name: "Macro",
  9011. height: math.unit(300, "feet"),
  9012. default: true
  9013. },
  9014. {
  9015. name: "Megamacro",
  9016. height: math.unit(5, "miles")
  9017. },
  9018. ]
  9019. ))
  9020. characterMakers.push(() => makeCharacter(
  9021. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9022. {
  9023. side: {
  9024. height: math.unit(6, "feet"),
  9025. name: "Side",
  9026. image: {
  9027. source: "./media/characters/evander/side.svg",
  9028. extra: 877 / 477
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(0.83, "meters"),
  9036. default: true
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(12, "feet"),
  9045. weight: math.unit(1000, "lb"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9049. extra: 1762 / 1611
  9050. }
  9051. },
  9052. back: {
  9053. height: math.unit(12, "feet"),
  9054. weight: math.unit(1000, "lb"),
  9055. name: "Back",
  9056. image: {
  9057. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9058. extra: 1762 / 1611
  9059. }
  9060. },
  9061. },
  9062. [
  9063. {
  9064. name: "Normal",
  9065. height: math.unit(12, "feet"),
  9066. default: true
  9067. },
  9068. {
  9069. name: "Kaiju",
  9070. height: math.unit(150, "feet")
  9071. },
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(6, "feet"),
  9079. weight: math.unit(150, "lb"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/zero-alurus/front.svg"
  9083. }
  9084. },
  9085. back: {
  9086. height: math.unit(6, "feet"),
  9087. weight: math.unit(150, "lb"),
  9088. name: "Back",
  9089. image: {
  9090. source: "./media/characters/zero-alurus/back.svg"
  9091. }
  9092. },
  9093. },
  9094. [
  9095. {
  9096. name: "Normal",
  9097. height: math.unit(5 + 10 / 12, "feet")
  9098. },
  9099. {
  9100. name: "Macro",
  9101. height: math.unit(60, "feet"),
  9102. default: true
  9103. },
  9104. {
  9105. name: "Macro+",
  9106. height: math.unit(450, "feet")
  9107. },
  9108. ]
  9109. ))
  9110. characterMakers.push(() => makeCharacter(
  9111. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9112. {
  9113. front: {
  9114. height: math.unit(6, "feet"),
  9115. weight: math.unit(200, "lb"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/mega-shi/front.svg",
  9119. extra: 1279 / 1250,
  9120. bottom: 0.02
  9121. }
  9122. },
  9123. back: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(200, "lb"),
  9126. name: "Back",
  9127. image: {
  9128. source: "./media/characters/mega-shi/back.svg",
  9129. extra: 1279 / 1250,
  9130. bottom: 0.02
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Micro",
  9137. height: math.unit(16 + 6 / 12, "feet")
  9138. },
  9139. {
  9140. name: "Third Dimension",
  9141. height: math.unit(40, "meters")
  9142. },
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(660, "feet"),
  9146. default: true
  9147. },
  9148. {
  9149. name: "Megamacro",
  9150. height: math.unit(10, "miles")
  9151. },
  9152. {
  9153. name: "Planetary Launch",
  9154. height: math.unit(500, "miles")
  9155. },
  9156. {
  9157. name: "Interstellar",
  9158. height: math.unit(1e9, "miles")
  9159. },
  9160. {
  9161. name: "Leaving the Universe",
  9162. height: math.unit(1, "gigaparsec")
  9163. },
  9164. {
  9165. name: "Travelling Universes",
  9166. height: math.unit(30e15, "parsecs")
  9167. },
  9168. ]
  9169. ))
  9170. characterMakers.push(() => makeCharacter(
  9171. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9172. {
  9173. front: {
  9174. height: math.unit(6, "feet"),
  9175. weight: math.unit(150, "lb"),
  9176. name: "Front",
  9177. image: {
  9178. source: "./media/characters/odyssey/front.svg",
  9179. extra: 1782 / 1582,
  9180. bottom: 0.01
  9181. }
  9182. },
  9183. side: {
  9184. height: math.unit(5.7, "feet"),
  9185. weight: math.unit(140, "lb"),
  9186. name: "Side",
  9187. image: {
  9188. source: "./media/characters/odyssey/side.svg",
  9189. extra: 6462 / 5700
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(5 + 4 / 12, "feet")
  9197. },
  9198. {
  9199. name: "Macro",
  9200. height: math.unit(1, "km")
  9201. },
  9202. {
  9203. name: "Megamacro",
  9204. height: math.unit(3000, "km")
  9205. },
  9206. {
  9207. name: "Gigamacro",
  9208. height: math.unit(1, "AU"),
  9209. default: true
  9210. },
  9211. {
  9212. name: "Omniversal",
  9213. height: math.unit(100e14, "lightyears")
  9214. },
  9215. ]
  9216. ))
  9217. characterMakers.push(() => makeCharacter(
  9218. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9219. {
  9220. front: {
  9221. height: math.unit(6, "feet"),
  9222. weight: math.unit(300, "lb"),
  9223. name: "Front",
  9224. image: {
  9225. source: "./media/characters/mekuto/front.svg",
  9226. extra: 921 / 832,
  9227. bottom: 0.03
  9228. }
  9229. },
  9230. hand: {
  9231. height: math.unit(6 / 10.24, "feet"),
  9232. name: "Hand",
  9233. image: {
  9234. source: "./media/characters/mekuto/hand.svg"
  9235. }
  9236. },
  9237. foot: {
  9238. height: math.unit(6 / 5.05, "feet"),
  9239. name: "Foot",
  9240. image: {
  9241. source: "./media/characters/mekuto/foot.svg"
  9242. }
  9243. },
  9244. },
  9245. [
  9246. {
  9247. name: "Minimicro",
  9248. height: math.unit(0.2, "inches")
  9249. },
  9250. {
  9251. name: "Micro",
  9252. height: math.unit(1.5, "inches")
  9253. },
  9254. {
  9255. name: "Normal",
  9256. height: math.unit(5 + 11 / 12, "feet"),
  9257. default: true
  9258. },
  9259. {
  9260. name: "Minimacro",
  9261. height: math.unit(17 + 9 / 12, "feet")
  9262. },
  9263. {
  9264. name: "Macro",
  9265. height: math.unit(177.5, "feet")
  9266. },
  9267. {
  9268. name: "Megamacro",
  9269. height: math.unit(152, "miles")
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(6.5, "inches"),
  9278. weight: math.unit(13, "oz"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/dafydd-tomos/front.svg",
  9282. extra: 2990 / 2603,
  9283. bottom: 0.03
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Micro",
  9290. height: math.unit(6.5, "inches"),
  9291. default: true
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9297. {
  9298. front: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(150, "lb"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/splinter/front.svg",
  9304. extra: 2990 / 2882,
  9305. bottom: 0.04
  9306. }
  9307. },
  9308. back: {
  9309. height: math.unit(6, "feet"),
  9310. weight: math.unit(150, "lb"),
  9311. name: "Back",
  9312. image: {
  9313. source: "./media/characters/splinter/back.svg",
  9314. extra: 2990 / 2882,
  9315. bottom: 0.04
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Normal",
  9322. height: math.unit(6, "feet")
  9323. },
  9324. {
  9325. name: "Macro",
  9326. height: math.unit(230, "meters"),
  9327. default: true
  9328. },
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9333. {
  9334. front: {
  9335. height: math.unit(4 + 10 / 12, "feet"),
  9336. weight: math.unit(480, "lb"),
  9337. name: "Front",
  9338. image: {
  9339. source: "./media/characters/snow-gabumon/front.svg",
  9340. extra: 1140 / 963,
  9341. bottom: 0.058
  9342. }
  9343. },
  9344. back: {
  9345. height: math.unit(4 + 10 / 12, "feet"),
  9346. weight: math.unit(480, "lb"),
  9347. name: "Back",
  9348. image: {
  9349. source: "./media/characters/snow-gabumon/back.svg",
  9350. extra: 1115 / 962,
  9351. bottom: 0.041
  9352. }
  9353. },
  9354. frontUndresed: {
  9355. height: math.unit(4 + 10 / 12, "feet"),
  9356. weight: math.unit(480, "lb"),
  9357. name: "Front (Undressed)",
  9358. image: {
  9359. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9360. extra: 1061 / 960,
  9361. bottom: 0.045
  9362. }
  9363. },
  9364. },
  9365. [
  9366. {
  9367. name: "Micro",
  9368. height: math.unit(1, "inch")
  9369. },
  9370. {
  9371. name: "Normal",
  9372. height: math.unit(4 + 10 / 12, "feet"),
  9373. default: true
  9374. },
  9375. {
  9376. name: "Macro",
  9377. height: math.unit(200, "feet")
  9378. },
  9379. {
  9380. name: "Megamacro",
  9381. height: math.unit(120, "miles")
  9382. },
  9383. {
  9384. name: "Gigamacro",
  9385. height: math.unit(9800, "miles")
  9386. },
  9387. ]
  9388. ))
  9389. characterMakers.push(() => makeCharacter(
  9390. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9391. {
  9392. front: {
  9393. height: math.unit(1.7, "meters"),
  9394. weight: math.unit(140, "lb"),
  9395. name: "Front",
  9396. image: {
  9397. source: "./media/characters/moody/front.svg",
  9398. extra: 3226 / 3007,
  9399. bottom: 0.087
  9400. }
  9401. },
  9402. },
  9403. [
  9404. {
  9405. name: "Micro",
  9406. height: math.unit(1, "mm")
  9407. },
  9408. {
  9409. name: "Normal",
  9410. height: math.unit(1.7, "meters"),
  9411. default: true
  9412. },
  9413. {
  9414. name: "Macro",
  9415. height: math.unit(80, "meters")
  9416. },
  9417. {
  9418. name: "Macro+",
  9419. height: math.unit(500, "meters")
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9425. {
  9426. front: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(150, "lb"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/zyas/front.svg",
  9432. extra: 1180 / 1120,
  9433. bottom: 0.045
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(10, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(500, "feet")
  9446. },
  9447. {
  9448. name: "Megamacro",
  9449. height: math.unit(5, "miles")
  9450. },
  9451. {
  9452. name: "Teramacro",
  9453. height: math.unit(150000, "miles")
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(6, "feet"),
  9462. weight: math.unit(150, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/cuon/front.svg",
  9466. extra: 1390 / 1320,
  9467. bottom: 0.008
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Micro",
  9474. height: math.unit(3, "inches")
  9475. },
  9476. {
  9477. name: "Normal",
  9478. height: math.unit(18 + 9 / 12, "feet"),
  9479. default: true
  9480. },
  9481. {
  9482. name: "Macro",
  9483. height: math.unit(360, "feet")
  9484. },
  9485. {
  9486. name: "Megamacro",
  9487. height: math.unit(360, "miles")
  9488. },
  9489. ]
  9490. ))
  9491. characterMakers.push(() => makeCharacter(
  9492. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9493. {
  9494. front: {
  9495. height: math.unit(2.4, "meters"),
  9496. weight: math.unit(70, "kg"),
  9497. name: "Front",
  9498. image: {
  9499. source: "./media/characters/nyanuxk/front.svg",
  9500. extra: 1172 / 1084,
  9501. bottom: 0.065
  9502. }
  9503. },
  9504. side: {
  9505. height: math.unit(2.4, "meters"),
  9506. weight: math.unit(70, "kg"),
  9507. name: "Side",
  9508. image: {
  9509. source: "./media/characters/nyanuxk/side.svg",
  9510. extra: 1190 / 1132,
  9511. bottom: 0.007
  9512. }
  9513. },
  9514. back: {
  9515. height: math.unit(2.4, "meters"),
  9516. weight: math.unit(70, "kg"),
  9517. name: "Back",
  9518. image: {
  9519. source: "./media/characters/nyanuxk/back.svg",
  9520. extra: 1200 / 1141,
  9521. bottom: 0.015
  9522. }
  9523. },
  9524. foot: {
  9525. height: math.unit(0.52, "meters"),
  9526. name: "Foot",
  9527. image: {
  9528. source: "./media/characters/nyanuxk/foot.svg"
  9529. }
  9530. },
  9531. },
  9532. [
  9533. {
  9534. name: "Micro",
  9535. height: math.unit(2, "cm")
  9536. },
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(2.4, "meters"),
  9540. default: true
  9541. },
  9542. {
  9543. name: "Smaller Macro",
  9544. height: math.unit(120, "meters")
  9545. },
  9546. {
  9547. name: "Bigger Macro",
  9548. height: math.unit(1.2, "km")
  9549. },
  9550. {
  9551. name: "Megamacro",
  9552. height: math.unit(15, "kilometers")
  9553. },
  9554. {
  9555. name: "Gigamacro",
  9556. height: math.unit(2000, "km")
  9557. },
  9558. {
  9559. name: "Teramacro",
  9560. height: math.unit(500000, "km")
  9561. },
  9562. ]
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9566. {
  9567. side: {
  9568. height: math.unit(6, "feet"),
  9569. name: "Side",
  9570. image: {
  9571. source: "./media/characters/ailbhe/side.svg",
  9572. extra: 757 / 464,
  9573. bottom: 0.041
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(1.07, "meters"),
  9581. default: true
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(6, "feet"),
  9590. weight: math.unit(120, "kg"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/zevulfius/front.svg",
  9594. extra: 965 / 903
  9595. }
  9596. },
  9597. side: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(120, "kg"),
  9600. name: "Side",
  9601. image: {
  9602. source: "./media/characters/zevulfius/side.svg",
  9603. extra: 939 / 900
  9604. }
  9605. },
  9606. back: {
  9607. height: math.unit(6, "feet"),
  9608. weight: math.unit(120, "kg"),
  9609. name: "Back",
  9610. image: {
  9611. source: "./media/characters/zevulfius/back.svg",
  9612. extra: 918 / 854,
  9613. bottom: 0.005
  9614. }
  9615. },
  9616. foot: {
  9617. height: math.unit(6 / 3.72, "feet"),
  9618. name: "Foot",
  9619. image: {
  9620. source: "./media/characters/zevulfius/foot.svg"
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Macro",
  9627. height: math.unit(750, "meters")
  9628. },
  9629. {
  9630. name: "Megamacro",
  9631. height: math.unit(20, "km"),
  9632. default: true
  9633. },
  9634. {
  9635. name: "Gigamacro",
  9636. height: math.unit(2000, "km")
  9637. },
  9638. {
  9639. name: "Teramacro",
  9640. height: math.unit(250000, "km")
  9641. },
  9642. ]
  9643. ))
  9644. characterMakers.push(() => makeCharacter(
  9645. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9646. {
  9647. front: {
  9648. height: math.unit(100, "feet"),
  9649. weight: math.unit(350, "kg"),
  9650. name: "Front",
  9651. image: {
  9652. source: "./media/characters/rikes/front.svg",
  9653. extra: 1565 / 1483,
  9654. bottom: 0.017
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(100, "feet"),
  9662. default: true
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9668. {
  9669. anthro: {
  9670. height: math.unit(8, "feet"),
  9671. weight: math.unit(120, "kg"),
  9672. name: "Anthro",
  9673. image: {
  9674. source: "./media/characters/adam-silver-mane/anthro.svg",
  9675. extra: 5743 / 5339,
  9676. bottom: 0.07
  9677. }
  9678. },
  9679. taur: {
  9680. height: math.unit(16, "feet"),
  9681. weight: math.unit(1500, "kg"),
  9682. name: "Taur",
  9683. image: {
  9684. source: "./media/characters/adam-silver-mane/taur.svg",
  9685. extra: 1713 / 1571,
  9686. bottom: 0.01
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(8, "feet")
  9694. },
  9695. {
  9696. name: "Minimacro",
  9697. height: math.unit(80, "feet")
  9698. },
  9699. {
  9700. name: "Macro",
  9701. height: math.unit(800, "feet"),
  9702. default: true
  9703. },
  9704. {
  9705. name: "Megamacro",
  9706. height: math.unit(8000, "feet")
  9707. },
  9708. {
  9709. name: "Gigamacro",
  9710. height: math.unit(800, "miles")
  9711. },
  9712. {
  9713. name: "Teramacro",
  9714. height: math.unit(80000, "miles")
  9715. },
  9716. {
  9717. name: "Celestial",
  9718. height: math.unit(8e6, "miles")
  9719. },
  9720. {
  9721. name: "Star Dragon",
  9722. height: math.unit(800000, "parsecs")
  9723. },
  9724. {
  9725. name: "Godly",
  9726. height: math.unit(800, "teraparsecs")
  9727. },
  9728. ]
  9729. ))
  9730. characterMakers.push(() => makeCharacter(
  9731. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9732. {
  9733. front: {
  9734. height: math.unit(6, "feet"),
  9735. weight: math.unit(150, "lb"),
  9736. name: "Front",
  9737. image: {
  9738. source: "./media/characters/ky'owin/front.svg",
  9739. extra: 3888 / 3068,
  9740. bottom: 0.015
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(6 + 8 / 12, "feet")
  9748. },
  9749. {
  9750. name: "Large",
  9751. height: math.unit(68, "feet")
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(132, "feet")
  9756. },
  9757. {
  9758. name: "Macro+",
  9759. height: math.unit(340, "feet")
  9760. },
  9761. {
  9762. name: "Macro++",
  9763. height: math.unit(680, "feet"),
  9764. default: true
  9765. },
  9766. {
  9767. name: "Megamacro",
  9768. height: math.unit(1, "mile")
  9769. },
  9770. {
  9771. name: "Megamacro+",
  9772. height: math.unit(10, "miles")
  9773. },
  9774. ]
  9775. ))
  9776. characterMakers.push(() => makeCharacter(
  9777. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9778. {
  9779. front: {
  9780. height: math.unit(4, "feet"),
  9781. weight: math.unit(50, "lb"),
  9782. name: "Front",
  9783. image: {
  9784. source: "./media/characters/mal/front.svg",
  9785. extra: 785 / 724,
  9786. bottom: 0.07
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Micro",
  9793. height: math.unit(4, "inches")
  9794. },
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(4, "feet"),
  9798. default: true
  9799. },
  9800. {
  9801. name: "Macro",
  9802. height: math.unit(200, "feet")
  9803. },
  9804. ]
  9805. ))
  9806. characterMakers.push(() => makeCharacter(
  9807. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9808. {
  9809. front: {
  9810. height: math.unit(6, "feet"),
  9811. weight: math.unit(150, "lb"),
  9812. name: "Front",
  9813. image: {
  9814. source: "./media/characters/jordan-deware/front.svg",
  9815. extra: 1191 / 1012
  9816. }
  9817. },
  9818. },
  9819. [
  9820. {
  9821. name: "Nano",
  9822. height: math.unit(0.01, "mm")
  9823. },
  9824. {
  9825. name: "Minimicro",
  9826. height: math.unit(1, "mm")
  9827. },
  9828. {
  9829. name: "Micro",
  9830. height: math.unit(0.5, "inches")
  9831. },
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(4, "feet"),
  9835. default: true
  9836. },
  9837. {
  9838. name: "Minimacro",
  9839. height: math.unit(40, "meters")
  9840. },
  9841. {
  9842. name: "Small Macro",
  9843. height: math.unit(400, "meters")
  9844. },
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(4, "miles")
  9848. },
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(40, "miles")
  9852. },
  9853. {
  9854. name: "Megamacro+",
  9855. height: math.unit(400, "miles")
  9856. },
  9857. {
  9858. name: "Gigamacro",
  9859. height: math.unit(400000, "miles")
  9860. },
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9865. {
  9866. side: {
  9867. height: math.unit(6, "feet"),
  9868. weight: math.unit(150, "lb"),
  9869. name: "Side",
  9870. image: {
  9871. source: "./media/characters/kimiko/side.svg",
  9872. extra: 600 / 358
  9873. }
  9874. },
  9875. },
  9876. [
  9877. {
  9878. name: "Normal",
  9879. height: math.unit(15, "feet"),
  9880. default: true
  9881. },
  9882. {
  9883. name: "Macro",
  9884. height: math.unit(220, "feet")
  9885. },
  9886. {
  9887. name: "Macro+",
  9888. height: math.unit(1450, "feet")
  9889. },
  9890. {
  9891. name: "Megamacro",
  9892. height: math.unit(11500, "feet")
  9893. },
  9894. {
  9895. name: "Gigamacro",
  9896. height: math.unit(9500, "miles")
  9897. },
  9898. {
  9899. name: "Teramacro",
  9900. height: math.unit(2208005005, "miles")
  9901. },
  9902. {
  9903. name: "Examacro",
  9904. height: math.unit(2750, "parsecs")
  9905. },
  9906. {
  9907. name: "Zettamacro",
  9908. height: math.unit(101500, "parsecs")
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(70, "kg"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/andrew-sleepy/front.svg"
  9921. }
  9922. },
  9923. side: {
  9924. height: math.unit(6, "feet"),
  9925. weight: math.unit(70, "kg"),
  9926. name: "Side",
  9927. image: {
  9928. source: "./media/characters/andrew-sleepy/side.svg"
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Micro",
  9935. height: math.unit(1, "mm"),
  9936. default: true
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(150, "lb"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/judio/front.svg",
  9949. extra: 1258 / 1110
  9950. }
  9951. },
  9952. },
  9953. [
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(5 + 6 / 12, "feet")
  9957. },
  9958. {
  9959. name: "Macro",
  9960. height: math.unit(1000, "feet"),
  9961. default: true
  9962. },
  9963. {
  9964. name: "Megamacro",
  9965. height: math.unit(10, "miles")
  9966. },
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9971. {
  9972. front: {
  9973. height: math.unit(6, "feet"),
  9974. weight: math.unit(68, "kg"),
  9975. name: "Front",
  9976. image: {
  9977. source: "./media/characters/nomaxice/front.svg",
  9978. extra: 1498 / 1073,
  9979. bottom: 0.075
  9980. }
  9981. },
  9982. foot: {
  9983. height: math.unit(1.1, "feet"),
  9984. name: "Foot",
  9985. image: {
  9986. source: "./media/characters/nomaxice/foot.svg"
  9987. }
  9988. },
  9989. },
  9990. [
  9991. {
  9992. name: "Micro",
  9993. height: math.unit(8, "cm")
  9994. },
  9995. {
  9996. name: "Norm",
  9997. height: math.unit(1.82, "m")
  9998. },
  9999. {
  10000. name: "Norm+",
  10001. height: math.unit(8.8, "feet")
  10002. },
  10003. {
  10004. name: "Big",
  10005. height: math.unit(8, "meters"),
  10006. default: true
  10007. },
  10008. {
  10009. name: "Macro",
  10010. height: math.unit(18, "meters")
  10011. },
  10012. {
  10013. name: "Macro+",
  10014. height: math.unit(88, "meters")
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10020. {
  10021. front: {
  10022. height: math.unit(12, "feet"),
  10023. weight: math.unit(1.5, "tons"),
  10024. name: "Front",
  10025. image: {
  10026. source: "./media/characters/dydros/front.svg",
  10027. extra: 863 / 800,
  10028. bottom: 0.015
  10029. }
  10030. },
  10031. back: {
  10032. height: math.unit(12, "feet"),
  10033. weight: math.unit(1.5, "tons"),
  10034. name: "Back",
  10035. image: {
  10036. source: "./media/characters/dydros/back.svg",
  10037. extra: 900 / 843,
  10038. bottom: 0.005
  10039. }
  10040. },
  10041. },
  10042. [
  10043. {
  10044. name: "Normal",
  10045. height: math.unit(12, "feet"),
  10046. default: true
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(6, "feet"),
  10055. weight: math.unit(100, "kg"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/riggi/front.svg",
  10059. extra: 5787 / 5303
  10060. }
  10061. },
  10062. hyper: {
  10063. height: math.unit(6 * 5 / 3, "feet"),
  10064. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10065. name: "Hyper",
  10066. image: {
  10067. source: "./media/characters/riggi/hyper.svg",
  10068. extra: 3595 / 3485
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Small Macro",
  10075. height: math.unit(50, "feet")
  10076. },
  10077. {
  10078. name: "Default",
  10079. height: math.unit(200, "feet"),
  10080. default: true
  10081. },
  10082. {
  10083. name: "Loom",
  10084. height: math.unit(10000, "feet")
  10085. },
  10086. {
  10087. name: "Cruising Altitude",
  10088. height: math.unit(30000, "feet")
  10089. },
  10090. {
  10091. name: "Megamacro",
  10092. height: math.unit(100, "miles")
  10093. },
  10094. {
  10095. name: "Continent Sized",
  10096. height: math.unit(2800, "miles")
  10097. },
  10098. {
  10099. name: "Earth Sized",
  10100. height: math.unit(8000, "miles")
  10101. },
  10102. ]
  10103. ))
  10104. characterMakers.push(() => makeCharacter(
  10105. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10106. {
  10107. front: {
  10108. height: math.unit(6, "feet"),
  10109. weight: math.unit(250, "lb"),
  10110. name: "Front",
  10111. image: {
  10112. source: "./media/characters/alexi/front.svg",
  10113. extra: 3483 / 3291,
  10114. bottom: 0.04
  10115. }
  10116. },
  10117. back: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(250, "lb"),
  10120. name: "Back",
  10121. image: {
  10122. source: "./media/characters/alexi/back.svg",
  10123. extra: 3533 / 3356,
  10124. bottom: 0.021
  10125. }
  10126. },
  10127. frontTransforming: {
  10128. height: math.unit(8.58, "feet"),
  10129. weight: math.unit(1300, "lb"),
  10130. name: "Transforming",
  10131. image: {
  10132. source: "./media/characters/alexi/front-transforming.svg",
  10133. extra: 437 / 409,
  10134. bottom: 19 / 458.66
  10135. }
  10136. },
  10137. frontTransformed: {
  10138. height: math.unit(12.5, "feet"),
  10139. weight: math.unit(4000, "lb"),
  10140. name: "Transformed",
  10141. image: {
  10142. source: "./media/characters/alexi/front-transformed.svg",
  10143. extra: 639 / 614,
  10144. bottom: 30.55 / 671
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Normal",
  10151. height: math.unit(14, "feet"),
  10152. default: true
  10153. },
  10154. {
  10155. name: "Minimacro",
  10156. height: math.unit(30, "meters")
  10157. },
  10158. {
  10159. name: "Macro",
  10160. height: math.unit(500, "meters")
  10161. },
  10162. {
  10163. name: "Megamacro",
  10164. height: math.unit(9000, "km")
  10165. },
  10166. {
  10167. name: "Teramacro",
  10168. height: math.unit(384000, "km")
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10174. {
  10175. front: {
  10176. height: math.unit(6, "feet"),
  10177. weight: math.unit(150, "lb"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/kayroo/front.svg",
  10181. extra: 1153 / 1038,
  10182. bottom: 0.06
  10183. }
  10184. },
  10185. foot: {
  10186. height: math.unit(6, "feet"),
  10187. weight: math.unit(150, "lb"),
  10188. name: "Foot",
  10189. image: {
  10190. source: "./media/characters/kayroo/foot.svg"
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(8, "feet"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Minimacro",
  10202. height: math.unit(250, "feet")
  10203. },
  10204. {
  10205. name: "Macro",
  10206. height: math.unit(2800, "feet")
  10207. },
  10208. {
  10209. name: "Megamacro",
  10210. height: math.unit(5200, "feet")
  10211. },
  10212. {
  10213. name: "Gigamacro",
  10214. height: math.unit(27000, "feet")
  10215. },
  10216. {
  10217. name: "Omega",
  10218. height: math.unit(45000, "feet")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(18, "feet"),
  10227. weight: math.unit(5800, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/rhys/front.svg",
  10231. extra: 3386 / 3090,
  10232. bottom: 0.07
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(18, "feet"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Working Size",
  10244. height: math.unit(200, "feet")
  10245. },
  10246. {
  10247. name: "Demolition Size",
  10248. height: math.unit(2000, "feet")
  10249. },
  10250. {
  10251. name: "Maximum Licensed Size",
  10252. height: math.unit(5, "miles")
  10253. },
  10254. {
  10255. name: "Maximum Observed Size",
  10256. height: math.unit(10, "yottameters")
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(250, "lb"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/toto/front.svg",
  10269. extra: 527 / 479,
  10270. bottom: 0.05
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Micro",
  10277. height: math.unit(3, "feet")
  10278. },
  10279. {
  10280. name: "Normal",
  10281. height: math.unit(10, "feet")
  10282. },
  10283. {
  10284. name: "Macro",
  10285. height: math.unit(150, "feet"),
  10286. default: true
  10287. },
  10288. {
  10289. name: "Megamacro",
  10290. height: math.unit(1200, "feet")
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "King", species: ["lion"], tags: ["anthro"] },
  10296. {
  10297. back: {
  10298. height: math.unit(6, "feet"),
  10299. weight: math.unit(150, "lb"),
  10300. name: "Back",
  10301. image: {
  10302. source: "./media/characters/king/back.svg"
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Micro",
  10309. height: math.unit(2, "inches")
  10310. },
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(8, "feet")
  10314. },
  10315. {
  10316. name: "Macro",
  10317. height: math.unit(200, "feet"),
  10318. default: true
  10319. },
  10320. {
  10321. name: "Megamacro",
  10322. height: math.unit(50, "miles")
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10328. {
  10329. anthro: {
  10330. height: math.unit(6 + 5 / 12, "feet"),
  10331. weight: math.unit(280, "lb"),
  10332. name: "Anthro",
  10333. image: {
  10334. source: "./media/characters/cordite/anthro.svg",
  10335. extra: 1986 / 1905,
  10336. bottom: 0.025
  10337. }
  10338. },
  10339. feral: {
  10340. height: math.unit(2, "feet"),
  10341. weight: math.unit(90, "lb"),
  10342. name: "Feral",
  10343. image: {
  10344. source: "./media/characters/cordite/feral.svg",
  10345. extra: 1260 / 755,
  10346. bottom: 0.05
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(6 + 5 / 12, "feet"),
  10354. default: true
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(150, "lb"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/pianostrong/front.svg",
  10367. extra: 6577 / 6254,
  10368. bottom: 0.02
  10369. }
  10370. },
  10371. side: {
  10372. height: math.unit(6, "feet"),
  10373. weight: math.unit(150, "lb"),
  10374. name: "Side",
  10375. image: {
  10376. source: "./media/characters/pianostrong/side.svg",
  10377. extra: 6106 / 5730
  10378. }
  10379. },
  10380. back: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(150, "lb"),
  10383. name: "Back",
  10384. image: {
  10385. source: "./media/characters/pianostrong/back.svg",
  10386. extra: 6085 / 5733,
  10387. bottom: 0.01
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Macro",
  10394. height: math.unit(100, "feet")
  10395. },
  10396. {
  10397. name: "Macro+",
  10398. height: math.unit(300, "feet"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Macro++",
  10403. height: math.unit(1000, "feet")
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10409. {
  10410. front: {
  10411. height: math.unit(6, "feet"),
  10412. weight: math.unit(150, "lb"),
  10413. name: "Front",
  10414. image: {
  10415. source: "./media/characters/kona/front.svg",
  10416. extra: 2960 / 2629,
  10417. bottom: 0.005
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Normal",
  10424. height: math.unit(11 + 8 / 12, "feet")
  10425. },
  10426. {
  10427. name: "Macro",
  10428. height: math.unit(850, "feet"),
  10429. default: true
  10430. },
  10431. {
  10432. name: "Macro+",
  10433. height: math.unit(1.5, "km"),
  10434. default: true
  10435. },
  10436. {
  10437. name: "Megamacro",
  10438. height: math.unit(80, "miles")
  10439. },
  10440. {
  10441. name: "Gigamacro",
  10442. height: math.unit(3500, "miles")
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10448. {
  10449. side: {
  10450. height: math.unit(1.9, "meters"),
  10451. weight: math.unit(326, "kg"),
  10452. name: "Side",
  10453. image: {
  10454. source: "./media/characters/levi/side.svg",
  10455. extra: 1704 / 1334,
  10456. bottom: 0.02
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(1.9, "meters"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Macro",
  10468. height: math.unit(20, "meters")
  10469. },
  10470. {
  10471. name: "Macro+",
  10472. height: math.unit(200, "meters")
  10473. },
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(2, "km")
  10477. },
  10478. {
  10479. name: "Megamacro+",
  10480. height: math.unit(20, "km")
  10481. },
  10482. {
  10483. name: "Gigamacro",
  10484. height: math.unit(2500, "km")
  10485. },
  10486. {
  10487. name: "Gigamacro+",
  10488. height: math.unit(120000, "km")
  10489. },
  10490. {
  10491. name: "Teramacro",
  10492. height: math.unit(7.77e6, "km")
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10498. {
  10499. front: {
  10500. height: math.unit(6 + 4 / 12, "feet"),
  10501. weight: math.unit(188, "lb"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/bmc/front.svg",
  10505. extra: 1067 / 1022,
  10506. bottom: 0.047
  10507. }
  10508. },
  10509. },
  10510. [
  10511. {
  10512. name: "Human-sized",
  10513. height: math.unit(6 + 4 / 12, "feet")
  10514. },
  10515. {
  10516. name: "Small",
  10517. height: math.unit(250, "feet")
  10518. },
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(1250, "feet"),
  10522. default: true
  10523. },
  10524. {
  10525. name: "Good Day",
  10526. height: math.unit(88, "miles")
  10527. },
  10528. {
  10529. name: "Largest Measured Size",
  10530. height: math.unit(11.2e6, "lightyears")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(20, "feet"),
  10539. weight: math.unit(2016, "kg"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/sven-the-kaiju/front.svg",
  10543. extra: 1479 / 1449,
  10544. bottom: 0.05
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Fairy",
  10551. height: math.unit(6, "inches")
  10552. },
  10553. {
  10554. name: "Normal",
  10555. height: math.unit(20, "feet"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Rampage",
  10560. height: math.unit(200, "feet")
  10561. },
  10562. {
  10563. name: "Archfey Forest Guardian",
  10564. height: math.unit(1, "mile")
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(4, "meters"),
  10573. weight: math.unit(2, "tons"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/marik/front.svg",
  10577. extra: 1057 / 1003,
  10578. bottom: 0.08
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(4, "meters"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Macro",
  10590. height: math.unit(20, "meters")
  10591. },
  10592. {
  10593. name: "Megamacro",
  10594. height: math.unit(50, "km")
  10595. },
  10596. {
  10597. name: "Gigamacro",
  10598. height: math.unit(100, "km")
  10599. },
  10600. {
  10601. name: "Alpha Macro",
  10602. height: math.unit(7.88e7, "yottameters")
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10608. {
  10609. front: {
  10610. height: math.unit(6, "feet"),
  10611. weight: math.unit(110, "lb"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/mel/front.svg",
  10615. extra: 736 / 617,
  10616. bottom: 0.017
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Pico",
  10623. height: math.unit(3, "pm")
  10624. },
  10625. {
  10626. name: "Nano",
  10627. height: math.unit(3, "nm")
  10628. },
  10629. {
  10630. name: "Micro",
  10631. height: math.unit(0.3, "mm"),
  10632. default: true
  10633. },
  10634. {
  10635. name: "Micro+",
  10636. height: math.unit(3, "mm")
  10637. },
  10638. {
  10639. name: "Normal",
  10640. height: math.unit(5 + 10.5 / 12, "feet")
  10641. },
  10642. ]
  10643. ))
  10644. characterMakers.push(() => makeCharacter(
  10645. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10646. {
  10647. kaiju: {
  10648. height: math.unit(1.75, "meters"),
  10649. weight: math.unit(55, "kg"),
  10650. name: "Kaiju",
  10651. image: {
  10652. source: "./media/characters/lykonous/kaiju.svg",
  10653. extra: 1055 / 946,
  10654. bottom: 0.135
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(2.5, "meters"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Kaiju Dragon",
  10666. height: math.unit(60, "meters")
  10667. },
  10668. {
  10669. name: "Mega Kaiju",
  10670. height: math.unit(120, "km")
  10671. },
  10672. {
  10673. name: "Giga Kaiju",
  10674. height: math.unit(200, "megameters")
  10675. },
  10676. {
  10677. name: "Terra Kaiju",
  10678. height: math.unit(400, "gigameters")
  10679. },
  10680. {
  10681. name: "Kaiju Dragon God",
  10682. height: math.unit(13000, "exaparsecs")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(150, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/blü/front.svg",
  10695. extra: 1883 / 1564,
  10696. bottom: 0.031
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(13, "feet"),
  10704. default: true
  10705. },
  10706. {
  10707. name: "Big Boi",
  10708. height: math.unit(150, "meters")
  10709. },
  10710. {
  10711. name: "Mini Stomper",
  10712. height: math.unit(300, "meters")
  10713. },
  10714. {
  10715. name: "Macro",
  10716. height: math.unit(1000, "meters")
  10717. },
  10718. {
  10719. name: "Megamacro",
  10720. height: math.unit(11000, "meters")
  10721. },
  10722. {
  10723. name: "Gigamacro",
  10724. height: math.unit(11000, "km")
  10725. },
  10726. {
  10727. name: "Teramacro",
  10728. height: math.unit(420000, "km")
  10729. },
  10730. {
  10731. name: "Examacro",
  10732. height: math.unit(120, "parsecs")
  10733. },
  10734. {
  10735. name: "God Tho",
  10736. height: math.unit(98000000000, "parsecs")
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10742. {
  10743. taurFront: {
  10744. height: math.unit(6, "feet"),
  10745. weight: math.unit(200, "lb"),
  10746. name: "Taur (Front)",
  10747. image: {
  10748. source: "./media/characters/scales/taur-front.svg",
  10749. extra: 1,
  10750. bottom: 0.05
  10751. }
  10752. },
  10753. taurBack: {
  10754. height: math.unit(6, "feet"),
  10755. weight: math.unit(200, "lb"),
  10756. name: "Taur (Back)",
  10757. image: {
  10758. source: "./media/characters/scales/taur-back.svg",
  10759. extra: 1,
  10760. bottom: 0.08
  10761. }
  10762. },
  10763. anthro: {
  10764. height: math.unit(6 * 7 / 12, "feet"),
  10765. weight: math.unit(100, "lb"),
  10766. name: "Anthro",
  10767. image: {
  10768. source: "./media/characters/scales/anthro.svg",
  10769. extra: 1,
  10770. bottom: 0.06
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Normal",
  10777. height: math.unit(12, "feet"),
  10778. default: true
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(6, "feet"),
  10787. weight: math.unit(150, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/koragos/front.svg",
  10791. extra: 841 / 794,
  10792. bottom: 0.035
  10793. }
  10794. },
  10795. back: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(150, "lb"),
  10798. name: "Back",
  10799. image: {
  10800. source: "./media/characters/koragos/back.svg",
  10801. extra: 841 / 810,
  10802. bottom: 0.022
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(6 + 11 / 12, "feet"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Macro",
  10814. height: math.unit(490, "feet")
  10815. },
  10816. {
  10817. name: "Megamacro",
  10818. height: math.unit(10, "miles")
  10819. },
  10820. {
  10821. name: "Gigamacro",
  10822. height: math.unit(50, "miles")
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(6, "feet"),
  10831. weight: math.unit(250, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/xylrem/front.svg",
  10835. extra: 3323 / 3050,
  10836. bottom: 0.065
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Micro",
  10843. height: math.unit(4, "feet")
  10844. },
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(16, "feet"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Macro",
  10852. height: math.unit(2720, "feet")
  10853. },
  10854. {
  10855. name: "Megamacro",
  10856. height: math.unit(25000, "miles")
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10862. {
  10863. front: {
  10864. height: math.unit(8, "feet"),
  10865. weight: math.unit(250, "kg"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/ikideru/front.svg",
  10869. extra: 930 / 870,
  10870. bottom: 0.087
  10871. }
  10872. },
  10873. back: {
  10874. height: math.unit(8, "feet"),
  10875. weight: math.unit(250, "kg"),
  10876. name: "Back",
  10877. image: {
  10878. source: "./media/characters/ikideru/back.svg",
  10879. extra: 919 / 852,
  10880. bottom: 0.055
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Rare",
  10887. height: math.unit(8, "feet"),
  10888. default: true
  10889. },
  10890. {
  10891. name: "Playful Loom",
  10892. height: math.unit(80, "feet")
  10893. },
  10894. {
  10895. name: "City Leaner",
  10896. height: math.unit(230, "feet")
  10897. },
  10898. {
  10899. name: "Megamacro",
  10900. height: math.unit(2500, "feet")
  10901. },
  10902. {
  10903. name: "Gigamacro",
  10904. height: math.unit(26400, "feet")
  10905. },
  10906. {
  10907. name: "Tectonic Shifter",
  10908. height: math.unit(1.7, "megameters")
  10909. },
  10910. {
  10911. name: "Planet Carer",
  10912. height: math.unit(21, "megameters")
  10913. },
  10914. {
  10915. name: "God",
  10916. height: math.unit(11157.22, "parsecs")
  10917. },
  10918. ]
  10919. ))
  10920. characterMakers.push(() => makeCharacter(
  10921. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10922. {
  10923. front: {
  10924. height: math.unit(6, "feet"),
  10925. weight: math.unit(120, "lb"),
  10926. name: "Front",
  10927. image: {
  10928. source: "./media/characters/neo/front.svg"
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Micro",
  10935. height: math.unit(2, "inches"),
  10936. default: true
  10937. },
  10938. {
  10939. name: "Human Size",
  10940. height: math.unit(5 + 8 / 12, "feet")
  10941. },
  10942. ]
  10943. ))
  10944. characterMakers.push(() => makeCharacter(
  10945. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10946. {
  10947. front: {
  10948. height: math.unit(13 + 10 / 12, "feet"),
  10949. weight: math.unit(5320, "lb"),
  10950. name: "Front",
  10951. image: {
  10952. source: "./media/characters/chauncey-chantz/front.svg",
  10953. extra: 1587 / 1435,
  10954. bottom: 0.02
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(13 + 10 / 12, "feet"),
  10962. default: true
  10963. },
  10964. {
  10965. name: "Macro",
  10966. height: math.unit(45, "feet")
  10967. },
  10968. {
  10969. name: "Megamacro",
  10970. height: math.unit(250, "miles")
  10971. },
  10972. {
  10973. name: "Planetary",
  10974. height: math.unit(10000, "miles")
  10975. },
  10976. {
  10977. name: "Galactic",
  10978. height: math.unit(40000, "parsecs")
  10979. },
  10980. {
  10981. name: "Universal",
  10982. height: math.unit(1, "yottameter")
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10988. {
  10989. front: {
  10990. height: math.unit(6, "feet"),
  10991. weight: math.unit(150, "lb"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/epifox/front.svg",
  10995. extra: 1,
  10996. bottom: 0.075
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Micro",
  11003. height: math.unit(6, "inches")
  11004. },
  11005. {
  11006. name: "Normal",
  11007. height: math.unit(12, "feet"),
  11008. default: true
  11009. },
  11010. {
  11011. name: "Macro",
  11012. height: math.unit(3810, "feet")
  11013. },
  11014. {
  11015. name: "Megamacro",
  11016. height: math.unit(500, "miles")
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11022. {
  11023. front: {
  11024. height: math.unit(1.8796, "m"),
  11025. weight: math.unit(230, "lb"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/colin-t/front.svg",
  11029. extra: 1272 / 1193,
  11030. bottom: 0.07
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Micro",
  11037. height: math.unit(0.571, "meters")
  11038. },
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(1.8796, "meters"),
  11042. default: true
  11043. },
  11044. {
  11045. name: "Tall",
  11046. height: math.unit(4, "meters")
  11047. },
  11048. {
  11049. name: "Macro",
  11050. height: math.unit(67.241, "meters")
  11051. },
  11052. {
  11053. name: "Megamacro",
  11054. height: math.unit(371.856, "meters")
  11055. },
  11056. {
  11057. name: "Planetary",
  11058. height: math.unit(12631.5689, "km")
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11064. {
  11065. front: {
  11066. height: math.unit(1.85, "meters"),
  11067. weight: math.unit(80, "kg"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/matvei/front.svg",
  11071. extra: 614 / 594,
  11072. bottom: 0.01
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(1.85, "meters"),
  11080. default: true
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(5 + 9 / 12, "feet"),
  11089. weight: math.unit(70, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/quincy/front.svg",
  11093. extra: 3041 / 2751
  11094. }
  11095. },
  11096. back: {
  11097. height: math.unit(5 + 9 / 12, "feet"),
  11098. weight: math.unit(70, "lb"),
  11099. name: "Back",
  11100. image: {
  11101. source: "./media/characters/quincy/back.svg",
  11102. extra: 3041 / 2751
  11103. }
  11104. },
  11105. flying: {
  11106. height: math.unit(5 + 4 / 12, "feet"),
  11107. weight: math.unit(70, "lb"),
  11108. name: "Flying",
  11109. image: {
  11110. source: "./media/characters/quincy/flying.svg",
  11111. extra: 1044 / 930
  11112. }
  11113. },
  11114. },
  11115. [
  11116. {
  11117. name: "Micro",
  11118. height: math.unit(3, "cm")
  11119. },
  11120. {
  11121. name: "Normal",
  11122. height: math.unit(5 + 9 / 12, "feet")
  11123. },
  11124. {
  11125. name: "Macro",
  11126. height: math.unit(200, "meters"),
  11127. default: true
  11128. },
  11129. {
  11130. name: "Megamacro",
  11131. height: math.unit(1000, "meters")
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11137. {
  11138. front: {
  11139. height: math.unit(4 + 7 / 12, "feet"),
  11140. weight: math.unit(150, "lb"),
  11141. name: "Front",
  11142. image: {
  11143. source: "./media/characters/vanrel/front.svg",
  11144. extra: 1,
  11145. bottom: 0.02
  11146. }
  11147. },
  11148. elemental: {
  11149. height: math.unit(3, "feet"),
  11150. weight: math.unit(150, "lb"),
  11151. name: "Elemental",
  11152. image: {
  11153. source: "./media/characters/vanrel/elemental.svg",
  11154. extra: 192.3 / 162.8,
  11155. bottom: 1.79 / 194.17
  11156. }
  11157. },
  11158. side: {
  11159. height: math.unit(4 + 7 / 12, "feet"),
  11160. weight: math.unit(150, "lb"),
  11161. name: "Side",
  11162. image: {
  11163. source: "./media/characters/vanrel/side.svg",
  11164. extra: 1,
  11165. bottom: 0.025
  11166. }
  11167. },
  11168. tome: {
  11169. height: math.unit(1.35, "feet"),
  11170. weight: math.unit(10, "lb"),
  11171. name: "Vanrel's Tome",
  11172. rename: true,
  11173. image: {
  11174. source: "./media/characters/vanrel/tome.svg"
  11175. }
  11176. },
  11177. beans: {
  11178. height: math.unit(0.89, "feet"),
  11179. name: "Beans",
  11180. image: {
  11181. source: "./media/characters/vanrel/beans.svg"
  11182. }
  11183. },
  11184. },
  11185. [
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(4 + 7 / 12, "feet"),
  11189. default: true
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(7 + 5 / 12, "feet"),
  11198. weight: math.unit(150, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/kuiper-vanrel/front.svg",
  11202. extra: 1118 / 1068,
  11203. bottom: 0.09
  11204. }
  11205. },
  11206. foot: {
  11207. height: math.unit(0.55, "meters"),
  11208. name: "Foot",
  11209. image: {
  11210. source: "./media/characters/kuiper-vanrel/foot.svg",
  11211. }
  11212. },
  11213. battle: {
  11214. height: math.unit(6.824, "feet"),
  11215. weight: math.unit(150, "lb"),
  11216. name: "Battle",
  11217. image: {
  11218. source: "./media/characters/kuiper-vanrel/battle.svg",
  11219. extra: 1466 / 1327,
  11220. bottom: 29 / 1492.5
  11221. }
  11222. },
  11223. battleAlt: {
  11224. height: math.unit(6.824, "feet"),
  11225. weight: math.unit(150, "lb"),
  11226. name: "Battle (Alt)",
  11227. image: {
  11228. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11229. extra: 2081 / 1965,
  11230. bottom: 40 / 2121
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(7 + 5 / 12, "feet"),
  11238. default: true
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11244. {
  11245. front: {
  11246. height: math.unit(8 + 5 / 12, "feet"),
  11247. weight: math.unit(150, "lb"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/keset-vanrel/front.svg",
  11251. extra: 1150 / 1084,
  11252. bottom: 0.05
  11253. }
  11254. },
  11255. hand: {
  11256. height: math.unit(0.6, "meters"),
  11257. name: "Hand",
  11258. image: {
  11259. source: "./media/characters/keset-vanrel/hand.svg"
  11260. }
  11261. },
  11262. foot: {
  11263. height: math.unit(0.94978, "meters"),
  11264. name: "Foot",
  11265. image: {
  11266. source: "./media/characters/keset-vanrel/foot.svg"
  11267. }
  11268. },
  11269. battle: {
  11270. height: math.unit(7.408, "feet"),
  11271. weight: math.unit(150, "lb"),
  11272. name: "Battle",
  11273. image: {
  11274. source: "./media/characters/keset-vanrel/battle.svg",
  11275. extra: 1890 / 1386,
  11276. bottom: 73.28 / 1970
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Normal",
  11283. height: math.unit(8 + 5 / 12, "feet"),
  11284. default: true
  11285. },
  11286. ]
  11287. ))
  11288. characterMakers.push(() => makeCharacter(
  11289. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11290. {
  11291. front: {
  11292. height: math.unit(6, "feet"),
  11293. weight: math.unit(150, "lb"),
  11294. name: "Front",
  11295. image: {
  11296. source: "./media/characters/neos/front.svg",
  11297. extra: 1696 / 992,
  11298. bottom: 0.14
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Normal",
  11305. height: math.unit(54, "cm"),
  11306. default: true
  11307. },
  11308. {
  11309. name: "Macro",
  11310. height: math.unit(100, "m")
  11311. },
  11312. {
  11313. name: "Megamacro",
  11314. height: math.unit(10, "km")
  11315. },
  11316. {
  11317. name: "Megamacro+",
  11318. height: math.unit(100, "km")
  11319. },
  11320. {
  11321. name: "Gigamacro",
  11322. height: math.unit(100, "Mm")
  11323. },
  11324. {
  11325. name: "Teramacro",
  11326. height: math.unit(100, "Gm")
  11327. },
  11328. {
  11329. name: "Examacro",
  11330. height: math.unit(100, "Em")
  11331. },
  11332. {
  11333. name: "Godly",
  11334. height: math.unit(10000, "Ym")
  11335. },
  11336. {
  11337. name: "Beyond Godly",
  11338. height: math.unit(25, "multiverses")
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11344. {
  11345. feminine: {
  11346. height: math.unit(5, "feet"),
  11347. weight: math.unit(100, "lb"),
  11348. name: "Feminine",
  11349. image: {
  11350. source: "./media/characters/sammy-mouse/feminine.svg",
  11351. extra: 2526 / 2425,
  11352. bottom: 0.123
  11353. }
  11354. },
  11355. masculine: {
  11356. height: math.unit(5, "feet"),
  11357. weight: math.unit(100, "lb"),
  11358. name: "Masculine",
  11359. image: {
  11360. source: "./media/characters/sammy-mouse/masculine.svg",
  11361. extra: 2526 / 2425,
  11362. bottom: 0.123
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Micro",
  11369. height: math.unit(5, "inches")
  11370. },
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(5, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(60, "feet")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(4, "feet"),
  11387. weight: math.unit(50, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/kole/front.svg",
  11391. extra: 1423 / 1303,
  11392. bottom: 0.025
  11393. }
  11394. },
  11395. back: {
  11396. height: math.unit(4, "feet"),
  11397. weight: math.unit(50, "lb"),
  11398. name: "Back",
  11399. image: {
  11400. source: "./media/characters/kole/back.svg",
  11401. extra: 1426 / 1280,
  11402. bottom: 0.02
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(4, "feet"),
  11410. default: true
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11416. {
  11417. front: {
  11418. height: math.unit(2 + 6 / 12, "feet"),
  11419. weight: math.unit(20, "lb"),
  11420. name: "Front",
  11421. image: {
  11422. source: "./media/characters/rufran/front.svg",
  11423. extra: 2041 / 1839,
  11424. bottom: 0.055
  11425. }
  11426. },
  11427. back: {
  11428. height: math.unit(2 + 6 / 12, "feet"),
  11429. weight: math.unit(20, "lb"),
  11430. name: "Back",
  11431. image: {
  11432. source: "./media/characters/rufran/back.svg",
  11433. extra: 2054 / 1839,
  11434. bottom: 0.01
  11435. }
  11436. },
  11437. hand: {
  11438. height: math.unit(0.2166, "meters"),
  11439. name: "Hand",
  11440. image: {
  11441. source: "./media/characters/rufran/hand.svg"
  11442. }
  11443. },
  11444. foot: {
  11445. height: math.unit(0.185, "meters"),
  11446. name: "Foot",
  11447. image: {
  11448. source: "./media/characters/rufran/foot.svg"
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Micro",
  11455. height: math.unit(1, "inch")
  11456. },
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(2 + 6 / 12, "feet"),
  11460. default: true
  11461. },
  11462. {
  11463. name: "Big",
  11464. height: math.unit(60, "feet")
  11465. },
  11466. {
  11467. name: "Macro",
  11468. height: math.unit(325, "feet")
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(0.3, "meters"),
  11477. weight: math.unit(3.5, "kg"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/chip/front.svg",
  11481. extra: 748 / 674
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Micro",
  11488. height: math.unit(1, "inch"),
  11489. default: true
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11495. {
  11496. side: {
  11497. height: math.unit(2.3, "meters"),
  11498. weight: math.unit(3500, "lb"),
  11499. name: "Side",
  11500. image: {
  11501. source: "./media/characters/torvid/side.svg",
  11502. extra: 1972 / 722,
  11503. bottom: 0.035
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Normal",
  11510. height: math.unit(2.3, "meters"),
  11511. default: true
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11517. {
  11518. front: {
  11519. height: math.unit(2, "meters"),
  11520. weight: math.unit(150.5, "kg"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/susan/front.svg",
  11524. extra: 693 / 635,
  11525. bottom: 0.05
  11526. }
  11527. },
  11528. },
  11529. [
  11530. {
  11531. name: "Megamacro",
  11532. height: math.unit(505, "miles"),
  11533. default: true
  11534. },
  11535. ]
  11536. ))
  11537. characterMakers.push(() => makeCharacter(
  11538. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11539. {
  11540. front: {
  11541. height: math.unit(6, "feet"),
  11542. weight: math.unit(150, "lb"),
  11543. name: "Front",
  11544. image: {
  11545. source: "./media/characters/raindrops/front.svg",
  11546. extra: 2655 / 2461,
  11547. bottom: 49 / 2705
  11548. }
  11549. },
  11550. back: {
  11551. height: math.unit(6, "feet"),
  11552. weight: math.unit(150, "lb"),
  11553. name: "Back",
  11554. image: {
  11555. source: "./media/characters/raindrops/back.svg",
  11556. extra: 2574 / 2400,
  11557. bottom: 65 / 2634
  11558. }
  11559. },
  11560. },
  11561. [
  11562. {
  11563. name: "Micro",
  11564. height: math.unit(6, "inches")
  11565. },
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(6 + 2 / 12, "feet")
  11569. },
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(131, "feet"),
  11573. default: true
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(15, "miles")
  11578. },
  11579. {
  11580. name: "Gigamacro",
  11581. height: math.unit(4000, "miles")
  11582. },
  11583. {
  11584. name: "Teramacro",
  11585. height: math.unit(315000, "miles")
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(2.794, "meters"),
  11594. weight: math.unit(325, "kg"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/tezwa/front.svg",
  11598. extra: 2083 / 1906,
  11599. bottom: 0.031
  11600. }
  11601. },
  11602. foot: {
  11603. height: math.unit(0.687, "meters"),
  11604. name: "Foot",
  11605. image: {
  11606. source: "./media/characters/tezwa/foot.svg"
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Normal",
  11613. height: math.unit(9 + 2 / 12, "feet"),
  11614. default: true
  11615. },
  11616. ]
  11617. ))
  11618. characterMakers.push(() => makeCharacter(
  11619. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11620. {
  11621. front: {
  11622. height: math.unit(58, "feet"),
  11623. weight: math.unit(89000, "lb"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/typhus/front.svg",
  11627. extra: 816 / 800,
  11628. bottom: 0.065
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Macro",
  11635. height: math.unit(58, "feet"),
  11636. default: true
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(12, "feet"),
  11645. weight: math.unit(6, "tonnes"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/lyra-von-wulf/front.svg",
  11649. extra: 1,
  11650. bottom: 0.10
  11651. }
  11652. },
  11653. frontMecha: {
  11654. height: math.unit(12, "feet"),
  11655. weight: math.unit(12, "tonnes"),
  11656. name: "Front (Mecha)",
  11657. image: {
  11658. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11659. extra: 1,
  11660. bottom: 0.042
  11661. }
  11662. },
  11663. maw: {
  11664. height: math.unit(2.2, "feet"),
  11665. name: "Maw",
  11666. image: {
  11667. source: "./media/characters/lyra-von-wulf/maw.svg"
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(12, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Classic",
  11679. height: math.unit(50, "feet")
  11680. },
  11681. {
  11682. name: "Macro",
  11683. height: math.unit(500, "feet")
  11684. },
  11685. {
  11686. name: "Megamacro",
  11687. height: math.unit(1, "mile")
  11688. },
  11689. {
  11690. name: "Gigamacro",
  11691. height: math.unit(400, "miles")
  11692. },
  11693. {
  11694. name: "Teramacro",
  11695. height: math.unit(22000, "miles")
  11696. },
  11697. {
  11698. name: "Solarmacro",
  11699. height: math.unit(8600000, "miles")
  11700. },
  11701. {
  11702. name: "Galactic",
  11703. height: math.unit(1057000, "lightyears")
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11709. {
  11710. front: {
  11711. height: math.unit(6 + 10 / 12, "feet"),
  11712. weight: math.unit(150, "lb"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/dixon/front.svg",
  11716. extra: 3361 / 3209,
  11717. bottom: 0.01
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Normal",
  11724. height: math.unit(6 + 10 / 12, "feet"),
  11725. default: true
  11726. },
  11727. {
  11728. name: "Big",
  11729. height: math.unit(12, "meters")
  11730. },
  11731. {
  11732. name: "Macro",
  11733. height: math.unit(500, "meters")
  11734. },
  11735. {
  11736. name: "Megamacro",
  11737. height: math.unit(2, "km")
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(185, "cm"),
  11746. weight: math.unit(68, "kg"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/kauko/front.svg",
  11750. extra: 1455 / 1421,
  11751. bottom: 0.03
  11752. }
  11753. },
  11754. back: {
  11755. height: math.unit(185, "cm"),
  11756. weight: math.unit(68, "kg"),
  11757. name: "Back",
  11758. image: {
  11759. source: "./media/characters/kauko/back.svg",
  11760. extra: 1455 / 1421,
  11761. bottom: 0.004
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(185, "cm"),
  11769. default: true
  11770. },
  11771. ]
  11772. ))
  11773. characterMakers.push(() => makeCharacter(
  11774. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11775. {
  11776. front: {
  11777. height: math.unit(6, "feet"),
  11778. weight: math.unit(150, "kg"),
  11779. name: "Front",
  11780. image: {
  11781. source: "./media/characters/varg/front.svg",
  11782. extra: 1108 / 1018,
  11783. bottom: 0.0375
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(5, "meters")
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(200, "meters")
  11795. },
  11796. {
  11797. name: "Megamacro",
  11798. height: math.unit(20, "kilometers")
  11799. },
  11800. {
  11801. name: "True Size",
  11802. height: math.unit(211, "km"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Gigamacro",
  11807. height: math.unit(1000, "km")
  11808. },
  11809. {
  11810. name: "Gigamacro+",
  11811. height: math.unit(8000, "km")
  11812. },
  11813. {
  11814. name: "Teramacro",
  11815. height: math.unit(1000000, "km")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(7 + 7 / 12, "feet"),
  11824. weight: math.unit(267, "lb"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/dayza/front.svg",
  11828. extra: 1262 / 1200,
  11829. bottom: 0.035
  11830. }
  11831. },
  11832. side: {
  11833. height: math.unit(7 + 7 / 12, "feet"),
  11834. weight: math.unit(267, "lb"),
  11835. name: "Side",
  11836. image: {
  11837. source: "./media/characters/dayza/side.svg",
  11838. extra: 1295 / 1245,
  11839. bottom: 0.05
  11840. }
  11841. },
  11842. back: {
  11843. height: math.unit(7 + 7 / 12, "feet"),
  11844. weight: math.unit(267, "lb"),
  11845. name: "Back",
  11846. image: {
  11847. source: "./media/characters/dayza/back.svg",
  11848. extra: 1241 / 1170
  11849. }
  11850. },
  11851. },
  11852. [
  11853. {
  11854. name: "Normal",
  11855. height: math.unit(7 + 7 / 12, "feet"),
  11856. default: true
  11857. },
  11858. {
  11859. name: "Macro",
  11860. height: math.unit(155, "feet")
  11861. },
  11862. ]
  11863. ))
  11864. characterMakers.push(() => makeCharacter(
  11865. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11866. {
  11867. front: {
  11868. height: math.unit(6 + 5 / 12, "feet"),
  11869. weight: math.unit(160, "lb"),
  11870. name: "Front",
  11871. image: {
  11872. source: "./media/characters/xanthos/front.svg",
  11873. extra: 1,
  11874. bottom: 0.04
  11875. }
  11876. },
  11877. back: {
  11878. height: math.unit(6 + 5 / 12, "feet"),
  11879. weight: math.unit(160, "lb"),
  11880. name: "Back",
  11881. image: {
  11882. source: "./media/characters/xanthos/back.svg",
  11883. extra: 1,
  11884. bottom: 0.03
  11885. }
  11886. },
  11887. hand: {
  11888. height: math.unit(0.928, "feet"),
  11889. name: "Hand",
  11890. image: {
  11891. source: "./media/characters/xanthos/hand.svg"
  11892. }
  11893. },
  11894. foot: {
  11895. height: math.unit(1.286, "feet"),
  11896. name: "Foot",
  11897. image: {
  11898. source: "./media/characters/xanthos/foot.svg"
  11899. }
  11900. },
  11901. },
  11902. [
  11903. {
  11904. name: "Normal",
  11905. height: math.unit(6 + 5 / 12, "feet"),
  11906. default: true
  11907. },
  11908. {
  11909. name: "Normal+",
  11910. height: math.unit(6, "meters")
  11911. },
  11912. {
  11913. name: "Macro",
  11914. height: math.unit(40, "feet")
  11915. },
  11916. {
  11917. name: "Macro+",
  11918. height: math.unit(200, "meters")
  11919. },
  11920. {
  11921. name: "Megamacro",
  11922. height: math.unit(20, "km")
  11923. },
  11924. {
  11925. name: "Megamacro+",
  11926. height: math.unit(100, "km")
  11927. },
  11928. ]
  11929. ))
  11930. characterMakers.push(() => makeCharacter(
  11931. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11932. {
  11933. front: {
  11934. height: math.unit(6 + 3 / 12, "feet"),
  11935. weight: math.unit(215, "lb"),
  11936. name: "Front",
  11937. image: {
  11938. source: "./media/characters/grynn/front.svg",
  11939. extra: 4627 / 4209,
  11940. bottom: 0.047
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Micro",
  11947. height: math.unit(6, "inches")
  11948. },
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(6 + 3 / 12, "feet"),
  11952. default: true
  11953. },
  11954. {
  11955. name: "Big",
  11956. height: math.unit(104, "feet")
  11957. },
  11958. {
  11959. name: "Macro",
  11960. height: math.unit(944, "feet")
  11961. },
  11962. {
  11963. name: "Macro+",
  11964. height: math.unit(9480, "feet")
  11965. },
  11966. {
  11967. name: "Megamacro",
  11968. height: math.unit(78752, "feet")
  11969. },
  11970. {
  11971. name: "Megamacro+",
  11972. height: math.unit(630128, "feet")
  11973. },
  11974. {
  11975. name: "Megamacro++",
  11976. height: math.unit(3150695, "feet")
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(7 + 5 / 12, "feet"),
  11985. weight: math.unit(450, "lb"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/mocha-aura/front.svg",
  11989. extra: 1907 / 1817,
  11990. bottom: 0.04
  11991. }
  11992. },
  11993. back: {
  11994. height: math.unit(7 + 5 / 12, "feet"),
  11995. weight: math.unit(450, "lb"),
  11996. name: "Back",
  11997. image: {
  11998. source: "./media/characters/mocha-aura/back.svg",
  11999. extra: 1900 / 1825,
  12000. bottom: 0.045
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Nano",
  12007. height: math.unit(1, "nm")
  12008. },
  12009. {
  12010. name: "Megamicro",
  12011. height: math.unit(1, "mm")
  12012. },
  12013. {
  12014. name: "Micro",
  12015. height: math.unit(3, "inches")
  12016. },
  12017. {
  12018. name: "Normal",
  12019. height: math.unit(7 + 5 / 12, "feet"),
  12020. default: true
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(30, "feet")
  12025. },
  12026. {
  12027. name: "Megamacro",
  12028. height: math.unit(3500, "feet")
  12029. },
  12030. {
  12031. name: "Teramacro",
  12032. height: math.unit(500000, "miles")
  12033. },
  12034. {
  12035. name: "Petamacro",
  12036. height: math.unit(50000000000000000, "parsecs")
  12037. },
  12038. ]
  12039. ))
  12040. characterMakers.push(() => makeCharacter(
  12041. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12042. {
  12043. front: {
  12044. height: math.unit(6, "feet"),
  12045. weight: math.unit(150, "lb"),
  12046. name: "Front",
  12047. image: {
  12048. source: "./media/characters/ilisha-devya/front.svg",
  12049. extra: 1,
  12050. bottom: 0.175
  12051. }
  12052. },
  12053. back: {
  12054. height: math.unit(6, "feet"),
  12055. weight: math.unit(150, "lb"),
  12056. name: "Back",
  12057. image: {
  12058. source: "./media/characters/ilisha-devya/back.svg",
  12059. extra: 1,
  12060. bottom: 0.015
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Macro",
  12067. height: math.unit(500, "feet"),
  12068. default: true
  12069. },
  12070. {
  12071. name: "Megamacro",
  12072. height: math.unit(10, "miles")
  12073. },
  12074. {
  12075. name: "Gigamacro",
  12076. height: math.unit(100000, "miles")
  12077. },
  12078. {
  12079. name: "Examacro",
  12080. height: math.unit(1e9, "lightyears")
  12081. },
  12082. {
  12083. name: "Omniversal",
  12084. height: math.unit(1e33, "lightyears")
  12085. },
  12086. {
  12087. name: "Beyond Infinite",
  12088. height: math.unit(1e100, "lightyears")
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12094. {
  12095. Side: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(150, "lb"),
  12098. name: "Side",
  12099. image: {
  12100. source: "./media/characters/mira/side.svg",
  12101. extra: 900 / 799,
  12102. bottom: 0.02
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Human Size",
  12109. height: math.unit(6, "feet")
  12110. },
  12111. {
  12112. name: "Macro",
  12113. height: math.unit(100, "feet"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(10, "miles")
  12119. },
  12120. {
  12121. name: "Gigamacro",
  12122. height: math.unit(25000, "miles")
  12123. },
  12124. {
  12125. name: "Teramacro",
  12126. height: math.unit(300, "AU")
  12127. },
  12128. {
  12129. name: "Full Size",
  12130. height: math.unit(4.5e10, "lightyears")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(6, "feet"),
  12139. weight: math.unit(150, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/holly/front.svg",
  12143. extra: 639 / 606
  12144. }
  12145. },
  12146. back: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(150, "lb"),
  12149. name: "Back",
  12150. image: {
  12151. source: "./media/characters/holly/back.svg",
  12152. extra: 623 / 598
  12153. }
  12154. },
  12155. frontWorking: {
  12156. height: math.unit(6, "feet"),
  12157. weight: math.unit(150, "lb"),
  12158. name: "Front (Working)",
  12159. image: {
  12160. source: "./media/characters/holly/front-working.svg",
  12161. extra: 607 / 577,
  12162. bottom: 0.048
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Normal",
  12169. height: math.unit(12 + 3 / 12, "feet"),
  12170. default: true
  12171. },
  12172. ]
  12173. ))
  12174. characterMakers.push(() => makeCharacter(
  12175. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12176. {
  12177. front: {
  12178. height: math.unit(6, "feet"),
  12179. weight: math.unit(150, "lb"),
  12180. name: "Front",
  12181. image: {
  12182. source: "./media/characters/porter/front.svg",
  12183. extra: 1,
  12184. bottom: 0.01
  12185. }
  12186. },
  12187. frontRobes: {
  12188. height: math.unit(6, "feet"),
  12189. weight: math.unit(150, "lb"),
  12190. name: "Front (Robes)",
  12191. image: {
  12192. source: "./media/characters/porter/front-robes.svg",
  12193. extra: 1.01,
  12194. bottom: 0.01
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Normal",
  12201. height: math.unit(11 + 9 / 12, "feet"),
  12202. default: true
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12208. {
  12209. legendary: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(150, "lb"),
  12212. name: "Legendary",
  12213. image: {
  12214. source: "./media/characters/lucy/legendary.svg",
  12215. extra: 1355 / 1100,
  12216. bottom: 0.045
  12217. }
  12218. },
  12219. },
  12220. [
  12221. {
  12222. name: "Legendary",
  12223. height: math.unit(86882 * 2, "miles"),
  12224. default: true
  12225. },
  12226. ]
  12227. ))
  12228. characterMakers.push(() => makeCharacter(
  12229. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12230. {
  12231. front: {
  12232. height: math.unit(6, "feet"),
  12233. weight: math.unit(150, "lb"),
  12234. name: "Front",
  12235. image: {
  12236. source: "./media/characters/drusilla/front.svg",
  12237. extra: 678 / 635,
  12238. bottom: 0.03
  12239. }
  12240. },
  12241. back: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Back",
  12245. image: {
  12246. source: "./media/characters/drusilla/back.svg",
  12247. extra: 678 / 635,
  12248. bottom: 0.005
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Macro",
  12255. height: math.unit(100, "feet")
  12256. },
  12257. {
  12258. name: "Canon Height",
  12259. height: math.unit(2000, "feet"),
  12260. default: true
  12261. },
  12262. ]
  12263. ))
  12264. characterMakers.push(() => makeCharacter(
  12265. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12266. {
  12267. front: {
  12268. height: math.unit(6, "feet"),
  12269. weight: math.unit(180, "lb"),
  12270. name: "Front",
  12271. image: {
  12272. source: "./media/characters/renard-thatch/front.svg",
  12273. extra: 2411 / 2275,
  12274. bottom: 0.01
  12275. }
  12276. },
  12277. frontPosing: {
  12278. height: math.unit(6, "feet"),
  12279. weight: math.unit(180, "lb"),
  12280. name: "Front (Posing)",
  12281. image: {
  12282. source: "./media/characters/renard-thatch/front-posing.svg",
  12283. extra: 2381 / 2261,
  12284. bottom: 0.01
  12285. }
  12286. },
  12287. back: {
  12288. height: math.unit(6, "feet"),
  12289. weight: math.unit(180, "lb"),
  12290. name: "Back",
  12291. image: {
  12292. source: "./media/characters/renard-thatch/back.svg",
  12293. extra: 2428 / 2288
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Micro",
  12300. height: math.unit(3, "inches")
  12301. },
  12302. {
  12303. name: "Default",
  12304. height: math.unit(6, "feet"),
  12305. default: true
  12306. },
  12307. {
  12308. name: "Macro",
  12309. height: math.unit(75, "feet")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(1450, "feet"),
  12318. weight: math.unit(1.21e6, "tons"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/sekvra/front.svg",
  12322. extra: 1,
  12323. bottom: 0.03
  12324. }
  12325. },
  12326. frontClothed: {
  12327. height: math.unit(1450, "feet"),
  12328. weight: math.unit(1.21e6, "tons"),
  12329. name: "Front (Clothed)",
  12330. image: {
  12331. source: "./media/characters/sekvra/front-clothed.svg",
  12332. extra: 1,
  12333. bottom: 0.03
  12334. }
  12335. },
  12336. side: {
  12337. height: math.unit(1450, "feet"),
  12338. weight: math.unit(1.21e6, "tons"),
  12339. name: "Side",
  12340. image: {
  12341. source: "./media/characters/sekvra/side.svg",
  12342. extra: 1,
  12343. bottom: 0.025
  12344. }
  12345. },
  12346. back: {
  12347. height: math.unit(1450, "feet"),
  12348. weight: math.unit(1.21e6, "tons"),
  12349. name: "Back",
  12350. image: {
  12351. source: "./media/characters/sekvra/back.svg",
  12352. extra: 1,
  12353. bottom: 0.005
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Macro",
  12360. height: math.unit(1450, "feet"),
  12361. default: true
  12362. },
  12363. {
  12364. name: "Megamacro",
  12365. height: math.unit(15000, "feet")
  12366. },
  12367. ]
  12368. ))
  12369. characterMakers.push(() => makeCharacter(
  12370. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12371. {
  12372. front: {
  12373. height: math.unit(6, "feet"),
  12374. weight: math.unit(150, "lb"),
  12375. name: "Front",
  12376. image: {
  12377. source: "./media/characters/carmine/front.svg",
  12378. extra: 1,
  12379. bottom: 0.035
  12380. }
  12381. },
  12382. frontArmor: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(150, "lb"),
  12385. name: "Front (Armor)",
  12386. image: {
  12387. source: "./media/characters/carmine/front-armor.svg",
  12388. extra: 1,
  12389. bottom: 0.035
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Large",
  12396. height: math.unit(1, "mile")
  12397. },
  12398. {
  12399. name: "Huge",
  12400. height: math.unit(40, "miles"),
  12401. default: true
  12402. },
  12403. {
  12404. name: "Colossal",
  12405. height: math.unit(2500, "miles")
  12406. },
  12407. ]
  12408. ))
  12409. characterMakers.push(() => makeCharacter(
  12410. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12411. {
  12412. front: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(150, "lb"),
  12415. name: "Front",
  12416. image: {
  12417. source: "./media/characters/elyssia/front.svg",
  12418. extra: 2201 / 2035,
  12419. bottom: 0.05
  12420. }
  12421. },
  12422. frontClothed: {
  12423. height: math.unit(6, "feet"),
  12424. weight: math.unit(150, "lb"),
  12425. name: "Front (Clothed)",
  12426. image: {
  12427. source: "./media/characters/elyssia/front-clothed.svg",
  12428. extra: 2201 / 2035,
  12429. bottom: 0.05
  12430. }
  12431. },
  12432. back: {
  12433. height: math.unit(6, "feet"),
  12434. weight: math.unit(150, "lb"),
  12435. name: "Back",
  12436. image: {
  12437. source: "./media/characters/elyssia/back.svg",
  12438. extra: 2201 / 2035,
  12439. bottom: 0.013
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Smaller",
  12446. height: math.unit(150, "feet")
  12447. },
  12448. {
  12449. name: "Standard",
  12450. height: math.unit(1400, "feet"),
  12451. default: true
  12452. },
  12453. {
  12454. name: "Distracted",
  12455. height: math.unit(15000, "feet")
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12461. {
  12462. front: {
  12463. height: math.unit(7 + 4 / 12, "feet"),
  12464. weight: math.unit(500, "lb"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/geno-maxwell/front.svg",
  12468. extra: 2207 / 2040,
  12469. bottom: 0.015
  12470. }
  12471. },
  12472. },
  12473. [
  12474. {
  12475. name: "Micro",
  12476. height: math.unit(3, "inches")
  12477. },
  12478. {
  12479. name: "Normal",
  12480. height: math.unit(7 + 4 / 12, "feet"),
  12481. default: true
  12482. },
  12483. {
  12484. name: "Macro",
  12485. height: math.unit(220, "feet")
  12486. },
  12487. {
  12488. name: "Megamacro",
  12489. height: math.unit(11, "miles")
  12490. },
  12491. ]
  12492. ))
  12493. characterMakers.push(() => makeCharacter(
  12494. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12495. {
  12496. front: {
  12497. height: math.unit(7 + 4 / 12, "feet"),
  12498. weight: math.unit(500, "lb"),
  12499. name: "Front",
  12500. image: {
  12501. source: "./media/characters/regena-maxwell/front.svg",
  12502. extra: 3115 / 2770,
  12503. bottom: 0.02
  12504. }
  12505. },
  12506. },
  12507. [
  12508. {
  12509. name: "Normal",
  12510. height: math.unit(7 + 4 / 12, "feet"),
  12511. default: true
  12512. },
  12513. {
  12514. name: "Macro",
  12515. height: math.unit(220, "feet")
  12516. },
  12517. {
  12518. name: "Megamacro",
  12519. height: math.unit(11, "miles")
  12520. },
  12521. ]
  12522. ))
  12523. characterMakers.push(() => makeCharacter(
  12524. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12525. {
  12526. front: {
  12527. height: math.unit(6, "feet"),
  12528. weight: math.unit(150, "lb"),
  12529. name: "Front",
  12530. image: {
  12531. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12532. extra: 860 / 690,
  12533. bottom: 0.03
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Normal",
  12540. height: math.unit(1.7, "meters"),
  12541. default: true
  12542. },
  12543. ]
  12544. ))
  12545. characterMakers.push(() => makeCharacter(
  12546. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12547. {
  12548. front: {
  12549. height: math.unit(6, "feet"),
  12550. weight: math.unit(150, "lb"),
  12551. name: "Front",
  12552. image: {
  12553. source: "./media/characters/quilly/front.svg",
  12554. extra: 890 / 776
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Gigamacro",
  12561. height: math.unit(404090, "miles"),
  12562. default: true
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(7 + 8 / 12, "feet"),
  12571. weight: math.unit(350, "lb"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/tempest/front.svg",
  12575. extra: 1175 / 1086,
  12576. bottom: 0.02
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Normal",
  12583. height: math.unit(7 + 8 / 12, "feet"),
  12584. default: true
  12585. },
  12586. ]
  12587. ))
  12588. characterMakers.push(() => makeCharacter(
  12589. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12590. {
  12591. side: {
  12592. height: math.unit(4 + 5 / 12, "feet"),
  12593. weight: math.unit(80, "lb"),
  12594. name: "Side",
  12595. image: {
  12596. source: "./media/characters/rodger/side.svg",
  12597. extra: 1235 / 1118
  12598. }
  12599. },
  12600. },
  12601. [
  12602. {
  12603. name: "Micro",
  12604. height: math.unit(1, "inch")
  12605. },
  12606. {
  12607. name: "Normal",
  12608. height: math.unit(4 + 5 / 12, "feet"),
  12609. default: true
  12610. },
  12611. {
  12612. name: "Macro",
  12613. height: math.unit(120, "feet")
  12614. },
  12615. ]
  12616. ))
  12617. characterMakers.push(() => makeCharacter(
  12618. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12619. {
  12620. front: {
  12621. height: math.unit(6, "feet"),
  12622. weight: math.unit(150, "lb"),
  12623. name: "Front",
  12624. image: {
  12625. source: "./media/characters/danyel/front.svg",
  12626. extra: 1185 / 1123,
  12627. bottom: 0.05
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Shrunken",
  12634. height: math.unit(0.5, "mm")
  12635. },
  12636. {
  12637. name: "Micro",
  12638. height: math.unit(1, "mm"),
  12639. default: true
  12640. },
  12641. {
  12642. name: "Upsized",
  12643. height: math.unit(5 + 5 / 12, "feet")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(5 + 6 / 12, "feet"),
  12652. weight: math.unit(200, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/vivian-bijoux/front.svg",
  12656. extra: 1,
  12657. bottom: 0.072
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(5 + 6 / 12, "feet"),
  12665. default: true
  12666. },
  12667. {
  12668. name: "Bad Dream",
  12669. height: math.unit(500, "feet")
  12670. },
  12671. {
  12672. name: "Nightmare",
  12673. height: math.unit(500, "miles")
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(6 + 1 / 12, "feet"),
  12682. weight: math.unit(260, "lb"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/zeta/front.svg",
  12686. extra: 1968 / 1889,
  12687. bottom: 0.06
  12688. }
  12689. },
  12690. back: {
  12691. height: math.unit(6 + 1 / 12, "feet"),
  12692. weight: math.unit(260, "lb"),
  12693. name: "Back",
  12694. image: {
  12695. source: "./media/characters/zeta/back.svg",
  12696. extra: 1944 / 1858,
  12697. bottom: 0.03
  12698. }
  12699. },
  12700. hand: {
  12701. height: math.unit(1.112, "feet"),
  12702. name: "Hand",
  12703. image: {
  12704. source: "./media/characters/zeta/hand.svg"
  12705. }
  12706. },
  12707. foot: {
  12708. height: math.unit(1.48, "feet"),
  12709. name: "Foot",
  12710. image: {
  12711. source: "./media/characters/zeta/foot.svg"
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Micro",
  12718. height: math.unit(6, "inches")
  12719. },
  12720. {
  12721. name: "Normal",
  12722. height: math.unit(6 + 1 / 12, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Macro",
  12727. height: math.unit(20, "feet")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(150, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/jamie-larsen/front.svg",
  12740. extra: 962 / 933,
  12741. bottom: 0.02
  12742. }
  12743. },
  12744. back: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/jamie-larsen/back.svg",
  12750. extra: 997 / 946
  12751. }
  12752. },
  12753. },
  12754. [
  12755. {
  12756. name: "Macro",
  12757. height: math.unit(28 + 7 / 12, "feet"),
  12758. default: true
  12759. },
  12760. {
  12761. name: "Macro+",
  12762. height: math.unit(180, "feet")
  12763. },
  12764. {
  12765. name: "Megamacro",
  12766. height: math.unit(10, "miles")
  12767. },
  12768. {
  12769. name: "Gigamacro",
  12770. height: math.unit(200000, "miles")
  12771. },
  12772. ]
  12773. ))
  12774. characterMakers.push(() => makeCharacter(
  12775. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12776. {
  12777. front: {
  12778. height: math.unit(6, "feet"),
  12779. weight: math.unit(120, "lb"),
  12780. name: "Front",
  12781. image: {
  12782. source: "./media/characters/vance/front.svg",
  12783. extra: 1980 / 1890,
  12784. bottom: 0.09
  12785. }
  12786. },
  12787. back: {
  12788. height: math.unit(6, "feet"),
  12789. weight: math.unit(120, "lb"),
  12790. name: "Back",
  12791. image: {
  12792. source: "./media/characters/vance/back.svg",
  12793. extra: 2081 / 1994,
  12794. bottom: 0.014
  12795. }
  12796. },
  12797. hand: {
  12798. height: math.unit(0.88, "feet"),
  12799. name: "Hand",
  12800. image: {
  12801. source: "./media/characters/vance/hand.svg"
  12802. }
  12803. },
  12804. foot: {
  12805. height: math.unit(0.64, "feet"),
  12806. name: "Foot",
  12807. image: {
  12808. source: "./media/characters/vance/foot.svg"
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Small",
  12815. height: math.unit(90, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(100, "meters")
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(15, "miles")
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12830. {
  12831. front: {
  12832. height: math.unit(6, "feet"),
  12833. weight: math.unit(180, "lb"),
  12834. name: "Front",
  12835. image: {
  12836. source: "./media/characters/xochitl/front.svg",
  12837. extra: 2297 / 2261,
  12838. bottom: 0.065
  12839. }
  12840. },
  12841. back: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(180, "lb"),
  12844. name: "Back",
  12845. image: {
  12846. source: "./media/characters/xochitl/back.svg",
  12847. extra: 2386 / 2354,
  12848. bottom: 0.01
  12849. }
  12850. },
  12851. foot: {
  12852. height: math.unit(6 / 5 * 1.15, "feet"),
  12853. weight: math.unit(150, "lb"),
  12854. name: "Foot",
  12855. image: {
  12856. source: "./media/characters/xochitl/foot.svg"
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Macro",
  12863. height: math.unit(80, "feet")
  12864. },
  12865. {
  12866. name: "Macro+",
  12867. height: math.unit(400, "feet"),
  12868. default: true
  12869. },
  12870. {
  12871. name: "Gigamacro",
  12872. height: math.unit(80000, "miles")
  12873. },
  12874. {
  12875. name: "Gigamacro+",
  12876. height: math.unit(400000, "miles")
  12877. },
  12878. {
  12879. name: "Teramacro",
  12880. height: math.unit(300, "AU")
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12886. {
  12887. front: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Front",
  12891. image: {
  12892. source: "./media/characters/vincent/front.svg",
  12893. extra: 1130 / 1080,
  12894. bottom: 0.055
  12895. }
  12896. },
  12897. beak: {
  12898. height: math.unit(6 * 0.1, "feet"),
  12899. name: "Beak",
  12900. image: {
  12901. source: "./media/characters/vincent/beak.svg"
  12902. }
  12903. },
  12904. hand: {
  12905. height: math.unit(6 * 0.85, "feet"),
  12906. weight: math.unit(150, "lb"),
  12907. name: "Hand",
  12908. image: {
  12909. source: "./media/characters/vincent/hand.svg"
  12910. }
  12911. },
  12912. foot: {
  12913. height: math.unit(6 * 0.19, "feet"),
  12914. weight: math.unit(150, "lb"),
  12915. name: "Foot",
  12916. image: {
  12917. source: "./media/characters/vincent/foot.svg"
  12918. }
  12919. },
  12920. },
  12921. [
  12922. {
  12923. name: "Base",
  12924. height: math.unit(6 + 5 / 12, "feet"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Macro",
  12929. height: math.unit(300, "feet")
  12930. },
  12931. {
  12932. name: "Megamacro",
  12933. height: math.unit(2, "miles")
  12934. },
  12935. {
  12936. name: "Gigamacro",
  12937. height: math.unit(1000, "miles")
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12943. {
  12944. front: {
  12945. height: math.unit(6 + 2 / 12, "feet"),
  12946. weight: math.unit(265, "lb"),
  12947. name: "Front",
  12948. image: {
  12949. source: "./media/characters/jay/front.svg",
  12950. extra: 1510 / 1430,
  12951. bottom: 0.042
  12952. }
  12953. },
  12954. back: {
  12955. height: math.unit(6 + 2 / 12, "feet"),
  12956. weight: math.unit(265, "lb"),
  12957. name: "Back",
  12958. image: {
  12959. source: "./media/characters/jay/back.svg",
  12960. extra: 1510 / 1430,
  12961. bottom: 0.025
  12962. }
  12963. },
  12964. clothed: {
  12965. height: math.unit(6 + 2 / 12, "feet"),
  12966. weight: math.unit(265, "lb"),
  12967. name: "Front (Clothed)",
  12968. image: {
  12969. source: "./media/characters/jay/clothed.svg",
  12970. extra: 744 / 699,
  12971. bottom: 0.043
  12972. }
  12973. },
  12974. head: {
  12975. height: math.unit(1.772, "feet"),
  12976. name: "Head",
  12977. image: {
  12978. source: "./media/characters/jay/head.svg"
  12979. }
  12980. },
  12981. sizeRay: {
  12982. height: math.unit(1.331, "feet"),
  12983. name: "Size Ray",
  12984. image: {
  12985. source: "./media/characters/jay/size-ray.svg"
  12986. }
  12987. },
  12988. },
  12989. [
  12990. {
  12991. name: "Micro",
  12992. height: math.unit(1, "inch")
  12993. },
  12994. {
  12995. name: "Normal",
  12996. height: math.unit(6 + 2 / 12, "feet"),
  12997. default: true
  12998. },
  12999. {
  13000. name: "Macro",
  13001. height: math.unit(1, "mile")
  13002. },
  13003. {
  13004. name: "Megamacro",
  13005. height: math.unit(100, "miles")
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13011. {
  13012. front: {
  13013. height: math.unit(2, "meters"),
  13014. weight: math.unit(500, "kg"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/coatl/front.svg",
  13018. extra: 3948 / 3500,
  13019. bottom: 0.082
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(4, "meters")
  13027. },
  13028. {
  13029. name: "Macro",
  13030. height: math.unit(100, "meters"),
  13031. default: true
  13032. },
  13033. {
  13034. name: "Macro+",
  13035. height: math.unit(300, "meters")
  13036. },
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(3, "gigameters")
  13040. },
  13041. {
  13042. name: "Megamacro+",
  13043. height: math.unit(300, "terameters")
  13044. },
  13045. {
  13046. name: "Megamacro++",
  13047. height: math.unit(3, "lightyears")
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13053. {
  13054. front: {
  13055. height: math.unit(6, "feet"),
  13056. weight: math.unit(50, "kg"),
  13057. name: "front",
  13058. image: {
  13059. source: "./media/characters/shiroryu/front.svg",
  13060. extra: 1990 / 1935
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Mortal Mingling",
  13067. height: math.unit(3, "meters")
  13068. },
  13069. {
  13070. name: "Kaiju-ish",
  13071. height: math.unit(250, "meters")
  13072. },
  13073. {
  13074. name: "Somewhat Godly",
  13075. height: math.unit(400, "km"),
  13076. default: true
  13077. },
  13078. {
  13079. name: "Planetary",
  13080. height: math.unit(300, "megameters")
  13081. },
  13082. {
  13083. name: "Galaxy-dwarfing",
  13084. height: math.unit(450, "kiloparsecs")
  13085. },
  13086. {
  13087. name: "Universe Eater",
  13088. height: math.unit(150, "gigaparsecs")
  13089. },
  13090. {
  13091. name: "Almost Immeasurable",
  13092. height: math.unit(1.3e266, "yottaparsecs")
  13093. },
  13094. ]
  13095. ))
  13096. characterMakers.push(() => makeCharacter(
  13097. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13098. {
  13099. front: {
  13100. height: math.unit(6, "feet"),
  13101. weight: math.unit(150, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/umeko/front.svg",
  13105. extra: 1,
  13106. bottom: 0.019
  13107. }
  13108. },
  13109. frontArmored: {
  13110. height: math.unit(6, "feet"),
  13111. weight: math.unit(150, "lb"),
  13112. name: "Front (Armored)",
  13113. image: {
  13114. source: "./media/characters/umeko/front-armored.svg",
  13115. extra: 1,
  13116. bottom: 0.021
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Macro",
  13123. height: math.unit(220, "feet"),
  13124. default: true
  13125. },
  13126. {
  13127. name: "Guardian Dragon",
  13128. height: math.unit(50, "miles")
  13129. },
  13130. {
  13131. name: "Cosmic",
  13132. height: math.unit(800000, "miles")
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(150, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/cassidy/front.svg",
  13145. extra: 1,
  13146. bottom: 0.043
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Canon Height",
  13153. height: math.unit(120, "feet"),
  13154. default: true
  13155. },
  13156. {
  13157. name: "Macro+",
  13158. height: math.unit(400, "feet")
  13159. },
  13160. {
  13161. name: "Macro++",
  13162. height: math.unit(4000, "feet")
  13163. },
  13164. {
  13165. name: "Megamacro",
  13166. height: math.unit(3, "miles")
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/isaac/front.svg",
  13179. extra: 896 / 815,
  13180. bottom: 0.11
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Human Size",
  13187. height: math.unit(8, "feet"),
  13188. default: true
  13189. },
  13190. {
  13191. name: "Macro",
  13192. height: math.unit(400, "feet")
  13193. },
  13194. {
  13195. name: "Megamacro",
  13196. height: math.unit(50, "miles")
  13197. },
  13198. {
  13199. name: "Canon Height",
  13200. height: math.unit(200, "AU")
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(6, "feet"),
  13209. weight: math.unit(72, "kg"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/sleekit/front.svg",
  13213. extra: 4693 / 4487,
  13214. bottom: 0.012
  13215. }
  13216. },
  13217. },
  13218. [
  13219. {
  13220. name: "Minimum Height",
  13221. height: math.unit(10, "meters")
  13222. },
  13223. {
  13224. name: "Smaller",
  13225. height: math.unit(25, "meters")
  13226. },
  13227. {
  13228. name: "Larger",
  13229. height: math.unit(38, "meters"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Maximum height",
  13234. height: math.unit(100, "meters")
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13240. {
  13241. front: {
  13242. height: math.unit(6, "feet"),
  13243. weight: math.unit(150, "lb"),
  13244. name: "Front",
  13245. image: {
  13246. source: "./media/characters/nillia/front.svg",
  13247. extra: 2195 / 2037,
  13248. bottom: 0.005
  13249. }
  13250. },
  13251. back: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(150, "lb"),
  13254. name: "Back",
  13255. image: {
  13256. source: "./media/characters/nillia/back.svg",
  13257. extra: 2195 / 2037,
  13258. bottom: 0.005
  13259. }
  13260. },
  13261. },
  13262. [
  13263. {
  13264. name: "Canon Height",
  13265. height: math.unit(489, "feet"),
  13266. default: true
  13267. }
  13268. ]
  13269. ))
  13270. characterMakers.push(() => makeCharacter(
  13271. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13272. {
  13273. front: {
  13274. height: math.unit(6, "feet"),
  13275. weight: math.unit(150, "lb"),
  13276. name: "Front",
  13277. image: {
  13278. source: "./media/characters/mesmyriza/front.svg",
  13279. extra: 2067 / 1784,
  13280. bottom: 0.035
  13281. }
  13282. },
  13283. foot: {
  13284. height: math.unit(6 / (250 / 35), "feet"),
  13285. name: "Foot",
  13286. image: {
  13287. source: "./media/characters/mesmyriza/foot.svg"
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Macro",
  13294. height: math.unit(457, "meters"),
  13295. default: true
  13296. },
  13297. {
  13298. name: "Megamacro",
  13299. height: math.unit(8, "megameters")
  13300. },
  13301. ]
  13302. ))
  13303. characterMakers.push(() => makeCharacter(
  13304. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13305. {
  13306. front: {
  13307. height: math.unit(6, "feet"),
  13308. weight: math.unit(250, "lb"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/saudade/front.svg",
  13312. extra: 1172 / 1139,
  13313. bottom: 0.035
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Micro",
  13320. height: math.unit(3, "inches")
  13321. },
  13322. {
  13323. name: "Normal",
  13324. height: math.unit(6, "feet"),
  13325. default: true
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(50, "feet")
  13330. },
  13331. {
  13332. name: "Megamacro",
  13333. height: math.unit(2800, "feet")
  13334. },
  13335. ]
  13336. ))
  13337. characterMakers.push(() => makeCharacter(
  13338. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13339. {
  13340. front: {
  13341. height: math.unit(5 + 4 / 12, "feet"),
  13342. weight: math.unit(100, "lb"),
  13343. name: "Front",
  13344. image: {
  13345. source: "./media/characters/keireer/front.svg",
  13346. extra: 716 / 666,
  13347. bottom: 0.05
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(5 + 4 / 12, "feet"),
  13355. default: true
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(6, "feet"),
  13364. weight: math.unit(90, "kg"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/mirja/front.svg",
  13368. extra: 1789 / 1683,
  13369. bottom: 0.05
  13370. }
  13371. },
  13372. frontDressed: {
  13373. height: math.unit(6, "feet"),
  13374. weight: math.unit(90, "lb"),
  13375. name: "Front (Dressed)",
  13376. image: {
  13377. source: "./media/characters/mirja/front-dressed.svg",
  13378. extra: 1789 / 1683,
  13379. bottom: 0.05
  13380. }
  13381. },
  13382. back: {
  13383. height: math.unit(6, "feet"),
  13384. weight: math.unit(90, "lb"),
  13385. name: "Back",
  13386. image: {
  13387. source: "./media/characters/mirja/back.svg",
  13388. extra: 953 / 917,
  13389. bottom: 0.017
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "\"Incognito\"",
  13396. height: math.unit(3, "meters")
  13397. },
  13398. {
  13399. name: "Strolling Size",
  13400. height: math.unit(15, "km")
  13401. },
  13402. {
  13403. name: "Larger Strolling Size",
  13404. height: math.unit(400, "km")
  13405. },
  13406. {
  13407. name: "Preferred Size",
  13408. height: math.unit(5000, "km")
  13409. },
  13410. {
  13411. name: "True Size",
  13412. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13413. default: true
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(15, "feet"),
  13422. weight: math.unit(880, "kg"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/nightraver/front.svg",
  13426. extra: 2444 / 2160,
  13427. bottom: 0.027
  13428. }
  13429. },
  13430. back: {
  13431. height: math.unit(15, "feet"),
  13432. weight: math.unit(880, "kg"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/nightraver/back.svg",
  13436. extra: 2309 / 2180,
  13437. bottom: 0.005
  13438. }
  13439. },
  13440. sole: {
  13441. height: math.unit(2.878, "feet"),
  13442. name: "Sole",
  13443. image: {
  13444. source: "./media/characters/nightraver/sole.svg"
  13445. }
  13446. },
  13447. foot: {
  13448. height: math.unit(2.285, "feet"),
  13449. name: "Foot",
  13450. image: {
  13451. source: "./media/characters/nightraver/foot.svg"
  13452. }
  13453. },
  13454. maw: {
  13455. height: math.unit(2.67, "feet"),
  13456. name: "Maw",
  13457. image: {
  13458. source: "./media/characters/nightraver/maw.svg"
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Micro",
  13465. height: math.unit(1, "cm")
  13466. },
  13467. {
  13468. name: "Normal",
  13469. height: math.unit(15, "feet"),
  13470. default: true
  13471. },
  13472. {
  13473. name: "Macro",
  13474. height: math.unit(300, "feet")
  13475. },
  13476. {
  13477. name: "Megamacro",
  13478. height: math.unit(300, "miles")
  13479. },
  13480. {
  13481. name: "Gigamacro",
  13482. height: math.unit(10000, "miles")
  13483. },
  13484. ]
  13485. ))
  13486. characterMakers.push(() => makeCharacter(
  13487. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13488. {
  13489. side: {
  13490. height: math.unit(2, "inches"),
  13491. weight: math.unit(5, "grams"),
  13492. name: "Side",
  13493. image: {
  13494. source: "./media/characters/arc/side.svg"
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Micro",
  13501. height: math.unit(2, "inches"),
  13502. default: true
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13508. {
  13509. front: {
  13510. height: math.unit(1.1938, "meters"),
  13511. weight: math.unit(54, "kg"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/nebula-shahar/front.svg",
  13515. extra: 1642 / 1436,
  13516. bottom: 0.06
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Megamicro",
  13523. height: math.unit(0.3, "mm")
  13524. },
  13525. {
  13526. name: "Micro",
  13527. height: math.unit(3, "cm")
  13528. },
  13529. {
  13530. name: "Normal",
  13531. height: math.unit(138, "cm"),
  13532. default: true
  13533. },
  13534. {
  13535. name: "Macro",
  13536. height: math.unit(30, "m")
  13537. },
  13538. ]
  13539. ))
  13540. characterMakers.push(() => makeCharacter(
  13541. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13542. {
  13543. front: {
  13544. height: math.unit(5.24, "feet"),
  13545. weight: math.unit(150, "lb"),
  13546. name: "Front",
  13547. image: {
  13548. source: "./media/characters/shayla/front.svg",
  13549. extra: 1512 / 1414,
  13550. bottom: 0.01
  13551. }
  13552. },
  13553. back: {
  13554. height: math.unit(5.24, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Back",
  13557. image: {
  13558. source: "./media/characters/shayla/back.svg",
  13559. extra: 1512 / 1414
  13560. }
  13561. },
  13562. hand: {
  13563. height: math.unit(0.7781496062992126, "feet"),
  13564. name: "Hand",
  13565. image: {
  13566. source: "./media/characters/shayla/hand.svg"
  13567. }
  13568. },
  13569. foot: {
  13570. height: math.unit(1.4206036745406823, "feet"),
  13571. name: "Foot",
  13572. image: {
  13573. source: "./media/characters/shayla/foot.svg"
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Micro",
  13580. height: math.unit(0.32, "feet")
  13581. },
  13582. {
  13583. name: "Normal",
  13584. height: math.unit(5.24, "feet"),
  13585. default: true
  13586. },
  13587. {
  13588. name: "Macro",
  13589. height: math.unit(492.12, "feet")
  13590. },
  13591. {
  13592. name: "Megamacro",
  13593. height: math.unit(186.41, "miles")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(2.2, "m"),
  13602. weight: math.unit(120, "kg"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/pia-jr/front.svg",
  13606. extra: 1000 / 970,
  13607. bottom: 0.035
  13608. }
  13609. },
  13610. hand: {
  13611. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13612. name: "Hand",
  13613. image: {
  13614. source: "./media/characters/pia-jr/hand.svg"
  13615. }
  13616. },
  13617. paw: {
  13618. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13619. name: "Paw",
  13620. image: {
  13621. source: "./media/characters/pia-jr/paw.svg"
  13622. }
  13623. },
  13624. },
  13625. [
  13626. {
  13627. name: "Micro",
  13628. height: math.unit(1.2, "cm")
  13629. },
  13630. {
  13631. name: "Normal",
  13632. height: math.unit(2.2, "m"),
  13633. default: true
  13634. },
  13635. {
  13636. name: "Macro",
  13637. height: math.unit(180, "m")
  13638. },
  13639. {
  13640. name: "Megamacro",
  13641. height: math.unit(420, "km")
  13642. },
  13643. ]
  13644. ))
  13645. characterMakers.push(() => makeCharacter(
  13646. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13647. {
  13648. front: {
  13649. height: math.unit(2, "m"),
  13650. weight: math.unit(115, "kg"),
  13651. name: "Front",
  13652. image: {
  13653. source: "./media/characters/pia-sr/front.svg",
  13654. extra: 760 / 730,
  13655. bottom: 0.015
  13656. }
  13657. },
  13658. back: {
  13659. height: math.unit(2, "m"),
  13660. weight: math.unit(115, "kg"),
  13661. name: "Back",
  13662. image: {
  13663. source: "./media/characters/pia-sr/back.svg",
  13664. extra: 760 / 730,
  13665. bottom: 0.01
  13666. }
  13667. },
  13668. hand: {
  13669. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13670. name: "Hand",
  13671. image: {
  13672. source: "./media/characters/pia-sr/hand.svg"
  13673. }
  13674. },
  13675. foot: {
  13676. height: math.unit(1.83, "feet"),
  13677. name: "Foot",
  13678. image: {
  13679. source: "./media/characters/pia-sr/foot.svg"
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Micro",
  13686. height: math.unit(88, "mm")
  13687. },
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(2, "m"),
  13691. default: true
  13692. },
  13693. {
  13694. name: "Macro",
  13695. height: math.unit(200, "m")
  13696. },
  13697. {
  13698. name: "Megamacro",
  13699. height: math.unit(420, "km")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(8 + 2 / 12, "feet"),
  13708. weight: math.unit(300, "lb"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/kibibyte/front.svg",
  13712. extra: 2221 / 2098,
  13713. bottom: 0.04
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Normal",
  13720. height: math.unit(8 + 2 / 12, "feet"),
  13721. default: true
  13722. },
  13723. {
  13724. name: "Socialable Macro",
  13725. height: math.unit(50, "feet")
  13726. },
  13727. {
  13728. name: "Macro",
  13729. height: math.unit(300, "feet")
  13730. },
  13731. {
  13732. name: "Megamacro",
  13733. height: math.unit(500, "miles")
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13739. {
  13740. front: {
  13741. height: math.unit(6, "feet"),
  13742. weight: math.unit(150, "lb"),
  13743. name: "Front",
  13744. image: {
  13745. source: "./media/characters/felix/front.svg",
  13746. extra: 762 / 722,
  13747. bottom: 0.02
  13748. }
  13749. },
  13750. frontClothed: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(150, "lb"),
  13753. name: "Front (Clothed)",
  13754. image: {
  13755. source: "./media/characters/felix/front-clothed.svg",
  13756. extra: 762 / 722,
  13757. bottom: 0.02
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(6 + 8 / 12, "feet"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Macro",
  13769. height: math.unit(2600, "feet")
  13770. },
  13771. {
  13772. name: "Megamacro",
  13773. height: math.unit(450, "miles")
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(6 + 1 / 12, "feet"),
  13782. weight: math.unit(250, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/tobo/front.svg",
  13786. extra: 608 / 586,
  13787. bottom: 0.023
  13788. }
  13789. },
  13790. back: {
  13791. height: math.unit(6 + 1 / 12, "feet"),
  13792. weight: math.unit(250, "lb"),
  13793. name: "Back",
  13794. image: {
  13795. source: "./media/characters/tobo/back.svg",
  13796. extra: 608 / 586
  13797. }
  13798. },
  13799. },
  13800. [
  13801. {
  13802. name: "Nano",
  13803. height: math.unit(2, "nm")
  13804. },
  13805. {
  13806. name: "Megamicro",
  13807. height: math.unit(0.1, "mm")
  13808. },
  13809. {
  13810. name: "Micro",
  13811. height: math.unit(1, "inch"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Human-sized",
  13816. height: math.unit(6 + 1 / 12, "feet")
  13817. },
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(250, "feet")
  13821. },
  13822. {
  13823. name: "Megamacro",
  13824. height: math.unit(75, "miles")
  13825. },
  13826. {
  13827. name: "Texas-sized",
  13828. height: math.unit(750, "miles")
  13829. },
  13830. {
  13831. name: "Teramacro",
  13832. height: math.unit(50000, "miles")
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(269, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/danny-kapowsky/front.svg",
  13845. extra: 766 / 736,
  13846. bottom: 0.044
  13847. }
  13848. },
  13849. back: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(269, "lb"),
  13852. name: "Back",
  13853. image: {
  13854. source: "./media/characters/danny-kapowsky/back.svg",
  13855. extra: 797 / 760,
  13856. bottom: 0.025
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Macro",
  13863. height: math.unit(150, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Macro+",
  13868. height: math.unit(200, "feet")
  13869. },
  13870. {
  13871. name: "Macro++",
  13872. height: math.unit(300, "feet")
  13873. },
  13874. {
  13875. name: "Macro+++",
  13876. height: math.unit(400, "feet")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13882. {
  13883. side: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(170, "lb"),
  13886. name: "Side",
  13887. image: {
  13888. source: "./media/characters/finn/side.svg",
  13889. extra: 1953 / 1807,
  13890. bottom: 0.057
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Megamacro",
  13897. height: math.unit(14445, "feet"),
  13898. default: true
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(5 + 6 / 12, "feet"),
  13907. weight: math.unit(125, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/roy/front.svg",
  13911. extra: 1,
  13912. bottom: 0.11
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Micro",
  13919. height: math.unit(3, "inches"),
  13920. default: true
  13921. },
  13922. {
  13923. name: "Normal",
  13924. height: math.unit(5 + 6 / 12, "feet")
  13925. },
  13926. {
  13927. name: "Lesser Macro",
  13928. height: math.unit(60, "feet")
  13929. },
  13930. {
  13931. name: "Greater Macro",
  13932. height: math.unit(120, "feet")
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13938. {
  13939. front: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(100, "lb"),
  13942. name: "Front",
  13943. image: {
  13944. source: "./media/characters/aevsivs/front.svg",
  13945. extra: 1,
  13946. bottom: 0.03
  13947. }
  13948. },
  13949. back: {
  13950. height: math.unit(6, "feet"),
  13951. weight: math.unit(100, "lb"),
  13952. name: "Back",
  13953. image: {
  13954. source: "./media/characters/aevsivs/back.svg"
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Micro",
  13961. height: math.unit(2, "inches"),
  13962. default: true
  13963. },
  13964. {
  13965. name: "Normal",
  13966. height: math.unit(5, "feet")
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(5 + 7 / 12, "feet"),
  13975. weight: math.unit(159, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/hildegard/front.svg",
  13979. extra: 289 / 269,
  13980. bottom: 7.63 / 297.8
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(5 + 7 / 12, "feet"),
  13985. weight: math.unit(159, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/hildegard/back.svg",
  13989. extra: 280 / 260,
  13990. bottom: 2.3 / 282
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Normal",
  13997. height: math.unit(5 + 7 / 12, "feet"),
  13998. default: true
  13999. },
  14000. ]
  14001. ))
  14002. characterMakers.push(() => makeCharacter(
  14003. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14004. {
  14005. bernard: {
  14006. height: math.unit(2 + 7 / 12, "feet"),
  14007. weight: math.unit(66, "lb"),
  14008. name: "Bernard",
  14009. rename: true,
  14010. image: {
  14011. source: "./media/characters/bernard-wilder/bernard.svg",
  14012. extra: 192 / 128,
  14013. bottom: 0.05
  14014. }
  14015. },
  14016. wilder: {
  14017. height: math.unit(5 + 8 / 12, "feet"),
  14018. weight: math.unit(143, "lb"),
  14019. name: "Wilder",
  14020. rename: true,
  14021. image: {
  14022. source: "./media/characters/bernard-wilder/wilder.svg",
  14023. extra: 361 / 312,
  14024. bottom: 0.02
  14025. }
  14026. },
  14027. },
  14028. [
  14029. {
  14030. name: "Normal",
  14031. height: math.unit(2 + 7 / 12, "feet"),
  14032. default: true
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14038. {
  14039. anthro: {
  14040. height: math.unit(6 + 1 / 12, "feet"),
  14041. weight: math.unit(155, "lb"),
  14042. name: "Anthro",
  14043. image: {
  14044. source: "./media/characters/hearth/anthro.svg",
  14045. extra: 260 / 250,
  14046. bottom: 0.02
  14047. }
  14048. },
  14049. feral: {
  14050. height: math.unit(3.78, "feet"),
  14051. weight: math.unit(35, "kg"),
  14052. name: "Feral",
  14053. image: {
  14054. source: "./media/characters/hearth/feral.svg",
  14055. extra: 153 / 135,
  14056. bottom: 0.03
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Normal",
  14063. height: math.unit(6 + 1 / 12, "feet"),
  14064. default: true
  14065. },
  14066. ]
  14067. ))
  14068. characterMakers.push(() => makeCharacter(
  14069. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14070. {
  14071. front: {
  14072. height: math.unit(6, "feet"),
  14073. weight: math.unit(182, "lb"),
  14074. name: "Front",
  14075. image: {
  14076. source: "./media/characters/ingrid/front.svg",
  14077. extra: 294 / 268,
  14078. bottom: 0.027
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Normal",
  14085. height: math.unit(6, "feet"),
  14086. default: true
  14087. },
  14088. ]
  14089. ))
  14090. characterMakers.push(() => makeCharacter(
  14091. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14092. {
  14093. eevee: {
  14094. height: math.unit(2 + 10 / 12, "feet"),
  14095. weight: math.unit(86, "lb"),
  14096. name: "Malgam",
  14097. image: {
  14098. source: "./media/characters/malgam/eevee.svg",
  14099. extra: 218 / 180,
  14100. bottom: 0.2
  14101. }
  14102. },
  14103. sylveon: {
  14104. height: math.unit(4, "feet"),
  14105. weight: math.unit(101, "lb"),
  14106. name: "Future Malgam",
  14107. rename: true,
  14108. image: {
  14109. source: "./media/characters/malgam/sylveon.svg",
  14110. extra: 371 / 325,
  14111. bottom: 0.015
  14112. }
  14113. },
  14114. gigantamax: {
  14115. height: math.unit(50, "feet"),
  14116. name: "Gigantamax Malgam",
  14117. rename: true,
  14118. image: {
  14119. source: "./media/characters/malgam/gigantamax.svg"
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(2 + 10 / 12, "feet"),
  14127. default: true
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(5 + 11 / 12, "feet"),
  14136. weight: math.unit(188, "lb"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/fleur/front.svg",
  14140. extra: 309 / 283,
  14141. bottom: 0.007
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(5 + 11 / 12, "feet"),
  14149. default: true
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(5 + 4 / 12, "feet"),
  14158. weight: math.unit(122, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/jude/front.svg",
  14162. extra: 288 / 273,
  14163. bottom: 0.03
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(5 + 4 / 12, "feet"),
  14171. default: true
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(5 + 11 / 12, "feet"),
  14180. weight: math.unit(190, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/seara/front.svg",
  14184. extra: 1,
  14185. bottom: 0.05
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(5 + 11 / 12, "feet"),
  14193. default: true
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(16 + 5 / 12, "feet"),
  14202. weight: math.unit(524, "lb"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/caspian/front.svg",
  14206. extra: 1,
  14207. bottom: 0.04
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(16 + 5 / 12, "feet"),
  14215. default: true
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14221. {
  14222. front: {
  14223. height: math.unit(5 + 7 / 12, "feet"),
  14224. weight: math.unit(170, "lb"),
  14225. name: "Front",
  14226. image: {
  14227. source: "./media/characters/mika/front.svg",
  14228. extra: 1,
  14229. bottom: 0.016
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Normal",
  14236. height: math.unit(5 + 7 / 12, "feet"),
  14237. default: true
  14238. },
  14239. ]
  14240. ))
  14241. characterMakers.push(() => makeCharacter(
  14242. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14243. {
  14244. front: {
  14245. height: math.unit(6 + 2 / 12, "feet"),
  14246. weight: math.unit(268, "lb"),
  14247. name: "Front",
  14248. image: {
  14249. source: "./media/characters/sol/front.svg",
  14250. extra: 247 / 231,
  14251. bottom: 0.05
  14252. }
  14253. },
  14254. },
  14255. [
  14256. {
  14257. name: "Normal",
  14258. height: math.unit(6 + 2 / 12, "feet"),
  14259. default: true
  14260. },
  14261. ]
  14262. ))
  14263. characterMakers.push(() => makeCharacter(
  14264. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14265. {
  14266. buizel: {
  14267. height: math.unit(2 + 5 / 12, "feet"),
  14268. weight: math.unit(87, "lb"),
  14269. name: "Buizel",
  14270. image: {
  14271. source: "./media/characters/umiko/buizel.svg",
  14272. extra: 172 / 157,
  14273. bottom: 0.01
  14274. }
  14275. },
  14276. floatzel: {
  14277. height: math.unit(5 + 9 / 12, "feet"),
  14278. weight: math.unit(250, "lb"),
  14279. name: "Floatzel",
  14280. image: {
  14281. source: "./media/characters/umiko/floatzel.svg",
  14282. extra: 262 / 248
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Normal",
  14289. height: math.unit(2 + 5 / 12, "feet"),
  14290. default: true
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(6 + 2 / 12, "feet"),
  14299. weight: math.unit(146, "lb"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/iliac/front.svg",
  14303. extra: 389 / 365,
  14304. bottom: 0.035
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Normal",
  14311. height: math.unit(6 + 2 / 12, "feet"),
  14312. default: true
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(170, "lb"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/topaz/front.svg",
  14325. extra: 317 / 303,
  14326. bottom: 0.055
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Normal",
  14333. height: math.unit(6, "feet"),
  14334. default: true
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14340. {
  14341. front: {
  14342. height: math.unit(5 + 11 / 12, "feet"),
  14343. weight: math.unit(144, "lb"),
  14344. name: "Front",
  14345. image: {
  14346. source: "./media/characters/gabriel/front.svg",
  14347. extra: 285 / 262,
  14348. bottom: 0.004
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Normal",
  14355. height: math.unit(5 + 11 / 12, "feet"),
  14356. default: true
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14362. {
  14363. side: {
  14364. height: math.unit(6 + 5 / 12, "feet"),
  14365. weight: math.unit(300, "lb"),
  14366. name: "Side",
  14367. image: {
  14368. source: "./media/characters/tempest-suicune/side.svg",
  14369. extra: 195 / 154,
  14370. bottom: 0.04
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Normal",
  14377. height: math.unit(6 + 5 / 12, "feet"),
  14378. default: true
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14384. {
  14385. front: {
  14386. height: math.unit(7 + 2 / 12, "feet"),
  14387. weight: math.unit(322, "lb"),
  14388. name: "Front",
  14389. image: {
  14390. source: "./media/characters/vulcan/front.svg",
  14391. extra: 154 / 147,
  14392. bottom: 0.04
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Normal",
  14399. height: math.unit(7 + 2 / 12, "feet"),
  14400. default: true
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(5 + 10 / 12, "feet"),
  14409. weight: math.unit(264, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/gault/front.svg",
  14413. extra: 161 / 140,
  14414. bottom: 0.028
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(5 + 10 / 12, "feet"),
  14422. default: true
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(150, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/shard/front.svg",
  14435. extra: 273 / 238,
  14436. bottom: 0.02
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Normal",
  14443. height: math.unit(3 + 6 / 12, "feet"),
  14444. default: true
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14450. {
  14451. front: {
  14452. height: math.unit(5 + 11 / 12, "feet"),
  14453. weight: math.unit(146, "lb"),
  14454. name: "Front",
  14455. image: {
  14456. source: "./media/characters/ashe/front.svg",
  14457. extra: 400 / 373,
  14458. bottom: 0.01
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Normal",
  14465. height: math.unit(5 + 11 / 12, "feet"),
  14466. default: true
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(5 + 5 / 12, "feet"),
  14475. weight: math.unit(135, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/beatrix/front.svg",
  14479. extra: 392 / 379,
  14480. bottom: 0.01
  14481. }
  14482. },
  14483. },
  14484. [
  14485. {
  14486. name: "Normal",
  14487. height: math.unit(6, "feet"),
  14488. default: true
  14489. },
  14490. ]
  14491. ))
  14492. characterMakers.push(() => makeCharacter(
  14493. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14494. {
  14495. front: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(150, "lb"),
  14498. name: "Front",
  14499. image: {
  14500. source: "./media/characters/ignatius/front.svg",
  14501. extra: 245 / 222,
  14502. bottom: 0.01
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Normal",
  14509. height: math.unit(5 + 5 / 12, "feet"),
  14510. default: true
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14516. {
  14517. front: {
  14518. height: math.unit(6 + 2 / 12, "feet"),
  14519. weight: math.unit(138, "lb"),
  14520. name: "Front",
  14521. image: {
  14522. source: "./media/characters/mei-li/front.svg",
  14523. extra: 237 / 229,
  14524. bottom: 0.03
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(6 + 2 / 12, "feet"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(2 + 4 / 12, "feet"),
  14541. weight: math.unit(62, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/puru/front.svg",
  14545. extra: 206 / 149,
  14546. bottom: 0.06
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Normal",
  14553. height: math.unit(2 + 4 / 12, "feet"),
  14554. default: true
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14560. {
  14561. taur: {
  14562. height: math.unit(11, "feet"),
  14563. weight: math.unit(500, "lb"),
  14564. name: "Taur",
  14565. image: {
  14566. source: "./media/characters/kee/taur.svg",
  14567. extra: 1,
  14568. bottom: 0.04
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Normal",
  14575. height: math.unit(11, "feet"),
  14576. default: true
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14582. {
  14583. anthro: {
  14584. height: math.unit(7, "feet"),
  14585. weight: math.unit(190, "lb"),
  14586. name: "Anthro",
  14587. image: {
  14588. source: "./media/characters/cobalt-dracha/anthro.svg",
  14589. extra: 231 / 225,
  14590. bottom: 0.04
  14591. }
  14592. },
  14593. feral: {
  14594. height: math.unit(9 + 7 / 12, "feet"),
  14595. weight: math.unit(294, "lb"),
  14596. name: "Feral",
  14597. image: {
  14598. source: "./media/characters/cobalt-dracha/feral.svg",
  14599. extra: 692 / 633,
  14600. bottom: 0.05
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Normal",
  14607. height: math.unit(7, "feet"),
  14608. default: true
  14609. },
  14610. ]
  14611. ))
  14612. characterMakers.push(() => makeCharacter(
  14613. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14614. {
  14615. fallen: {
  14616. height: math.unit(11 + 8 / 12, "feet"),
  14617. weight: math.unit(485, "lb"),
  14618. name: "Java (Fallen)",
  14619. rename: true,
  14620. image: {
  14621. source: "./media/characters/java/fallen.svg",
  14622. extra: 226 / 208,
  14623. bottom: 0.005
  14624. }
  14625. },
  14626. godkin: {
  14627. height: math.unit(10 + 6 / 12, "feet"),
  14628. weight: math.unit(328, "lb"),
  14629. name: "Java (Godkin)",
  14630. rename: true,
  14631. image: {
  14632. source: "./media/characters/java/godkin.svg",
  14633. extra: 270 / 262,
  14634. bottom: 0.02
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(11 + 8 / 12, "feet"),
  14642. default: true
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14648. {
  14649. front: {
  14650. height: math.unit(7 + 8 / 12, "feet"),
  14651. weight: math.unit(320, "lb"),
  14652. name: "Front",
  14653. image: {
  14654. source: "./media/characters/skoll/front.svg",
  14655. extra: 232 / 220,
  14656. bottom: 0.02
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(7 + 8 / 12, "feet"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(5 + 9 / 12, "feet"),
  14673. weight: math.unit(170, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/purna/front.svg",
  14677. extra: 239 / 229,
  14678. bottom: 0.01
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Normal",
  14685. height: math.unit(5 + 9 / 12, "feet"),
  14686. default: true
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(5 + 9 / 12, "feet"),
  14695. weight: math.unit(142, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/kuva/front.svg",
  14699. extra: 281 / 271,
  14700. bottom: 0.006
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(5 + 9 / 12, "feet"),
  14708. default: true
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14714. {
  14715. anthro: {
  14716. height: math.unit(9 + 2 / 12, "feet"),
  14717. weight: math.unit(270, "lb"),
  14718. name: "Anthro",
  14719. image: {
  14720. source: "./media/characters/embra/anthro.svg",
  14721. extra: 200 / 187,
  14722. bottom: 0.02
  14723. }
  14724. },
  14725. feral: {
  14726. height: math.unit(18 + 8 / 12, "feet"),
  14727. weight: math.unit(576, "lb"),
  14728. name: "Feral",
  14729. image: {
  14730. source: "./media/characters/embra/feral.svg",
  14731. extra: 152 / 137,
  14732. bottom: 0.037
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(9 + 2 / 12, "feet"),
  14740. default: true
  14741. },
  14742. ]
  14743. ))
  14744. characterMakers.push(() => makeCharacter(
  14745. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14746. {
  14747. anthro: {
  14748. height: math.unit(10 + 9 / 12, "feet"),
  14749. weight: math.unit(224, "lb"),
  14750. name: "Anthro",
  14751. image: {
  14752. source: "./media/characters/grottos/anthro.svg",
  14753. extra: 350 / 332,
  14754. bottom: 0.045
  14755. }
  14756. },
  14757. feral: {
  14758. height: math.unit(20 + 7 / 12, "feet"),
  14759. weight: math.unit(629, "lb"),
  14760. name: "Feral",
  14761. image: {
  14762. source: "./media/characters/grottos/feral.svg",
  14763. extra: 207 / 190,
  14764. bottom: 0.05
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(10 + 9 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14778. {
  14779. anthro: {
  14780. height: math.unit(9 + 6 / 12, "feet"),
  14781. weight: math.unit(298, "lb"),
  14782. name: "Anthro",
  14783. image: {
  14784. source: "./media/characters/frifna/anthro.svg",
  14785. extra: 282 / 269,
  14786. bottom: 0.015
  14787. }
  14788. },
  14789. feral: {
  14790. height: math.unit(16 + 2 / 12, "feet"),
  14791. weight: math.unit(624, "lb"),
  14792. name: "Feral",
  14793. image: {
  14794. source: "./media/characters/frifna/feral.svg"
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(9 + 6 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(6 + 2 / 12, "feet"),
  14811. weight: math.unit(168, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/elise/front.svg",
  14815. extra: 276 / 271
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(6 + 2 / 12, "feet"),
  14823. default: true
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(5 + 10 / 12, "feet"),
  14832. weight: math.unit(210, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/glade/front.svg",
  14836. extra: 258 / 247,
  14837. bottom: 0.008
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(5 + 10 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14851. {
  14852. front: {
  14853. height: math.unit(5 + 10 / 12, "feet"),
  14854. weight: math.unit(129, "lb"),
  14855. name: "Front",
  14856. image: {
  14857. source: "./media/characters/rina/front.svg",
  14858. extra: 266 / 255,
  14859. bottom: 0.005
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(5 + 10 / 12, "feet"),
  14867. default: true
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(6 + 1 / 12, "feet"),
  14876. weight: math.unit(192, "lb"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/veronica/front.svg",
  14880. extra: 319 / 309,
  14881. bottom: 0.005
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(6 + 1 / 12, "feet"),
  14889. default: true
  14890. },
  14891. ]
  14892. ))
  14893. characterMakers.push(() => makeCharacter(
  14894. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14895. {
  14896. front: {
  14897. height: math.unit(9 + 3 / 12, "feet"),
  14898. weight: math.unit(1100, "lb"),
  14899. name: "Front",
  14900. image: {
  14901. source: "./media/characters/braxton/front.svg",
  14902. extra: 1057 / 984,
  14903. bottom: 0.05
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Normal",
  14910. height: math.unit(9 + 3 / 12, "feet")
  14911. },
  14912. {
  14913. name: "Giant",
  14914. height: math.unit(300, "feet"),
  14915. default: true
  14916. },
  14917. {
  14918. name: "Macro",
  14919. height: math.unit(700, "feet")
  14920. },
  14921. {
  14922. name: "Megamacro",
  14923. height: math.unit(6000, "feet")
  14924. },
  14925. ]
  14926. ))
  14927. characterMakers.push(() => makeCharacter(
  14928. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14929. {
  14930. front: {
  14931. height: math.unit(6 + 7 / 12, "feet"),
  14932. weight: math.unit(150, "lb"),
  14933. name: "Front",
  14934. image: {
  14935. source: "./media/characters/blue-feyonics/front.svg",
  14936. extra: 1403 / 1306,
  14937. bottom: 0.047
  14938. }
  14939. },
  14940. },
  14941. [
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(6 + 7 / 12, "feet"),
  14945. default: true
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(1.8, "meters"),
  14954. weight: math.unit(60, "kg"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/maxwell/front.svg",
  14958. extra: 2060 / 1873
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Micro",
  14965. height: math.unit(1, "mm")
  14966. },
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(1.8, "meter"),
  14970. default: true
  14971. },
  14972. {
  14973. name: "Macro",
  14974. height: math.unit(30, "meters")
  14975. },
  14976. {
  14977. name: "Megamacro",
  14978. height: math.unit(10, "km")
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14984. {
  14985. front: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(150, "lb"),
  14988. name: "Front",
  14989. image: {
  14990. source: "./media/characters/jack/front.svg",
  14991. extra: 1754 / 1640,
  14992. bottom: 0.01
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Normal",
  14999. height: math.unit(80000, "feet"),
  15000. default: true
  15001. },
  15002. {
  15003. name: "Max size",
  15004. height: math.unit(10, "lightyears")
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15010. {
  15011. upright: {
  15012. height: math.unit(7, "feet"),
  15013. weight: math.unit(170, "lb"),
  15014. name: "Upright",
  15015. image: {
  15016. source: "./media/characters/cafat/upright.svg",
  15017. bottom: 0.01
  15018. }
  15019. },
  15020. uprightFull: {
  15021. height: math.unit(7, "feet"),
  15022. weight: math.unit(170, "lb"),
  15023. name: "Upright (Full)",
  15024. image: {
  15025. source: "./media/characters/cafat/upright-full.svg",
  15026. bottom: 0.01
  15027. }
  15028. },
  15029. side: {
  15030. height: math.unit(5, "feet"),
  15031. weight: math.unit(150, "lb"),
  15032. name: "Side",
  15033. image: {
  15034. source: "./media/characters/cafat/side.svg"
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Small",
  15041. height: math.unit(7, "feet"),
  15042. default: true
  15043. },
  15044. {
  15045. name: "Large",
  15046. height: math.unit(15.5, "feet")
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15052. {
  15053. front: {
  15054. height: math.unit(6, "feet"),
  15055. weight: math.unit(150, "lb"),
  15056. name: "Front",
  15057. image: {
  15058. source: "./media/characters/verin-raharra/front.svg",
  15059. extra: 5019 / 4835,
  15060. bottom: 0.023
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(7 + 5 / 12, "feet"),
  15068. default: true
  15069. },
  15070. {
  15071. name: "Upsized",
  15072. height: math.unit(20, "feet")
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(7, "feet"),
  15081. weight: math.unit(230, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/nakata/front.svg",
  15085. extra: 1.005,
  15086. bottom: 0.01
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Normal",
  15093. height: math.unit(7, "feet"),
  15094. default: true
  15095. },
  15096. {
  15097. name: "Big",
  15098. height: math.unit(14, "feet")
  15099. },
  15100. {
  15101. name: "Macro",
  15102. height: math.unit(400, "feet")
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(4.91, "feet"),
  15111. weight: math.unit(100, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/lily/front.svg",
  15115. extra: 1585 / 1415,
  15116. bottom: 0.02
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(4.91, "feet"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15130. {
  15131. laying: {
  15132. height: math.unit(4 + 4 / 12, "feet"),
  15133. weight: math.unit(600, "lb"),
  15134. name: "Laying",
  15135. image: {
  15136. source: "./media/characters/sheila/laying.svg",
  15137. extra: 1333 / 1265,
  15138. bottom: 0.16
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(4 + 4 / 12, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(190, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/sax/front.svg",
  15159. extra: 1187 / 973,
  15160. bottom: 0.042
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Micro",
  15167. height: math.unit(4, "inches"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(6, "feet"),
  15177. weight: math.unit(150, "lb"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/pandora/front.svg",
  15181. extra: 2720 / 2556,
  15182. bottom: 0.015
  15183. }
  15184. },
  15185. back: {
  15186. height: math.unit(6, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Back",
  15189. image: {
  15190. source: "./media/characters/pandora/back.svg",
  15191. extra: 2720 / 2556,
  15192. bottom: 0.01
  15193. }
  15194. },
  15195. beans: {
  15196. height: math.unit(6 / 8, "feet"),
  15197. name: "Beans",
  15198. image: {
  15199. source: "./media/characters/pandora/beans.svg"
  15200. }
  15201. },
  15202. skirt: {
  15203. height: math.unit(6, "feet"),
  15204. weight: math.unit(150, "lb"),
  15205. name: "Skirt",
  15206. image: {
  15207. source: "./media/characters/pandora/skirt.svg",
  15208. extra: 1622 / 1525,
  15209. bottom: 0.015
  15210. }
  15211. },
  15212. hoodie: {
  15213. height: math.unit(6, "feet"),
  15214. weight: math.unit(150, "lb"),
  15215. name: "Hoodie",
  15216. image: {
  15217. source: "./media/characters/pandora/hoodie.svg",
  15218. extra: 1622 / 1525,
  15219. bottom: 0.015
  15220. }
  15221. },
  15222. casual: {
  15223. height: math.unit(6, "feet"),
  15224. weight: math.unit(150, "lb"),
  15225. name: "Casual",
  15226. image: {
  15227. source: "./media/characters/pandora/casual.svg",
  15228. extra: 1622 / 1525,
  15229. bottom: 0.015
  15230. }
  15231. },
  15232. },
  15233. [
  15234. {
  15235. name: "Normal",
  15236. height: math.unit(6, "feet")
  15237. },
  15238. {
  15239. name: "Big Steppy",
  15240. height: math.unit(1, "km"),
  15241. default: true
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15247. {
  15248. side: {
  15249. height: math.unit(10, "feet"),
  15250. weight: math.unit(800, "kg"),
  15251. name: "Side",
  15252. image: {
  15253. source: "./media/characters/venio-darcony/side.svg",
  15254. extra: 1373 / 1003,
  15255. bottom: 0.037
  15256. }
  15257. },
  15258. front: {
  15259. height: math.unit(19, "feet"),
  15260. weight: math.unit(800, "kg"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/venio-darcony/front.svg"
  15264. }
  15265. },
  15266. back: {
  15267. height: math.unit(19, "feet"),
  15268. weight: math.unit(800, "kg"),
  15269. name: "Back",
  15270. image: {
  15271. source: "./media/characters/venio-darcony/back.svg"
  15272. }
  15273. },
  15274. sideNsfw: {
  15275. height: math.unit(10, "feet"),
  15276. weight: math.unit(800, "kg"),
  15277. name: "Side (NSFW)",
  15278. image: {
  15279. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15280. extra: 1373 / 1003,
  15281. bottom: 0.037
  15282. }
  15283. },
  15284. frontNsfw: {
  15285. height: math.unit(19, "feet"),
  15286. weight: math.unit(800, "kg"),
  15287. name: "Front (NSFW)",
  15288. image: {
  15289. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15290. }
  15291. },
  15292. backNsfw: {
  15293. height: math.unit(19, "feet"),
  15294. weight: math.unit(800, "kg"),
  15295. name: "Back (NSFW)",
  15296. image: {
  15297. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15298. }
  15299. },
  15300. sideArmored: {
  15301. height: math.unit(10, "feet"),
  15302. weight: math.unit(800, "kg"),
  15303. name: "Side (Armored)",
  15304. image: {
  15305. source: "./media/characters/venio-darcony/side-armored.svg",
  15306. extra: 1373 / 1003,
  15307. bottom: 0.037
  15308. }
  15309. },
  15310. frontArmored: {
  15311. height: math.unit(19, "feet"),
  15312. weight: math.unit(900, "kg"),
  15313. name: "Front (Armored)",
  15314. image: {
  15315. source: "./media/characters/venio-darcony/front-armored.svg"
  15316. }
  15317. },
  15318. backArmored: {
  15319. height: math.unit(19, "feet"),
  15320. weight: math.unit(900, "kg"),
  15321. name: "Back (Armored)",
  15322. image: {
  15323. source: "./media/characters/venio-darcony/back-armored.svg"
  15324. }
  15325. },
  15326. sword: {
  15327. height: math.unit(10, "feet"),
  15328. weight: math.unit(50, "lb"),
  15329. name: "Sword",
  15330. image: {
  15331. source: "./media/characters/venio-darcony/sword.svg"
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Normal",
  15338. height: math.unit(10, "feet")
  15339. },
  15340. {
  15341. name: "Macro",
  15342. height: math.unit(130, "feet"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Macro+",
  15347. height: math.unit(240, "feet")
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(6, "feet"),
  15356. weight: math.unit(150, "lb"),
  15357. name: "Front",
  15358. image: {
  15359. source: "./media/characters/veski/front.svg",
  15360. extra: 1299 / 1225,
  15361. bottom: 0.04
  15362. }
  15363. },
  15364. back: {
  15365. height: math.unit(6, "feet"),
  15366. weight: math.unit(150, "lb"),
  15367. name: "Back",
  15368. image: {
  15369. source: "./media/characters/veski/back.svg",
  15370. extra: 1299 / 1225,
  15371. bottom: 0.008
  15372. }
  15373. },
  15374. maw: {
  15375. height: math.unit(1.5 * 1.21, "feet"),
  15376. name: "Maw",
  15377. image: {
  15378. source: "./media/characters/veski/maw.svg"
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Macro",
  15385. height: math.unit(2, "km"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(5 + 7 / 12, "feet"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/isabelle/front.svg",
  15398. extra: 2130 / 1976,
  15399. bottom: 0.05
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Supermicro",
  15406. height: math.unit(10, "micrometers")
  15407. },
  15408. {
  15409. name: "Micro",
  15410. height: math.unit(1, "inch")
  15411. },
  15412. {
  15413. name: "Tiny",
  15414. height: math.unit(5, "inches")
  15415. },
  15416. {
  15417. name: "Standard",
  15418. height: math.unit(5 + 7 / 12, "inches")
  15419. },
  15420. {
  15421. name: "Macro",
  15422. height: math.unit(80, "meters"),
  15423. default: true
  15424. },
  15425. {
  15426. name: "Megamacro",
  15427. height: math.unit(250, "meters")
  15428. },
  15429. {
  15430. name: "Gigamacro",
  15431. height: math.unit(5, "km")
  15432. },
  15433. {
  15434. name: "Cosmic",
  15435. height: math.unit(2.5e6, "miles")
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15441. {
  15442. front: {
  15443. height: math.unit(6, "feet"),
  15444. weight: math.unit(150, "lb"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/hanzo/front.svg",
  15448. extra: 374 / 344,
  15449. bottom: 0.02
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Normal",
  15456. height: math.unit(8, "feet"),
  15457. default: true
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15463. {
  15464. front: {
  15465. height: math.unit(7, "feet"),
  15466. weight: math.unit(130, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/anna/front.svg",
  15470. extra: 169 / 145,
  15471. bottom: 0.06
  15472. }
  15473. },
  15474. full: {
  15475. height: math.unit(4.96, "feet"),
  15476. weight: math.unit(220, "lb"),
  15477. name: "Full",
  15478. image: {
  15479. source: "./media/characters/anna/full.svg",
  15480. extra: 138 / 114,
  15481. bottom: 0.15
  15482. }
  15483. },
  15484. tongue: {
  15485. height: math.unit(2.53, "feet"),
  15486. name: "Tongue",
  15487. image: {
  15488. source: "./media/characters/anna/tongue.svg"
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(7, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(7, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/ian-corvid/front.svg",
  15509. extra: 150 / 142,
  15510. bottom: 0.02
  15511. }
  15512. },
  15513. back: {
  15514. height: math.unit(7, "feet"),
  15515. weight: math.unit(150, "lb"),
  15516. name: "Back",
  15517. image: {
  15518. source: "./media/characters/ian-corvid/back.svg",
  15519. extra: 150 / 143,
  15520. bottom: 0.01
  15521. }
  15522. },
  15523. stomping: {
  15524. height: math.unit(7, "feet"),
  15525. weight: math.unit(150, "lb"),
  15526. name: "Stomping",
  15527. image: {
  15528. source: "./media/characters/ian-corvid/stomping.svg",
  15529. extra: 76 / 72
  15530. }
  15531. },
  15532. sitting: {
  15533. height: math.unit(7 / 1.8, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Sitting",
  15536. image: {
  15537. source: "./media/characters/ian-corvid/sitting.svg",
  15538. extra: 1400 / 1269,
  15539. bottom: 0.15
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Tiny Microw",
  15546. height: math.unit(1, "inch")
  15547. },
  15548. {
  15549. name: "Microw",
  15550. height: math.unit(6, "inches")
  15551. },
  15552. {
  15553. name: "Crow",
  15554. height: math.unit(7 + 1 / 12, "feet"),
  15555. default: true
  15556. },
  15557. {
  15558. name: "Macrow",
  15559. height: math.unit(176, "feet")
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15565. {
  15566. front: {
  15567. height: math.unit(5 + 7 / 12, "feet"),
  15568. weight: math.unit(147, "lb"),
  15569. name: "Front",
  15570. image: {
  15571. source: "./media/characters/natalie-kellon/front.svg",
  15572. extra: 1214 / 1141,
  15573. bottom: 0.02
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Micro",
  15580. height: math.unit(1 / 16, "inch")
  15581. },
  15582. {
  15583. name: "Tiny",
  15584. height: math.unit(4, "inches")
  15585. },
  15586. {
  15587. name: "Normal",
  15588. height: math.unit(5 + 7 / 12, "feet"),
  15589. default: true
  15590. },
  15591. {
  15592. name: "Amazon",
  15593. height: math.unit(12, "feet")
  15594. },
  15595. {
  15596. name: "Giantess",
  15597. height: math.unit(160, "meters")
  15598. },
  15599. {
  15600. name: "Titaness",
  15601. height: math.unit(800, "meters")
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(6, "feet"),
  15610. weight: math.unit(150, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/alluria/front.svg",
  15614. extra: 806 / 738,
  15615. bottom: 0.01
  15616. }
  15617. },
  15618. side: {
  15619. height: math.unit(6, "feet"),
  15620. weight: math.unit(150, "lb"),
  15621. name: "Side",
  15622. image: {
  15623. source: "./media/characters/alluria/side.svg",
  15624. extra: 800 / 750,
  15625. }
  15626. },
  15627. back: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Back",
  15631. image: {
  15632. source: "./media/characters/alluria/back.svg",
  15633. extra: 806 / 738,
  15634. }
  15635. },
  15636. frontMaid: {
  15637. height: math.unit(6, "feet"),
  15638. weight: math.unit(150, "lb"),
  15639. name: "Front (Maid)",
  15640. image: {
  15641. source: "./media/characters/alluria/front-maid.svg",
  15642. extra: 806 / 738,
  15643. bottom: 0.01
  15644. }
  15645. },
  15646. sideMaid: {
  15647. height: math.unit(6, "feet"),
  15648. weight: math.unit(150, "lb"),
  15649. name: "Side (Maid)",
  15650. image: {
  15651. source: "./media/characters/alluria/side-maid.svg",
  15652. extra: 800 / 750,
  15653. bottom: 0.005
  15654. }
  15655. },
  15656. backMaid: {
  15657. height: math.unit(6, "feet"),
  15658. weight: math.unit(150, "lb"),
  15659. name: "Back (Maid)",
  15660. image: {
  15661. source: "./media/characters/alluria/back-maid.svg",
  15662. extra: 806 / 738,
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Micro",
  15669. height: math.unit(6, "inches"),
  15670. default: true
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15676. {
  15677. front: {
  15678. height: math.unit(6, "feet"),
  15679. weight: math.unit(150, "lb"),
  15680. name: "Front",
  15681. image: {
  15682. source: "./media/characters/kyle/front.svg",
  15683. extra: 1069 / 962,
  15684. bottom: 77.228 / 1727.45
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Macro",
  15691. height: math.unit(150, "feet"),
  15692. default: true
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15698. {
  15699. front: {
  15700. height: math.unit(6, "feet"),
  15701. weight: math.unit(300, "lb"),
  15702. name: "Front",
  15703. image: {
  15704. source: "./media/characters/duncan/front.svg",
  15705. extra: 1650 / 1482,
  15706. bottom: 0.05
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Macro",
  15713. height: math.unit(100, "feet"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(5 + 4 / 12, "feet"),
  15723. weight: math.unit(220, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/memory/front.svg",
  15727. extra: 3641 / 3545,
  15728. bottom: 0.03
  15729. }
  15730. },
  15731. back: {
  15732. height: math.unit(5 + 4 / 12, "feet"),
  15733. weight: math.unit(220, "lb"),
  15734. name: "Back",
  15735. image: {
  15736. source: "./media/characters/memory/back.svg",
  15737. extra: 3641 / 3545,
  15738. bottom: 0.025
  15739. }
  15740. },
  15741. frontSkirt: {
  15742. height: math.unit(5 + 4 / 12, "feet"),
  15743. weight: math.unit(220, "lb"),
  15744. name: "Front (Skirt)",
  15745. image: {
  15746. source: "./media/characters/memory/front-skirt.svg",
  15747. extra: 3641 / 3545,
  15748. bottom: 0.03
  15749. }
  15750. },
  15751. frontDress: {
  15752. height: math.unit(5 + 4 / 12, "feet"),
  15753. weight: math.unit(220, "lb"),
  15754. name: "Front (Dress)",
  15755. image: {
  15756. source: "./media/characters/memory/front-dress.svg",
  15757. extra: 3641 / 3545,
  15758. bottom: 0.03
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Micro",
  15765. height: math.unit(6, "inches"),
  15766. default: true
  15767. },
  15768. {
  15769. name: "Normal",
  15770. height: math.unit(5 + 4 / 12, "feet")
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15776. {
  15777. front: {
  15778. height: math.unit(4 + 11 / 12, "feet"),
  15779. weight: math.unit(100, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/luno/front.svg",
  15783. extra: 1535 / 1487,
  15784. bottom: 0.03
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Micro",
  15791. height: math.unit(3, "inches")
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(4 + 11 / 12, "feet"),
  15796. default: true
  15797. },
  15798. {
  15799. name: "Macro",
  15800. height: math.unit(300, "feet")
  15801. },
  15802. {
  15803. name: "Megamacro",
  15804. height: math.unit(700, "miles")
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(6 + 2 / 12, "feet"),
  15813. weight: math.unit(170, "lb"),
  15814. name: "Front",
  15815. image: {
  15816. source: "./media/characters/jamesy/front.svg",
  15817. extra: 440 / 382,
  15818. bottom: 0.005
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Micro",
  15825. height: math.unit(3, "inches")
  15826. },
  15827. {
  15828. name: "Normal",
  15829. height: math.unit(6 + 2 / 12, "feet"),
  15830. default: true
  15831. },
  15832. {
  15833. name: "Macro",
  15834. height: math.unit(300, "feet")
  15835. },
  15836. {
  15837. name: "Megamacro",
  15838. height: math.unit(700, "miles")
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(6, "feet"),
  15847. weight: math.unit(160, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/mark/front.svg",
  15851. extra: 3300 / 3100,
  15852. bottom: 136.42 / 3440.47
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Macro",
  15859. height: math.unit(120, "meters")
  15860. },
  15861. {
  15862. name: "Bigger Macro",
  15863. height: math.unit(350, "meters")
  15864. },
  15865. {
  15866. name: "Megamacro",
  15867. height: math.unit(8, "km"),
  15868. default: true
  15869. },
  15870. {
  15871. name: "Continental",
  15872. height: math.unit(4550, "km")
  15873. },
  15874. {
  15875. name: "Planetary",
  15876. height: math.unit(65000, "km")
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15882. {
  15883. front: {
  15884. height: math.unit(6, "feet"),
  15885. weight: math.unit(400, "lb"),
  15886. name: "Front",
  15887. image: {
  15888. source: "./media/characters/mac/front.svg",
  15889. extra: 1048 / 987.7,
  15890. bottom: 60 / 1107.6,
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Macro",
  15897. height: math.unit(500, "feet"),
  15898. default: true
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15904. {
  15905. front: {
  15906. height: math.unit(5 + 2 / 12, "feet"),
  15907. weight: math.unit(190, "lb"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/bari/front.svg",
  15911. extra: 3156 / 2880,
  15912. bottom: 0.03
  15913. }
  15914. },
  15915. back: {
  15916. height: math.unit(5 + 2 / 12, "feet"),
  15917. weight: math.unit(190, "lb"),
  15918. name: "Back",
  15919. image: {
  15920. source: "./media/characters/bari/back.svg",
  15921. extra: 3260 / 2834,
  15922. bottom: 0.025
  15923. }
  15924. },
  15925. frontPlush: {
  15926. height: math.unit(5 + 2 / 12, "feet"),
  15927. weight: math.unit(190, "lb"),
  15928. name: "Front (Plush)",
  15929. image: {
  15930. source: "./media/characters/bari/front-plush.svg",
  15931. extra: 1112 / 1061,
  15932. bottom: 0.002
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Micro",
  15939. height: math.unit(3, "inches")
  15940. },
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(5 + 2 / 12, "feet"),
  15944. default: true
  15945. },
  15946. {
  15947. name: "Macro",
  15948. height: math.unit(20, "feet")
  15949. },
  15950. ]
  15951. ))
  15952. characterMakers.push(() => makeCharacter(
  15953. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15954. {
  15955. front: {
  15956. height: math.unit(6 + 1 / 12, "feet"),
  15957. weight: math.unit(275, "lb"),
  15958. name: "Front",
  15959. image: {
  15960. source: "./media/characters/hunter-misha-raven/front.svg"
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Mortal",
  15967. height: math.unit(6 + 1 / 12, "feet")
  15968. },
  15969. {
  15970. name: "Divine",
  15971. height: math.unit(1.12134e34, "parsecs"),
  15972. default: true
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(6 + 3 / 12, "feet"),
  15981. weight: math.unit(220, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/max-calore/front.svg",
  15985. extra: 1700 / 1648,
  15986. bottom: 0.01
  15987. }
  15988. },
  15989. back: {
  15990. height: math.unit(6 + 3 / 12, "feet"),
  15991. weight: math.unit(220, "lb"),
  15992. name: "Back",
  15993. image: {
  15994. source: "./media/characters/max-calore/back.svg",
  15995. extra: 1700 / 1648,
  15996. bottom: 0.01
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Normal",
  16003. height: math.unit(6 + 3 / 12, "feet"),
  16004. default: true
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16010. {
  16011. side: {
  16012. height: math.unit(2 + 8 / 12, "feet"),
  16013. weight: math.unit(99, "lb"),
  16014. name: "Side",
  16015. image: {
  16016. source: "./media/characters/aspen/side.svg",
  16017. extra: 152 / 138,
  16018. bottom: 0.032
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(2 + 8 / 12, "feet"),
  16026. default: true
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16032. {
  16033. side: {
  16034. height: math.unit(3 + 2 / 12, "feet"),
  16035. weight: math.unit(224, "lb"),
  16036. name: "Side",
  16037. image: {
  16038. source: "./media/characters/sheila-feral-wolf/side.svg",
  16039. extra: 179 / 166,
  16040. bottom: 0.03
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(3 + 2 / 12, "feet"),
  16048. default: true
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16054. {
  16055. side: {
  16056. height: math.unit(1 + 9 / 12, "feet"),
  16057. weight: math.unit(38, "lb"),
  16058. name: "Side",
  16059. image: {
  16060. source: "./media/characters/michelle/side.svg",
  16061. extra: 147 / 136.7,
  16062. bottom: 0.03
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Normal",
  16069. height: math.unit(1 + 9 / 12, "feet"),
  16070. default: true
  16071. },
  16072. ]
  16073. ))
  16074. characterMakers.push(() => makeCharacter(
  16075. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16076. {
  16077. front: {
  16078. height: math.unit(1 + 1 / 12, "feet"),
  16079. weight: math.unit(18, "lb"),
  16080. name: "Front",
  16081. image: {
  16082. source: "./media/characters/nino/front.svg"
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(1 + 1 / 12, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(1, "feet"),
  16099. weight: math.unit(16, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/viola/front.svg"
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Normal",
  16109. height: math.unit(1, "feet"),
  16110. default: true
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16116. {
  16117. front: {
  16118. height: math.unit(6 + 5 / 12, "feet"),
  16119. weight: math.unit(580, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/atlas/front.svg",
  16123. extra: 298.5 / 290,
  16124. bottom: 0.015
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(6 + 5 / 12, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16138. {
  16139. side: {
  16140. height: math.unit(1 + 10 / 12, "feet"),
  16141. weight: math.unit(25, "lb"),
  16142. name: "Side",
  16143. image: {
  16144. source: "./media/characters/davy/side.svg",
  16145. extra: 200 / 170,
  16146. bottom: 0.01
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(1 + 10 / 12, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16160. {
  16161. side: {
  16162. height: math.unit(4 + 8 / 12, "feet"),
  16163. weight: math.unit(166, "lb"),
  16164. name: "Side",
  16165. image: {
  16166. source: "./media/characters/fiona/side.svg",
  16167. extra: 232 / 220,
  16168. bottom: 0.03
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(4 + 8 / 12, "feet"),
  16176. default: true
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16182. {
  16183. front: {
  16184. height: math.unit(2, "feet"),
  16185. weight: math.unit(62, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/lyla/front.svg",
  16189. bottom: 0.1
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Normal",
  16196. height: math.unit(2, "feet"),
  16197. default: true
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16203. {
  16204. side: {
  16205. height: math.unit(1.8, "feet"),
  16206. weight: math.unit(44, "lb"),
  16207. name: "Side",
  16208. image: {
  16209. source: "./media/characters/perseus/side.svg",
  16210. bottom: 0.21
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Normal",
  16217. height: math.unit(1.8, "feet"),
  16218. default: true
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16224. {
  16225. side: {
  16226. height: math.unit(4 + 2 / 12, "feet"),
  16227. weight: math.unit(20, "lb"),
  16228. name: "Side",
  16229. image: {
  16230. source: "./media/characters/remus/side.svg"
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(4 + 2 / 12, "feet"),
  16238. default: true
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16244. {
  16245. front: {
  16246. height: math.unit(4 + 11 / 12, "feet"),
  16247. weight: math.unit(114, "lb"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/raf/front.svg",
  16251. bottom: 20.5 / 1863
  16252. }
  16253. },
  16254. side: {
  16255. height: math.unit(4 + 11 / 12, "feet"),
  16256. weight: math.unit(114, "lb"),
  16257. name: "Side",
  16258. image: {
  16259. source: "./media/characters/raf/side.svg",
  16260. bottom: 22 / 1822
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Micro",
  16267. height: math.unit(2, "inches")
  16268. },
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(4 + 11 / 12, "feet"),
  16272. default: true
  16273. },
  16274. {
  16275. name: "Macro",
  16276. height: math.unit(70, "feet")
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(1.5, "meters"),
  16285. weight: math.unit(68, "kg"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/liam-einarr/front.svg",
  16289. extra: 2822 / 2666
  16290. }
  16291. },
  16292. back: {
  16293. height: math.unit(1.5, "meters"),
  16294. weight: math.unit(68, "kg"),
  16295. name: "Back",
  16296. image: {
  16297. source: "./media/characters/liam-einarr/back.svg",
  16298. extra: 2822 / 2666,
  16299. bottom: 0.015
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(1.5, "meters"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Macro",
  16311. height: math.unit(150, "meters")
  16312. },
  16313. {
  16314. name: "Megamacro",
  16315. height: math.unit(35, "km")
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16321. {
  16322. front: {
  16323. height: math.unit(6, "feet"),
  16324. weight: math.unit(75, "kg"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/linda/front.svg",
  16328. extra: 930 / 874,
  16329. bottom: 0.004
  16330. }
  16331. },
  16332. },
  16333. [
  16334. {
  16335. name: "Normal",
  16336. height: math.unit(6, "feet"),
  16337. default: true
  16338. },
  16339. ]
  16340. ))
  16341. characterMakers.push(() => makeCharacter(
  16342. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16343. {
  16344. front: {
  16345. height: math.unit(6 + 8 / 12, "feet"),
  16346. weight: math.unit(220, "lb"),
  16347. name: "Front",
  16348. image: {
  16349. source: "./media/characters/caylex/front.svg",
  16350. extra: 821 / 772,
  16351. bottom: 0.07
  16352. }
  16353. },
  16354. back: {
  16355. height: math.unit(6 + 8 / 12, "feet"),
  16356. weight: math.unit(220, "lb"),
  16357. name: "Back",
  16358. image: {
  16359. source: "./media/characters/caylex/back.svg",
  16360. extra: 821 / 772,
  16361. bottom: 0.022
  16362. }
  16363. },
  16364. hand: {
  16365. height: math.unit(1.25, "feet"),
  16366. name: "Hand",
  16367. image: {
  16368. source: "./media/characters/caylex/hand.svg"
  16369. }
  16370. },
  16371. foot: {
  16372. height: math.unit(1.6, "feet"),
  16373. name: "Foot",
  16374. image: {
  16375. source: "./media/characters/caylex/foot.svg"
  16376. }
  16377. },
  16378. armored: {
  16379. height: math.unit(6 + 8 / 12, "feet"),
  16380. weight: math.unit(250, "lb"),
  16381. name: "Armored",
  16382. image: {
  16383. source: "./media/characters/caylex/armored.svg",
  16384. extra: 1420 / 1310,
  16385. bottom: 0.045
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(6 + 8 / 12, "feet"),
  16393. default: true
  16394. },
  16395. {
  16396. name: "Normal+",
  16397. height: math.unit(12, "feet")
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(7 + 6 / 12, "feet"),
  16406. weight: math.unit(288, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/alana/front.svg",
  16410. extra: 679 / 653,
  16411. bottom: 22.5 / 701
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Normal",
  16418. height: math.unit(7 + 6 / 12, "feet")
  16419. },
  16420. {
  16421. name: "Large",
  16422. height: math.unit(50, "feet")
  16423. },
  16424. {
  16425. name: "Macro",
  16426. height: math.unit(100, "feet"),
  16427. default: true
  16428. },
  16429. {
  16430. name: "Macro+",
  16431. height: math.unit(200, "feet")
  16432. },
  16433. ]
  16434. ))
  16435. characterMakers.push(() => makeCharacter(
  16436. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16437. {
  16438. front: {
  16439. height: math.unit(6 + 1 / 12, "feet"),
  16440. weight: math.unit(210, "lb"),
  16441. name: "Front",
  16442. image: {
  16443. source: "./media/characters/hasani/front.svg",
  16444. extra: 244 / 232,
  16445. bottom: 0.01
  16446. }
  16447. },
  16448. back: {
  16449. height: math.unit(6 + 1 / 12, "feet"),
  16450. weight: math.unit(210, "lb"),
  16451. name: "Back",
  16452. image: {
  16453. source: "./media/characters/hasani/back.svg",
  16454. extra: 244 / 232,
  16455. bottom: 0.01
  16456. }
  16457. },
  16458. },
  16459. [
  16460. {
  16461. name: "Normal",
  16462. height: math.unit(6 + 1 / 12, "feet")
  16463. },
  16464. {
  16465. name: "Macro",
  16466. height: math.unit(175, "feet"),
  16467. default: true
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(1.82, "meters"),
  16476. weight: math.unit(140, "lb"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/nita/front.svg",
  16480. extra: 2473 / 2363,
  16481. bottom: 0.01
  16482. }
  16483. },
  16484. },
  16485. [
  16486. {
  16487. name: "Normal",
  16488. height: math.unit(1.82, "m")
  16489. },
  16490. {
  16491. name: "Macro",
  16492. height: math.unit(300, "m")
  16493. },
  16494. {
  16495. name: "Mistake Canon",
  16496. height: math.unit(0.5, "miles"),
  16497. default: true
  16498. },
  16499. {
  16500. name: "Big Mistake",
  16501. height: math.unit(13, "miles")
  16502. },
  16503. {
  16504. name: "Playing God",
  16505. height: math.unit(2450, "miles")
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(4, "feet"),
  16514. weight: math.unit(120, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/shiriko/front.svg",
  16518. extra: 195 / 188
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(4, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(6, "feet"),
  16535. name: "front",
  16536. image: {
  16537. source: "./media/characters/deja/front.svg",
  16538. extra: 926 / 840,
  16539. bottom: 0.07
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Planck Length",
  16546. height: math.unit(1.6e-35, "meters")
  16547. },
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(30.48, "meters"),
  16551. default: true
  16552. },
  16553. {
  16554. name: "Universal",
  16555. height: math.unit(8.8e26, "meters")
  16556. },
  16557. ]
  16558. ))
  16559. characterMakers.push(() => makeCharacter(
  16560. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16561. {
  16562. side: {
  16563. height: math.unit(8, "feet"),
  16564. weight: math.unit(6300, "lb"),
  16565. name: "Side",
  16566. image: {
  16567. source: "./media/characters/anima/side.svg",
  16568. bottom: 0.035
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(8, "feet"),
  16576. default: true
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16582. {
  16583. front: {
  16584. height: math.unit(8, "feet"),
  16585. weight: math.unit(350, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/bianca/front.svg",
  16589. extra: 234 / 225,
  16590. bottom: 0.03
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(8, "feet"),
  16598. default: true
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16604. {
  16605. front: {
  16606. height: math.unit(6, "feet"),
  16607. weight: math.unit(150, "lb"),
  16608. name: "Front",
  16609. image: {
  16610. source: "./media/characters/adinia/front.svg",
  16611. extra: 1845 / 1672,
  16612. bottom: 0.02
  16613. }
  16614. },
  16615. back: {
  16616. height: math.unit(6, "feet"),
  16617. weight: math.unit(150, "lb"),
  16618. name: "Back",
  16619. image: {
  16620. source: "./media/characters/adinia/back.svg",
  16621. extra: 1845 / 1672,
  16622. bottom: 0.002
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(11 + 5 / 12, "feet"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(3, "meters"),
  16639. weight: math.unit(200, "kg"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/lykasa/front.svg",
  16643. extra: 1076 / 976,
  16644. bottom: 0.06
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Normal",
  16651. height: math.unit(3, "meters")
  16652. },
  16653. {
  16654. name: "Kaiju",
  16655. height: math.unit(120, "meters"),
  16656. default: true
  16657. },
  16658. {
  16659. name: "Mega Kaiju",
  16660. height: math.unit(240, "km")
  16661. },
  16662. {
  16663. name: "Giga Kaiju",
  16664. height: math.unit(400, "megameters")
  16665. },
  16666. {
  16667. name: "Tera Kaiju",
  16668. height: math.unit(800, "gigameters")
  16669. },
  16670. {
  16671. name: "Kaiju Dragon Goddess",
  16672. height: math.unit(26, "zettaparsecs")
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16678. {
  16679. side: {
  16680. height: math.unit(283 / 124 * 6, "feet"),
  16681. weight: math.unit(35000, "lb"),
  16682. name: "Side",
  16683. image: {
  16684. source: "./media/characters/malfaren/side.svg",
  16685. extra: 2500 / 1010,
  16686. bottom: 0.01
  16687. }
  16688. },
  16689. front: {
  16690. height: math.unit(22.36, "feet"),
  16691. weight: math.unit(35000, "lb"),
  16692. name: "Front",
  16693. image: {
  16694. source: "./media/characters/malfaren/front.svg",
  16695. extra: 1631 / 1476,
  16696. bottom: 0.01
  16697. }
  16698. },
  16699. maw: {
  16700. height: math.unit(6.9, "feet"),
  16701. name: "Maw",
  16702. image: {
  16703. source: "./media/characters/malfaren/maw.svg"
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Big",
  16710. height: math.unit(283 / 162 * 6, "feet"),
  16711. },
  16712. {
  16713. name: "Bigger",
  16714. height: math.unit(283 / 124 * 6, "feet")
  16715. },
  16716. {
  16717. name: "Massive",
  16718. height: math.unit(283 / 92 * 6, "feet"),
  16719. default: true
  16720. },
  16721. {
  16722. name: "👀💦",
  16723. height: math.unit(283 / 73 * 6, "feet"),
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16729. {
  16730. front: {
  16731. height: math.unit(1.7, "m"),
  16732. weight: math.unit(70, "kg"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/kernel/front.svg",
  16736. extra: 222 / 210,
  16737. bottom: 0.007
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Nano",
  16744. height: math.unit(17, "micrometers")
  16745. },
  16746. {
  16747. name: "Micro",
  16748. height: math.unit(1.7, "mm")
  16749. },
  16750. {
  16751. name: "Small",
  16752. height: math.unit(1.7, "cm")
  16753. },
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(1.7, "m"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(1.75, "meters"),
  16766. weight: math.unit(65, "kg"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/jayne-folest/front.svg",
  16770. extra: 2115 / 2007,
  16771. bottom: 0.02
  16772. }
  16773. },
  16774. back: {
  16775. height: math.unit(1.75, "meters"),
  16776. weight: math.unit(65, "kg"),
  16777. name: "Back",
  16778. image: {
  16779. source: "./media/characters/jayne-folest/back.svg",
  16780. extra: 2115 / 2007,
  16781. bottom: 0.005
  16782. }
  16783. },
  16784. frontClothed: {
  16785. height: math.unit(1.75, "meters"),
  16786. weight: math.unit(65, "kg"),
  16787. name: "Front (Clothed)",
  16788. image: {
  16789. source: "./media/characters/jayne-folest/front-clothed.svg",
  16790. extra: 2115 / 2007,
  16791. bottom: 0.035
  16792. }
  16793. },
  16794. hand: {
  16795. height: math.unit(1 / 1.260, "feet"),
  16796. name: "Hand",
  16797. image: {
  16798. source: "./media/characters/jayne-folest/hand.svg"
  16799. }
  16800. },
  16801. foot: {
  16802. height: math.unit(1 / 0.918, "feet"),
  16803. name: "Foot",
  16804. image: {
  16805. source: "./media/characters/jayne-folest/foot.svg"
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Micro",
  16812. height: math.unit(4, "cm")
  16813. },
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(1.75, "meters")
  16817. },
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(47.5, "meters"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16827. {
  16828. front: {
  16829. height: math.unit(180, "cm"),
  16830. weight: math.unit(70, "kg"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/algier/front.svg",
  16834. extra: 596 / 572,
  16835. bottom: 0.04
  16836. }
  16837. },
  16838. back: {
  16839. height: math.unit(180, "cm"),
  16840. weight: math.unit(70, "kg"),
  16841. name: "Back",
  16842. image: {
  16843. source: "./media/characters/algier/back.svg",
  16844. extra: 596 / 572,
  16845. bottom: 0.025
  16846. }
  16847. },
  16848. frontdressed: {
  16849. height: math.unit(180, "cm"),
  16850. weight: math.unit(150, "kg"),
  16851. name: "Front-dressed",
  16852. image: {
  16853. source: "./media/characters/algier/front-dressed.svg",
  16854. extra: 596 / 572,
  16855. bottom: 0.038
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Micro",
  16862. height: math.unit(5, "cm")
  16863. },
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(180, "cm"),
  16867. default: true
  16868. },
  16869. {
  16870. name: "Macro",
  16871. height: math.unit(64, "m")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16877. {
  16878. upright: {
  16879. height: math.unit(7, "feet"),
  16880. weight: math.unit(300, "lb"),
  16881. name: "Upright",
  16882. image: {
  16883. source: "./media/characters/pretzel/upright.svg",
  16884. extra: 534 / 522,
  16885. bottom: 0.065
  16886. }
  16887. },
  16888. sprawling: {
  16889. height: math.unit(3.75, "feet"),
  16890. weight: math.unit(300, "lb"),
  16891. name: "Sprawling",
  16892. image: {
  16893. source: "./media/characters/pretzel/sprawling.svg",
  16894. extra: 314 / 281,
  16895. bottom: 0.1
  16896. }
  16897. },
  16898. tongue: {
  16899. height: math.unit(2, "feet"),
  16900. name: "Tongue",
  16901. image: {
  16902. source: "./media/characters/pretzel/tongue.svg"
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(7, "feet"),
  16910. default: true
  16911. },
  16912. {
  16913. name: "Oversized",
  16914. height: math.unit(15, "feet")
  16915. },
  16916. {
  16917. name: "Huge",
  16918. height: math.unit(30, "feet")
  16919. },
  16920. {
  16921. name: "Macro",
  16922. height: math.unit(250, "feet")
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16928. {
  16929. sideFront: {
  16930. height: math.unit(5 + 2 / 12, "feet"),
  16931. weight: math.unit(120, "lb"),
  16932. name: "Front Side",
  16933. image: {
  16934. source: "./media/characters/roxi/side-front.svg",
  16935. extra: 2924 / 2717,
  16936. bottom: 0.08
  16937. }
  16938. },
  16939. sideBack: {
  16940. height: math.unit(5 + 2 / 12, "feet"),
  16941. weight: math.unit(120, "lb"),
  16942. name: "Back Side",
  16943. image: {
  16944. source: "./media/characters/roxi/side-back.svg",
  16945. extra: 2904 / 2693,
  16946. bottom: 0.06
  16947. }
  16948. },
  16949. front: {
  16950. height: math.unit(5 + 2 / 12, "feet"),
  16951. weight: math.unit(120, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/roxi/front.svg",
  16955. extra: 2028 / 1907,
  16956. bottom: 0.01
  16957. }
  16958. },
  16959. frontAlt: {
  16960. height: math.unit(5 + 2 / 12, "feet"),
  16961. weight: math.unit(120, "lb"),
  16962. name: "Front (Alt)",
  16963. image: {
  16964. source: "./media/characters/roxi/front-alt.svg",
  16965. extra: 1828 / 1798,
  16966. bottom: 0.01
  16967. }
  16968. },
  16969. sitting: {
  16970. height: math.unit(2.8, "feet"),
  16971. weight: math.unit(120, "lb"),
  16972. name: "Sitting",
  16973. image: {
  16974. source: "./media/characters/roxi/sitting.svg",
  16975. extra: 2660 / 2462,
  16976. bottom: 0.1
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(5 + 2 / 12, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16990. {
  16991. side: {
  16992. height: math.unit(55, "feet"),
  16993. weight: math.unit(153, "tons"),
  16994. name: "Side",
  16995. image: {
  16996. source: "./media/characters/shadow/side.svg",
  16997. extra: 701 / 628,
  16998. bottom: 0.02
  16999. }
  17000. },
  17001. flying: {
  17002. height: math.unit(145, "feet"),
  17003. weight: math.unit(153, "tons"),
  17004. name: "Flying",
  17005. image: {
  17006. source: "./media/characters/shadow/flying.svg"
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(55, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(6, "feet"),
  17023. weight: math.unit(200, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/marcie/front.svg",
  17027. extra: 960 / 876,
  17028. bottom: 58 / 1017.87
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Macro",
  17035. height: math.unit(1, "mile"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(7, "feet"),
  17045. weight: math.unit(200, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/kachina/front.svg",
  17049. extra: 1290.68 / 1119,
  17050. bottom: 36.5 / 1327.18
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(7, "feet"),
  17058. default: true
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17064. {
  17065. looking: {
  17066. height: math.unit(2, "meters"),
  17067. weight: math.unit(300, "kg"),
  17068. name: "Looking",
  17069. image: {
  17070. source: "./media/characters/kash/looking.svg",
  17071. extra: 474 / 344,
  17072. bottom: 0.03
  17073. }
  17074. },
  17075. side: {
  17076. height: math.unit(2, "meters"),
  17077. weight: math.unit(300, "kg"),
  17078. name: "Side",
  17079. image: {
  17080. source: "./media/characters/kash/side.svg",
  17081. extra: 302 / 251,
  17082. bottom: 0.03
  17083. }
  17084. },
  17085. front: {
  17086. height: math.unit(2, "meters"),
  17087. weight: math.unit(300, "kg"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/kash/front.svg",
  17091. extra: 495 / 360,
  17092. bottom: 0.015
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(2, "meters"),
  17100. default: true
  17101. },
  17102. {
  17103. name: "Big",
  17104. height: math.unit(3, "meters")
  17105. },
  17106. {
  17107. name: "Large",
  17108. height: math.unit(5, "meters")
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17114. {
  17115. feeding: {
  17116. height: math.unit(6.7, "feet"),
  17117. weight: math.unit(350, "lb"),
  17118. name: "Feeding",
  17119. image: {
  17120. source: "./media/characters/lalim/feeding.svg",
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(6.7, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17134. {
  17135. front: {
  17136. height: math.unit(9.5, "feet"),
  17137. weight: math.unit(600, "lb"),
  17138. name: "Front",
  17139. image: {
  17140. source: "./media/characters/de'vout/front.svg",
  17141. extra: 1443 / 1328,
  17142. bottom: 0.025
  17143. }
  17144. },
  17145. back: {
  17146. height: math.unit(9.5, "feet"),
  17147. weight: math.unit(600, "lb"),
  17148. name: "Back",
  17149. image: {
  17150. source: "./media/characters/de'vout/back.svg",
  17151. extra: 1443 / 1328
  17152. }
  17153. },
  17154. frontDressed: {
  17155. height: math.unit(9.5, "feet"),
  17156. weight: math.unit(600, "lb"),
  17157. name: "Front (Dressed",
  17158. image: {
  17159. source: "./media/characters/de'vout/front-dressed.svg",
  17160. extra: 1443 / 1328,
  17161. bottom: 0.025
  17162. }
  17163. },
  17164. backDressed: {
  17165. height: math.unit(9.5, "feet"),
  17166. weight: math.unit(600, "lb"),
  17167. name: "Back (Dressed",
  17168. image: {
  17169. source: "./media/characters/de'vout/back-dressed.svg",
  17170. extra: 1443 / 1328
  17171. }
  17172. },
  17173. },
  17174. [
  17175. {
  17176. name: "Normal",
  17177. height: math.unit(9.5, "feet"),
  17178. default: true
  17179. },
  17180. ]
  17181. ))
  17182. characterMakers.push(() => makeCharacter(
  17183. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17184. {
  17185. front: {
  17186. height: math.unit(8, "feet"),
  17187. weight: math.unit(225, "lb"),
  17188. name: "Front",
  17189. image: {
  17190. source: "./media/characters/talana/front.svg",
  17191. extra: 1410 / 1300,
  17192. bottom: 0.015
  17193. }
  17194. },
  17195. frontDressed: {
  17196. height: math.unit(8, "feet"),
  17197. weight: math.unit(225, "lb"),
  17198. name: "Front (Dressed",
  17199. image: {
  17200. source: "./media/characters/talana/front-dressed.svg",
  17201. extra: 1410 / 1300,
  17202. bottom: 0.015
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(8, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17216. {
  17217. side: {
  17218. height: math.unit(7.2, "feet"),
  17219. weight: math.unit(150, "lb"),
  17220. name: "Side",
  17221. image: {
  17222. source: "./media/characters/xeauvok/side.svg",
  17223. extra: 1975 / 1523,
  17224. bottom: 0.07
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(7.2, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17238. {
  17239. side: {
  17240. height: math.unit(10, "feet"),
  17241. weight: math.unit(900, "kg"),
  17242. name: "Side",
  17243. image: {
  17244. source: "./media/characters/zara/side.svg",
  17245. extra: 504 / 498
  17246. }
  17247. },
  17248. },
  17249. [
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(10, "feet"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17259. {
  17260. side: {
  17261. height: math.unit(6, "feet"),
  17262. weight: math.unit(150, "lb"),
  17263. name: "Side",
  17264. image: {
  17265. source: "./media/characters/richard-dragon/side.svg",
  17266. extra: 845 / 340,
  17267. bottom: 0.017
  17268. }
  17269. },
  17270. maw: {
  17271. height: math.unit(2.97, "feet"),
  17272. name: "Maw",
  17273. image: {
  17274. source: "./media/characters/richard-dragon/maw.svg"
  17275. }
  17276. },
  17277. },
  17278. [
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17283. {
  17284. front: {
  17285. height: math.unit(4, "feet"),
  17286. weight: math.unit(100, "lb"),
  17287. name: "Front",
  17288. image: {
  17289. source: "./media/characters/richard-smeargle/front.svg",
  17290. extra: 2952 / 2820,
  17291. bottom: 0.028
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(4, "feet"),
  17299. default: true
  17300. },
  17301. {
  17302. name: "Dynamax",
  17303. height: math.unit(20, "meters")
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17309. {
  17310. front: {
  17311. height: math.unit(6, "feet"),
  17312. weight: math.unit(110, "lb"),
  17313. name: "Front",
  17314. image: {
  17315. source: "./media/characters/klay/front.svg",
  17316. extra: 962 / 883,
  17317. bottom: 0.04
  17318. }
  17319. },
  17320. back: {
  17321. height: math.unit(6, "feet"),
  17322. weight: math.unit(110, "lb"),
  17323. name: "Back",
  17324. image: {
  17325. source: "./media/characters/klay/back.svg",
  17326. extra: 962 / 883
  17327. }
  17328. },
  17329. beans: {
  17330. height: math.unit(1.15, "feet"),
  17331. name: "Beans",
  17332. image: {
  17333. source: "./media/characters/klay/beans.svg"
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Micro",
  17340. height: math.unit(6, "inches")
  17341. },
  17342. {
  17343. name: "Mini",
  17344. height: math.unit(3, "feet")
  17345. },
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(6, "feet"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Big",
  17353. height: math.unit(25, "feet")
  17354. },
  17355. {
  17356. name: "Macro",
  17357. height: math.unit(100, "feet")
  17358. },
  17359. {
  17360. name: "Megamacro",
  17361. height: math.unit(400, "feet")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(6, "feet"),
  17370. weight: math.unit(160, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/marcus/front.svg",
  17374. extra: 734 / 676,
  17375. bottom: 0.03
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Little",
  17382. height: math.unit(6, "feet")
  17383. },
  17384. {
  17385. name: "Normal",
  17386. height: math.unit(110, "feet"),
  17387. default: true
  17388. },
  17389. {
  17390. name: "Macro",
  17391. height: math.unit(250, "feet")
  17392. },
  17393. {
  17394. name: "Megamacro",
  17395. height: math.unit(1000, "feet")
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(7, "feet"),
  17404. weight: math.unit(275, "lb"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/claude-delroute/front.svg",
  17408. extra: 230 / 214,
  17409. bottom: 0.007
  17410. }
  17411. },
  17412. side: {
  17413. height: math.unit(7, "feet"),
  17414. weight: math.unit(275, "lb"),
  17415. name: "Side",
  17416. image: {
  17417. source: "./media/characters/claude-delroute/side.svg",
  17418. extra: 222 / 214,
  17419. bottom: 0.01
  17420. }
  17421. },
  17422. back: {
  17423. height: math.unit(7, "feet"),
  17424. weight: math.unit(275, "lb"),
  17425. name: "Back",
  17426. image: {
  17427. source: "./media/characters/claude-delroute/back.svg",
  17428. extra: 230 / 214,
  17429. bottom: 0.015
  17430. }
  17431. },
  17432. maw: {
  17433. height: math.unit(0.6407, "meters"),
  17434. name: "Maw",
  17435. image: {
  17436. source: "./media/characters/claude-delroute/maw.svg"
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(7, "feet"),
  17444. default: true
  17445. },
  17446. {
  17447. name: "Lorge",
  17448. height: math.unit(20, "feet")
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17454. {
  17455. front: {
  17456. height: math.unit(8 + 4 / 12, "feet"),
  17457. weight: math.unit(600, "lb"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/dragonien/front.svg",
  17461. extra: 100 / 94,
  17462. bottom: 3.3 / 103.3445
  17463. }
  17464. },
  17465. back: {
  17466. height: math.unit(8 + 4 / 12, "feet"),
  17467. weight: math.unit(600, "lb"),
  17468. name: "Back",
  17469. image: {
  17470. source: "./media/characters/dragonien/back.svg",
  17471. extra: 776 / 746,
  17472. bottom: 6.4 / 782.0616
  17473. }
  17474. },
  17475. foot: {
  17476. height: math.unit(1.54, "feet"),
  17477. name: "Foot",
  17478. image: {
  17479. source: "./media/characters/dragonien/foot.svg",
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(8 + 4 / 12, "feet"),
  17487. default: true
  17488. },
  17489. {
  17490. name: "Macro",
  17491. height: math.unit(200, "feet")
  17492. },
  17493. {
  17494. name: "Megamacro",
  17495. height: math.unit(1, "mile")
  17496. },
  17497. {
  17498. name: "Gigamacro",
  17499. height: math.unit(1000, "miles")
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(5 + 2 / 12, "feet"),
  17508. weight: math.unit(110, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/desta/front.svg",
  17512. extra: 767 / 726,
  17513. bottom: 11.7 / 779
  17514. }
  17515. },
  17516. back: {
  17517. height: math.unit(5 + 2 / 12, "feet"),
  17518. weight: math.unit(110, "lb"),
  17519. name: "Back",
  17520. image: {
  17521. source: "./media/characters/desta/back.svg",
  17522. extra: 777 / 728,
  17523. bottom: 6 / 784
  17524. }
  17525. },
  17526. frontAlt: {
  17527. height: math.unit(5 + 2 / 12, "feet"),
  17528. weight: math.unit(110, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/desta/front-alt.svg",
  17532. extra: 1482 / 1417
  17533. }
  17534. },
  17535. side: {
  17536. height: math.unit(5 + 2 / 12, "feet"),
  17537. weight: math.unit(110, "lb"),
  17538. name: "Side",
  17539. image: {
  17540. source: "./media/characters/desta/side.svg",
  17541. extra: 2579 / 2491,
  17542. bottom: 0.053
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Micro",
  17549. height: math.unit(6, "inches")
  17550. },
  17551. {
  17552. name: "Normal",
  17553. height: math.unit(5 + 2 / 12, "feet"),
  17554. default: true
  17555. },
  17556. {
  17557. name: "Macro",
  17558. height: math.unit(62, "feet")
  17559. },
  17560. {
  17561. name: "Megamacro",
  17562. height: math.unit(1800, "feet")
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(10, "feet"),
  17571. weight: math.unit(700, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/storm-alystar/front.svg",
  17575. extra: 2112 / 1898,
  17576. bottom: 0.034
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Micro",
  17583. height: math.unit(3.5, "inches")
  17584. },
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(10, "feet"),
  17588. default: true
  17589. },
  17590. {
  17591. name: "Macro",
  17592. height: math.unit(400, "feet")
  17593. },
  17594. {
  17595. name: "Deific",
  17596. height: math.unit(60, "miles")
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17602. {
  17603. front: {
  17604. height: math.unit(2.35, "meters"),
  17605. weight: math.unit(119, "kg"),
  17606. name: "Front",
  17607. image: {
  17608. source: "./media/characters/ilia/front.svg",
  17609. extra: 1285 / 1255,
  17610. bottom: 0.06
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Normal",
  17617. height: math.unit(2.35, "meters")
  17618. },
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(140, "meters"),
  17622. default: true
  17623. },
  17624. {
  17625. name: "Megamacro",
  17626. height: math.unit(100, "miles")
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(6 + 5 / 12, "feet"),
  17635. weight: math.unit(190, "lb"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/kingdead/front.svg",
  17639. extra: 1228 / 1177
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Micro",
  17646. height: math.unit(7, "inches")
  17647. },
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(6 + 5 / 12, "feet")
  17651. },
  17652. {
  17653. name: "Macro",
  17654. height: math.unit(150, "feet"),
  17655. default: true
  17656. },
  17657. {
  17658. name: "Megamacro",
  17659. height: math.unit(200, "miles")
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17665. {
  17666. front: {
  17667. height: math.unit(8, "feet"),
  17668. weight: math.unit(600, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/kyrehx/front.svg",
  17672. extra: 1195 / 1095,
  17673. bottom: 0.034
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Micro",
  17680. height: math.unit(2, "inches")
  17681. },
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(8, "feet"),
  17685. default: true
  17686. },
  17687. {
  17688. name: "Macro",
  17689. height: math.unit(255, "feet")
  17690. },
  17691. ]
  17692. ))
  17693. characterMakers.push(() => makeCharacter(
  17694. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17695. {
  17696. front: {
  17697. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17698. weight: math.unit(184, "lb"),
  17699. name: "Front",
  17700. image: {
  17701. source: "./media/characters/xang/front.svg",
  17702. extra: 845 / 755
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17710. default: true
  17711. },
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(0.935 * 146, "feet")
  17715. },
  17716. {
  17717. name: "Megamacro",
  17718. height: math.unit(0.935 * 3, "miles")
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17724. {
  17725. frontDressed: {
  17726. height: math.unit(5 + 7 / 12, "feet"),
  17727. weight: math.unit(140, "lb"),
  17728. name: "Front (Dressed)",
  17729. image: {
  17730. source: "./media/characters/doc-weardno/front-dressed.svg",
  17731. extra: 263 / 234
  17732. }
  17733. },
  17734. backDressed: {
  17735. height: math.unit(5 + 7 / 12, "feet"),
  17736. weight: math.unit(140, "lb"),
  17737. name: "Back (Dressed)",
  17738. image: {
  17739. source: "./media/characters/doc-weardno/back-dressed.svg",
  17740. extra: 266 / 238
  17741. }
  17742. },
  17743. front: {
  17744. height: math.unit(5 + 7 / 12, "feet"),
  17745. weight: math.unit(140, "lb"),
  17746. name: "Front",
  17747. image: {
  17748. source: "./media/characters/doc-weardno/front.svg",
  17749. extra: 254 / 233
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Micro",
  17756. height: math.unit(3, "inches")
  17757. },
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(5 + 7 / 12, "feet"),
  17761. default: true
  17762. },
  17763. {
  17764. name: "Macro",
  17765. height: math.unit(25, "feet")
  17766. },
  17767. {
  17768. name: "Megamacro",
  17769. height: math.unit(2, "miles")
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17775. {
  17776. front: {
  17777. height: math.unit(6 + 2 / 12, "feet"),
  17778. weight: math.unit(153, "lb"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/seth-whilst/front.svg",
  17782. bottom: 0.07
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Micro",
  17789. height: math.unit(5, "inches")
  17790. },
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(6 + 2 / 12, "feet"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(3, "inches"),
  17803. weight: math.unit(8, "grams"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/pocket-jabari/front.svg",
  17807. extra: 1024 / 974,
  17808. bottom: 0.039
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Minimicro",
  17815. height: math.unit(8, "mm")
  17816. },
  17817. {
  17818. name: "Micro",
  17819. height: math.unit(3, "inches"),
  17820. default: true
  17821. },
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(3, "feet")
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(15, "feet"),
  17833. weight: math.unit(3280, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/sapphy/front.svg",
  17837. extra: 671 / 577,
  17838. bottom: 0.085
  17839. }
  17840. },
  17841. back: {
  17842. height: math.unit(15, "feet"),
  17843. weight: math.unit(3280, "lb"),
  17844. name: "Back",
  17845. image: {
  17846. source: "./media/characters/sapphy/back.svg",
  17847. extra: 631 / 607,
  17848. bottom: 0.045
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(15, "feet")
  17856. },
  17857. {
  17858. name: "Casual Macro",
  17859. height: math.unit(120, "feet")
  17860. },
  17861. {
  17862. name: "Macro",
  17863. height: math.unit(2150, "feet"),
  17864. default: true
  17865. },
  17866. {
  17867. name: "Megamacro",
  17868. height: math.unit(8, "miles")
  17869. },
  17870. {
  17871. name: "Galaxy Mom",
  17872. height: math.unit(6, "megalightyears")
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(6, "feet"),
  17881. weight: math.unit(170, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/kiro/front.svg",
  17885. extra: 1064 / 1012,
  17886. bottom: 0.052
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Micro",
  17893. height: math.unit(6, "inches")
  17894. },
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(6, "feet"),
  17898. default: true
  17899. },
  17900. {
  17901. name: "Macro",
  17902. height: math.unit(72, "feet")
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(5 + 9 / 12, "feet"),
  17911. weight: math.unit(175, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/irishfox/front.svg",
  17915. extra: 1912 / 1680,
  17916. bottom: 0.02
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Nano",
  17923. height: math.unit(1, "mm")
  17924. },
  17925. {
  17926. name: "Micro",
  17927. height: math.unit(2, "inches")
  17928. },
  17929. {
  17930. name: "Normal",
  17931. height: math.unit(5 + 9 / 12, "feet"),
  17932. default: true
  17933. },
  17934. {
  17935. name: "Macro",
  17936. height: math.unit(45, "feet")
  17937. },
  17938. ]
  17939. ))
  17940. characterMakers.push(() => makeCharacter(
  17941. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17942. {
  17943. front: {
  17944. height: math.unit(6 + 1 / 12, "feet"),
  17945. weight: math.unit(150, "lb"),
  17946. name: "Front",
  17947. image: {
  17948. source: "./media/characters/aronai-sieyes/front.svg",
  17949. extra: 1556 / 1480,
  17950. bottom: 0.015
  17951. }
  17952. },
  17953. side: {
  17954. height: math.unit(6 + 1 / 12, "feet"),
  17955. weight: math.unit(150, "lb"),
  17956. name: "Side",
  17957. image: {
  17958. source: "./media/characters/aronai-sieyes/side.svg",
  17959. extra: 1433 / 1390,
  17960. bottom: 0.0393
  17961. }
  17962. },
  17963. back: {
  17964. height: math.unit(6 + 1 / 12, "feet"),
  17965. weight: math.unit(150, "lb"),
  17966. name: "Back",
  17967. image: {
  17968. source: "./media/characters/aronai-sieyes/back.svg",
  17969. extra: 1544 / 1494,
  17970. bottom: 0.02
  17971. }
  17972. },
  17973. frontClothed: {
  17974. height: math.unit(6 + 1 / 12, "feet"),
  17975. weight: math.unit(150, "lb"),
  17976. name: "Front (Clothed)",
  17977. image: {
  17978. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17979. extra: 1582 / 1527
  17980. }
  17981. },
  17982. feral: {
  17983. height: math.unit(18, "feet"),
  17984. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17985. name: "Feral",
  17986. image: {
  17987. source: "./media/characters/aronai-sieyes/feral.svg",
  17988. extra: 1530 / 1240,
  17989. bottom: 0.035
  17990. }
  17991. },
  17992. },
  17993. [
  17994. {
  17995. name: "Micro",
  17996. height: math.unit(2, "inches")
  17997. },
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(6 + 1 / 12, "feet"),
  18001. default: true
  18002. }
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18007. {
  18008. front: {
  18009. height: math.unit(12, "feet"),
  18010. weight: math.unit(410, "kg"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/xuna/front.svg",
  18014. extra: 2184 / 1980
  18015. }
  18016. },
  18017. side: {
  18018. height: math.unit(12, "feet"),
  18019. weight: math.unit(410, "kg"),
  18020. name: "Side",
  18021. image: {
  18022. source: "./media/characters/xuna/side.svg",
  18023. extra: 2184 / 1980
  18024. }
  18025. },
  18026. back: {
  18027. height: math.unit(12, "feet"),
  18028. weight: math.unit(410, "kg"),
  18029. name: "Back",
  18030. image: {
  18031. source: "./media/characters/xuna/back.svg",
  18032. extra: 2184 / 1980
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Nano glow",
  18039. height: math.unit(10, "nm")
  18040. },
  18041. {
  18042. name: "Micro floof",
  18043. height: math.unit(0.3, "m")
  18044. },
  18045. {
  18046. name: "Huggable softy boi",
  18047. height: math.unit(3.6576, "m"),
  18048. default: true
  18049. },
  18050. {
  18051. name: "Admirable floof",
  18052. height: math.unit(80, "meters")
  18053. },
  18054. {
  18055. name: "Gentle macro",
  18056. height: math.unit(300, "meters")
  18057. },
  18058. {
  18059. name: "Very careful floof",
  18060. height: math.unit(3200, "meters")
  18061. },
  18062. {
  18063. name: "The mega floof",
  18064. height: math.unit(36000, "meters")
  18065. },
  18066. {
  18067. name: "Giga-fur-Wicker",
  18068. height: math.unit(4800000, "meters")
  18069. },
  18070. {
  18071. name: "Licky world",
  18072. height: math.unit(20000000, "meters")
  18073. },
  18074. {
  18075. name: "Floofy cyan sun",
  18076. height: math.unit(1500000000, "meters")
  18077. },
  18078. {
  18079. name: "Milky Wicker",
  18080. height: math.unit(1000000000000000000000, "meters")
  18081. },
  18082. {
  18083. name: "The observing Wicker",
  18084. height: math.unit(999999999999999999999999999, "meters")
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(5 + 9 / 12, "feet"),
  18093. weight: math.unit(150, "lb"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/arokha-sieyes/front.svg",
  18097. extra: 1425 / 1284,
  18098. bottom: 0.05
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(5 + 9 / 12, "feet")
  18106. },
  18107. {
  18108. name: "Macro",
  18109. height: math.unit(30, "meters"),
  18110. default: true
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18116. {
  18117. front: {
  18118. height: math.unit(6, "feet"),
  18119. weight: math.unit(180, "lb"),
  18120. name: "Front",
  18121. image: {
  18122. source: "./media/characters/arokh-sieyes/front.svg",
  18123. extra: 1830 / 1769,
  18124. bottom: 0.01
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(6, "feet")
  18132. },
  18133. {
  18134. name: "Macro",
  18135. height: math.unit(30, "meters"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18142. {
  18143. side: {
  18144. height: math.unit(13 + 1 / 12, "feet"),
  18145. weight: math.unit(8.5, "tonnes"),
  18146. name: "Side",
  18147. image: {
  18148. source: "./media/characters/goldeneye/side.svg",
  18149. extra: 1182 / 778,
  18150. bottom: 0.067
  18151. }
  18152. },
  18153. paw: {
  18154. height: math.unit(3.4, "feet"),
  18155. name: "Paw",
  18156. image: {
  18157. source: "./media/characters/goldeneye/paw.svg"
  18158. }
  18159. },
  18160. },
  18161. [
  18162. {
  18163. name: "Normal",
  18164. height: math.unit(13 + 1 / 12, "feet"),
  18165. default: true
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18171. {
  18172. front: {
  18173. height: math.unit(6 + 1 / 12, "feet"),
  18174. weight: math.unit(210, "lb"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/leonardo-lycheborne/front.svg",
  18178. extra: 390 / 365,
  18179. bottom: 0.032
  18180. }
  18181. },
  18182. side: {
  18183. height: math.unit(6 + 1 / 12, "feet"),
  18184. weight: math.unit(210, "lb"),
  18185. name: "Side",
  18186. image: {
  18187. source: "./media/characters/leonardo-lycheborne/side.svg",
  18188. extra: 390 / 365,
  18189. bottom: 0.005
  18190. }
  18191. },
  18192. back: {
  18193. height: math.unit(6 + 1 / 12, "feet"),
  18194. weight: math.unit(210, "lb"),
  18195. name: "Back",
  18196. image: {
  18197. source: "./media/characters/leonardo-lycheborne/back.svg",
  18198. extra: 392 / 366,
  18199. bottom: 0.01
  18200. }
  18201. },
  18202. hand: {
  18203. height: math.unit(1.08, "feet"),
  18204. name: "Hand",
  18205. image: {
  18206. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18207. }
  18208. },
  18209. foot: {
  18210. height: math.unit(1.32, "feet"),
  18211. name: "Foot",
  18212. image: {
  18213. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18214. }
  18215. },
  18216. were: {
  18217. height: math.unit(20, "feet"),
  18218. weight: math.unit(7800, "lb"),
  18219. name: "Were",
  18220. image: {
  18221. source: "./media/characters/leonardo-lycheborne/were.svg",
  18222. extra: 308 / 294,
  18223. bottom: 0.048
  18224. }
  18225. },
  18226. feral: {
  18227. height: math.unit(7.5, "feet"),
  18228. weight: math.unit(600, "lb"),
  18229. name: "Feral",
  18230. image: {
  18231. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18232. extra: 210 / 186,
  18233. bottom: 0.108
  18234. }
  18235. },
  18236. taur: {
  18237. height: math.unit(11, "feet"),
  18238. weight: math.unit(3300, "lb"),
  18239. name: "Taur",
  18240. image: {
  18241. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18242. extra: 320 / 303,
  18243. bottom: 0.025
  18244. }
  18245. },
  18246. barghest: {
  18247. height: math.unit(11, "feet"),
  18248. weight: math.unit(1300, "lb"),
  18249. name: "Barghest",
  18250. image: {
  18251. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18252. extra: 323 / 302,
  18253. bottom: 0.027
  18254. }
  18255. },
  18256. dick: {
  18257. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18258. name: "Dick",
  18259. image: {
  18260. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18261. }
  18262. },
  18263. dickWere: {
  18264. height: math.unit((20) / 3.8, "feet"),
  18265. name: "Dick (Were)",
  18266. image: {
  18267. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(6 + 1 / 12, "feet"),
  18275. default: true
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18281. {
  18282. front: {
  18283. height: math.unit(10, "feet"),
  18284. weight: math.unit(350, "lb"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/jet/front.svg",
  18288. extra: 2050 / 1980,
  18289. bottom: 0.013
  18290. }
  18291. },
  18292. back: {
  18293. height: math.unit(10, "feet"),
  18294. weight: math.unit(350, "lb"),
  18295. name: "Back",
  18296. image: {
  18297. source: "./media/characters/jet/back.svg",
  18298. extra: 2050 / 1980,
  18299. bottom: 0.013
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Micro",
  18306. height: math.unit(6, "inches")
  18307. },
  18308. {
  18309. name: "Normal",
  18310. height: math.unit(10, "feet"),
  18311. default: true
  18312. },
  18313. {
  18314. name: "Macro",
  18315. height: math.unit(100, "feet")
  18316. },
  18317. ]
  18318. ))
  18319. characterMakers.push(() => makeCharacter(
  18320. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18321. {
  18322. front: {
  18323. height: math.unit(15, "feet"),
  18324. weight: math.unit(2800, "lb"),
  18325. name: "Front",
  18326. image: {
  18327. source: "./media/characters/tanarath/front.svg",
  18328. extra: 2392 / 2220,
  18329. bottom: 0.03
  18330. }
  18331. },
  18332. back: {
  18333. height: math.unit(15, "feet"),
  18334. weight: math.unit(2800, "lb"),
  18335. name: "Back",
  18336. image: {
  18337. source: "./media/characters/tanarath/back.svg",
  18338. extra: 2392 / 2220,
  18339. bottom: 0.03
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(15, "feet"),
  18347. default: true
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(7 + 1 / 12, "feet"),
  18356. weight: math.unit(175, "lb"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/patty-cattybatty/front.svg",
  18360. extra: 908 / 874,
  18361. bottom: 0.025
  18362. }
  18363. },
  18364. },
  18365. [
  18366. {
  18367. name: "Micro",
  18368. height: math.unit(1, "inch")
  18369. },
  18370. {
  18371. name: "Normal",
  18372. height: math.unit(7 + 1 / 12, "feet")
  18373. },
  18374. {
  18375. name: "Mini Macro",
  18376. height: math.unit(155, "feet")
  18377. },
  18378. {
  18379. name: "Macro",
  18380. height: math.unit(1077, "feet")
  18381. },
  18382. {
  18383. name: "Mega Macro",
  18384. height: math.unit(47650, "feet"),
  18385. default: true
  18386. },
  18387. {
  18388. name: "Giga Macro",
  18389. height: math.unit(440, "miles")
  18390. },
  18391. {
  18392. name: "Tera Macro",
  18393. height: math.unit(8700, "miles")
  18394. },
  18395. {
  18396. name: "Planetary Macro",
  18397. height: math.unit(32700, "miles")
  18398. },
  18399. {
  18400. name: "Solar Macro",
  18401. height: math.unit(550000, "miles")
  18402. },
  18403. {
  18404. name: "Celestial Macro",
  18405. height: math.unit(2.5, "AU")
  18406. },
  18407. ]
  18408. ))
  18409. characterMakers.push(() => makeCharacter(
  18410. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18411. {
  18412. front: {
  18413. height: math.unit(4 + 5 / 12, "feet"),
  18414. weight: math.unit(90, "lb"),
  18415. name: "Front",
  18416. image: {
  18417. source: "./media/characters/cappu/front.svg",
  18418. extra: 1247 / 1152,
  18419. bottom: 0.012
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(4 + 5 / 12, "feet"),
  18427. default: true
  18428. },
  18429. ]
  18430. ))
  18431. characterMakers.push(() => makeCharacter(
  18432. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18433. {
  18434. frontDressed: {
  18435. height: math.unit(70, "cm"),
  18436. weight: math.unit(6, "kg"),
  18437. name: "Front (Dressed)",
  18438. image: {
  18439. source: "./media/characters/sebi/front-dressed.svg",
  18440. extra: 713.5 / 686.5,
  18441. bottom: 0.003
  18442. }
  18443. },
  18444. front: {
  18445. height: math.unit(70, "cm"),
  18446. weight: math.unit(5, "kg"),
  18447. name: "Front",
  18448. image: {
  18449. source: "./media/characters/sebi/front.svg",
  18450. extra: 713.5 / 686.5,
  18451. bottom: 0.003
  18452. }
  18453. }
  18454. },
  18455. [
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(70, "cm"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Macro",
  18463. height: math.unit(8, "meters")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(6, "feet"),
  18472. weight: math.unit(150, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/typhek/front.svg",
  18476. extra: 1948 / 1929,
  18477. bottom: 0.025
  18478. }
  18479. },
  18480. side: {
  18481. height: math.unit(6, "feet"),
  18482. weight: math.unit(150, "lb"),
  18483. name: "Side",
  18484. image: {
  18485. source: "./media/characters/typhek/side.svg",
  18486. extra: 2034 / 2010,
  18487. bottom: 0.003
  18488. }
  18489. },
  18490. back: {
  18491. height: math.unit(6, "feet"),
  18492. weight: math.unit(150, "lb"),
  18493. name: "Back",
  18494. image: {
  18495. source: "./media/characters/typhek/back.svg",
  18496. extra: 2005 / 1978,
  18497. bottom: 0.004
  18498. }
  18499. },
  18500. palm: {
  18501. height: math.unit(1.2, "feet"),
  18502. name: "Palm",
  18503. image: {
  18504. source: "./media/characters/typhek/palm.svg"
  18505. }
  18506. },
  18507. fist: {
  18508. height: math.unit(1.1, "feet"),
  18509. name: "Fist",
  18510. image: {
  18511. source: "./media/characters/typhek/fist.svg"
  18512. }
  18513. },
  18514. foot: {
  18515. height: math.unit(1.57, "feet"),
  18516. name: "Foot",
  18517. image: {
  18518. source: "./media/characters/typhek/foot.svg"
  18519. }
  18520. },
  18521. sole: {
  18522. height: math.unit(2.05, "feet"),
  18523. name: "Sole",
  18524. image: {
  18525. source: "./media/characters/typhek/sole.svg"
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Macro",
  18532. height: math.unit(40, "stories"),
  18533. default: true
  18534. },
  18535. {
  18536. name: "Megamacro",
  18537. height: math.unit(1, "mile")
  18538. },
  18539. {
  18540. name: "Gigamacro",
  18541. height: math.unit(4000, "solarradii")
  18542. },
  18543. {
  18544. name: "Universal",
  18545. height: math.unit(1.1, "universes")
  18546. }
  18547. ]
  18548. ))
  18549. characterMakers.push(() => makeCharacter(
  18550. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18551. {
  18552. side: {
  18553. height: math.unit(5 + 7 / 12, "feet"),
  18554. weight: math.unit(150, "lb"),
  18555. name: "Side",
  18556. image: {
  18557. source: "./media/characters/kassy/side.svg",
  18558. extra: 1280 / 1225,
  18559. bottom: 0.002
  18560. }
  18561. },
  18562. front: {
  18563. height: math.unit(5 + 7 / 12, "feet"),
  18564. weight: math.unit(150, "lb"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/kassy/front.svg",
  18568. extra: 1280 / 1225,
  18569. bottom: 0.025
  18570. }
  18571. },
  18572. back: {
  18573. height: math.unit(5 + 7 / 12, "feet"),
  18574. weight: math.unit(150, "lb"),
  18575. name: "Back",
  18576. image: {
  18577. source: "./media/characters/kassy/back.svg",
  18578. extra: 1280 / 1225,
  18579. bottom: 0.002
  18580. }
  18581. },
  18582. foot: {
  18583. height: math.unit(1.266, "feet"),
  18584. name: "Foot",
  18585. image: {
  18586. source: "./media/characters/kassy/foot.svg"
  18587. }
  18588. },
  18589. },
  18590. [
  18591. {
  18592. name: "Normal",
  18593. height: math.unit(5 + 7 / 12, "feet")
  18594. },
  18595. {
  18596. name: "Macro",
  18597. height: math.unit(137, "feet"),
  18598. default: true
  18599. },
  18600. {
  18601. name: "Megamacro",
  18602. height: math.unit(1, "mile")
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18608. {
  18609. front: {
  18610. height: math.unit(6 + 1 / 12, "feet"),
  18611. weight: math.unit(200, "lb"),
  18612. name: "Front",
  18613. image: {
  18614. source: "./media/characters/neil/front.svg",
  18615. extra: 1326 / 1250,
  18616. bottom: 0.023
  18617. }
  18618. },
  18619. },
  18620. [
  18621. {
  18622. name: "Normal",
  18623. height: math.unit(6 + 1 / 12, "feet"),
  18624. default: true
  18625. },
  18626. {
  18627. name: "Macro",
  18628. height: math.unit(200, "feet")
  18629. },
  18630. ]
  18631. ))
  18632. characterMakers.push(() => makeCharacter(
  18633. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18634. {
  18635. front: {
  18636. height: math.unit(5 + 9 / 12, "feet"),
  18637. weight: math.unit(190, "lb"),
  18638. name: "Front",
  18639. image: {
  18640. source: "./media/characters/atticus/front.svg",
  18641. extra: 2934 / 2785,
  18642. bottom: 0.025
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(5 + 9 / 12, "feet"),
  18650. default: true
  18651. },
  18652. {
  18653. name: "Macro",
  18654. height: math.unit(180, "feet")
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18660. {
  18661. side: {
  18662. height: math.unit(9, "feet"),
  18663. weight: math.unit(650, "lb"),
  18664. name: "Side",
  18665. image: {
  18666. source: "./media/characters/milo/side.svg",
  18667. extra: 2644 / 2310,
  18668. bottom: 0.032
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(9, "feet"),
  18676. default: true
  18677. },
  18678. {
  18679. name: "Macro",
  18680. height: math.unit(300, "feet")
  18681. },
  18682. ]
  18683. ))
  18684. characterMakers.push(() => makeCharacter(
  18685. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18686. {
  18687. side: {
  18688. height: math.unit(8, "meters"),
  18689. weight: math.unit(90000, "kg"),
  18690. name: "Side",
  18691. image: {
  18692. source: "./media/characters/ijzer/side.svg",
  18693. extra: 2756 / 1600,
  18694. bottom: 0.01
  18695. }
  18696. },
  18697. },
  18698. [
  18699. {
  18700. name: "Small",
  18701. height: math.unit(3, "meters")
  18702. },
  18703. {
  18704. name: "Normal",
  18705. height: math.unit(8, "meters"),
  18706. default: true
  18707. },
  18708. {
  18709. name: "Normal+",
  18710. height: math.unit(10, "meters")
  18711. },
  18712. {
  18713. name: "Bigger",
  18714. height: math.unit(24, "meters")
  18715. },
  18716. {
  18717. name: "Huge",
  18718. height: math.unit(80, "meters")
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(6 + 2 / 12, "feet"),
  18727. weight: math.unit(153, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/luca-cervicum/front.svg",
  18731. extra: 370 / 327,
  18732. bottom: 0.015
  18733. }
  18734. },
  18735. back: {
  18736. height: math.unit(6 + 2 / 12, "feet"),
  18737. weight: math.unit(153, "lb"),
  18738. name: "Back",
  18739. image: {
  18740. source: "./media/characters/luca-cervicum/back.svg",
  18741. extra: 367 / 333,
  18742. bottom: 0.005
  18743. }
  18744. },
  18745. frontGear: {
  18746. height: math.unit(6 + 2 / 12, "feet"),
  18747. weight: math.unit(173, "lb"),
  18748. name: "Front (Gear)",
  18749. image: {
  18750. source: "./media/characters/luca-cervicum/front-gear.svg",
  18751. extra: 377 / 333,
  18752. bottom: 0.006
  18753. }
  18754. },
  18755. },
  18756. [
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(6 + 2 / 12, "feet"),
  18760. default: true
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(6 + 1 / 12, "feet"),
  18769. weight: math.unit(304, "lb"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/oliver/front.svg",
  18773. extra: 157 / 143,
  18774. bottom: 0.08
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(6 + 1 / 12, "feet"),
  18782. default: true
  18783. },
  18784. ]
  18785. ))
  18786. characterMakers.push(() => makeCharacter(
  18787. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18788. {
  18789. front: {
  18790. height: math.unit(5 + 7 / 12, "feet"),
  18791. weight: math.unit(140, "lb"),
  18792. name: "Front",
  18793. image: {
  18794. source: "./media/characters/shane/front.svg",
  18795. extra: 304 / 289,
  18796. bottom: 0.005
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(5 + 7 / 12, "feet"),
  18804. default: true
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18810. {
  18811. front: {
  18812. height: math.unit(5 + 9 / 12, "feet"),
  18813. weight: math.unit(178, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/shin/front.svg",
  18817. extra: 159 / 151,
  18818. bottom: 0.015
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(5 + 9 / 12, "feet"),
  18826. default: true
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18832. {
  18833. front: {
  18834. height: math.unit(5 + 10 / 12, "feet"),
  18835. weight: math.unit(168, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/xerxes/front.svg",
  18839. extra: 282 / 260,
  18840. bottom: 0.045
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(5 + 10 / 12, "feet"),
  18848. default: true
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18854. {
  18855. front: {
  18856. height: math.unit(6 + 7 / 12, "feet"),
  18857. weight: math.unit(208, "lb"),
  18858. name: "Front",
  18859. image: {
  18860. source: "./media/characters/chaska/front.svg",
  18861. extra: 332 / 319,
  18862. bottom: 0.015
  18863. }
  18864. },
  18865. },
  18866. [
  18867. {
  18868. name: "Normal",
  18869. height: math.unit(6 + 7 / 12, "feet"),
  18870. default: true
  18871. },
  18872. ]
  18873. ))
  18874. characterMakers.push(() => makeCharacter(
  18875. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18876. {
  18877. front: {
  18878. height: math.unit(5 + 8 / 12, "feet"),
  18879. weight: math.unit(208, "lb"),
  18880. name: "Front",
  18881. image: {
  18882. source: "./media/characters/enuk/front.svg",
  18883. extra: 437 / 406,
  18884. bottom: 0.02
  18885. }
  18886. },
  18887. },
  18888. [
  18889. {
  18890. name: "Normal",
  18891. height: math.unit(5 + 8 / 12, "feet"),
  18892. default: true
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18898. {
  18899. front: {
  18900. height: math.unit(5 + 10 / 12, "feet"),
  18901. weight: math.unit(252, "lb"),
  18902. name: "Front",
  18903. image: {
  18904. source: "./media/characters/bruun/front.svg",
  18905. extra: 197 / 187,
  18906. bottom: 0.012
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(5 + 10 / 12, "feet"),
  18914. default: true
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18920. {
  18921. front: {
  18922. height: math.unit(6 + 10 / 12, "feet"),
  18923. weight: math.unit(255, "lb"),
  18924. name: "Front",
  18925. image: {
  18926. source: "./media/characters/alexeev/front.svg",
  18927. extra: 213 / 200,
  18928. bottom: 0.05
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(6 + 10 / 12, "feet"),
  18936. default: true
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(2 + 8 / 12, "feet"),
  18945. weight: math.unit(22, "lb"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/evelyn/front.svg",
  18949. extra: 208 / 180
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(2 + 8 / 12, "feet"),
  18957. default: true
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18963. {
  18964. front: {
  18965. height: math.unit(5 + 9 / 12, "feet"),
  18966. weight: math.unit(139, "lb"),
  18967. name: "Front",
  18968. image: {
  18969. source: "./media/characters/inca/front.svg",
  18970. extra: 294 / 291,
  18971. bottom: 0.03
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Normal",
  18978. height: math.unit(5 + 9 / 12, "feet"),
  18979. default: true
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18985. {
  18986. front: {
  18987. height: math.unit(5 + 1 / 12, "feet"),
  18988. weight: math.unit(84, "lb"),
  18989. name: "Front",
  18990. image: {
  18991. source: "./media/characters/magdalene/front.svg",
  18992. extra: 293 / 273
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(5 + 1 / 12, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(6 + 3 / 12, "feet"),
  19009. weight: math.unit(185, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/mera/front.svg",
  19013. extra: 291 / 277,
  19014. bottom: 0.03
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(6 + 3 / 12, "feet"),
  19022. default: true
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19028. {
  19029. front: {
  19030. height: math.unit(6 + 7 / 12, "feet"),
  19031. weight: math.unit(160, "lb"),
  19032. name: "Front",
  19033. image: {
  19034. source: "./media/characters/ceres/front.svg",
  19035. extra: 1023 / 950,
  19036. bottom: 0.027
  19037. }
  19038. },
  19039. back: {
  19040. height: math.unit(6 + 7 / 12, "feet"),
  19041. weight: math.unit(160, "lb"),
  19042. name: "Back",
  19043. image: {
  19044. source: "./media/characters/ceres/back.svg",
  19045. extra: 1023 / 950
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Normal",
  19052. height: math.unit(6 + 7 / 12, "feet"),
  19053. default: true
  19054. },
  19055. ]
  19056. ))
  19057. characterMakers.push(() => makeCharacter(
  19058. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19059. {
  19060. front: {
  19061. height: math.unit(5 + 10 / 12, "feet"),
  19062. weight: math.unit(150, "lb"),
  19063. name: "Front",
  19064. image: {
  19065. source: "./media/characters/kris/front.svg",
  19066. extra: 885 / 803,
  19067. bottom: 0.03
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(5 + 10 / 12, "feet"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19081. {
  19082. front: {
  19083. height: math.unit(7, "feet"),
  19084. weight: math.unit(120, "kg"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/taluthus/front.svg",
  19088. extra: 903 / 833,
  19089. bottom: 0.015
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(7, "feet"),
  19097. default: true
  19098. },
  19099. {
  19100. name: "Macro",
  19101. height: math.unit(300, "feet")
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19107. {
  19108. front: {
  19109. height: math.unit(5 + 9 / 12, "feet"),
  19110. weight: math.unit(145, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/dawn/front.svg",
  19114. extra: 2094 / 2016,
  19115. bottom: 0.025
  19116. }
  19117. },
  19118. back: {
  19119. height: math.unit(5 + 9 / 12, "feet"),
  19120. weight: math.unit(160, "lb"),
  19121. name: "Back",
  19122. image: {
  19123. source: "./media/characters/dawn/back.svg",
  19124. extra: 2112 / 2080,
  19125. bottom: 0.005
  19126. }
  19127. },
  19128. },
  19129. [
  19130. {
  19131. name: "Normal",
  19132. height: math.unit(6 + 7 / 12, "feet"),
  19133. default: true
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19139. {
  19140. anthro: {
  19141. height: math.unit(8 + 3 / 12, "feet"),
  19142. weight: math.unit(450, "lb"),
  19143. name: "Anthro",
  19144. image: {
  19145. source: "./media/characters/arador/anthro.svg",
  19146. extra: 1835 / 1718,
  19147. bottom: 0.025
  19148. }
  19149. },
  19150. feral: {
  19151. height: math.unit(4, "feet"),
  19152. weight: math.unit(200, "lb"),
  19153. name: "Feral",
  19154. image: {
  19155. source: "./media/characters/arador/feral.svg",
  19156. extra: 1683 / 1514,
  19157. bottom: 0.07
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(8 + 3 / 12, "feet")
  19165. },
  19166. {
  19167. name: "Macro",
  19168. height: math.unit(82.5, "feet"),
  19169. default: true
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19175. {
  19176. front: {
  19177. height: math.unit(5 + 10 / 12, "feet"),
  19178. weight: math.unit(125, "lb"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/dharsi/front.svg",
  19182. extra: 716 / 630,
  19183. bottom: 0.035
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Nano",
  19190. height: math.unit(100, "nm")
  19191. },
  19192. {
  19193. name: "Micro",
  19194. height: math.unit(2, "inches")
  19195. },
  19196. {
  19197. name: "Normal",
  19198. height: math.unit(5 + 10 / 12, "feet"),
  19199. default: true
  19200. },
  19201. {
  19202. name: "Macro",
  19203. height: math.unit(1000, "feet")
  19204. },
  19205. {
  19206. name: "Megamacro",
  19207. height: math.unit(10, "miles")
  19208. },
  19209. {
  19210. name: "Gigamacro",
  19211. height: math.unit(3000, "miles")
  19212. },
  19213. {
  19214. name: "Teramacro",
  19215. height: math.unit(500000, "miles")
  19216. },
  19217. {
  19218. name: "Teramacro+",
  19219. height: math.unit(30, "galaxies")
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(6, "feet"),
  19228. weight: math.unit(150, "lb"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/deathy/front.svg",
  19232. extra: 1552 / 1463,
  19233. bottom: 0.025
  19234. }
  19235. },
  19236. side: {
  19237. height: math.unit(6, "feet"),
  19238. weight: math.unit(150, "lb"),
  19239. name: "Side",
  19240. image: {
  19241. source: "./media/characters/deathy/side.svg",
  19242. extra: 1604 / 1455,
  19243. bottom: 0.025
  19244. }
  19245. },
  19246. back: {
  19247. height: math.unit(6, "feet"),
  19248. weight: math.unit(150, "lb"),
  19249. name: "Back",
  19250. image: {
  19251. source: "./media/characters/deathy/back.svg",
  19252. extra: 1580 / 1463,
  19253. bottom: 0.005
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Micro",
  19260. height: math.unit(5, "millimeters")
  19261. },
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(6 + 5 / 12, "feet"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19271. {
  19272. front: {
  19273. height: math.unit(16, "feet"),
  19274. weight: math.unit(4000, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/juniper/front.svg",
  19278. bottom: 0.04
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Normal",
  19285. height: math.unit(16, "feet"),
  19286. default: true
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19292. {
  19293. front: {
  19294. height: math.unit(6, "feet"),
  19295. weight: math.unit(150, "lb"),
  19296. name: "Front",
  19297. image: {
  19298. source: "./media/characters/hipster/front.svg",
  19299. extra: 1312 / 1209,
  19300. bottom: 0.025
  19301. }
  19302. },
  19303. back: {
  19304. height: math.unit(6, "feet"),
  19305. weight: math.unit(150, "lb"),
  19306. name: "Back",
  19307. image: {
  19308. source: "./media/characters/hipster/back.svg",
  19309. extra: 1281 / 1196,
  19310. bottom: 0.01
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Micro",
  19317. height: math.unit(1, "mm")
  19318. },
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(4, "inches"),
  19322. default: true
  19323. },
  19324. {
  19325. name: "Macro",
  19326. height: math.unit(500, "feet")
  19327. },
  19328. {
  19329. name: "Megamacro",
  19330. height: math.unit(1000, "miles")
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19336. {
  19337. front: {
  19338. height: math.unit(6, "feet"),
  19339. weight: math.unit(150, "lb"),
  19340. name: "Front",
  19341. image: {
  19342. source: "./media/characters/tendirmuldr/front.svg",
  19343. extra: 1878 / 1772,
  19344. bottom: 0.015
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Megamacro",
  19351. height: math.unit(1500, "miles"),
  19352. default: true
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19358. {
  19359. front: {
  19360. height: math.unit(14, "feet"),
  19361. weight: math.unit(12000, "lb"),
  19362. name: "Front",
  19363. image: {
  19364. source: "./media/characters/mort/front.svg",
  19365. extra: 365 / 318,
  19366. bottom: 0.01
  19367. }
  19368. },
  19369. side: {
  19370. height: math.unit(14, "feet"),
  19371. weight: math.unit(12000, "lb"),
  19372. name: "Side",
  19373. image: {
  19374. source: "./media/characters/mort/side.svg",
  19375. extra: 365 / 318,
  19376. bottom: 0.052
  19377. },
  19378. default: true
  19379. },
  19380. back: {
  19381. height: math.unit(14, "feet"),
  19382. weight: math.unit(12000, "lb"),
  19383. name: "Back",
  19384. image: {
  19385. source: "./media/characters/mort/back.svg",
  19386. extra: 371 / 332,
  19387. bottom: 0.18
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(14, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19401. {
  19402. front: {
  19403. height: math.unit(8, "feet"),
  19404. weight: math.unit(1, "ton"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/lycoa/front.svg",
  19408. extra: 1875 / 1789,
  19409. bottom: 0.022
  19410. }
  19411. },
  19412. back: {
  19413. height: math.unit(8, "feet"),
  19414. weight: math.unit(1, "ton"),
  19415. name: "Back",
  19416. image: {
  19417. source: "./media/characters/lycoa/back.svg",
  19418. extra: 1835 / 1781,
  19419. bottom: 0.03
  19420. }
  19421. },
  19422. head: {
  19423. height: math.unit(2.1, "feet"),
  19424. name: "Head",
  19425. image: {
  19426. source: "./media/characters/lycoa/head.svg"
  19427. }
  19428. },
  19429. tailmaw: {
  19430. height: math.unit(1.9, "feet"),
  19431. name: "Tailmaw",
  19432. image: {
  19433. source: "./media/characters/lycoa/tailmaw.svg"
  19434. }
  19435. },
  19436. tentacles: {
  19437. height: math.unit(2.1, "feet"),
  19438. name: "Tentacles",
  19439. image: {
  19440. source: "./media/characters/lycoa/tentacles.svg"
  19441. }
  19442. },
  19443. dick: {
  19444. height: math.unit(1.73, "feet"),
  19445. name: "Dick",
  19446. image: {
  19447. source: "./media/characters/lycoa/dick.svg"
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(8, "feet"),
  19455. default: true
  19456. },
  19457. {
  19458. name: "Macro",
  19459. height: math.unit(30, "feet")
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19465. {
  19466. front: {
  19467. height: math.unit(4 + 2 / 12, "feet"),
  19468. weight: math.unit(70, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/naldara/front.svg",
  19472. extra: 841 / 720,
  19473. bottom: 0.04
  19474. }
  19475. },
  19476. naga: {
  19477. height: math.unit(23, "feet"),
  19478. weight: math.unit(15000, "kg"),
  19479. name: "Naga",
  19480. image: {
  19481. source: "./media/characters/naldara/naga.svg",
  19482. extra: 3290 / 2959,
  19483. bottom: 124 / 3432
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(4 + 2 / 12, "feet"),
  19491. default: true
  19492. },
  19493. ]
  19494. ))
  19495. characterMakers.push(() => makeCharacter(
  19496. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19497. {
  19498. front: {
  19499. height: math.unit(13 + 7 / 12, "feet"),
  19500. weight: math.unit(1500, "lb"),
  19501. name: "Front",
  19502. image: {
  19503. source: "./media/characters/briar/front.svg",
  19504. extra: 626 / 596,
  19505. bottom: 0.08
  19506. }
  19507. },
  19508. },
  19509. [
  19510. {
  19511. name: "Normal",
  19512. height: math.unit(13 + 7 / 12, "feet"),
  19513. default: true
  19514. },
  19515. ]
  19516. ))
  19517. characterMakers.push(() => makeCharacter(
  19518. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19519. {
  19520. side: {
  19521. height: math.unit(10, "feet"),
  19522. weight: math.unit(500, "lb"),
  19523. name: "Side",
  19524. image: {
  19525. source: "./media/characters/vanguard/side.svg",
  19526. extra: 502 / 425,
  19527. bottom: 0.087
  19528. }
  19529. },
  19530. },
  19531. [
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(10, "feet"),
  19535. default: true
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19541. {
  19542. front: {
  19543. height: math.unit(7.5, "feet"),
  19544. weight: math.unit(2, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/artemis/front.svg",
  19548. extra: 1192 / 1075,
  19549. bottom: 0.07
  19550. }
  19551. },
  19552. frontNsfw: {
  19553. height: math.unit(7.5, "feet"),
  19554. weight: math.unit(2, "lb"),
  19555. name: "Front (NSFW)",
  19556. image: {
  19557. source: "./media/characters/artemis/front-nsfw.svg",
  19558. extra: 1192 / 1075,
  19559. bottom: 0.07
  19560. }
  19561. },
  19562. frontNsfwer: {
  19563. height: math.unit(7.5, "feet"),
  19564. weight: math.unit(2, "lb"),
  19565. name: "Front (NSFW-er)",
  19566. image: {
  19567. source: "./media/characters/artemis/front-nsfwer.svg",
  19568. extra: 1192 / 1075,
  19569. bottom: 0.07
  19570. }
  19571. },
  19572. side: {
  19573. height: math.unit(7.5, "feet"),
  19574. weight: math.unit(2, "lb"),
  19575. name: "Side",
  19576. image: {
  19577. source: "./media/characters/artemis/side.svg",
  19578. extra: 1192 / 1075,
  19579. bottom: 0.07
  19580. }
  19581. },
  19582. sideNsfw: {
  19583. height: math.unit(7.5, "feet"),
  19584. weight: math.unit(2, "lb"),
  19585. name: "Side (NSFW)",
  19586. image: {
  19587. source: "./media/characters/artemis/side-nsfw.svg",
  19588. extra: 1192 / 1075,
  19589. bottom: 0.07
  19590. }
  19591. },
  19592. sideNsfwer: {
  19593. height: math.unit(7.5, "feet"),
  19594. weight: math.unit(2, "lb"),
  19595. name: "Side (NSFW-er)",
  19596. image: {
  19597. source: "./media/characters/artemis/side-nsfwer.svg",
  19598. extra: 1192 / 1075,
  19599. bottom: 0.07
  19600. }
  19601. },
  19602. maw: {
  19603. height: math.unit(1.1, "feet"),
  19604. name: "Maw",
  19605. image: {
  19606. source: "./media/characters/artemis/maw.svg"
  19607. }
  19608. },
  19609. stomach: {
  19610. height: math.unit(0.95, "feet"),
  19611. name: "Stomach",
  19612. image: {
  19613. source: "./media/characters/artemis/stomach.svg"
  19614. }
  19615. },
  19616. dickCanine: {
  19617. height: math.unit(1, "feet"),
  19618. name: "Dick (Canine)",
  19619. image: {
  19620. source: "./media/characters/artemis/dick-canine.svg"
  19621. }
  19622. },
  19623. dickEquine: {
  19624. height: math.unit(0.85, "feet"),
  19625. name: "Dick (Equine)",
  19626. image: {
  19627. source: "./media/characters/artemis/dick-equine.svg"
  19628. }
  19629. },
  19630. dickExotic: {
  19631. height: math.unit(0.85, "feet"),
  19632. name: "Dick (Exotic)",
  19633. image: {
  19634. source: "./media/characters/artemis/dick-exotic.svg"
  19635. }
  19636. },
  19637. },
  19638. [
  19639. {
  19640. name: "Normal",
  19641. height: math.unit(7.5, "feet"),
  19642. default: true
  19643. },
  19644. {
  19645. name: "Enlarged",
  19646. height: math.unit(12, "feet")
  19647. },
  19648. ]
  19649. ))
  19650. characterMakers.push(() => makeCharacter(
  19651. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19652. {
  19653. front: {
  19654. height: math.unit(5 + 3 / 12, "feet"),
  19655. weight: math.unit(160, "lb"),
  19656. name: "Front",
  19657. image: {
  19658. source: "./media/characters/kira/front.svg",
  19659. extra: 906 / 786,
  19660. bottom: 0.01
  19661. }
  19662. },
  19663. back: {
  19664. height: math.unit(5 + 3 / 12, "feet"),
  19665. weight: math.unit(160, "lb"),
  19666. name: "Back",
  19667. image: {
  19668. source: "./media/characters/kira/back.svg",
  19669. extra: 882 / 757,
  19670. bottom: 0.005
  19671. }
  19672. },
  19673. frontDressed: {
  19674. height: math.unit(5 + 3 / 12, "feet"),
  19675. weight: math.unit(160, "lb"),
  19676. name: "Front (Dressed)",
  19677. image: {
  19678. source: "./media/characters/kira/front-dressed.svg",
  19679. extra: 906 / 786,
  19680. bottom: 0.01
  19681. }
  19682. },
  19683. beans: {
  19684. height: math.unit(0.92, "feet"),
  19685. name: "Beans",
  19686. image: {
  19687. source: "./media/characters/kira/beans.svg"
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(5 + 3 / 12, "feet"),
  19695. default: true
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19701. {
  19702. front: {
  19703. height: math.unit(5 + 4 / 12, "feet"),
  19704. weight: math.unit(145, "lb"),
  19705. name: "Front",
  19706. image: {
  19707. source: "./media/characters/scramble/front.svg",
  19708. extra: 763 / 727,
  19709. bottom: 0.05
  19710. }
  19711. },
  19712. back: {
  19713. height: math.unit(5 + 4 / 12, "feet"),
  19714. weight: math.unit(145, "lb"),
  19715. name: "Back",
  19716. image: {
  19717. source: "./media/characters/scramble/back.svg",
  19718. extra: 826 / 737,
  19719. bottom: 0.002
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(5 + 4 / 12, "feet"),
  19727. default: true
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19733. {
  19734. side: {
  19735. height: math.unit(6 + 2 / 12, "feet"),
  19736. weight: math.unit(190, "lb"),
  19737. name: "Side",
  19738. image: {
  19739. source: "./media/characters/biscuit/side.svg",
  19740. extra: 858 / 791,
  19741. bottom: 0.044
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(6 + 2 / 12, "feet"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19755. {
  19756. front: {
  19757. height: math.unit(5 + 2 / 12, "feet"),
  19758. weight: math.unit(120, "lb"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/poffin/front.svg",
  19762. extra: 786 / 680,
  19763. bottom: 0.005
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(5 + 2 / 12, "feet"),
  19771. default: true
  19772. },
  19773. ]
  19774. ))
  19775. characterMakers.push(() => makeCharacter(
  19776. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19777. {
  19778. front: {
  19779. height: math.unit(6 + 3 / 12, "feet"),
  19780. weight: math.unit(519, "lb"),
  19781. name: "Front",
  19782. image: {
  19783. source: "./media/characters/dhari/front.svg",
  19784. extra: 1048 / 946,
  19785. bottom: 0.015
  19786. }
  19787. },
  19788. back: {
  19789. height: math.unit(6 + 3 / 12, "feet"),
  19790. weight: math.unit(519, "lb"),
  19791. name: "Back",
  19792. image: {
  19793. source: "./media/characters/dhari/back.svg",
  19794. extra: 1048 / 931,
  19795. bottom: 0.005
  19796. }
  19797. },
  19798. frontDressed: {
  19799. height: math.unit(6 + 3 / 12, "feet"),
  19800. weight: math.unit(519, "lb"),
  19801. name: "Front (Dressed)",
  19802. image: {
  19803. source: "./media/characters/dhari/front-dressed.svg",
  19804. extra: 1713 / 1546,
  19805. bottom: 0.02
  19806. }
  19807. },
  19808. backDressed: {
  19809. height: math.unit(6 + 3 / 12, "feet"),
  19810. weight: math.unit(519, "lb"),
  19811. name: "Back (Dressed)",
  19812. image: {
  19813. source: "./media/characters/dhari/back-dressed.svg",
  19814. extra: 1699 / 1537,
  19815. bottom: 0.01
  19816. }
  19817. },
  19818. maw: {
  19819. height: math.unit(0.95, "feet"),
  19820. name: "Maw",
  19821. image: {
  19822. source: "./media/characters/dhari/maw.svg"
  19823. }
  19824. },
  19825. wereFront: {
  19826. height: math.unit(12 + 8 / 12, "feet"),
  19827. weight: math.unit(4000, "lb"),
  19828. name: "Front (Were)",
  19829. image: {
  19830. source: "./media/characters/dhari/were-front.svg",
  19831. extra: 1065 / 969,
  19832. bottom: 0.015
  19833. }
  19834. },
  19835. wereBack: {
  19836. height: math.unit(12 + 8 / 12, "feet"),
  19837. weight: math.unit(4000, "lb"),
  19838. name: "Back (Were)",
  19839. image: {
  19840. source: "./media/characters/dhari/were-back.svg",
  19841. extra: 1065 / 969,
  19842. bottom: 0.012
  19843. }
  19844. },
  19845. wereMaw: {
  19846. height: math.unit(0.625, "meters"),
  19847. name: "Maw (Were)",
  19848. image: {
  19849. source: "./media/characters/dhari/were-maw.svg"
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(6 + 3 / 12, "feet"),
  19857. default: true
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19863. {
  19864. anthro: {
  19865. height: math.unit(5 + 7 / 12, "feet"),
  19866. weight: math.unit(175, "lb"),
  19867. name: "Anthro",
  19868. image: {
  19869. source: "./media/characters/rena-dyne/anthro.svg",
  19870. extra: 1849 / 1785,
  19871. bottom: 0.005
  19872. }
  19873. },
  19874. taur: {
  19875. height: math.unit(15 + 6 / 12, "feet"),
  19876. weight: math.unit(8000, "lb"),
  19877. name: "Taur",
  19878. image: {
  19879. source: "./media/characters/rena-dyne/taur.svg",
  19880. extra: 2315 / 2234,
  19881. bottom: 0.033
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(5 + 7 / 12, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(8, "feet"),
  19898. weight: math.unit(600, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/weremeep/front.svg",
  19902. extra: 967 / 862,
  19903. bottom: 0.01
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(8, "feet"),
  19911. default: true
  19912. },
  19913. {
  19914. name: "Lorg",
  19915. height: math.unit(12, "feet")
  19916. },
  19917. {
  19918. name: "Oh Lawd She Comin'",
  19919. height: math.unit(20, "feet")
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19925. {
  19926. front: {
  19927. height: math.unit(4, "feet"),
  19928. weight: math.unit(90, "lb"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/reza/front.svg",
  19932. extra: 1183 / 1111,
  19933. bottom: 0.017
  19934. }
  19935. },
  19936. back: {
  19937. height: math.unit(4, "feet"),
  19938. weight: math.unit(90, "lb"),
  19939. name: "Back",
  19940. image: {
  19941. source: "./media/characters/reza/back.svg",
  19942. extra: 1183 / 1111,
  19943. bottom: 0.01
  19944. }
  19945. },
  19946. drake: {
  19947. height: math.unit(30, "feet"),
  19948. weight: math.unit(246960, "lb"),
  19949. name: "Drake",
  19950. image: {
  19951. source: "./media/characters/reza/drake.svg",
  19952. extra: 2350 / 2024,
  19953. bottom: 60.7 / 2403
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(4, "feet"),
  19961. default: true
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19967. {
  19968. side: {
  19969. height: math.unit(15, "feet"),
  19970. weight: math.unit(14, "tons"),
  19971. name: "Side",
  19972. image: {
  19973. source: "./media/characters/athea/side.svg",
  19974. extra: 960 / 540,
  19975. bottom: 0.003
  19976. }
  19977. },
  19978. sitting: {
  19979. height: math.unit(6 * 2.85, "feet"),
  19980. weight: math.unit(14, "tons"),
  19981. name: "Sitting",
  19982. image: {
  19983. source: "./media/characters/athea/sitting.svg",
  19984. extra: 621 / 581,
  19985. bottom: 0.075
  19986. }
  19987. },
  19988. maw: {
  19989. height: math.unit(7.59498031496063, "feet"),
  19990. name: "Maw",
  19991. image: {
  19992. source: "./media/characters/athea/maw.svg"
  19993. }
  19994. },
  19995. },
  19996. [
  19997. {
  19998. name: "Lap Cat",
  19999. height: math.unit(2.5, "feet")
  20000. },
  20001. {
  20002. name: "Minimacro",
  20003. height: math.unit(15, "feet"),
  20004. default: true
  20005. },
  20006. {
  20007. name: "Macro",
  20008. height: math.unit(120, "feet")
  20009. },
  20010. {
  20011. name: "Macro+",
  20012. height: math.unit(640, "feet")
  20013. },
  20014. {
  20015. name: "Colossus",
  20016. height: math.unit(2.2, "miles")
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(8 + 8 / 12, "feet"),
  20025. weight: math.unit(130, "kg"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/seroko/front.svg",
  20029. extra: 1385 / 1280,
  20030. bottom: 0.025
  20031. }
  20032. },
  20033. back: {
  20034. height: math.unit(8 + 8 / 12, "feet"),
  20035. weight: math.unit(130, "kg"),
  20036. name: "Back",
  20037. image: {
  20038. source: "./media/characters/seroko/back.svg",
  20039. extra: 1369 / 1238,
  20040. bottom: 0.018
  20041. }
  20042. },
  20043. frontDressed: {
  20044. height: math.unit(8 + 8 / 12, "feet"),
  20045. weight: math.unit(130, "kg"),
  20046. name: "Front (Dressed)",
  20047. image: {
  20048. source: "./media/characters/seroko/front-dressed.svg",
  20049. extra: 1366 / 1275,
  20050. bottom: 0.03
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(8 + 8 / 12, "feet"),
  20058. default: true
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20064. {
  20065. front: {
  20066. height: math.unit(5.5, "feet"),
  20067. weight: math.unit(160, "lb"),
  20068. name: "Front",
  20069. image: {
  20070. source: "./media/characters/quatzi/front.svg",
  20071. extra: 2346 / 2242,
  20072. bottom: 0.015
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(5.5, "feet"),
  20080. default: true
  20081. },
  20082. {
  20083. name: "Big",
  20084. height: math.unit(7.7, "feet")
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20090. {
  20091. front: {
  20092. height: math.unit(5 + 11 / 12, "feet"),
  20093. weight: math.unit(180, "lb"),
  20094. name: "Front",
  20095. image: {
  20096. source: "./media/characters/sen/front.svg",
  20097. extra: 1321 / 1254,
  20098. bottom: 0.015
  20099. }
  20100. },
  20101. side: {
  20102. height: math.unit(5 + 11 / 12, "feet"),
  20103. weight: math.unit(180, "lb"),
  20104. name: "Side",
  20105. image: {
  20106. source: "./media/characters/sen/side.svg",
  20107. extra: 1321 / 1254,
  20108. bottom: 0.007
  20109. }
  20110. },
  20111. back: {
  20112. height: math.unit(5 + 11 / 12, "feet"),
  20113. weight: math.unit(180, "lb"),
  20114. name: "Back",
  20115. image: {
  20116. source: "./media/characters/sen/back.svg",
  20117. extra: 1321 / 1254
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(5 + 11 / 12, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(166.6, "cm"),
  20134. weight: math.unit(66.6, "kg"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/fruity/front.svg",
  20138. extra: 1510 / 1386,
  20139. bottom: 0.04
  20140. }
  20141. },
  20142. back: {
  20143. height: math.unit(166.6, "cm"),
  20144. weight: math.unit(66.6, "lb"),
  20145. name: "Back",
  20146. image: {
  20147. source: "./media/characters/fruity/back.svg",
  20148. extra: 1563 / 1435,
  20149. bottom: 0.005
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(166.6, "cm"),
  20157. default: true
  20158. },
  20159. {
  20160. name: "Demonic",
  20161. height: math.unit(166.6, "feet")
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20167. {
  20168. side: {
  20169. height: math.unit(10, "feet"),
  20170. weight: math.unit(500, "lb"),
  20171. name: "Side",
  20172. image: {
  20173. source: "./media/characters/zost/side.svg",
  20174. extra: 966 / 880,
  20175. bottom: 0.075
  20176. }
  20177. },
  20178. mawFront: {
  20179. height: math.unit(1.08, "meters"),
  20180. name: "Maw (Front)",
  20181. image: {
  20182. source: "./media/characters/zost/maw-front.svg"
  20183. }
  20184. },
  20185. mawSide: {
  20186. height: math.unit(2.66, "feet"),
  20187. name: "Maw (Side)",
  20188. image: {
  20189. source: "./media/characters/zost/maw-side.svg"
  20190. }
  20191. },
  20192. },
  20193. [
  20194. {
  20195. name: "Normal",
  20196. height: math.unit(10, "feet"),
  20197. default: true
  20198. },
  20199. ]
  20200. ))
  20201. characterMakers.push(() => makeCharacter(
  20202. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20203. {
  20204. front: {
  20205. height: math.unit(5 + 4 / 12, "feet"),
  20206. weight: math.unit(120, "lb"),
  20207. name: "Front",
  20208. image: {
  20209. source: "./media/characters/luci/front.svg",
  20210. extra: 1985 / 1884,
  20211. bottom: 0.04
  20212. }
  20213. },
  20214. back: {
  20215. height: math.unit(5 + 4 / 12, "feet"),
  20216. weight: math.unit(120, "lb"),
  20217. name: "Back",
  20218. image: {
  20219. source: "./media/characters/luci/back.svg",
  20220. extra: 1892 / 1791,
  20221. bottom: 0.002
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(5 + 4 / 12, "feet"),
  20229. default: true
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(1500, "feet"),
  20238. weight: math.unit(3.8e6, "tons"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/2th/front.svg",
  20242. extra: 3489 / 3350,
  20243. bottom: 0.1
  20244. }
  20245. },
  20246. foot: {
  20247. height: math.unit(461, "feet"),
  20248. name: "Foot",
  20249. image: {
  20250. source: "./media/characters/2th/foot.svg"
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "\"Micro\"",
  20257. height: math.unit(15 + 7 / 12, "feet")
  20258. },
  20259. {
  20260. name: "Normal",
  20261. height: math.unit(1500, "feet"),
  20262. default: true
  20263. },
  20264. {
  20265. name: "Macro",
  20266. height: math.unit(5000, "feet")
  20267. },
  20268. {
  20269. name: "Megamacro",
  20270. height: math.unit(15, "miles")
  20271. },
  20272. {
  20273. name: "Gigamacro",
  20274. height: math.unit(4000, "miles")
  20275. },
  20276. {
  20277. name: "Galactic",
  20278. height: math.unit(50, "AU")
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20284. {
  20285. front: {
  20286. height: math.unit(5 + 6 / 12, "feet"),
  20287. weight: math.unit(220, "lb"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/amethyst/front.svg",
  20291. extra: 2078 / 2040,
  20292. bottom: 0.045
  20293. }
  20294. },
  20295. back: {
  20296. height: math.unit(5 + 6 / 12, "feet"),
  20297. weight: math.unit(220, "lb"),
  20298. name: "Back",
  20299. image: {
  20300. source: "./media/characters/amethyst/back.svg",
  20301. extra: 2021 / 1989,
  20302. bottom: 0.02
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(5 + 6 / 12, "feet"),
  20310. default: true
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(4 + 11 / 12, "feet"),
  20319. weight: math.unit(120, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/yumi-akiyama/front.svg",
  20323. extra: 1327 / 1235,
  20324. bottom: 0.02
  20325. }
  20326. },
  20327. back: {
  20328. height: math.unit(4 + 11 / 12, "feet"),
  20329. weight: math.unit(120, "lb"),
  20330. name: "Back",
  20331. image: {
  20332. source: "./media/characters/yumi-akiyama/back.svg",
  20333. extra: 1287 / 1245,
  20334. bottom: 0.002
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Galactic",
  20341. height: math.unit(50, "galaxies"),
  20342. default: true
  20343. },
  20344. {
  20345. name: "Universal",
  20346. height: math.unit(100, "universes")
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20352. {
  20353. front: {
  20354. height: math.unit(8, "feet"),
  20355. weight: math.unit(500, "lb"),
  20356. name: "Front",
  20357. image: {
  20358. source: "./media/characters/rifter-yrmori/front.svg",
  20359. extra: 1180 / 1125,
  20360. bottom: 0.02
  20361. }
  20362. },
  20363. back: {
  20364. height: math.unit(8, "feet"),
  20365. weight: math.unit(500, "lb"),
  20366. name: "Back",
  20367. image: {
  20368. source: "./media/characters/rifter-yrmori/back.svg",
  20369. extra: 1190 / 1145,
  20370. bottom: 0.001
  20371. }
  20372. },
  20373. wings: {
  20374. height: math.unit(7.75, "feet"),
  20375. weight: math.unit(500, "lb"),
  20376. name: "Wings",
  20377. image: {
  20378. source: "./media/characters/rifter-yrmori/wings.svg",
  20379. extra: 1357 / 1285
  20380. }
  20381. },
  20382. maw: {
  20383. height: math.unit(0.8, "feet"),
  20384. name: "Maw",
  20385. image: {
  20386. source: "./media/characters/rifter-yrmori/maw.svg"
  20387. }
  20388. },
  20389. mawfront: {
  20390. height: math.unit(1.45, "feet"),
  20391. name: "Maw (Front)",
  20392. image: {
  20393. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20394. }
  20395. },
  20396. },
  20397. [
  20398. {
  20399. name: "Normal",
  20400. height: math.unit(8, "feet"),
  20401. default: true
  20402. },
  20403. {
  20404. name: "Macro",
  20405. height: math.unit(42, "meters")
  20406. },
  20407. ]
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20411. {
  20412. were: {
  20413. height: math.unit(25 + 6 / 12, "feet"),
  20414. weight: math.unit(10000, "lb"),
  20415. name: "Were",
  20416. image: {
  20417. source: "./media/characters/tahajin/were.svg",
  20418. extra: 801 / 770,
  20419. bottom: 0.042
  20420. }
  20421. },
  20422. aquatic: {
  20423. height: math.unit(6 + 4 / 12, "feet"),
  20424. weight: math.unit(160, "lb"),
  20425. name: "Aquatic",
  20426. image: {
  20427. source: "./media/characters/tahajin/aquatic.svg",
  20428. extra: 572 / 542,
  20429. bottom: 0.04
  20430. }
  20431. },
  20432. chow: {
  20433. height: math.unit(8 + 11 / 12, "feet"),
  20434. weight: math.unit(450, "lb"),
  20435. name: "Chow",
  20436. image: {
  20437. source: "./media/characters/tahajin/chow.svg",
  20438. extra: 660 / 640,
  20439. bottom: 0.015
  20440. }
  20441. },
  20442. demiNaga: {
  20443. height: math.unit(6 + 8 / 12, "feet"),
  20444. weight: math.unit(300, "lb"),
  20445. name: "Demi Naga",
  20446. image: {
  20447. source: "./media/characters/tahajin/demi-naga.svg",
  20448. extra: 643 / 615,
  20449. bottom: 0.1
  20450. }
  20451. },
  20452. data: {
  20453. height: math.unit(5, "inches"),
  20454. weight: math.unit(0.1, "lb"),
  20455. name: "Data",
  20456. image: {
  20457. source: "./media/characters/tahajin/data.svg"
  20458. }
  20459. },
  20460. fluu: {
  20461. height: math.unit(5 + 7 / 12, "feet"),
  20462. weight: math.unit(140, "lb"),
  20463. name: "Fluu",
  20464. image: {
  20465. source: "./media/characters/tahajin/fluu.svg",
  20466. extra: 628 / 592,
  20467. bottom: 0.02
  20468. }
  20469. },
  20470. starWarrior: {
  20471. height: math.unit(4 + 5 / 12, "feet"),
  20472. weight: math.unit(50, "lb"),
  20473. name: "Star Warrior",
  20474. image: {
  20475. source: "./media/characters/tahajin/star-warrior.svg"
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(25 + 6 / 12, "feet"),
  20483. default: true
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(8, "feet"),
  20492. weight: math.unit(350, "lb"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/gabira/front.svg",
  20496. extra: 608 / 580,
  20497. bottom: 0.03
  20498. }
  20499. },
  20500. back: {
  20501. height: math.unit(8, "feet"),
  20502. weight: math.unit(350, "lb"),
  20503. name: "Back",
  20504. image: {
  20505. source: "./media/characters/gabira/back.svg",
  20506. extra: 608 / 580,
  20507. bottom: 0.03
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(8, "feet"),
  20515. default: true
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20521. {
  20522. front: {
  20523. height: math.unit(5 + 3 / 12, "feet"),
  20524. weight: math.unit(137, "lb"),
  20525. name: "Front",
  20526. image: {
  20527. source: "./media/characters/sasha-katraine/front.svg",
  20528. bottom: 0.045
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Micro",
  20535. height: math.unit(5, "inches")
  20536. },
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(5 + 3 / 12, "feet"),
  20540. default: true
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20546. {
  20547. side: {
  20548. height: math.unit(4, "inches"),
  20549. weight: math.unit(200, "grams"),
  20550. name: "Side",
  20551. image: {
  20552. source: "./media/characters/der/side.svg",
  20553. extra: 719 / 400,
  20554. bottom: 30.6 / 749.9187
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Micro",
  20561. height: math.unit(4, "inches"),
  20562. default: true
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20568. {
  20569. side: {
  20570. height: math.unit(30, "meters"),
  20571. weight: math.unit(700, "tonnes"),
  20572. name: "Side",
  20573. image: {
  20574. source: "./media/characters/fixerdragon/side.svg",
  20575. extra: (1293.0514 - 116.03) / 1106.86,
  20576. bottom: 116.03 / 1293.0514
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Planck",
  20583. height: math.unit(1.6e-35, "meters")
  20584. },
  20585. {
  20586. name: "Micro",
  20587. height: math.unit(0.4, "meters")
  20588. },
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(30, "meters"),
  20592. default: true
  20593. },
  20594. {
  20595. name: "Megamacro",
  20596. height: math.unit(1.2, "megameters")
  20597. },
  20598. {
  20599. name: "Teramacro",
  20600. height: math.unit(130, "terameters")
  20601. },
  20602. {
  20603. name: "Yottamacro",
  20604. height: math.unit(6200, "yottameters")
  20605. },
  20606. ]
  20607. ));
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(8, "feet"),
  20613. weight: math.unit(250, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/kite/front.svg",
  20617. extra: 2796 / 2659,
  20618. bottom: 0.002
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(8, "feet"),
  20626. default: true
  20627. },
  20628. {
  20629. name: "Macro",
  20630. height: math.unit(360, "feet")
  20631. },
  20632. {
  20633. name: "Megamacro",
  20634. height: math.unit(1500, "feet")
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20640. {
  20641. front: {
  20642. height: math.unit(5 + 10 / 12, "feet"),
  20643. weight: math.unit(150, "lb"),
  20644. name: "Front",
  20645. image: {
  20646. source: "./media/characters/poojawa-vynar/front.svg",
  20647. extra: (1506.1547 - 55) / 1356.6,
  20648. bottom: 55 / 1506.1547
  20649. }
  20650. },
  20651. frontTailless: {
  20652. height: math.unit(5 + 10 / 12, "feet"),
  20653. weight: math.unit(150, "lb"),
  20654. name: "Front (Tailless)",
  20655. image: {
  20656. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20657. extra: (1506.1547 - 55) / 1356.6,
  20658. bottom: 55 / 1506.1547
  20659. }
  20660. },
  20661. },
  20662. [
  20663. {
  20664. name: "Normal",
  20665. height: math.unit(5 + 10 / 12, "feet"),
  20666. default: true
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20672. {
  20673. front: {
  20674. height: math.unit(293, "meters"),
  20675. weight: math.unit(70400, "tons"),
  20676. name: "Front",
  20677. image: {
  20678. source: "./media/characters/violette/front.svg",
  20679. extra: 1227 / 1180,
  20680. bottom: 0.005
  20681. }
  20682. },
  20683. back: {
  20684. height: math.unit(293, "meters"),
  20685. weight: math.unit(70400, "tons"),
  20686. name: "Back",
  20687. image: {
  20688. source: "./media/characters/violette/back.svg",
  20689. extra: 1227 / 1180,
  20690. bottom: 0.005
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Macro",
  20697. height: math.unit(293, "meters"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(1050, "feet"),
  20707. weight: math.unit(200000, "tons"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/alessandra/front.svg",
  20711. extra: 960 / 912,
  20712. bottom: 0.06
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Macro",
  20719. height: math.unit(1050, "feet")
  20720. },
  20721. {
  20722. name: "Macro+",
  20723. height: math.unit(900, "meters"),
  20724. default: true
  20725. },
  20726. ]
  20727. ))
  20728. characterMakers.push(() => makeCharacter(
  20729. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20730. {
  20731. front: {
  20732. height: math.unit(5, "feet"),
  20733. weight: math.unit(187, "lb"),
  20734. name: "Front",
  20735. image: {
  20736. source: "./media/characters/person/front.svg",
  20737. extra: 3087 / 2945,
  20738. bottom: 91 / 3181
  20739. }
  20740. },
  20741. },
  20742. [
  20743. {
  20744. name: "Micro",
  20745. height: math.unit(3, "inches")
  20746. },
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(5, "feet"),
  20750. default: true
  20751. },
  20752. {
  20753. name: "Macro",
  20754. height: math.unit(90, "feet")
  20755. },
  20756. {
  20757. name: "Max Size",
  20758. height: math.unit(280, "feet")
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20764. {
  20765. front: {
  20766. height: math.unit(4.5, "meters"),
  20767. weight: math.unit(3200, "lb"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/ty/front.svg",
  20771. extra: 1038 / 960,
  20772. bottom: 31.156 / 1068
  20773. }
  20774. },
  20775. back: {
  20776. height: math.unit(4.5, "meters"),
  20777. weight: math.unit(3200, "lb"),
  20778. name: "Back",
  20779. image: {
  20780. source: "./media/characters/ty/back.svg",
  20781. extra: 1044 / 966,
  20782. bottom: 7.48 / 1049
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(4.5, "meters"),
  20790. default: true
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20796. {
  20797. front: {
  20798. height: math.unit(5 + 4 / 12, "feet"),
  20799. weight: math.unit(115, "lb"),
  20800. name: "Front",
  20801. image: {
  20802. source: "./media/characters/rocky/front.svg",
  20803. extra: 1012 / 975,
  20804. bottom: 54 / 1066
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Normal",
  20811. height: math.unit(5 + 4 / 12, "feet"),
  20812. default: true
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20818. {
  20819. upright: {
  20820. height: math.unit(6, "meters"),
  20821. weight: math.unit(4000, "kg"),
  20822. name: "Upright",
  20823. image: {
  20824. source: "./media/characters/ruin/upright.svg",
  20825. extra: 668 / 661,
  20826. bottom: 42 / 799.8396
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Normal",
  20833. height: math.unit(6, "meters"),
  20834. default: true
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20840. {
  20841. front: {
  20842. height: math.unit(5, "feet"),
  20843. weight: math.unit(106, "lb"),
  20844. name: "Front",
  20845. image: {
  20846. source: "./media/characters/robin/front.svg",
  20847. extra: 862 / 799,
  20848. bottom: 42.4 / 914.8856
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(5, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20862. {
  20863. side: {
  20864. height: math.unit(3, "feet"),
  20865. weight: math.unit(225, "lb"),
  20866. name: "Side",
  20867. image: {
  20868. source: "./media/characters/saian/side.svg",
  20869. extra: 566 / 356,
  20870. bottom: 79.7 / 643
  20871. }
  20872. },
  20873. maw: {
  20874. height: math.unit(2.85, "feet"),
  20875. name: "Maw",
  20876. image: {
  20877. source: "./media/characters/saian/maw.svg"
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(3, "feet"),
  20885. default: true
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20891. {
  20892. side: {
  20893. height: math.unit(8, "feet"),
  20894. weight: math.unit(300, "lb"),
  20895. name: "Side",
  20896. image: {
  20897. source: "./media/characters/equus-silvermane/side.svg",
  20898. extra: 2176 / 2050,
  20899. bottom: 65.7 / 2245
  20900. }
  20901. },
  20902. front: {
  20903. height: math.unit(8, "feet"),
  20904. weight: math.unit(300, "lb"),
  20905. name: "Front",
  20906. image: {
  20907. source: "./media/characters/equus-silvermane/front.svg",
  20908. extra: 4633 / 4400,
  20909. bottom: 71.3 / 4706.915
  20910. }
  20911. },
  20912. sideStepping: {
  20913. height: math.unit(8, "feet"),
  20914. weight: math.unit(300, "lb"),
  20915. name: "Side (Stepping)",
  20916. image: {
  20917. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20918. extra: 1968 / 1860,
  20919. bottom: 16.4 / 1989
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Normal",
  20926. height: math.unit(8, "feet")
  20927. },
  20928. {
  20929. name: "Minimacro",
  20930. height: math.unit(75, "feet"),
  20931. default: true
  20932. },
  20933. {
  20934. name: "Macro",
  20935. height: math.unit(150, "feet")
  20936. },
  20937. {
  20938. name: "Macro+",
  20939. height: math.unit(1000, "feet")
  20940. },
  20941. {
  20942. name: "Megamacro",
  20943. height: math.unit(1, "mile")
  20944. },
  20945. ]
  20946. ))
  20947. characterMakers.push(() => makeCharacter(
  20948. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20949. {
  20950. side: {
  20951. height: math.unit(20, "feet"),
  20952. weight: math.unit(30000, "kg"),
  20953. name: "Side",
  20954. image: {
  20955. source: "./media/characters/windar/side.svg",
  20956. extra: 1491 / 1248,
  20957. bottom: 82.56 / 1568
  20958. }
  20959. },
  20960. },
  20961. [
  20962. {
  20963. name: "Normal",
  20964. height: math.unit(20, "feet"),
  20965. default: true
  20966. },
  20967. ]
  20968. ))
  20969. characterMakers.push(() => makeCharacter(
  20970. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20971. {
  20972. side: {
  20973. height: math.unit(15.66, "feet"),
  20974. weight: math.unit(150, "lb"),
  20975. name: "Side",
  20976. image: {
  20977. source: "./media/characters/melody/side.svg",
  20978. extra: 1097 / 944,
  20979. bottom: 11.8 / 1109
  20980. }
  20981. },
  20982. sideOutfit: {
  20983. height: math.unit(15.66, "feet"),
  20984. weight: math.unit(150, "lb"),
  20985. name: "Side (Outfit)",
  20986. image: {
  20987. source: "./media/characters/melody/side-outfit.svg",
  20988. extra: 1097 / 944,
  20989. bottom: 11.8 / 1109
  20990. }
  20991. },
  20992. },
  20993. [
  20994. {
  20995. name: "Normal",
  20996. height: math.unit(15.66, "feet"),
  20997. default: true
  20998. },
  20999. ]
  21000. ))
  21001. characterMakers.push(() => makeCharacter(
  21002. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21003. {
  21004. front: {
  21005. height: math.unit(8, "feet"),
  21006. weight: math.unit(325, "lb"),
  21007. name: "Front",
  21008. image: {
  21009. source: "./media/characters/windera/front.svg",
  21010. extra: 3180 / 2845,
  21011. bottom: 178 / 3365
  21012. }
  21013. },
  21014. },
  21015. [
  21016. {
  21017. name: "Normal",
  21018. height: math.unit(8, "feet"),
  21019. default: true
  21020. },
  21021. ]
  21022. ))
  21023. characterMakers.push(() => makeCharacter(
  21024. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21025. {
  21026. front: {
  21027. height: math.unit(28.75, "feet"),
  21028. weight: math.unit(2000, "kg"),
  21029. name: "Front",
  21030. image: {
  21031. source: "./media/characters/sonear/front.svg",
  21032. extra: 1041.1 / 964.9,
  21033. bottom: 53.7 / 1096.6
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(28.75, "feet"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21047. {
  21048. side: {
  21049. height: math.unit(25.5, "feet"),
  21050. weight: math.unit(23000, "kg"),
  21051. name: "Side",
  21052. image: {
  21053. source: "./media/characters/kanara/side.svg"
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(25.5, "feet"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21067. {
  21068. side: {
  21069. height: math.unit(10, "feet"),
  21070. weight: math.unit(1000, "kg"),
  21071. name: "Side",
  21072. image: {
  21073. source: "./media/characters/ereus/side.svg",
  21074. extra: 1157 / 959,
  21075. bottom: 153 / 1312.5
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(10, "feet"),
  21083. default: true
  21084. },
  21085. ]
  21086. ))
  21087. characterMakers.push(() => makeCharacter(
  21088. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21089. {
  21090. side: {
  21091. height: math.unit(4.5, "feet"),
  21092. weight: math.unit(500, "lb"),
  21093. name: "Side",
  21094. image: {
  21095. source: "./media/characters/e-ter/side.svg",
  21096. extra: 1550 / 1248,
  21097. bottom: 146 / 1694
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(4.5, "feet"),
  21105. default: true
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21111. {
  21112. side: {
  21113. height: math.unit(9.7, "feet"),
  21114. weight: math.unit(4000, "kg"),
  21115. name: "Side",
  21116. image: {
  21117. source: "./media/characters/yamie/side.svg"
  21118. }
  21119. },
  21120. },
  21121. [
  21122. {
  21123. name: "Normal",
  21124. height: math.unit(9.7, "feet"),
  21125. default: true
  21126. },
  21127. ]
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21131. {
  21132. front: {
  21133. height: math.unit(50, "feet"),
  21134. weight: math.unit(50000, "kg"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/anders/front.svg",
  21138. extra: 570 / 539,
  21139. bottom: 14.7 / 586.7
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Large",
  21146. height: math.unit(50, "feet")
  21147. },
  21148. {
  21149. name: "Macro",
  21150. height: math.unit(2000, "feet"),
  21151. default: true
  21152. },
  21153. {
  21154. name: "Megamacro",
  21155. height: math.unit(12, "miles")
  21156. },
  21157. ]
  21158. ))
  21159. characterMakers.push(() => makeCharacter(
  21160. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21161. {
  21162. front: {
  21163. height: math.unit(7 + 2 / 12, "feet"),
  21164. weight: math.unit(300, "lb"),
  21165. name: "Front",
  21166. image: {
  21167. source: "./media/characters/reban/front.svg",
  21168. extra: 516 / 487,
  21169. bottom: 42.82 / 558.356
  21170. }
  21171. },
  21172. dick: {
  21173. height: math.unit(7 / 5, "feet"),
  21174. name: "Dick",
  21175. image: {
  21176. source: "./media/characters/reban/dick.svg"
  21177. }
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Natural Height",
  21183. height: math.unit(7 + 2 / 12, "feet")
  21184. },
  21185. {
  21186. name: "Macro",
  21187. height: math.unit(500, "feet"),
  21188. default: true
  21189. },
  21190. {
  21191. name: "Canon Height",
  21192. height: math.unit(50, "AU")
  21193. },
  21194. ]
  21195. ))
  21196. characterMakers.push(() => makeCharacter(
  21197. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21198. {
  21199. front: {
  21200. height: math.unit(6, "feet"),
  21201. weight: math.unit(150, "lb"),
  21202. name: "Front",
  21203. image: {
  21204. source: "./media/characters/terrance-keayes/front.svg",
  21205. extra: 1.005,
  21206. bottom: 151 / 1615
  21207. }
  21208. },
  21209. side: {
  21210. height: math.unit(6, "feet"),
  21211. weight: math.unit(150, "lb"),
  21212. name: "Side",
  21213. image: {
  21214. source: "./media/characters/terrance-keayes/side.svg",
  21215. extra: 1.005,
  21216. bottom: 129.4 / 1544
  21217. }
  21218. },
  21219. back: {
  21220. height: math.unit(6, "feet"),
  21221. weight: math.unit(150, "lb"),
  21222. name: "Back",
  21223. image: {
  21224. source: "./media/characters/terrance-keayes/back.svg",
  21225. extra: 1.005,
  21226. bottom: 58.4 / 1557.3
  21227. }
  21228. },
  21229. dick: {
  21230. height: math.unit(6 * 0.208, "feet"),
  21231. name: "Dick",
  21232. image: {
  21233. source: "./media/characters/terrance-keayes/dick.svg"
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Canon Height",
  21240. height: math.unit(35, "miles"),
  21241. default: true
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(6, "feet"),
  21250. weight: math.unit(150, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/ofelia/front.svg",
  21254. extra: 546 / 541,
  21255. bottom: 39 / 583
  21256. }
  21257. },
  21258. back: {
  21259. height: math.unit(6, "feet"),
  21260. weight: math.unit(150, "lb"),
  21261. name: "Back",
  21262. image: {
  21263. source: "./media/characters/ofelia/back.svg",
  21264. extra: 564 / 559.5,
  21265. bottom: 8.69 / 573.02
  21266. }
  21267. },
  21268. maw: {
  21269. height: math.unit(1, "feet"),
  21270. name: "Maw",
  21271. image: {
  21272. source: "./media/characters/ofelia/maw.svg"
  21273. }
  21274. },
  21275. foot: {
  21276. height: math.unit(1.949, "feet"),
  21277. name: "Foot",
  21278. image: {
  21279. source: "./media/characters/ofelia/foot.svg"
  21280. }
  21281. },
  21282. },
  21283. [
  21284. {
  21285. name: "Canon Height",
  21286. height: math.unit(2000, "miles"),
  21287. default: true
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21293. {
  21294. front: {
  21295. height: math.unit(6, "feet"),
  21296. weight: math.unit(150, "lb"),
  21297. name: "Front",
  21298. image: {
  21299. source: "./media/characters/samuel/front.svg",
  21300. extra: 265 / 258,
  21301. bottom: 2 / 266.1566
  21302. }
  21303. },
  21304. },
  21305. [
  21306. {
  21307. name: "Macro",
  21308. height: math.unit(100, "feet"),
  21309. default: true
  21310. },
  21311. {
  21312. name: "Full Size",
  21313. height: math.unit(1000, "miles")
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21319. {
  21320. front: {
  21321. height: math.unit(6, "feet"),
  21322. weight: math.unit(300, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/beishir-kiel/front.svg",
  21326. extra: 569 / 547,
  21327. bottom: 41.9 / 609
  21328. }
  21329. },
  21330. maw: {
  21331. height: math.unit(6 * 0.202, "feet"),
  21332. name: "Maw",
  21333. image: {
  21334. source: "./media/characters/beishir-kiel/maw.svg"
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Macro",
  21341. height: math.unit(300, "feet"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(5 + 8 / 12, "feet"),
  21351. weight: math.unit(120, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/logan-grey/front.svg",
  21355. extra: 2539 / 2393,
  21356. bottom: 97.6 / 2636.37
  21357. }
  21358. },
  21359. frontAlt: {
  21360. height: math.unit(5 + 8 / 12, "feet"),
  21361. weight: math.unit(120, "lb"),
  21362. name: "Front (Alt)",
  21363. image: {
  21364. source: "./media/characters/logan-grey/front-alt.svg",
  21365. extra: 958 / 893,
  21366. bottom: 15 / 970.768
  21367. }
  21368. },
  21369. back: {
  21370. height: math.unit(5 + 8 / 12, "feet"),
  21371. weight: math.unit(120, "lb"),
  21372. name: "Back",
  21373. image: {
  21374. source: "./media/characters/logan-grey/back.svg",
  21375. extra: 958 / 893,
  21376. bottom: 2.1881 / 970.9788
  21377. }
  21378. },
  21379. dick: {
  21380. height: math.unit(1.437, "feet"),
  21381. name: "Dick",
  21382. image: {
  21383. source: "./media/characters/logan-grey/dick.svg"
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(5 + 8 / 12, "feet")
  21391. },
  21392. {
  21393. name: "The 500 Foot Femboy",
  21394. height: math.unit(500, "feet"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Megmacro",
  21399. height: math.unit(20, "miles")
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21405. {
  21406. front: {
  21407. height: math.unit(8 + 2 / 12, "feet"),
  21408. weight: math.unit(275, "lb"),
  21409. name: "Front",
  21410. image: {
  21411. source: "./media/characters/draganta/front.svg",
  21412. extra: 1177 / 1135,
  21413. bottom: 33.46 / 1212.1
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(8 + 6 / 12, "feet"),
  21421. default: true
  21422. },
  21423. {
  21424. name: "Macro",
  21425. height: math.unit(150, "feet")
  21426. },
  21427. {
  21428. name: "Megamacro",
  21429. height: math.unit(1000, "miles")
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21435. {
  21436. front: {
  21437. height: math.unit(1.72, "m"),
  21438. weight: math.unit(80, "lb"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/voski/front.svg",
  21442. extra: 2076.22 / 2022.4,
  21443. bottom: 102.7 / 2177.3866
  21444. }
  21445. },
  21446. frontNsfw: {
  21447. height: math.unit(1.72, "m"),
  21448. weight: math.unit(80, "lb"),
  21449. name: "Front (NSFW)",
  21450. image: {
  21451. source: "./media/characters/voski/front-nsfw.svg",
  21452. extra: 2076.22 / 2022.4,
  21453. bottom: 102.7 / 2177.3866
  21454. }
  21455. },
  21456. back: {
  21457. height: math.unit(1.72, "m"),
  21458. weight: math.unit(80, "lb"),
  21459. name: "Back",
  21460. image: {
  21461. source: "./media/characters/voski/back.svg",
  21462. extra: 2104 / 2051,
  21463. bottom: 10.45 / 2113.63
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(1.72, "m")
  21471. },
  21472. {
  21473. name: "Macro",
  21474. height: math.unit(55, "m"),
  21475. default: true
  21476. },
  21477. {
  21478. name: "Macro+",
  21479. height: math.unit(300, "m")
  21480. },
  21481. {
  21482. name: "Macro++",
  21483. height: math.unit(700, "m")
  21484. },
  21485. {
  21486. name: "Macro+++",
  21487. height: math.unit(4500, "m")
  21488. },
  21489. {
  21490. name: "Macro++++",
  21491. height: math.unit(45, "km")
  21492. },
  21493. {
  21494. name: "Macro+++++",
  21495. height: math.unit(1220, "km")
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21501. {
  21502. front: {
  21503. height: math.unit(2.3, "m"),
  21504. weight: math.unit(304, "kg"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/icowom-lee/front.svg",
  21508. extra: 985 / 955,
  21509. bottom: 25.4 / 1012
  21510. }
  21511. },
  21512. fronttentacles: {
  21513. height: math.unit(2.3, "m"),
  21514. weight: math.unit(304, "kg"),
  21515. name: "Front-tentacles",
  21516. image: {
  21517. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21518. extra: 985 / 955,
  21519. bottom: 25.4 / 1012
  21520. }
  21521. },
  21522. back: {
  21523. height: math.unit(2.3, "m"),
  21524. weight: math.unit(304, "kg"),
  21525. name: "Back",
  21526. image: {
  21527. source: "./media/characters/icowom-lee/back.svg",
  21528. extra: 975 / 954,
  21529. bottom: 9.5 / 985
  21530. }
  21531. },
  21532. backtentacles: {
  21533. height: math.unit(2.3, "m"),
  21534. weight: math.unit(304, "kg"),
  21535. name: "Back-tentacles",
  21536. image: {
  21537. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21538. extra: 975 / 954,
  21539. bottom: 9.5 / 985
  21540. }
  21541. },
  21542. frontDressed: {
  21543. height: math.unit(2.3, "m"),
  21544. weight: math.unit(304, "kg"),
  21545. name: "Front (Dressed)",
  21546. image: {
  21547. source: "./media/characters/icowom-lee/front-dressed.svg",
  21548. extra: 3076 / 2933,
  21549. bottom: 51.4 / 3125.1889
  21550. }
  21551. },
  21552. rump: {
  21553. height: math.unit(0.776, "meters"),
  21554. name: "Rump",
  21555. image: {
  21556. source: "./media/characters/icowom-lee/rump.svg"
  21557. }
  21558. },
  21559. genitals: {
  21560. height: math.unit(0.78, "meters"),
  21561. name: "Genitals",
  21562. image: {
  21563. source: "./media/characters/icowom-lee/genitals.svg"
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(2.3, "meters"),
  21571. default: true
  21572. },
  21573. {
  21574. name: "Macro",
  21575. height: math.unit(94, "meters"),
  21576. default: true
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(22, "meters"),
  21585. weight: math.unit(21000, "kg"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/shock-diamond/front.svg",
  21589. extra: 2204 / 2053,
  21590. bottom: 65 / 2239.47
  21591. }
  21592. },
  21593. frontNude: {
  21594. height: math.unit(22, "meters"),
  21595. weight: math.unit(21000, "kg"),
  21596. name: "Front (Nude)",
  21597. image: {
  21598. source: "./media/characters/shock-diamond/front-nude.svg",
  21599. extra: 2514 / 2285,
  21600. bottom: 13 / 2527.56
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(3, "meters")
  21608. },
  21609. {
  21610. name: "Macro",
  21611. height: math.unit(22, "meters"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(5 + 4 / 12, "feet"),
  21621. weight: math.unit(120, "lb"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/rory/front.svg",
  21625. extra: 589 / 556,
  21626. bottom: 45.7 / 635.76
  21627. }
  21628. },
  21629. frontNude: {
  21630. height: math.unit(5 + 4 / 12, "feet"),
  21631. weight: math.unit(120, "lb"),
  21632. name: "Front (Nude)",
  21633. image: {
  21634. source: "./media/characters/rory/front-nude.svg",
  21635. extra: 589 / 556,
  21636. bottom: 45.7 / 635.76
  21637. }
  21638. },
  21639. side: {
  21640. height: math.unit(5 + 4 / 12, "feet"),
  21641. weight: math.unit(120, "lb"),
  21642. name: "Side",
  21643. image: {
  21644. source: "./media/characters/rory/side.svg",
  21645. extra: 597 / 564,
  21646. bottom: 55 / 653
  21647. }
  21648. },
  21649. back: {
  21650. height: math.unit(5 + 4 / 12, "feet"),
  21651. weight: math.unit(120, "lb"),
  21652. name: "Back",
  21653. image: {
  21654. source: "./media/characters/rory/back.svg",
  21655. extra: 620 / 585,
  21656. bottom: 8.86 / 630.43
  21657. }
  21658. },
  21659. dick: {
  21660. height: math.unit(0.86, "feet"),
  21661. name: "Dick",
  21662. image: {
  21663. source: "./media/characters/rory/dick.svg"
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Normal",
  21670. height: math.unit(5 + 4 / 12, "feet"),
  21671. default: true
  21672. },
  21673. {
  21674. name: "Macro",
  21675. height: math.unit(100, "feet")
  21676. },
  21677. {
  21678. name: "Macro+",
  21679. height: math.unit(140, "feet")
  21680. },
  21681. {
  21682. name: "Macro++",
  21683. height: math.unit(300, "feet")
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(5 + 9 / 12, "feet"),
  21692. weight: math.unit(190, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/sprisk/front.svg",
  21696. extra: 1225 / 1180,
  21697. bottom: 42.7 / 1266.4
  21698. }
  21699. },
  21700. frontNsfw: {
  21701. height: math.unit(5 + 9 / 12, "feet"),
  21702. weight: math.unit(190, "lb"),
  21703. name: "Front (NSFW)",
  21704. image: {
  21705. source: "./media/characters/sprisk/front-nsfw.svg",
  21706. extra: 1225 / 1180,
  21707. bottom: 42.7 / 1266.4
  21708. }
  21709. },
  21710. back: {
  21711. height: math.unit(5 + 9 / 12, "feet"),
  21712. weight: math.unit(190, "lb"),
  21713. name: "Back",
  21714. image: {
  21715. source: "./media/characters/sprisk/back.svg",
  21716. extra: 1247 / 1200,
  21717. bottom: 5.6 / 1253.04
  21718. }
  21719. },
  21720. },
  21721. [
  21722. {
  21723. name: "Tiny",
  21724. height: math.unit(2, "inches")
  21725. },
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(5 + 9 / 12, "feet"),
  21729. default: true
  21730. },
  21731. {
  21732. name: "Mini Macro",
  21733. height: math.unit(18, "feet")
  21734. },
  21735. {
  21736. name: "Macro",
  21737. height: math.unit(100, "feet")
  21738. },
  21739. {
  21740. name: "MACRO",
  21741. height: math.unit(50, "miles")
  21742. },
  21743. {
  21744. name: "M A C R O",
  21745. height: math.unit(300, "miles")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21751. {
  21752. side: {
  21753. height: math.unit(15.6, "meters"),
  21754. weight: math.unit(700000, "kg"),
  21755. name: "Side",
  21756. image: {
  21757. source: "./media/characters/bunsen/side.svg",
  21758. extra: 1644 / 358
  21759. }
  21760. },
  21761. foot: {
  21762. height: math.unit(1.611 * 1644 / 358, "meter"),
  21763. name: "Foot",
  21764. image: {
  21765. source: "./media/characters/bunsen/foot.svg"
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Small",
  21772. height: math.unit(10, "feet")
  21773. },
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(15.6, "meters"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21783. {
  21784. front: {
  21785. height: math.unit(4 + 11 / 12, "feet"),
  21786. weight: math.unit(140, "lb"),
  21787. name: "Front",
  21788. image: {
  21789. source: "./media/characters/sesh/front.svg",
  21790. extra: 3420 / 3231,
  21791. bottom: 72 / 3949.5
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(4 + 11 / 12, "feet")
  21799. },
  21800. {
  21801. name: "Grown",
  21802. height: math.unit(15, "feet"),
  21803. default: true
  21804. },
  21805. {
  21806. name: "Macro",
  21807. height: math.unit(1500, "feet")
  21808. },
  21809. {
  21810. name: "Megamacro",
  21811. height: math.unit(30, "miles")
  21812. },
  21813. {
  21814. name: "Continental",
  21815. height: math.unit(3000, "miles")
  21816. },
  21817. {
  21818. name: "Gravity Mass",
  21819. height: math.unit(300000, "miles")
  21820. },
  21821. {
  21822. name: "Planet Buster",
  21823. height: math.unit(30000000, "miles")
  21824. },
  21825. {
  21826. name: "Big",
  21827. height: math.unit(3000000000, "miles")
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(9, "feet"),
  21836. weight: math.unit(350, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/pepper/front.svg",
  21840. extra: 1448 / 1312,
  21841. bottom: 9.4 / 1457.88
  21842. }
  21843. },
  21844. back: {
  21845. height: math.unit(9, "feet"),
  21846. weight: math.unit(350, "lb"),
  21847. name: "Back",
  21848. image: {
  21849. source: "./media/characters/pepper/back.svg",
  21850. extra: 1423 / 1300,
  21851. bottom: 4.6 / 1429
  21852. }
  21853. },
  21854. maw: {
  21855. height: math.unit(0.932, "feet"),
  21856. name: "Maw",
  21857. image: {
  21858. source: "./media/characters/pepper/maw.svg"
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(9, "feet"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(6, "feet"),
  21875. weight: math.unit(150, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/maelstrom/front.svg",
  21879. extra: 2100 / 1883,
  21880. bottom: 94 / 2196.7
  21881. }
  21882. },
  21883. },
  21884. [
  21885. {
  21886. name: "Less Kaiju",
  21887. height: math.unit(200, "feet")
  21888. },
  21889. {
  21890. name: "Kaiju",
  21891. height: math.unit(400, "feet"),
  21892. default: true
  21893. },
  21894. {
  21895. name: "Kaiju-er",
  21896. height: math.unit(600, "feet")
  21897. },
  21898. ]
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21902. {
  21903. front: {
  21904. height: math.unit(6 + 5 / 12, "feet"),
  21905. weight: math.unit(180, "lb"),
  21906. name: "Front",
  21907. image: {
  21908. source: "./media/characters/lexir/front.svg",
  21909. extra: 180 / 172,
  21910. bottom: 12 / 192
  21911. }
  21912. },
  21913. back: {
  21914. height: math.unit(6 + 5 / 12, "feet"),
  21915. weight: math.unit(180, "lb"),
  21916. name: "Back",
  21917. image: {
  21918. source: "./media/characters/lexir/back.svg",
  21919. extra: 183.84 / 175.5,
  21920. bottom: 3.1 / 187
  21921. }
  21922. },
  21923. },
  21924. [
  21925. {
  21926. name: "Very Smal",
  21927. height: math.unit(1, "nm")
  21928. },
  21929. {
  21930. name: "Normal",
  21931. height: math.unit(6 + 5 / 12, "feet"),
  21932. default: true
  21933. },
  21934. {
  21935. name: "Macro",
  21936. height: math.unit(1, "mile")
  21937. },
  21938. {
  21939. name: "Megamacro",
  21940. height: math.unit(50, "miles")
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(1.5, "meters"),
  21949. weight: math.unit(100, "lb"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/maksio/front.svg",
  21953. extra: 1549 / 1531,
  21954. bottom: 123.7 / 1674.5429
  21955. }
  21956. },
  21957. back: {
  21958. height: math.unit(1.5, "meters"),
  21959. weight: math.unit(100, "lb"),
  21960. name: "Back",
  21961. image: {
  21962. source: "./media/characters/maksio/back.svg",
  21963. extra: 1541 / 1509,
  21964. bottom: 97 / 1639
  21965. }
  21966. },
  21967. hand: {
  21968. height: math.unit(0.621, "feet"),
  21969. name: "Hand",
  21970. image: {
  21971. source: "./media/characters/maksio/hand.svg"
  21972. }
  21973. },
  21974. foot: {
  21975. height: math.unit(1.611, "feet"),
  21976. name: "Foot",
  21977. image: {
  21978. source: "./media/characters/maksio/foot.svg"
  21979. }
  21980. },
  21981. },
  21982. [
  21983. {
  21984. name: "Shrunken",
  21985. height: math.unit(10, "cm")
  21986. },
  21987. {
  21988. name: "Normal",
  21989. height: math.unit(150, "cm"),
  21990. default: true
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21996. {
  21997. front: {
  21998. height: math.unit(100, "feet"),
  21999. name: "Front",
  22000. image: {
  22001. source: "./media/characters/erza-bear/front.svg",
  22002. extra: 2449 / 2390,
  22003. bottom: 46 / 2494
  22004. }
  22005. },
  22006. back: {
  22007. height: math.unit(100, "feet"),
  22008. name: "Back",
  22009. image: {
  22010. source: "./media/characters/erza-bear/back.svg",
  22011. extra: 2489 / 2430,
  22012. bottom: 85.4 / 2480
  22013. }
  22014. },
  22015. tail: {
  22016. height: math.unit(42, "feet"),
  22017. name: "Tail",
  22018. image: {
  22019. source: "./media/characters/erza-bear/tail.svg"
  22020. }
  22021. },
  22022. tongue: {
  22023. height: math.unit(8, "feet"),
  22024. name: "Tongue",
  22025. image: {
  22026. source: "./media/characters/erza-bear/tongue.svg"
  22027. }
  22028. },
  22029. dick: {
  22030. height: math.unit(10.5, "feet"),
  22031. name: "Dick",
  22032. image: {
  22033. source: "./media/characters/erza-bear/dick.svg"
  22034. }
  22035. },
  22036. dickVertical: {
  22037. height: math.unit(16.9, "feet"),
  22038. name: "Dick (Vertical)",
  22039. image: {
  22040. source: "./media/characters/erza-bear/dick-vertical.svg"
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Macro",
  22047. height: math.unit(100, "feet"),
  22048. default: true
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22054. {
  22055. front: {
  22056. height: math.unit(172, "cm"),
  22057. weight: math.unit(73, "kg"),
  22058. name: "Front",
  22059. image: {
  22060. source: "./media/characters/violet-flor/front.svg",
  22061. extra: 1530 / 1442,
  22062. bottom: 61.9 / 1588.8
  22063. }
  22064. },
  22065. back: {
  22066. height: math.unit(180, "cm"),
  22067. weight: math.unit(73, "kg"),
  22068. name: "Back",
  22069. image: {
  22070. source: "./media/characters/violet-flor/back.svg",
  22071. extra: 1692 / 1630,
  22072. bottom: 20 / 1712
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(172, "cm"),
  22080. default: true
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22086. {
  22087. front: {
  22088. height: math.unit(6, "feet"),
  22089. weight: math.unit(220, "lb"),
  22090. name: "Front",
  22091. image: {
  22092. source: "./media/characters/lynn-rhea/front.svg",
  22093. extra: 310 / 273
  22094. }
  22095. },
  22096. back: {
  22097. height: math.unit(6, "feet"),
  22098. weight: math.unit(220, "lb"),
  22099. name: "Back",
  22100. image: {
  22101. source: "./media/characters/lynn-rhea/back.svg",
  22102. extra: 310 / 273
  22103. }
  22104. },
  22105. dicks: {
  22106. height: math.unit(0.9, "feet"),
  22107. name: "Dicks",
  22108. image: {
  22109. source: "./media/characters/lynn-rhea/dicks.svg"
  22110. }
  22111. },
  22112. slit: {
  22113. height: math.unit(0.4, "feet"),
  22114. name: "Slit",
  22115. image: {
  22116. source: "./media/characters/lynn-rhea/slit.svg"
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Micro",
  22123. height: math.unit(1, "inch")
  22124. },
  22125. {
  22126. name: "Macro",
  22127. height: math.unit(60, "feet"),
  22128. default: true
  22129. },
  22130. {
  22131. name: "Megamacro",
  22132. height: math.unit(2, "miles")
  22133. },
  22134. {
  22135. name: "Gigamacro",
  22136. height: math.unit(3, "earths")
  22137. },
  22138. {
  22139. name: "Galactic",
  22140. height: math.unit(0.8, "galaxies")
  22141. },
  22142. ]
  22143. ))
  22144. characterMakers.push(() => makeCharacter(
  22145. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22146. {
  22147. front: {
  22148. height: math.unit(1600, "feet"),
  22149. weight: math.unit(85758785169, "kg"),
  22150. name: "Front",
  22151. image: {
  22152. source: "./media/characters/valathos/front.svg",
  22153. extra: 1451 / 1339
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Macro",
  22160. height: math.unit(1600, "feet"),
  22161. default: true
  22162. },
  22163. ]
  22164. ))
  22165. characterMakers.push(() => makeCharacter(
  22166. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22167. {
  22168. front: {
  22169. height: math.unit(7 + 5 / 12, "feet"),
  22170. weight: math.unit(300, "lb"),
  22171. name: "Front",
  22172. image: {
  22173. source: "./media/characters/azula/front.svg",
  22174. extra: 3208 / 2880,
  22175. bottom: 80.2 / 3277
  22176. }
  22177. },
  22178. back: {
  22179. height: math.unit(7 + 5 / 12, "feet"),
  22180. weight: math.unit(300, "lb"),
  22181. name: "Back",
  22182. image: {
  22183. source: "./media/characters/azula/back.svg",
  22184. extra: 3169 / 2822,
  22185. bottom: 150.6 / 3321
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Normal",
  22192. height: math.unit(7 + 5 / 12, "feet"),
  22193. default: true
  22194. },
  22195. {
  22196. name: "Big",
  22197. height: math.unit(20, "feet")
  22198. },
  22199. ]
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22203. {
  22204. front: {
  22205. height: math.unit(5 + 1 / 12, "feet"),
  22206. weight: math.unit(110, "lb"),
  22207. name: "Front",
  22208. image: {
  22209. source: "./media/characters/rupert/front.svg",
  22210. extra: 1549 / 1495,
  22211. bottom: 54.2 / 1604.4
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(5 + 1 / 12, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22225. {
  22226. front: {
  22227. height: math.unit(8 + 4 / 12, "feet"),
  22228. weight: math.unit(350, "lb"),
  22229. name: "Front",
  22230. image: {
  22231. source: "./media/characters/sheera-castellar/front.svg",
  22232. extra: 1957 / 1894,
  22233. bottom: 26.97 / 1975.017
  22234. }
  22235. },
  22236. side: {
  22237. height: math.unit(8 + 4 / 12, "feet"),
  22238. weight: math.unit(350, "lb"),
  22239. name: "Side",
  22240. image: {
  22241. source: "./media/characters/sheera-castellar/side.svg",
  22242. extra: 1957 / 1894
  22243. }
  22244. },
  22245. back: {
  22246. height: math.unit(8 + 4 / 12, "feet"),
  22247. weight: math.unit(350, "lb"),
  22248. name: "Back",
  22249. image: {
  22250. source: "./media/characters/sheera-castellar/back.svg",
  22251. extra: 1957 / 1894
  22252. }
  22253. },
  22254. angled: {
  22255. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22256. weight: math.unit(350, "lb"),
  22257. name: "Angled",
  22258. image: {
  22259. source: "./media/characters/sheera-castellar/angled.svg",
  22260. extra: 1807 / 1707,
  22261. bottom: 68 / 1875
  22262. }
  22263. },
  22264. genitals: {
  22265. height: math.unit(2.2, "feet"),
  22266. name: "Genitals",
  22267. image: {
  22268. source: "./media/characters/sheera-castellar/genitals.svg"
  22269. }
  22270. },
  22271. },
  22272. [
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(8 + 4 / 12, "feet")
  22276. },
  22277. {
  22278. name: "Macro",
  22279. height: math.unit(150, "feet"),
  22280. default: true
  22281. },
  22282. {
  22283. name: "Macro+",
  22284. height: math.unit(800, "feet")
  22285. },
  22286. ]
  22287. ))
  22288. characterMakers.push(() => makeCharacter(
  22289. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22290. {
  22291. front: {
  22292. height: math.unit(6, "feet"),
  22293. weight: math.unit(150, "lb"),
  22294. name: "Front",
  22295. image: {
  22296. source: "./media/characters/jaipur/front.svg",
  22297. extra: 3860 / 3731,
  22298. bottom: 287 / 4140
  22299. }
  22300. },
  22301. back: {
  22302. height: math.unit(6, "feet"),
  22303. weight: math.unit(150, "lb"),
  22304. name: "Back",
  22305. image: {
  22306. source: "./media/characters/jaipur/back.svg",
  22307. extra: 4060 / 3930,
  22308. bottom: 151 / 4200
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(1.85, "meters"),
  22316. default: true
  22317. },
  22318. {
  22319. name: "Macro",
  22320. height: math.unit(150, "meters")
  22321. },
  22322. {
  22323. name: "Macro+",
  22324. height: math.unit(0.5, "miles")
  22325. },
  22326. {
  22327. name: "Macro++",
  22328. height: math.unit(2.5, "miles")
  22329. },
  22330. {
  22331. name: "Macro+++",
  22332. height: math.unit(12, "miles")
  22333. },
  22334. {
  22335. name: "Macro++++",
  22336. height: math.unit(120, "miles")
  22337. },
  22338. {
  22339. name: "Macro+++++",
  22340. height: math.unit(1200, "miles")
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(6, "feet"),
  22349. weight: math.unit(150, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/sheila-wolf/front.svg",
  22353. extra: 1931 / 1808,
  22354. bottom: 29.5 / 1960
  22355. }
  22356. },
  22357. dick: {
  22358. height: math.unit(1.464, "feet"),
  22359. name: "Dick",
  22360. image: {
  22361. source: "./media/characters/sheila-wolf/dick.svg"
  22362. }
  22363. },
  22364. muzzle: {
  22365. height: math.unit(0.513, "feet"),
  22366. name: "Muzzle",
  22367. image: {
  22368. source: "./media/characters/sheila-wolf/muzzle.svg"
  22369. }
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Macro",
  22375. height: math.unit(70, "feet"),
  22376. default: true
  22377. },
  22378. ]
  22379. ))
  22380. characterMakers.push(() => makeCharacter(
  22381. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22382. {
  22383. front: {
  22384. height: math.unit(32, "meters"),
  22385. weight: math.unit(300000, "kg"),
  22386. name: "Front",
  22387. image: {
  22388. source: "./media/characters/almor/front.svg",
  22389. extra: 1408 / 1322,
  22390. bottom: 94.6 / 1506.5
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Macro",
  22397. height: math.unit(32, "meters"),
  22398. default: true
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22404. {
  22405. front: {
  22406. height: math.unit(7, "feet"),
  22407. weight: math.unit(200, "lb"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/silver/front.svg",
  22411. extra: 472.1 / 450.5,
  22412. bottom: 26.5 / 499.424
  22413. }
  22414. },
  22415. },
  22416. [
  22417. {
  22418. name: "Normal",
  22419. height: math.unit(7, "feet"),
  22420. default: true
  22421. },
  22422. {
  22423. name: "Macro",
  22424. height: math.unit(800, "feet")
  22425. },
  22426. {
  22427. name: "Megamacro",
  22428. height: math.unit(250, "miles")
  22429. },
  22430. ]
  22431. ))
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22434. {
  22435. front: {
  22436. height: math.unit(6, "feet"),
  22437. weight: math.unit(150, "lb"),
  22438. name: "Front",
  22439. image: {
  22440. source: "./media/characters/pliskin/front.svg",
  22441. extra: 1469 / 1359,
  22442. bottom: 70 / 1540
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Micro",
  22449. height: math.unit(3, "inches")
  22450. },
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(5 + 11 / 12, "feet"),
  22454. default: true
  22455. },
  22456. {
  22457. name: "Macro",
  22458. height: math.unit(120, "feet")
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22464. {
  22465. front: {
  22466. height: math.unit(6, "feet"),
  22467. weight: math.unit(150, "lb"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/sammy/front.svg",
  22471. extra: 1193 / 1089,
  22472. bottom: 30.5 / 1226
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Macro",
  22479. height: math.unit(1700, "feet"),
  22480. default: true
  22481. },
  22482. {
  22483. name: "Examacro",
  22484. height: math.unit(2.5e9, "lightyears")
  22485. },
  22486. ]
  22487. ))
  22488. characterMakers.push(() => makeCharacter(
  22489. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22490. {
  22491. front: {
  22492. height: math.unit(21, "meters"),
  22493. weight: math.unit(12, "tonnes"),
  22494. name: "Front",
  22495. image: {
  22496. source: "./media/characters/kuru/front.svg",
  22497. extra: 4301 / 3785,
  22498. bottom: 371.3 / 4691
  22499. }
  22500. },
  22501. },
  22502. [
  22503. {
  22504. name: "Macro",
  22505. height: math.unit(21, "meters"),
  22506. default: true
  22507. },
  22508. ]
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22512. {
  22513. front: {
  22514. height: math.unit(23, "meters"),
  22515. weight: math.unit(12.2, "tonnes"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/rakka/front.svg",
  22519. extra: 4670 / 4169,
  22520. bottom: 301 / 4968.7
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Macro",
  22527. height: math.unit(23, "meters"),
  22528. default: true
  22529. },
  22530. ]
  22531. ))
  22532. characterMakers.push(() => makeCharacter(
  22533. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22534. {
  22535. front: {
  22536. height: math.unit(6, "feet"),
  22537. weight: math.unit(150, "lb"),
  22538. name: "Front",
  22539. image: {
  22540. source: "./media/characters/rhys-feline/front.svg",
  22541. extra: 2488 / 2308,
  22542. bottom: 35.67 / 2519.19
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Really Small",
  22549. height: math.unit(1, "nm")
  22550. },
  22551. {
  22552. name: "Micro",
  22553. height: math.unit(4, "inches")
  22554. },
  22555. {
  22556. name: "Normal",
  22557. height: math.unit(4 + 10 / 12, "feet"),
  22558. default: true
  22559. },
  22560. {
  22561. name: "Macro",
  22562. height: math.unit(100, "feet")
  22563. },
  22564. {
  22565. name: "Megamacto",
  22566. height: math.unit(50, "miles")
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22572. {
  22573. side: {
  22574. height: math.unit(30, "feet"),
  22575. weight: math.unit(35000, "kg"),
  22576. name: "Side",
  22577. image: {
  22578. source: "./media/characters/alydar/side.svg",
  22579. extra: 234 / 222,
  22580. bottom: 6.5 / 241
  22581. }
  22582. },
  22583. front: {
  22584. height: math.unit(30, "feet"),
  22585. weight: math.unit(35000, "kg"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/alydar/front.svg",
  22589. extra: 223.37 / 210.2,
  22590. bottom: 22.3 / 246.76
  22591. }
  22592. },
  22593. top: {
  22594. height: math.unit(64.54, "feet"),
  22595. weight: math.unit(35000, "kg"),
  22596. name: "Top",
  22597. image: {
  22598. source: "./media/characters/alydar/top.svg"
  22599. }
  22600. },
  22601. anthro: {
  22602. height: math.unit(30, "feet"),
  22603. weight: math.unit(9000, "kg"),
  22604. name: "Anthro",
  22605. image: {
  22606. source: "./media/characters/alydar/anthro.svg",
  22607. extra: 432 / 421,
  22608. bottom: 7.18 / 440
  22609. }
  22610. },
  22611. maw: {
  22612. height: math.unit(11.693, "feet"),
  22613. name: "Maw",
  22614. image: {
  22615. source: "./media/characters/alydar/maw.svg"
  22616. }
  22617. },
  22618. head: {
  22619. height: math.unit(11.693, "feet"),
  22620. name: "Head",
  22621. image: {
  22622. source: "./media/characters/alydar/head.svg"
  22623. }
  22624. },
  22625. headAlt: {
  22626. height: math.unit(12.861, "feet"),
  22627. name: "Head (Alt)",
  22628. image: {
  22629. source: "./media/characters/alydar/head-alt.svg"
  22630. }
  22631. },
  22632. wing: {
  22633. height: math.unit(20.712, "feet"),
  22634. name: "Wing",
  22635. image: {
  22636. source: "./media/characters/alydar/wing.svg"
  22637. }
  22638. },
  22639. wingFeather: {
  22640. height: math.unit(9.662, "feet"),
  22641. name: "Wing Feather",
  22642. image: {
  22643. source: "./media/characters/alydar/wing-feather.svg"
  22644. }
  22645. },
  22646. countourFeather: {
  22647. height: math.unit(4.154, "feet"),
  22648. name: "Contour Feather",
  22649. image: {
  22650. source: "./media/characters/alydar/contour-feather.svg"
  22651. }
  22652. },
  22653. },
  22654. [
  22655. {
  22656. name: "Diplomatic",
  22657. height: math.unit(13, "feet"),
  22658. default: true
  22659. },
  22660. {
  22661. name: "Small",
  22662. height: math.unit(30, "feet")
  22663. },
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(95, "feet"),
  22667. default: true
  22668. },
  22669. {
  22670. name: "Large",
  22671. height: math.unit(285, "feet")
  22672. },
  22673. {
  22674. name: "Incomprehensible",
  22675. height: math.unit(450, "megameters")
  22676. },
  22677. ]
  22678. ))
  22679. characterMakers.push(() => makeCharacter(
  22680. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22681. {
  22682. side: {
  22683. height: math.unit(11, "feet"),
  22684. weight: math.unit(1750, "kg"),
  22685. name: "Side",
  22686. image: {
  22687. source: "./media/characters/selicia/side.svg",
  22688. extra: 440 / 396,
  22689. bottom: 24.8 / 465.979
  22690. }
  22691. },
  22692. maw: {
  22693. height: math.unit(4.665, "feet"),
  22694. name: "Maw",
  22695. image: {
  22696. source: "./media/characters/selicia/maw.svg"
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Normal",
  22703. height: math.unit(11, "feet"),
  22704. default: true
  22705. },
  22706. ]
  22707. ))
  22708. characterMakers.push(() => makeCharacter(
  22709. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22710. {
  22711. side: {
  22712. height: math.unit(2 + 6 / 12, "feet"),
  22713. weight: math.unit(30, "lb"),
  22714. name: "Side",
  22715. image: {
  22716. source: "./media/characters/layla/side.svg",
  22717. extra: 244 / 188,
  22718. bottom: 18.2 / 262.1
  22719. }
  22720. },
  22721. back: {
  22722. height: math.unit(2 + 6 / 12, "feet"),
  22723. weight: math.unit(30, "lb"),
  22724. name: "Back",
  22725. image: {
  22726. source: "./media/characters/layla/back.svg",
  22727. extra: 308 / 241.5,
  22728. bottom: 8.9 / 316.8
  22729. }
  22730. },
  22731. cumming: {
  22732. height: math.unit(2 + 6 / 12, "feet"),
  22733. weight: math.unit(30, "lb"),
  22734. name: "Cumming",
  22735. image: {
  22736. source: "./media/characters/layla/cumming.svg",
  22737. extra: 342 / 279,
  22738. bottom: 595 / 938
  22739. }
  22740. },
  22741. dickFlaccid: {
  22742. height: math.unit(2.595, "feet"),
  22743. name: "Flaccid Genitals",
  22744. image: {
  22745. source: "./media/characters/layla/dick-flaccid.svg"
  22746. }
  22747. },
  22748. dickErect: {
  22749. height: math.unit(2.359, "feet"),
  22750. name: "Erect Genitals",
  22751. image: {
  22752. source: "./media/characters/layla/dick-erect.svg"
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Micro",
  22759. height: math.unit(1, "inch")
  22760. },
  22761. {
  22762. name: "Small",
  22763. height: math.unit(1, "foot")
  22764. },
  22765. {
  22766. name: "Normal",
  22767. height: math.unit(2 + 6 / 12, "feet"),
  22768. default: true
  22769. },
  22770. {
  22771. name: "Macro",
  22772. height: math.unit(200, "feet")
  22773. },
  22774. {
  22775. name: "Megamacro",
  22776. height: math.unit(1000, "miles")
  22777. },
  22778. {
  22779. name: "Planetary",
  22780. height: math.unit(8000, "miles")
  22781. },
  22782. {
  22783. name: "True Layla",
  22784. height: math.unit(200000 * 7, "multiverses")
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22790. {
  22791. back: {
  22792. height: math.unit(10.5, "feet"),
  22793. weight: math.unit(800, "lb"),
  22794. name: "Back",
  22795. image: {
  22796. source: "./media/characters/knox/back.svg",
  22797. extra: 1486 / 1089,
  22798. bottom: 107 / 1601.4
  22799. }
  22800. },
  22801. side: {
  22802. height: math.unit(10.5, "feet"),
  22803. weight: math.unit(800, "lb"),
  22804. name: "Side",
  22805. image: {
  22806. source: "./media/characters/knox/side.svg",
  22807. extra: 244 / 218,
  22808. bottom: 14 / 260
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Compact",
  22815. height: math.unit(10.5, "feet"),
  22816. default: true
  22817. },
  22818. {
  22819. name: "Dynamax",
  22820. height: math.unit(210, "feet")
  22821. },
  22822. {
  22823. name: "Full Macro",
  22824. height: math.unit(850, "feet")
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(6, "feet"),
  22833. weight: math.unit(152, "lb"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/shin-pikachu/front.svg",
  22837. extra: 1574 / 1480,
  22838. bottom: 53.3 / 1626
  22839. }
  22840. },
  22841. hand: {
  22842. height: math.unit(1.055, "feet"),
  22843. name: "Hand",
  22844. image: {
  22845. source: "./media/characters/shin-pikachu/hand.svg"
  22846. }
  22847. },
  22848. foot: {
  22849. height: math.unit(1.1, "feet"),
  22850. name: "Foot",
  22851. image: {
  22852. source: "./media/characters/shin-pikachu/foot.svg"
  22853. }
  22854. },
  22855. collar: {
  22856. height: math.unit(0.386, "feet"),
  22857. name: "Collar",
  22858. image: {
  22859. source: "./media/characters/shin-pikachu/collar.svg"
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Smallest",
  22866. height: math.unit(0.5, "inches")
  22867. },
  22868. {
  22869. name: "Micro",
  22870. height: math.unit(6, "inches")
  22871. },
  22872. {
  22873. name: "Normal",
  22874. height: math.unit(6, "feet"),
  22875. default: true
  22876. },
  22877. {
  22878. name: "Macro",
  22879. height: math.unit(150, "feet")
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22885. {
  22886. front: {
  22887. height: math.unit(28, "feet"),
  22888. weight: math.unit(10500, "lb"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/kayda/front.svg",
  22892. extra: 1536 / 1428,
  22893. bottom: 68.7 / 1603
  22894. }
  22895. },
  22896. back: {
  22897. height: math.unit(28, "feet"),
  22898. weight: math.unit(10500, "lb"),
  22899. name: "Back",
  22900. image: {
  22901. source: "./media/characters/kayda/back.svg",
  22902. extra: 1557 / 1464,
  22903. bottom: 39.5 / 1597.49
  22904. }
  22905. },
  22906. dick: {
  22907. height: math.unit(3.858, "feet"),
  22908. name: "Dick",
  22909. image: {
  22910. source: "./media/characters/kayda/dick.svg"
  22911. }
  22912. },
  22913. },
  22914. [
  22915. {
  22916. name: "Macro",
  22917. height: math.unit(28, "feet"),
  22918. default: true
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(10 + 11 / 12, "feet"),
  22927. weight: math.unit(1400, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/brian/front.svg",
  22931. extra: 737 / 692,
  22932. bottom: 55.4 / 785
  22933. }
  22934. },
  22935. },
  22936. [
  22937. {
  22938. name: "Normal",
  22939. height: math.unit(10 + 11 / 12, "feet"),
  22940. default: true
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(5 + 8 / 12, "feet"),
  22949. weight: math.unit(140, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/khemri/front.svg",
  22953. extra: 4780 / 4059,
  22954. bottom: 80.1 / 4859.25
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Micro",
  22961. height: math.unit(6, "inches")
  22962. },
  22963. {
  22964. name: "Normal",
  22965. height: math.unit(5 + 8 / 12, "feet"),
  22966. default: true
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22972. {
  22973. front: {
  22974. height: math.unit(13, "feet"),
  22975. weight: math.unit(1700, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/felix-braveheart/front.svg",
  22979. extra: 1222 / 1157,
  22980. bottom: 53.2 / 1280
  22981. }
  22982. },
  22983. back: {
  22984. height: math.unit(13, "feet"),
  22985. weight: math.unit(1700, "lb"),
  22986. name: "Back",
  22987. image: {
  22988. source: "./media/characters/felix-braveheart/back.svg",
  22989. extra: 1277 / 1203,
  22990. bottom: 50.2 / 1327
  22991. }
  22992. },
  22993. feral: {
  22994. height: math.unit(6, "feet"),
  22995. weight: math.unit(400, "lb"),
  22996. name: "Feral",
  22997. image: {
  22998. source: "./media/characters/felix-braveheart/feral.svg",
  22999. extra: 682 / 625,
  23000. bottom: 6.9 / 688
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Normal",
  23007. height: math.unit(13, "feet"),
  23008. default: true
  23009. },
  23010. ]
  23011. ))
  23012. characterMakers.push(() => makeCharacter(
  23013. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23014. {
  23015. side: {
  23016. height: math.unit(5 + 11 / 12, "feet"),
  23017. weight: math.unit(1400, "lb"),
  23018. name: "Side",
  23019. image: {
  23020. source: "./media/characters/shadow-blade/side.svg",
  23021. extra: 1726 / 1267,
  23022. bottom: 58.4 / 1785
  23023. }
  23024. },
  23025. },
  23026. [
  23027. {
  23028. name: "Normal",
  23029. height: math.unit(5 + 11 / 12, "feet"),
  23030. default: true
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23036. {
  23037. front: {
  23038. height: math.unit(1 + 6 / 12, "feet"),
  23039. weight: math.unit(25, "lb"),
  23040. name: "Front",
  23041. image: {
  23042. source: "./media/characters/karla-halldor/front.svg",
  23043. extra: 1459 / 1383,
  23044. bottom: 12 / 1472
  23045. }
  23046. },
  23047. },
  23048. [
  23049. {
  23050. name: "Normal",
  23051. height: math.unit(1 + 6 / 12, "feet"),
  23052. default: true
  23053. },
  23054. ]
  23055. ))
  23056. characterMakers.push(() => makeCharacter(
  23057. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23058. {
  23059. front: {
  23060. height: math.unit(6 + 2 / 12, "feet"),
  23061. weight: math.unit(160, "lb"),
  23062. name: "Front",
  23063. image: {
  23064. source: "./media/characters/ariam/front.svg",
  23065. extra: 714 / 617,
  23066. bottom: 23.4 / 737,
  23067. }
  23068. },
  23069. squatting: {
  23070. height: math.unit(4.1, "feet"),
  23071. weight: math.unit(160, "lb"),
  23072. name: "Squatting",
  23073. image: {
  23074. source: "./media/characters/ariam/squatting.svg",
  23075. extra: 2617 / 2112,
  23076. bottom: 61.2 / 2681,
  23077. }
  23078. },
  23079. },
  23080. [
  23081. {
  23082. name: "Normal",
  23083. height: math.unit(6 + 2 / 12, "feet"),
  23084. default: true
  23085. },
  23086. {
  23087. name: "Normal+",
  23088. height: math.unit(4, "meters")
  23089. },
  23090. {
  23091. name: "Macro",
  23092. height: math.unit(50, "meters")
  23093. },
  23094. {
  23095. name: "Macro+",
  23096. height: math.unit(100, "meters")
  23097. },
  23098. {
  23099. name: "Megamacro",
  23100. height: math.unit(20, "km")
  23101. },
  23102. ]
  23103. ))
  23104. characterMakers.push(() => makeCharacter(
  23105. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23106. {
  23107. front: {
  23108. height: math.unit(1.67, "meters"),
  23109. weight: math.unit(140, "lb"),
  23110. name: "Front",
  23111. image: {
  23112. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23113. extra: 438 / 410,
  23114. bottom: 0.75 / 439
  23115. }
  23116. },
  23117. },
  23118. [
  23119. {
  23120. name: "Shrunken",
  23121. height: math.unit(7.6, "cm")
  23122. },
  23123. {
  23124. name: "Human Scale",
  23125. height: math.unit(1.67, "meters")
  23126. },
  23127. {
  23128. name: "Wolxi Scale",
  23129. height: math.unit(36.7, "meters"),
  23130. default: true
  23131. },
  23132. ]
  23133. ))
  23134. characterMakers.push(() => makeCharacter(
  23135. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23136. {
  23137. front: {
  23138. height: math.unit(1.73, "meters"),
  23139. weight: math.unit(240, "lb"),
  23140. name: "Front",
  23141. image: {
  23142. source: "./media/characters/izue-two-mothers/front.svg",
  23143. extra: 469 / 437,
  23144. bottom: 1.24 / 470.6
  23145. }
  23146. },
  23147. },
  23148. [
  23149. {
  23150. name: "Shrunken",
  23151. height: math.unit(7.86, "cm")
  23152. },
  23153. {
  23154. name: "Human Scale",
  23155. height: math.unit(1.73, "meters")
  23156. },
  23157. {
  23158. name: "Wolxi Scale",
  23159. height: math.unit(38, "meters"),
  23160. default: true
  23161. },
  23162. ]
  23163. ))
  23164. characterMakers.push(() => makeCharacter(
  23165. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23166. {
  23167. front: {
  23168. height: math.unit(1.55, "meters"),
  23169. weight: math.unit(120, "lb"),
  23170. name: "Front",
  23171. image: {
  23172. source: "./media/characters/teeku-love-shack/front.svg",
  23173. extra: 387 / 362,
  23174. bottom: 1.51 / 388
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Shrunken",
  23181. height: math.unit(7, "cm")
  23182. },
  23183. {
  23184. name: "Human Scale",
  23185. height: math.unit(1.55, "meters")
  23186. },
  23187. {
  23188. name: "Wolxi Scale",
  23189. height: math.unit(34.1, "meters"),
  23190. default: true
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(1.83, "meters"),
  23199. weight: math.unit(135, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/dejma-the-red/front.svg",
  23203. extra: 480 / 458,
  23204. bottom: 1.8 / 482
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Shrunken",
  23211. height: math.unit(8.3, "cm")
  23212. },
  23213. {
  23214. name: "Human Scale",
  23215. height: math.unit(1.83, "meters")
  23216. },
  23217. {
  23218. name: "Wolxi Scale",
  23219. height: math.unit(40, "meters"),
  23220. default: true
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23226. {
  23227. front: {
  23228. height: math.unit(1.78, "meters"),
  23229. weight: math.unit(65, "kg"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/aki/front.svg",
  23233. extra: 452 / 415
  23234. }
  23235. },
  23236. frontNsfw: {
  23237. height: math.unit(1.78, "meters"),
  23238. weight: math.unit(65, "kg"),
  23239. name: "Front (NSFW)",
  23240. image: {
  23241. source: "./media/characters/aki/front-nsfw.svg",
  23242. extra: 452 / 415
  23243. }
  23244. },
  23245. back: {
  23246. height: math.unit(1.78, "meters"),
  23247. weight: math.unit(65, "kg"),
  23248. name: "Back",
  23249. image: {
  23250. source: "./media/characters/aki/back.svg",
  23251. extra: 452 / 415
  23252. }
  23253. },
  23254. rump: {
  23255. height: math.unit(2.05, "feet"),
  23256. name: "Rump",
  23257. image: {
  23258. source: "./media/characters/aki/rump.svg"
  23259. }
  23260. },
  23261. dick: {
  23262. height: math.unit(0.95, "feet"),
  23263. name: "Dick",
  23264. image: {
  23265. source: "./media/characters/aki/dick.svg"
  23266. }
  23267. },
  23268. },
  23269. [
  23270. {
  23271. name: "Micro",
  23272. height: math.unit(15, "cm")
  23273. },
  23274. {
  23275. name: "Normal",
  23276. height: math.unit(178, "cm"),
  23277. default: true
  23278. },
  23279. {
  23280. name: "Macro",
  23281. height: math.unit(214, "m")
  23282. },
  23283. {
  23284. name: "Macro+",
  23285. height: math.unit(534, "m")
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23291. {
  23292. front: {
  23293. height: math.unit(5 + 5 / 12, "feet"),
  23294. weight: math.unit(120, "lb"),
  23295. name: "Front",
  23296. image: {
  23297. source: "./media/characters/ari/front.svg",
  23298. extra: 714.5 / 682,
  23299. bottom: 8 / 722.5
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Normal",
  23306. height: math.unit(5 + 5 / 12, "feet")
  23307. },
  23308. {
  23309. name: "Macro",
  23310. height: math.unit(100, "feet"),
  23311. default: true
  23312. },
  23313. {
  23314. name: "Megamacro",
  23315. height: math.unit(100, "miles")
  23316. },
  23317. {
  23318. name: "Gigamacro",
  23319. height: math.unit(80000, "miles")
  23320. },
  23321. ]
  23322. ))
  23323. characterMakers.push(() => makeCharacter(
  23324. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23325. {
  23326. side: {
  23327. height: math.unit(9, "feet"),
  23328. weight: math.unit(400, "kg"),
  23329. name: "Side",
  23330. image: {
  23331. source: "./media/characters/bolt/side.svg",
  23332. extra: 1126 / 896,
  23333. bottom: 60 / 1187.3,
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Micro",
  23340. height: math.unit(5, "inches")
  23341. },
  23342. {
  23343. name: "Normal",
  23344. height: math.unit(9, "feet"),
  23345. default: true
  23346. },
  23347. {
  23348. name: "Macro",
  23349. height: math.unit(700, "feet")
  23350. },
  23351. {
  23352. name: "Max Size",
  23353. height: math.unit(1.52e22, "yottameters")
  23354. },
  23355. ]
  23356. ))
  23357. characterMakers.push(() => makeCharacter(
  23358. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23359. {
  23360. front: {
  23361. height: math.unit(4.53, "meters"),
  23362. weight: math.unit(3, "tons"),
  23363. name: "Front",
  23364. image: {
  23365. source: "./media/characters/draekon-sylviar/front.svg",
  23366. extra: 1228 / 1068,
  23367. bottom: 41 / 1270
  23368. }
  23369. },
  23370. tail: {
  23371. height: math.unit(1.772, "meter"),
  23372. name: "Tail",
  23373. image: {
  23374. source: "./media/characters/draekon-sylviar/tail.svg"
  23375. }
  23376. },
  23377. head: {
  23378. height: math.unit(1.331, "meter"),
  23379. name: "Head",
  23380. image: {
  23381. source: "./media/characters/draekon-sylviar/head.svg"
  23382. }
  23383. },
  23384. hand: {
  23385. height: math.unit(0.564, "meter"),
  23386. name: "Hand",
  23387. image: {
  23388. source: "./media/characters/draekon-sylviar/hand.svg"
  23389. }
  23390. },
  23391. foot: {
  23392. height: math.unit(0.621, "meter"),
  23393. name: "Foot",
  23394. image: {
  23395. source: "./media/characters/draekon-sylviar/foot.svg",
  23396. bottom: 32 / 324
  23397. }
  23398. },
  23399. dick: {
  23400. height: math.unit(61, "cm"),
  23401. name: "Dick",
  23402. image: {
  23403. source: "./media/characters/draekon-sylviar/dick.svg"
  23404. }
  23405. },
  23406. dickseparated: {
  23407. height: math.unit(61, "cm"),
  23408. name: "Dick-separated",
  23409. image: {
  23410. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23411. }
  23412. },
  23413. },
  23414. [
  23415. {
  23416. name: "Small",
  23417. height: math.unit(4.53 / 2, "meters"),
  23418. default: true
  23419. },
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(4.53, "meters"),
  23423. default: true
  23424. },
  23425. {
  23426. name: "Large",
  23427. height: math.unit(4.53 * 2, "meters"),
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23433. {
  23434. front: {
  23435. height: math.unit(6 + 2 / 12, "feet"),
  23436. weight: math.unit(180, "lb"),
  23437. name: "Front",
  23438. image: {
  23439. source: "./media/characters/brawler/front.svg",
  23440. extra: 3301 / 3027,
  23441. bottom: 138 / 3439
  23442. }
  23443. },
  23444. },
  23445. [
  23446. {
  23447. name: "Normal",
  23448. height: math.unit(6 + 2 / 12, "feet"),
  23449. default: true
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23455. {
  23456. front: {
  23457. height: math.unit(11, "feet"),
  23458. weight: math.unit(1000, "lb"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/alex/front.svg",
  23462. bottom: 44.5 / 620
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Micro",
  23469. height: math.unit(5, "inches")
  23470. },
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(11, "feet"),
  23474. default: true
  23475. },
  23476. {
  23477. name: "Macro",
  23478. height: math.unit(9.5e9, "feet")
  23479. },
  23480. {
  23481. name: "Max Size",
  23482. height: math.unit(1.4e283, "yottameters")
  23483. },
  23484. ]
  23485. ))
  23486. characterMakers.push(() => makeCharacter(
  23487. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23488. {
  23489. female: {
  23490. height: math.unit(29.9, "m"),
  23491. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23492. name: "Female",
  23493. image: {
  23494. source: "./media/characters/zenari/female.svg",
  23495. extra: 3281.6 / 3217,
  23496. bottom: 72.2 / 3353
  23497. }
  23498. },
  23499. male: {
  23500. height: math.unit(27.7, "m"),
  23501. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23502. name: "Male",
  23503. image: {
  23504. source: "./media/characters/zenari/male.svg",
  23505. extra: 3008 / 2991,
  23506. bottom: 54.6 / 3069
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Macro",
  23513. height: math.unit(29.7, "meters"),
  23514. default: true
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23520. {
  23521. female: {
  23522. height: math.unit(23.8, "m"),
  23523. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23524. name: "Female",
  23525. image: {
  23526. source: "./media/characters/mactarian/female.svg",
  23527. extra: 2662 / 2569,
  23528. bottom: 73 / 2736
  23529. }
  23530. },
  23531. male: {
  23532. height: math.unit(23.8, "m"),
  23533. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23534. name: "Male",
  23535. image: {
  23536. source: "./media/characters/mactarian/male.svg",
  23537. extra: 2673 / 2600,
  23538. bottom: 76 / 2750
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Macro",
  23545. height: math.unit(23.8, "meters"),
  23546. default: true
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23552. {
  23553. female: {
  23554. height: math.unit(19.3, "m"),
  23555. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23556. name: "Female",
  23557. image: {
  23558. source: "./media/characters/umok/female.svg",
  23559. extra: 2186 / 2078,
  23560. bottom: 87 / 2277
  23561. }
  23562. },
  23563. male: {
  23564. height: math.unit(19.5, "m"),
  23565. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23566. name: "Male",
  23567. image: {
  23568. source: "./media/characters/umok/male.svg",
  23569. extra: 2233 / 2140,
  23570. bottom: 24.4 / 2258
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Macro",
  23577. height: math.unit(19.3, "meters"),
  23578. default: true
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23584. {
  23585. female: {
  23586. height: math.unit(26.15, "m"),
  23587. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23588. name: "Female",
  23589. image: {
  23590. source: "./media/characters/joraxian/female.svg",
  23591. extra: 2912 / 2824,
  23592. bottom: 36 / 2956
  23593. }
  23594. },
  23595. male: {
  23596. height: math.unit(25.4, "m"),
  23597. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23598. name: "Male",
  23599. image: {
  23600. source: "./media/characters/joraxian/male.svg",
  23601. extra: 2877 / 2721,
  23602. bottom: 82 / 2967
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Macro",
  23609. height: math.unit(26.15, "meters"),
  23610. default: true
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23616. {
  23617. female: {
  23618. height: math.unit(21.6, "m"),
  23619. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23620. name: "Female",
  23621. image: {
  23622. source: "./media/characters/sthara/female.svg",
  23623. extra: 2516 / 2347,
  23624. bottom: 21.5 / 2537
  23625. }
  23626. },
  23627. male: {
  23628. height: math.unit(24, "m"),
  23629. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23630. name: "Male",
  23631. image: {
  23632. source: "./media/characters/sthara/male.svg",
  23633. extra: 2732 / 2607,
  23634. bottom: 23 / 2732
  23635. }
  23636. },
  23637. },
  23638. [
  23639. {
  23640. name: "Macro",
  23641. height: math.unit(21.6, "meters"),
  23642. default: true
  23643. },
  23644. ]
  23645. ))
  23646. characterMakers.push(() => makeCharacter(
  23647. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23648. {
  23649. front: {
  23650. height: math.unit(6 + 4 / 12, "feet"),
  23651. weight: math.unit(175, "lb"),
  23652. name: "Front",
  23653. image: {
  23654. source: "./media/characters/luka-bryzant/front.svg",
  23655. extra: 311 / 289,
  23656. bottom: 4 / 315
  23657. }
  23658. },
  23659. back: {
  23660. height: math.unit(6 + 4 / 12, "feet"),
  23661. weight: math.unit(175, "lb"),
  23662. name: "Back",
  23663. image: {
  23664. source: "./media/characters/luka-bryzant/back.svg",
  23665. extra: 311 / 289,
  23666. bottom: 3.8 / 313.7
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Micro",
  23673. height: math.unit(10, "inches")
  23674. },
  23675. {
  23676. name: "Normal",
  23677. height: math.unit(6 + 4 / 12, "feet"),
  23678. default: true
  23679. },
  23680. {
  23681. name: "Large",
  23682. height: math.unit(12, "feet")
  23683. },
  23684. ]
  23685. ))
  23686. characterMakers.push(() => makeCharacter(
  23687. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23688. {
  23689. front: {
  23690. height: math.unit(5 + 7 / 12, "feet"),
  23691. weight: math.unit(185, "lb"),
  23692. name: "Front",
  23693. image: {
  23694. source: "./media/characters/aman-aquila/front.svg",
  23695. extra: 1013 / 976,
  23696. bottom: 45.6 / 1057
  23697. }
  23698. },
  23699. side: {
  23700. height: math.unit(5 + 7 / 12, "feet"),
  23701. weight: math.unit(185, "lb"),
  23702. name: "Side",
  23703. image: {
  23704. source: "./media/characters/aman-aquila/side.svg",
  23705. extra: 1054 / 1011,
  23706. bottom: 15 / 1070
  23707. }
  23708. },
  23709. back: {
  23710. height: math.unit(5 + 7 / 12, "feet"),
  23711. weight: math.unit(185, "lb"),
  23712. name: "Back",
  23713. image: {
  23714. source: "./media/characters/aman-aquila/back.svg",
  23715. extra: 1026 / 970,
  23716. bottom: 12 / 1039
  23717. }
  23718. },
  23719. head: {
  23720. height: math.unit(1.211, "feet"),
  23721. name: "Head",
  23722. image: {
  23723. source: "./media/characters/aman-aquila/head.svg",
  23724. }
  23725. },
  23726. },
  23727. [
  23728. {
  23729. name: "Minimicro",
  23730. height: math.unit(0.057, "inches")
  23731. },
  23732. {
  23733. name: "Micro",
  23734. height: math.unit(7, "inches")
  23735. },
  23736. {
  23737. name: "Mini",
  23738. height: math.unit(3 + 7 / 12, "feet")
  23739. },
  23740. {
  23741. name: "Normal",
  23742. height: math.unit(5 + 7 / 12, "feet"),
  23743. default: true
  23744. },
  23745. {
  23746. name: "Macro",
  23747. height: math.unit(157 + 7 / 12, "feet")
  23748. },
  23749. {
  23750. name: "Megamacro",
  23751. height: math.unit(1557 + 7 / 12, "feet")
  23752. },
  23753. {
  23754. name: "Gigamacro",
  23755. height: math.unit(15557 + 7 / 12, "feet")
  23756. },
  23757. ]
  23758. ))
  23759. characterMakers.push(() => makeCharacter(
  23760. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23761. {
  23762. front: {
  23763. height: math.unit(3 + 2 / 12, "inches"),
  23764. weight: math.unit(0.3, "ounces"),
  23765. name: "Front",
  23766. image: {
  23767. source: "./media/characters/hiphae/front.svg",
  23768. extra: 1931 / 1683,
  23769. bottom: 24 / 1955
  23770. }
  23771. },
  23772. },
  23773. [
  23774. {
  23775. name: "Normal",
  23776. height: math.unit(3 + 1 / 2, "inches"),
  23777. default: true
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23783. {
  23784. front: {
  23785. height: math.unit(5 + 10 / 12, "feet"),
  23786. weight: math.unit(165, "lb"),
  23787. name: "Front",
  23788. image: {
  23789. source: "./media/characters/nicky/front.svg",
  23790. extra: 3144 / 2886,
  23791. bottom: 45.6 / 3192
  23792. }
  23793. },
  23794. back: {
  23795. height: math.unit(5 + 10 / 12, "feet"),
  23796. weight: math.unit(165, "lb"),
  23797. name: "Back",
  23798. image: {
  23799. source: "./media/characters/nicky/back.svg",
  23800. extra: 3055 / 2804,
  23801. bottom: 28.4 / 3087
  23802. }
  23803. },
  23804. frontclothed: {
  23805. height: math.unit(5 + 10 / 12, "feet"),
  23806. weight: math.unit(165, "lb"),
  23807. name: "Front-clothed",
  23808. image: {
  23809. source: "./media/characters/nicky/front-clothed.svg",
  23810. extra: 3184.9 / 2926.9,
  23811. bottom: 86.5 / 3239.9
  23812. }
  23813. },
  23814. foot: {
  23815. height: math.unit(1.16, "feet"),
  23816. name: "Foot",
  23817. image: {
  23818. source: "./media/characters/nicky/foot.svg"
  23819. }
  23820. },
  23821. feet: {
  23822. height: math.unit(1.34, "feet"),
  23823. name: "Feet",
  23824. image: {
  23825. source: "./media/characters/nicky/feet.svg"
  23826. }
  23827. },
  23828. maw: {
  23829. height: math.unit(0.9, "feet"),
  23830. name: "Maw",
  23831. image: {
  23832. source: "./media/characters/nicky/maw.svg"
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Normal",
  23839. height: math.unit(5 + 10 / 12, "feet"),
  23840. default: true
  23841. },
  23842. {
  23843. name: "Macro",
  23844. height: math.unit(60, "feet")
  23845. },
  23846. {
  23847. name: "Megamacro",
  23848. height: math.unit(1, "mile")
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23854. {
  23855. side: {
  23856. height: math.unit(10, "feet"),
  23857. weight: math.unit(600, "lb"),
  23858. name: "Side",
  23859. image: {
  23860. source: "./media/characters/blair/side.svg",
  23861. bottom: 16.6 / 475,
  23862. extra: 458 / 431
  23863. }
  23864. },
  23865. },
  23866. [
  23867. {
  23868. name: "Micro",
  23869. height: math.unit(8, "inches")
  23870. },
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(10, "feet"),
  23874. default: true
  23875. },
  23876. {
  23877. name: "Macro",
  23878. height: math.unit(180, "feet")
  23879. },
  23880. ]
  23881. ))
  23882. characterMakers.push(() => makeCharacter(
  23883. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23884. {
  23885. front: {
  23886. height: math.unit(5 + 4 / 12, "feet"),
  23887. weight: math.unit(125, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/fisher/front.svg",
  23891. extra: 444 / 390,
  23892. bottom: 2 / 444.8
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Micro",
  23899. height: math.unit(4, "inches")
  23900. },
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(5 + 4 / 12, "feet"),
  23904. default: true
  23905. },
  23906. {
  23907. name: "Macro",
  23908. height: math.unit(100, "feet")
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(6.71, "feet"),
  23917. weight: math.unit(200, "lb"),
  23918. capacity: math.unit(1000000, "people"),
  23919. name: "Front",
  23920. image: {
  23921. source: "./media/characters/gliss/front.svg",
  23922. extra: 2347 / 2231,
  23923. bottom: 113 / 2462
  23924. }
  23925. },
  23926. hammerspaceSize: {
  23927. height: math.unit(6.71 * 717, "feet"),
  23928. weight: math.unit(200, "lb"),
  23929. capacity: math.unit(1000000, "people"),
  23930. name: "Hammerspace Size",
  23931. image: {
  23932. source: "./media/characters/gliss/front.svg",
  23933. extra: 2347 / 2231,
  23934. bottom: 113 / 2462
  23935. }
  23936. },
  23937. },
  23938. [
  23939. {
  23940. name: "Normal",
  23941. height: math.unit(6.71, "feet"),
  23942. default: true
  23943. },
  23944. ]
  23945. ))
  23946. characterMakers.push(() => makeCharacter(
  23947. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23948. {
  23949. side: {
  23950. height: math.unit(1.44, "m"),
  23951. weight: math.unit(80, "kg"),
  23952. name: "Side",
  23953. image: {
  23954. source: "./media/characters/dune-anderson/side.svg",
  23955. bottom: 49 / 1426
  23956. }
  23957. },
  23958. },
  23959. [
  23960. {
  23961. name: "Wolf-sized",
  23962. height: math.unit(1.44, "meters")
  23963. },
  23964. {
  23965. name: "Normal",
  23966. height: math.unit(5.05, "meters"),
  23967. default: true
  23968. },
  23969. {
  23970. name: "Big",
  23971. height: math.unit(14.4, "meters")
  23972. },
  23973. {
  23974. name: "Huge",
  23975. height: math.unit(144, "meters")
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23981. {
  23982. front: {
  23983. height: math.unit(7, "feet"),
  23984. weight: math.unit(425, "lb"),
  23985. name: "Front",
  23986. image: {
  23987. source: "./media/characters/hind/front.svg",
  23988. extra: 2091 / 1860,
  23989. bottom: 129 / 2220
  23990. }
  23991. },
  23992. back: {
  23993. height: math.unit(7, "feet"),
  23994. weight: math.unit(425, "lb"),
  23995. name: "Back",
  23996. image: {
  23997. source: "./media/characters/hind/back.svg",
  23998. extra: 2091 / 1860,
  23999. bottom: 24.6 / 2309
  24000. }
  24001. },
  24002. tail: {
  24003. height: math.unit(2.8, "feet"),
  24004. name: "Tail",
  24005. image: {
  24006. source: "./media/characters/hind/tail.svg"
  24007. }
  24008. },
  24009. head: {
  24010. height: math.unit(2.55, "feet"),
  24011. name: "Head",
  24012. image: {
  24013. source: "./media/characters/hind/head.svg"
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "XS",
  24020. height: math.unit(0.7, "feet")
  24021. },
  24022. {
  24023. name: "Normal",
  24024. height: math.unit(7, "feet"),
  24025. default: true
  24026. },
  24027. {
  24028. name: "XL",
  24029. height: math.unit(70, "feet")
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24035. {
  24036. front: {
  24037. height: math.unit(6, "feet"),
  24038. weight: math.unit(150, "lb"),
  24039. name: "Front",
  24040. image: {
  24041. source: "./media/characters/dylan-skaven/front.svg",
  24042. extra: 2318 / 2063,
  24043. bottom: 93.4 / 2410
  24044. }
  24045. },
  24046. },
  24047. [
  24048. {
  24049. name: "Nano",
  24050. height: math.unit(1, "mm")
  24051. },
  24052. {
  24053. name: "Micro",
  24054. height: math.unit(1, "cm")
  24055. },
  24056. {
  24057. name: "Normal",
  24058. height: math.unit(2.1, "meters"),
  24059. default: true
  24060. },
  24061. ]
  24062. ))
  24063. characterMakers.push(() => makeCharacter(
  24064. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24065. {
  24066. front: {
  24067. height: math.unit(7 + 5 / 12, "feet"),
  24068. weight: math.unit(357, "lb"),
  24069. name: "Front",
  24070. image: {
  24071. source: "./media/characters/solex-draconov/front.svg",
  24072. extra: 1993 / 1865,
  24073. bottom: 117 / 2111
  24074. }
  24075. },
  24076. },
  24077. [
  24078. {
  24079. name: "Natural Height",
  24080. height: math.unit(7 + 5 / 12, "feet"),
  24081. default: true
  24082. },
  24083. {
  24084. name: "Macro",
  24085. height: math.unit(350, "feet")
  24086. },
  24087. {
  24088. name: "Macro+",
  24089. height: math.unit(1000, "feet")
  24090. },
  24091. {
  24092. name: "Megamacro",
  24093. height: math.unit(20, "km")
  24094. },
  24095. {
  24096. name: "Megamacro+",
  24097. height: math.unit(1000, "km")
  24098. },
  24099. {
  24100. name: "Gigamacro",
  24101. height: math.unit(2.5, "Gm")
  24102. },
  24103. {
  24104. name: "Teramacro",
  24105. height: math.unit(15, "Tm")
  24106. },
  24107. {
  24108. name: "Galactic",
  24109. height: math.unit(30, "Zm")
  24110. },
  24111. {
  24112. name: "Universal",
  24113. height: math.unit(21000, "Ym")
  24114. },
  24115. {
  24116. name: "Omniversal",
  24117. height: math.unit(9.861e50, "Ym")
  24118. },
  24119. {
  24120. name: "Existential",
  24121. height: math.unit(1e300, "meters")
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24127. {
  24128. side: {
  24129. height: math.unit(25, "feet"),
  24130. weight: math.unit(90000, "lb"),
  24131. name: "Side",
  24132. image: {
  24133. source: "./media/characters/mandarax/side.svg",
  24134. extra: 614 / 332,
  24135. bottom: 55 / 630
  24136. }
  24137. },
  24138. head: {
  24139. height: math.unit(11.4, "feet"),
  24140. name: "Head",
  24141. image: {
  24142. source: "./media/characters/mandarax/head.svg"
  24143. }
  24144. },
  24145. belly: {
  24146. height: math.unit(33, "feet"),
  24147. name: "Belly",
  24148. capacity: math.unit(500, "people"),
  24149. image: {
  24150. source: "./media/characters/mandarax/belly.svg"
  24151. }
  24152. },
  24153. dick: {
  24154. height: math.unit(8.46, "feet"),
  24155. name: "Dick",
  24156. image: {
  24157. source: "./media/characters/mandarax/dick.svg"
  24158. }
  24159. },
  24160. top: {
  24161. height: math.unit(28, "meters"),
  24162. name: "Top",
  24163. image: {
  24164. source: "./media/characters/mandarax/top.svg"
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Normal",
  24171. height: math.unit(25, "feet"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(5, "feet"),
  24181. weight: math.unit(90, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/pixil/front.svg",
  24185. extra: 2000 / 1618,
  24186. bottom: 12.3 / 2011
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(5, "feet"),
  24194. default: true
  24195. },
  24196. {
  24197. name: "Megamacro",
  24198. height: math.unit(10, "miles"),
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(7 + 2 / 12, "feet"),
  24207. weight: math.unit(200, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/angel/front.svg",
  24211. extra: 1830 / 1737,
  24212. bottom: 22.6 / 1854,
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(7 + 2 / 12, "feet"),
  24220. default: true
  24221. },
  24222. {
  24223. name: "Macro",
  24224. height: math.unit(1000, "feet")
  24225. },
  24226. {
  24227. name: "Megamacro",
  24228. height: math.unit(2, "miles")
  24229. },
  24230. {
  24231. name: "Gigamacro",
  24232. height: math.unit(20, "earths")
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24238. {
  24239. front: {
  24240. height: math.unit(5, "feet"),
  24241. weight: math.unit(180, "lb"),
  24242. name: "Front",
  24243. image: {
  24244. source: "./media/characters/mekana/front.svg",
  24245. extra: 1671 / 1605,
  24246. bottom: 3.5 / 1691
  24247. }
  24248. },
  24249. side: {
  24250. height: math.unit(5, "feet"),
  24251. weight: math.unit(180, "lb"),
  24252. name: "Side",
  24253. image: {
  24254. source: "./media/characters/mekana/side.svg",
  24255. extra: 1671 / 1605,
  24256. bottom: 3.5 / 1691
  24257. }
  24258. },
  24259. back: {
  24260. height: math.unit(5, "feet"),
  24261. weight: math.unit(180, "lb"),
  24262. name: "Back",
  24263. image: {
  24264. source: "./media/characters/mekana/back.svg",
  24265. extra: 1671 / 1605,
  24266. bottom: 3.5 / 1691
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Normal",
  24273. height: math.unit(5, "feet"),
  24274. default: true
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24280. {
  24281. front: {
  24282. height: math.unit(4 + 6 / 12, "feet"),
  24283. weight: math.unit(80, "lb"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/pixie/front.svg",
  24287. extra: 1924 / 1825,
  24288. bottom: 22.4 / 1946
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Normal",
  24295. height: math.unit(4 + 6 / 12, "feet"),
  24296. default: true
  24297. },
  24298. {
  24299. name: "Macro",
  24300. height: math.unit(40, "feet")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(2.1, "meters"),
  24309. weight: math.unit(200, "lb"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/the-lascivious/front.svg",
  24313. extra: 1 / 0.893,
  24314. bottom: 3.5 / 573.7
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Human Scale",
  24321. height: math.unit(2.1, "meters")
  24322. },
  24323. {
  24324. name: "Wolxi Scale",
  24325. height: math.unit(46.2, "m"),
  24326. default: true
  24327. },
  24328. {
  24329. name: "Boinker of Buildings",
  24330. height: math.unit(10, "km")
  24331. },
  24332. {
  24333. name: "Shagger of Skyscrapers",
  24334. height: math.unit(40, "km")
  24335. },
  24336. {
  24337. name: "Banger of Boroughs",
  24338. height: math.unit(4000, "km")
  24339. },
  24340. {
  24341. name: "Screwer of States",
  24342. height: math.unit(100000, "km")
  24343. },
  24344. {
  24345. name: "Pounder of Planets",
  24346. height: math.unit(2000000, "km")
  24347. },
  24348. ]
  24349. ))
  24350. characterMakers.push(() => makeCharacter(
  24351. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24352. {
  24353. front: {
  24354. height: math.unit(6, "feet"),
  24355. weight: math.unit(150, "lb"),
  24356. name: "Front",
  24357. image: {
  24358. source: "./media/characters/aj/front.svg",
  24359. extra: 2039 / 1562,
  24360. bottom: 40 / 2079
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Normal",
  24367. height: math.unit(11 + 6 / 12, "feet"),
  24368. default: true
  24369. },
  24370. {
  24371. name: "Megamacro",
  24372. height: math.unit(60, "megameters")
  24373. },
  24374. ]
  24375. ))
  24376. characterMakers.push(() => makeCharacter(
  24377. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24378. {
  24379. side: {
  24380. height: math.unit(31 + 8 / 12, "feet"),
  24381. weight: math.unit(75000, "kg"),
  24382. name: "Side",
  24383. image: {
  24384. source: "./media/characters/koros/side.svg",
  24385. extra: 1442 / 1297,
  24386. bottom: 122.7 / 1562
  24387. }
  24388. },
  24389. dicksKingsCrown: {
  24390. height: math.unit(6, "feet"),
  24391. name: "Dicks (King's Crown)",
  24392. image: {
  24393. source: "./media/characters/koros/dicks-kings-crown.svg"
  24394. }
  24395. },
  24396. dicksTailSet: {
  24397. height: math.unit(3, "feet"),
  24398. name: "Dicks (Tail Set)",
  24399. image: {
  24400. source: "./media/characters/koros/dicks-tail-set.svg"
  24401. }
  24402. },
  24403. dickCumming: {
  24404. height: math.unit(7.98, "feet"),
  24405. name: "Dick (Cumming)",
  24406. image: {
  24407. source: "./media/characters/koros/dick-cumming.svg"
  24408. }
  24409. },
  24410. dicksBack: {
  24411. height: math.unit(5.9, "feet"),
  24412. name: "Dicks (Back)",
  24413. image: {
  24414. source: "./media/characters/koros/dicks-back.svg"
  24415. }
  24416. },
  24417. dicksFront: {
  24418. height: math.unit(3.72, "feet"),
  24419. name: "Dicks (Front)",
  24420. image: {
  24421. source: "./media/characters/koros/dicks-front.svg"
  24422. }
  24423. },
  24424. dicksPeeking: {
  24425. height: math.unit(3.0, "feet"),
  24426. name: "Dicks (Peeking)",
  24427. image: {
  24428. source: "./media/characters/koros/dicks-peeking.svg"
  24429. }
  24430. },
  24431. eye: {
  24432. height: math.unit(1.7, "feet"),
  24433. name: "Eye",
  24434. image: {
  24435. source: "./media/characters/koros/eye.svg"
  24436. }
  24437. },
  24438. headFront: {
  24439. height: math.unit(11.69, "feet"),
  24440. name: "Head (Front)",
  24441. image: {
  24442. source: "./media/characters/koros/head-front.svg"
  24443. }
  24444. },
  24445. headSide: {
  24446. height: math.unit(14, "feet"),
  24447. name: "Head (Side)",
  24448. image: {
  24449. source: "./media/characters/koros/head-side.svg"
  24450. }
  24451. },
  24452. leg: {
  24453. height: math.unit(17, "feet"),
  24454. name: "Leg",
  24455. image: {
  24456. source: "./media/characters/koros/leg.svg"
  24457. }
  24458. },
  24459. mawSide: {
  24460. height: math.unit(12.8, "feet"),
  24461. name: "Maw (Side)",
  24462. image: {
  24463. source: "./media/characters/koros/maw-side.svg"
  24464. }
  24465. },
  24466. mawSpitting: {
  24467. height: math.unit(17, "feet"),
  24468. name: "Maw (Spitting)",
  24469. image: {
  24470. source: "./media/characters/koros/maw-spitting.svg"
  24471. }
  24472. },
  24473. slit: {
  24474. height: math.unit(2.8, "feet"),
  24475. name: "Slit",
  24476. image: {
  24477. source: "./media/characters/koros/slit.svg"
  24478. }
  24479. },
  24480. stomach: {
  24481. height: math.unit(6.8, "feet"),
  24482. capacity: math.unit(20, "people"),
  24483. name: "Stomach",
  24484. image: {
  24485. source: "./media/characters/koros/stomach.svg"
  24486. }
  24487. },
  24488. wingspanBottom: {
  24489. height: math.unit(114, "feet"),
  24490. name: "Wingspan (Bottom)",
  24491. image: {
  24492. source: "./media/characters/koros/wingspan-bottom.svg"
  24493. }
  24494. },
  24495. wingspanTop: {
  24496. height: math.unit(104, "feet"),
  24497. name: "Wingspan (Top)",
  24498. image: {
  24499. source: "./media/characters/koros/wingspan-top.svg"
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(31 + 8 / 12, "feet"),
  24507. default: true
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24513. {
  24514. front: {
  24515. height: math.unit(18 + 5 / 12, "feet"),
  24516. weight: math.unit(3750, "kg"),
  24517. name: "Front",
  24518. image: {
  24519. source: "./media/characters/vexx/front.svg",
  24520. extra: 426 / 396,
  24521. bottom: 31.5 / 458
  24522. }
  24523. },
  24524. maw: {
  24525. height: math.unit(6, "feet"),
  24526. name: "Maw",
  24527. image: {
  24528. source: "./media/characters/vexx/maw.svg"
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "Normal",
  24535. height: math.unit(18 + 5 / 12, "feet"),
  24536. default: true
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24542. {
  24543. front: {
  24544. height: math.unit(17 + 6 / 12, "feet"),
  24545. weight: math.unit(150, "lb"),
  24546. name: "Front",
  24547. image: {
  24548. source: "./media/characters/baadra/front.svg",
  24549. extra: 3137 / 2890,
  24550. bottom: 168.4 / 3305
  24551. }
  24552. },
  24553. back: {
  24554. height: math.unit(17 + 6 / 12, "feet"),
  24555. weight: math.unit(150, "lb"),
  24556. name: "Back",
  24557. image: {
  24558. source: "./media/characters/baadra/back.svg",
  24559. extra: 3142 / 2890,
  24560. bottom: 220 / 3371
  24561. }
  24562. },
  24563. head: {
  24564. height: math.unit(5.45, "feet"),
  24565. name: "Head",
  24566. image: {
  24567. source: "./media/characters/baadra/head.svg"
  24568. }
  24569. },
  24570. headAngry: {
  24571. height: math.unit(4.95, "feet"),
  24572. name: "Head (Angry)",
  24573. image: {
  24574. source: "./media/characters/baadra/head-angry.svg"
  24575. }
  24576. },
  24577. headOpen: {
  24578. height: math.unit(6, "feet"),
  24579. name: "Head (Open)",
  24580. image: {
  24581. source: "./media/characters/baadra/head-open.svg"
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Normal",
  24588. height: math.unit(17 + 6 / 12, "feet"),
  24589. default: true
  24590. },
  24591. ]
  24592. ))
  24593. characterMakers.push(() => makeCharacter(
  24594. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24595. {
  24596. front: {
  24597. height: math.unit(7 + 3 / 12, "feet"),
  24598. weight: math.unit(180, "lb"),
  24599. name: "Front",
  24600. image: {
  24601. source: "./media/characters/juri/front.svg",
  24602. extra: 1401 / 1237,
  24603. bottom: 18.5 / 1418
  24604. }
  24605. },
  24606. side: {
  24607. height: math.unit(7 + 3 / 12, "feet"),
  24608. weight: math.unit(180, "lb"),
  24609. name: "Side",
  24610. image: {
  24611. source: "./media/characters/juri/side.svg",
  24612. extra: 1424 / 1242,
  24613. bottom: 18.5 / 1447
  24614. }
  24615. },
  24616. sitting: {
  24617. height: math.unit(6, "feet"),
  24618. weight: math.unit(180, "lb"),
  24619. name: "Sitting",
  24620. image: {
  24621. source: "./media/characters/juri/sitting.svg",
  24622. extra: 1270 / 1143,
  24623. bottom: 100 / 1343
  24624. }
  24625. },
  24626. back: {
  24627. height: math.unit(7 + 3 / 12, "feet"),
  24628. weight: math.unit(180, "lb"),
  24629. name: "Back",
  24630. image: {
  24631. source: "./media/characters/juri/back.svg",
  24632. extra: 1377 / 1240,
  24633. bottom: 23.7 / 1405
  24634. }
  24635. },
  24636. maw: {
  24637. height: math.unit(2.8, "feet"),
  24638. name: "Maw",
  24639. image: {
  24640. source: "./media/characters/juri/maw.svg"
  24641. }
  24642. },
  24643. stomach: {
  24644. height: math.unit(0.89, "feet"),
  24645. capacity: math.unit(4, "liters"),
  24646. name: "Stomach",
  24647. image: {
  24648. source: "./media/characters/juri/stomach.svg"
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(7 + 3 / 12, "feet"),
  24656. default: true
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24662. {
  24663. fox: {
  24664. height: math.unit(5 + 6 / 12, "feet"),
  24665. weight: math.unit(140, "lb"),
  24666. name: "Fox",
  24667. image: {
  24668. source: "./media/characters/maxene-sita/fox.svg",
  24669. extra: 146 / 138,
  24670. bottom: 2.1 / 148.19
  24671. }
  24672. },
  24673. kitsune: {
  24674. height: math.unit(10, "feet"),
  24675. weight: math.unit(800, "lb"),
  24676. name: "Kitsune",
  24677. image: {
  24678. source: "./media/characters/maxene-sita/kitsune.svg",
  24679. extra: 185 / 176,
  24680. bottom: 4.7 / 189.9
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(5 + 6 / 12, "feet"),
  24688. default: true
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24694. {
  24695. front: {
  24696. height: math.unit(3 + 4 / 12, "feet"),
  24697. weight: math.unit(70, "lb"),
  24698. name: "Front",
  24699. image: {
  24700. source: "./media/characters/maia/front.svg",
  24701. extra: 227 / 219.5,
  24702. bottom: 40 / 267
  24703. }
  24704. },
  24705. back: {
  24706. height: math.unit(3 + 4 / 12, "feet"),
  24707. weight: math.unit(70, "lb"),
  24708. name: "Back",
  24709. image: {
  24710. source: "./media/characters/maia/back.svg",
  24711. extra: 237 / 225
  24712. }
  24713. },
  24714. },
  24715. [
  24716. {
  24717. name: "Normal",
  24718. height: math.unit(3 + 4 / 12, "feet"),
  24719. default: true
  24720. },
  24721. ]
  24722. ))
  24723. characterMakers.push(() => makeCharacter(
  24724. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24725. {
  24726. front: {
  24727. height: math.unit(5 + 10 / 12, "feet"),
  24728. weight: math.unit(197, "lb"),
  24729. name: "Front",
  24730. image: {
  24731. source: "./media/characters/jabaro/front.svg",
  24732. extra: 225 / 216,
  24733. bottom: 5.06 / 230
  24734. }
  24735. },
  24736. back: {
  24737. height: math.unit(5 + 10 / 12, "feet"),
  24738. weight: math.unit(197, "lb"),
  24739. name: "Back",
  24740. image: {
  24741. source: "./media/characters/jabaro/back.svg",
  24742. extra: 225 / 219,
  24743. bottom: 1.9 / 227
  24744. }
  24745. },
  24746. },
  24747. [
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(5 + 10 / 12, "feet"),
  24751. default: true
  24752. },
  24753. ]
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24757. {
  24758. front: {
  24759. height: math.unit(5 + 8 / 12, "feet"),
  24760. weight: math.unit(139, "lb"),
  24761. name: "Front",
  24762. image: {
  24763. source: "./media/characters/risa/front.svg",
  24764. extra: 270 / 260,
  24765. bottom: 11.2 / 282
  24766. }
  24767. },
  24768. back: {
  24769. height: math.unit(5 + 8 / 12, "feet"),
  24770. weight: math.unit(139, "lb"),
  24771. name: "Back",
  24772. image: {
  24773. source: "./media/characters/risa/back.svg",
  24774. extra: 264 / 255,
  24775. bottom: 4 / 268
  24776. }
  24777. },
  24778. },
  24779. [
  24780. {
  24781. name: "Normal",
  24782. height: math.unit(5 + 8 / 12, "feet"),
  24783. default: true
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24789. {
  24790. front: {
  24791. height: math.unit(2 + 11 / 12, "feet"),
  24792. weight: math.unit(30, "lb"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/weatley/front.svg",
  24796. bottom: 10.7 / 414,
  24797. extra: 403.5 / 362
  24798. }
  24799. },
  24800. back: {
  24801. height: math.unit(2 + 11 / 12, "feet"),
  24802. weight: math.unit(30, "lb"),
  24803. name: "Back",
  24804. image: {
  24805. source: "./media/characters/weatley/back.svg",
  24806. bottom: 10.7 / 414,
  24807. extra: 403.5 / 362
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(2 + 11 / 12, "feet"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(5 + 2 / 12, "feet"),
  24824. weight: math.unit(50, "kg"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/mercury-crescent/front.svg",
  24828. extra: 1088 / 1033,
  24829. bottom: 18.9 / 1109
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Normal",
  24836. height: math.unit(5 + 2 / 12, "feet"),
  24837. default: true
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(2, "feet"),
  24846. weight: math.unit(15, "kg"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/diamond-jones/front.svg",
  24850. bottom: 16 / 568
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Normal",
  24857. height: math.unit(2, "feet"),
  24858. default: true
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24864. {
  24865. front: {
  24866. height: math.unit(3, "feet"),
  24867. weight: math.unit(30, "kg"),
  24868. name: "Front",
  24869. image: {
  24870. source: "./media/characters/sweet-bit/front.svg",
  24871. extra: 675 / 567,
  24872. bottom: 27.7 / 703
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Normal",
  24879. height: math.unit(3, "feet"),
  24880. default: true
  24881. },
  24882. ]
  24883. ))
  24884. characterMakers.push(() => makeCharacter(
  24885. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24886. {
  24887. side: {
  24888. height: math.unit(9.178, "feet"),
  24889. weight: math.unit(500, "lb"),
  24890. name: "Side",
  24891. image: {
  24892. source: "./media/characters/umbrazen/side.svg",
  24893. extra: 1730 / 1473,
  24894. bottom: 34.6 / 1765
  24895. }
  24896. },
  24897. },
  24898. [
  24899. {
  24900. name: "Normal",
  24901. height: math.unit(9.178, "feet"),
  24902. default: true
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24908. {
  24909. front: {
  24910. height: math.unit(10, "feet"),
  24911. weight: math.unit(750, "lb"),
  24912. name: "Front",
  24913. image: {
  24914. source: "./media/characters/arlist/front.svg",
  24915. extra: 961 / 778,
  24916. bottom: 6.2 / 986
  24917. }
  24918. },
  24919. },
  24920. [
  24921. {
  24922. name: "Normal",
  24923. height: math.unit(10, "feet"),
  24924. default: true
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24930. {
  24931. front: {
  24932. height: math.unit(5 + 1 / 12, "feet"),
  24933. weight: math.unit(110, "lb"),
  24934. name: "Front",
  24935. image: {
  24936. source: "./media/characters/aradel/front.svg",
  24937. extra: 324 / 303,
  24938. bottom: 3.6 / 329.4
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(5 + 1 / 12, "feet"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(3 + 8 / 12, "feet"),
  24955. weight: math.unit(50, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/serryn/front.svg",
  24959. extra: 1792 / 1656,
  24960. bottom: 43.5 / 1840
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Normal",
  24967. height: math.unit(3 + 8 / 12, "feet"),
  24968. default: true
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Xavier Thyme" },
  24974. {
  24975. front: {
  24976. height: math.unit(7 + 10 / 12, "feet"),
  24977. weight: math.unit(255, "lb"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/xavier-thyme/front.svg",
  24981. extra: 3733 / 3642,
  24982. bottom: 131 / 3869
  24983. }
  24984. },
  24985. frontRaven: {
  24986. height: math.unit(7 + 10 / 12, "feet"),
  24987. weight: math.unit(255, "lb"),
  24988. name: "Front (Raven)",
  24989. image: {
  24990. source: "./media/characters/xavier-thyme/front-raven.svg",
  24991. extra: 4385 / 3642,
  24992. bottom: 131 / 4517
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(7 + 10 / 12, "feet"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(1.6, "m"),
  25009. weight: math.unit(50, "kg"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/kiki/front.svg",
  25013. extra: 4682 / 3610,
  25014. bottom: 115 / 4777
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(1.6, "meters"),
  25022. default: true
  25023. },
  25024. ]
  25025. ))
  25026. characterMakers.push(() => makeCharacter(
  25027. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25028. {
  25029. front: {
  25030. height: math.unit(50, "m"),
  25031. weight: math.unit(500, "tonnes"),
  25032. name: "Front",
  25033. image: {
  25034. source: "./media/characters/ryoko/front.svg",
  25035. extra: 4632 / 3926,
  25036. bottom: 193 / 4823
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Normal",
  25043. height: math.unit(50, "meters"),
  25044. default: true
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25050. {
  25051. front: {
  25052. height: math.unit(30, "m"),
  25053. weight: math.unit(22, "tonnes"),
  25054. name: "Front",
  25055. image: {
  25056. source: "./media/characters/elio/front.svg",
  25057. extra: 4582 / 3720,
  25058. bottom: 236 / 4828
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Normal",
  25065. height: math.unit(30, "meters"),
  25066. default: true
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25072. {
  25073. front: {
  25074. height: math.unit(6 + 3 / 12, "feet"),
  25075. weight: math.unit(120, "lb"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/azura/front.svg",
  25079. extra: 1149 / 1135,
  25080. bottom: 45 / 1194
  25081. }
  25082. },
  25083. frontClothed: {
  25084. height: math.unit(6 + 3 / 12, "feet"),
  25085. weight: math.unit(120, "lb"),
  25086. name: "Front (Clothed)",
  25087. image: {
  25088. source: "./media/characters/azura/front-clothed.svg",
  25089. extra: 1149 / 1135,
  25090. bottom: 45 / 1194
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(6 + 3 / 12, "feet"),
  25098. default: true
  25099. },
  25100. {
  25101. name: "Macro",
  25102. height: math.unit(20 + 6 / 12, "feet")
  25103. },
  25104. {
  25105. name: "Megamacro",
  25106. height: math.unit(12, "miles")
  25107. },
  25108. {
  25109. name: "Gigamacro",
  25110. height: math.unit(10000, "miles")
  25111. },
  25112. {
  25113. name: "Teramacro",
  25114. height: math.unit(900000, "miles")
  25115. },
  25116. ]
  25117. ))
  25118. characterMakers.push(() => makeCharacter(
  25119. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25120. {
  25121. front: {
  25122. height: math.unit(12, "feet"),
  25123. weight: math.unit(1, "ton"),
  25124. capacity: math.unit(660000, "gallons"),
  25125. name: "Front",
  25126. image: {
  25127. source: "./media/characters/zeus/front.svg",
  25128. extra: 5005 / 4717,
  25129. bottom: 363 / 5388
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Normal",
  25136. height: math.unit(12, "feet")
  25137. },
  25138. {
  25139. name: "Preferred Size",
  25140. height: math.unit(0.5, "miles"),
  25141. default: true
  25142. },
  25143. {
  25144. name: "Giga Horse",
  25145. height: math.unit(300, "miles")
  25146. },
  25147. {
  25148. name: "Riding Planets",
  25149. height: math.unit(30, "megameters")
  25150. },
  25151. {
  25152. name: "Cosmic Giant",
  25153. height: math.unit(3, "zettameters")
  25154. },
  25155. {
  25156. name: "Breeding God",
  25157. height: math.unit(9.92e22, "yottameters")
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25163. {
  25164. side: {
  25165. height: math.unit(9, "feet"),
  25166. weight: math.unit(1500, "kg"),
  25167. name: "Side",
  25168. image: {
  25169. source: "./media/characters/fang/side.svg",
  25170. extra: 924 / 866,
  25171. bottom: 47.5 / 972.3
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(9, "feet"),
  25179. default: true
  25180. },
  25181. {
  25182. name: "Macro",
  25183. height: math.unit(75 + 6 / 12, "feet")
  25184. },
  25185. {
  25186. name: "Teramacro",
  25187. height: math.unit(50000, "miles")
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25193. {
  25194. front: {
  25195. height: math.unit(10, "feet"),
  25196. weight: math.unit(2, "tons"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/rekhit/front.svg",
  25200. extra: 2796 / 2590,
  25201. bottom: 225 / 3022
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(10, "feet"),
  25209. default: true
  25210. },
  25211. {
  25212. name: "Macro",
  25213. height: math.unit(500, "feet")
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Dahlia Verrick" },
  25219. {
  25220. front: {
  25221. height: math.unit(7 + 6.451 / 12, "feet"),
  25222. weight: math.unit(310, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/dahlia-verrick/front.svg",
  25226. extra: 1488 / 1365,
  25227. bottom: 6.2 / 1495
  25228. }
  25229. },
  25230. back: {
  25231. height: math.unit(7 + 6.451 / 12, "feet"),
  25232. weight: math.unit(310, "lb"),
  25233. name: "Back",
  25234. image: {
  25235. source: "./media/characters/dahlia-verrick/back.svg",
  25236. extra: 1472 / 1351,
  25237. bottom: 5.28 / 1477
  25238. }
  25239. },
  25240. frontBusiness: {
  25241. height: math.unit(7 + 6.451 / 12, "feet"),
  25242. weight: math.unit(200, "lb"),
  25243. name: "Front (Business)",
  25244. image: {
  25245. source: "./media/characters/dahlia-verrick/front-business.svg",
  25246. extra: 1478 / 1381,
  25247. bottom: 5.5 / 1484
  25248. }
  25249. },
  25250. frontCasual: {
  25251. height: math.unit(7 + 6.451 / 12, "feet"),
  25252. weight: math.unit(200, "lb"),
  25253. name: "Front (Casual)",
  25254. image: {
  25255. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25256. extra: 1478 / 1381,
  25257. bottom: 5.5 / 1484
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Travel-Sized",
  25264. height: math.unit(7.45, "inches")
  25265. },
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(7 + 6.451 / 12, "feet"),
  25269. default: true
  25270. },
  25271. {
  25272. name: "Hitting the Town",
  25273. height: math.unit(37 + 8 / 12, "feet")
  25274. },
  25275. {
  25276. name: "Stomp in the Suburbs",
  25277. height: math.unit(964 + 9.728 / 12, "feet")
  25278. },
  25279. {
  25280. name: "Sit on the City",
  25281. height: math.unit(61747 + 10.592 / 12, "feet")
  25282. },
  25283. {
  25284. name: "Glomp the Globe",
  25285. height: math.unit(252919327 + 4.832 / 12, "feet")
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25291. {
  25292. front: {
  25293. height: math.unit(6 + 4 / 12, "feet"),
  25294. weight: math.unit(320, "lb"),
  25295. name: "Front",
  25296. image: {
  25297. source: "./media/characters/balina-mahigan/front.svg",
  25298. extra: 447 / 428,
  25299. bottom: 18 / 466
  25300. }
  25301. },
  25302. back: {
  25303. height: math.unit(6 + 4 / 12, "feet"),
  25304. weight: math.unit(320, "lb"),
  25305. name: "Back",
  25306. image: {
  25307. source: "./media/characters/balina-mahigan/back.svg",
  25308. extra: 445 / 428,
  25309. bottom: 4.07 / 448
  25310. }
  25311. },
  25312. arm: {
  25313. height: math.unit(1.88, "feet"),
  25314. name: "Arm",
  25315. image: {
  25316. source: "./media/characters/balina-mahigan/arm.svg"
  25317. }
  25318. },
  25319. backPort: {
  25320. height: math.unit(0.685, "feet"),
  25321. name: "Back Port",
  25322. image: {
  25323. source: "./media/characters/balina-mahigan/back-port.svg"
  25324. }
  25325. },
  25326. hoofpaw: {
  25327. height: math.unit(1.41, "feet"),
  25328. name: "Hoofpaw",
  25329. image: {
  25330. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25331. }
  25332. },
  25333. leftHandBack: {
  25334. height: math.unit(0.938, "feet"),
  25335. name: "Left Hand (Back)",
  25336. image: {
  25337. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25338. }
  25339. },
  25340. leftHandFront: {
  25341. height: math.unit(0.938, "feet"),
  25342. name: "Left Hand (Front)",
  25343. image: {
  25344. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25345. }
  25346. },
  25347. rightHandBack: {
  25348. height: math.unit(0.95, "feet"),
  25349. name: "Right Hand (Back)",
  25350. image: {
  25351. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25352. }
  25353. },
  25354. rightHandFront: {
  25355. height: math.unit(0.95, "feet"),
  25356. name: "Right Hand (Front)",
  25357. image: {
  25358. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25359. }
  25360. },
  25361. },
  25362. [
  25363. {
  25364. name: "Normal",
  25365. height: math.unit(6 + 4 / 12, "feet"),
  25366. default: true
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(6, "feet"),
  25375. weight: math.unit(320, "lb"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/balina-mejeri/front.svg",
  25379. extra: 517 / 488,
  25380. bottom: 44.2 / 561
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Normal",
  25387. height: math.unit(6 + 4 / 12, "feet")
  25388. },
  25389. {
  25390. name: "Business",
  25391. height: math.unit(155, "feet"),
  25392. default: true
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25398. {
  25399. kneeling: {
  25400. height: math.unit(6 + 4 / 12, "feet"),
  25401. weight: math.unit(300 * 20, "lb"),
  25402. name: "Kneeling",
  25403. image: {
  25404. source: "./media/characters/balbarian/kneeling.svg",
  25405. extra: 922 / 862,
  25406. bottom: 42.4 / 965
  25407. }
  25408. },
  25409. },
  25410. [
  25411. {
  25412. name: "Normal",
  25413. height: math.unit(6 + 4 / 12, "feet")
  25414. },
  25415. {
  25416. name: "Treasured",
  25417. height: math.unit(18 + 9 / 12, "feet"),
  25418. default: true
  25419. },
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(900, "feet")
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25428. {
  25429. front: {
  25430. height: math.unit(6 + 4 / 12, "feet"),
  25431. weight: math.unit(325, "lb"),
  25432. name: "Front",
  25433. image: {
  25434. source: "./media/characters/balina-amarini/front.svg",
  25435. extra: 415 / 403,
  25436. bottom: 19 / 433.4
  25437. }
  25438. },
  25439. back: {
  25440. height: math.unit(6 + 4 / 12, "feet"),
  25441. weight: math.unit(325, "lb"),
  25442. name: "Back",
  25443. image: {
  25444. source: "./media/characters/balina-amarini/back.svg",
  25445. extra: 415 / 403,
  25446. bottom: 13.5 / 432
  25447. }
  25448. },
  25449. overdrive: {
  25450. height: math.unit(6 + 4 / 12, "feet"),
  25451. weight: math.unit(400, "lb"),
  25452. name: "Overdrive",
  25453. image: {
  25454. source: "./media/characters/balina-amarini/overdrive.svg",
  25455. extra: 269 / 259,
  25456. bottom: 12 / 282
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Boom",
  25463. height: math.unit(9 + 10 / 12, "feet"),
  25464. default: true
  25465. },
  25466. {
  25467. name: "Macro",
  25468. height: math.unit(280, "feet")
  25469. },
  25470. ]
  25471. ))
  25472. characterMakers.push(() => makeCharacter(
  25473. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25474. {
  25475. goddess: {
  25476. height: math.unit(600, "feet"),
  25477. weight: math.unit(2000000, "tons"),
  25478. name: "Goddess",
  25479. image: {
  25480. source: "./media/characters/lady-kubwa/goddess.svg",
  25481. extra: 1240.5 / 1223,
  25482. bottom: 22 / 1263
  25483. }
  25484. },
  25485. goddesser: {
  25486. height: math.unit(900, "feet"),
  25487. weight: math.unit(20000000, "lb"),
  25488. name: "Goddess-er",
  25489. image: {
  25490. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25491. extra: 899 / 888,
  25492. bottom: 12.6 / 912
  25493. }
  25494. },
  25495. },
  25496. [
  25497. {
  25498. name: "Macro",
  25499. height: math.unit(600, "feet"),
  25500. default: true
  25501. },
  25502. {
  25503. name: "Megamacro",
  25504. height: math.unit(250, "miles")
  25505. },
  25506. ]
  25507. ))
  25508. characterMakers.push(() => makeCharacter(
  25509. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25510. {
  25511. front: {
  25512. height: math.unit(7 + 7 / 12, "feet"),
  25513. weight: math.unit(250, "lb"),
  25514. name: "Front",
  25515. image: {
  25516. source: "./media/characters/tala-grovehorn/front.svg",
  25517. extra: 2636 / 2525,
  25518. bottom: 147 / 2781
  25519. }
  25520. },
  25521. back: {
  25522. height: math.unit(7 + 7 / 12, "feet"),
  25523. weight: math.unit(250, "lb"),
  25524. name: "Back",
  25525. image: {
  25526. source: "./media/characters/tala-grovehorn/back.svg",
  25527. extra: 2635 / 2539,
  25528. bottom: 100 / 2732.8
  25529. }
  25530. },
  25531. mouth: {
  25532. height: math.unit(1.15, "feet"),
  25533. name: "Mouth",
  25534. image: {
  25535. source: "./media/characters/tala-grovehorn/mouth.svg"
  25536. }
  25537. },
  25538. dick: {
  25539. height: math.unit(2.36, "feet"),
  25540. name: "Dick",
  25541. image: {
  25542. source: "./media/characters/tala-grovehorn/dick.svg"
  25543. }
  25544. },
  25545. slit: {
  25546. height: math.unit(0.61, "feet"),
  25547. name: "Slit",
  25548. image: {
  25549. source: "./media/characters/tala-grovehorn/slit.svg"
  25550. }
  25551. },
  25552. },
  25553. [
  25554. ]
  25555. ))
  25556. characterMakers.push(() => makeCharacter(
  25557. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25558. {
  25559. front: {
  25560. height: math.unit(7 + 7 / 12, "feet"),
  25561. weight: math.unit(225, "lb"),
  25562. name: "Front",
  25563. image: {
  25564. source: "./media/characters/epona/front.svg",
  25565. extra: 2445 / 2290,
  25566. bottom: 251 / 2696
  25567. }
  25568. },
  25569. back: {
  25570. height: math.unit(7 + 7 / 12, "feet"),
  25571. weight: math.unit(225, "lb"),
  25572. name: "Back",
  25573. image: {
  25574. source: "./media/characters/epona/back.svg",
  25575. extra: 2546 / 2408,
  25576. bottom: 44 / 2589
  25577. }
  25578. },
  25579. genitals: {
  25580. height: math.unit(1.5, "feet"),
  25581. name: "Genitals",
  25582. image: {
  25583. source: "./media/characters/epona/genitals.svg"
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(7 + 7 / 12, "feet")
  25591. },
  25592. ]
  25593. ))
  25594. characterMakers.push(() => makeCharacter(
  25595. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25596. {
  25597. front: {
  25598. height: math.unit(7, "feet"),
  25599. weight: math.unit(518, "lb"),
  25600. name: "Front",
  25601. image: {
  25602. source: "./media/characters/avia-bloodbourn/front.svg",
  25603. extra: 1466 / 1350,
  25604. bottom: 65 / 1527
  25605. }
  25606. },
  25607. },
  25608. [
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25613. {
  25614. front: {
  25615. height: math.unit(9.35, "feet"),
  25616. weight: math.unit(600, "lb"),
  25617. name: "Front",
  25618. image: {
  25619. source: "./media/characters/amera/front.svg",
  25620. extra: 891 / 818,
  25621. bottom: 30 / 922.7
  25622. }
  25623. },
  25624. back: {
  25625. height: math.unit(9.35, "feet"),
  25626. weight: math.unit(600, "lb"),
  25627. name: "Back",
  25628. image: {
  25629. source: "./media/characters/amera/back.svg",
  25630. extra: 876 / 824,
  25631. bottom: 6.8 / 884
  25632. }
  25633. },
  25634. dick: {
  25635. height: math.unit(2.14, "feet"),
  25636. name: "Dick",
  25637. image: {
  25638. source: "./media/characters/amera/dick.svg"
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Normal",
  25645. height: math.unit(9.35, "feet"),
  25646. default: true
  25647. },
  25648. ]
  25649. ))
  25650. characterMakers.push(() => makeCharacter(
  25651. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25652. {
  25653. kneeling: {
  25654. height: math.unit(3 + 4 / 12, "feet"),
  25655. weight: math.unit(90, "lb"),
  25656. name: "Kneeling",
  25657. image: {
  25658. source: "./media/characters/rosewen/kneeling.svg",
  25659. extra: 1835 / 1571,
  25660. bottom: 27.7 / 1862
  25661. }
  25662. },
  25663. },
  25664. [
  25665. {
  25666. name: "Normal",
  25667. height: math.unit(3 + 4 / 12, "feet"),
  25668. default: true
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25674. {
  25675. front: {
  25676. height: math.unit(5 + 10 / 12, "feet"),
  25677. weight: math.unit(200, "lb"),
  25678. name: "Front",
  25679. image: {
  25680. source: "./media/characters/sabah/front.svg",
  25681. extra: 849 / 763,
  25682. bottom: 33.9 / 881
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(5 + 10 / 12, "feet"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25696. {
  25697. front: {
  25698. height: math.unit(3 + 5 / 12, "feet"),
  25699. weight: math.unit(40, "kg"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/purple-flame/front.svg",
  25703. extra: 1577 / 1412,
  25704. bottom: 97 / 1694
  25705. }
  25706. },
  25707. frontDressed: {
  25708. height: math.unit(3 + 5 / 12, "feet"),
  25709. weight: math.unit(40, "kg"),
  25710. name: "Front (Dressed)",
  25711. image: {
  25712. source: "./media/characters/purple-flame/front-dressed.svg",
  25713. extra: 1577 / 1412,
  25714. bottom: 97 / 1694
  25715. }
  25716. },
  25717. headphones: {
  25718. height: math.unit(0.85, "feet"),
  25719. name: "Headphones",
  25720. image: {
  25721. source: "./media/characters/purple-flame/headphones.svg"
  25722. }
  25723. },
  25724. },
  25725. [
  25726. {
  25727. name: "Really Small",
  25728. height: math.unit(5, "cm")
  25729. },
  25730. {
  25731. name: "Micro",
  25732. height: math.unit(1 + 5 / 12, "feet")
  25733. },
  25734. {
  25735. name: "Normal",
  25736. height: math.unit(3 + 5 / 12, "feet"),
  25737. default: true
  25738. },
  25739. {
  25740. name: "Minimacro",
  25741. height: math.unit(125, "feet")
  25742. },
  25743. {
  25744. name: "Macro",
  25745. height: math.unit(0.5, "miles")
  25746. },
  25747. {
  25748. name: "Megamacro",
  25749. height: math.unit(50, "miles")
  25750. },
  25751. {
  25752. name: "Gigantic",
  25753. height: math.unit(750, "miles")
  25754. },
  25755. {
  25756. name: "Planetary",
  25757. height: math.unit(15000, "miles")
  25758. },
  25759. ]
  25760. ))
  25761. characterMakers.push(() => makeCharacter(
  25762. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25763. {
  25764. front: {
  25765. height: math.unit(14, "feet"),
  25766. weight: math.unit(959, "lb"),
  25767. name: "Front",
  25768. image: {
  25769. source: "./media/characters/arsenal/front.svg",
  25770. extra: 2357 / 2157,
  25771. bottom: 93 / 2458
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Normal",
  25778. height: math.unit(14, "feet"),
  25779. default: true
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25785. {
  25786. front: {
  25787. height: math.unit(6, "feet"),
  25788. weight: math.unit(150, "lb"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/adira/front.svg",
  25792. extra: 1078 / 1029,
  25793. bottom: 87 / 1166
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Micro",
  25800. height: math.unit(4, "inches"),
  25801. default: true
  25802. },
  25803. {
  25804. name: "Macro",
  25805. height: math.unit(50, "feet")
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(16, "feet"),
  25814. weight: math.unit(1000, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/grim/front.svg",
  25818. extra: 622 / 614,
  25819. bottom: 18.1 / 642
  25820. }
  25821. },
  25822. back: {
  25823. height: math.unit(16, "feet"),
  25824. weight: math.unit(1000, "lb"),
  25825. name: "Back",
  25826. image: {
  25827. source: "./media/characters/grim/back.svg",
  25828. extra: 610.6 / 602,
  25829. bottom: 40.8 / 652
  25830. }
  25831. },
  25832. hunched: {
  25833. height: math.unit(9.75, "feet"),
  25834. weight: math.unit(1000, "lb"),
  25835. name: "Hunched",
  25836. image: {
  25837. source: "./media/characters/grim/hunched.svg",
  25838. extra: 304 / 297,
  25839. bottom: 35.4 / 394
  25840. }
  25841. },
  25842. },
  25843. [
  25844. {
  25845. name: "Normal",
  25846. height: math.unit(16, "feet"),
  25847. default: true
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(2.3, "meters"),
  25856. weight: math.unit(300, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/sinja/front-sfw.svg",
  25860. extra: 1393 / 1294,
  25861. bottom: 70 / 1463
  25862. }
  25863. },
  25864. frontNsfw: {
  25865. height: math.unit(2.3, "meters"),
  25866. weight: math.unit(300, "lb"),
  25867. name: "Front (NSFW)",
  25868. image: {
  25869. source: "./media/characters/sinja/front-nsfw.svg",
  25870. extra: 1393 / 1294,
  25871. bottom: 70 / 1463
  25872. }
  25873. },
  25874. back: {
  25875. height: math.unit(2.3, "meters"),
  25876. weight: math.unit(300, "lb"),
  25877. name: "Back",
  25878. image: {
  25879. source: "./media/characters/sinja/back.svg",
  25880. extra: 1393 / 1294,
  25881. bottom: 70 / 1463
  25882. }
  25883. },
  25884. head: {
  25885. height: math.unit(1.771, "feet"),
  25886. name: "Head",
  25887. image: {
  25888. source: "./media/characters/sinja/head.svg"
  25889. }
  25890. },
  25891. slit: {
  25892. height: math.unit(0.8, "feet"),
  25893. name: "Slit",
  25894. image: {
  25895. source: "./media/characters/sinja/slit.svg"
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Normal",
  25902. height: math.unit(2.3, "meters")
  25903. },
  25904. {
  25905. name: "Macro",
  25906. height: math.unit(91, "meters"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Megamacro",
  25911. height: math.unit(91440, "meters")
  25912. },
  25913. {
  25914. name: "Gigamacro",
  25915. height: math.unit(60960000, "meters")
  25916. },
  25917. {
  25918. name: "Teramacro",
  25919. height: math.unit(9144000000, "meters")
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(1.7, "meters"),
  25928. weight: math.unit(130, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/kyu/front.svg",
  25932. extra: 415 / 395,
  25933. bottom: 5 / 420
  25934. }
  25935. },
  25936. head: {
  25937. height: math.unit(1.75, "feet"),
  25938. name: "Head",
  25939. image: {
  25940. source: "./media/characters/kyu/head.svg"
  25941. }
  25942. },
  25943. foot: {
  25944. height: math.unit(0.81, "feet"),
  25945. name: "Foot",
  25946. image: {
  25947. source: "./media/characters/kyu/foot.svg"
  25948. }
  25949. },
  25950. },
  25951. [
  25952. {
  25953. name: "Normal",
  25954. height: math.unit(1.7, "meters")
  25955. },
  25956. {
  25957. name: "Macro",
  25958. height: math.unit(131, "feet"),
  25959. default: true
  25960. },
  25961. {
  25962. name: "Megamacro",
  25963. height: math.unit(91440, "meters")
  25964. },
  25965. {
  25966. name: "Gigamacro",
  25967. height: math.unit(60960000, "meters")
  25968. },
  25969. {
  25970. name: "Teramacro",
  25971. height: math.unit(9144000000, "meters")
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25977. {
  25978. front: {
  25979. height: math.unit(7 + 1 / 12, "feet"),
  25980. weight: math.unit(250, "lb"),
  25981. name: "Front",
  25982. image: {
  25983. source: "./media/characters/joey/front.svg",
  25984. extra: 1791 / 1537,
  25985. bottom: 28 / 1816
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Micro",
  25992. height: math.unit(3, "inches")
  25993. },
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(7 + 1 / 12, "feet"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26003. {
  26004. front: {
  26005. height: math.unit(165, "cm"),
  26006. weight: math.unit(140, "lb"),
  26007. name: "Front",
  26008. image: {
  26009. source: "./media/characters/sam-evans/front.svg",
  26010. extra: 3417 / 3230,
  26011. bottom: 41.3 / 3417
  26012. }
  26013. },
  26014. frontSixTails: {
  26015. height: math.unit(165, "cm"),
  26016. weight: math.unit(140, "lb"),
  26017. name: "Front-six-tails",
  26018. image: {
  26019. source: "./media/characters/sam-evans/front-six-tails.svg",
  26020. extra: 3417 / 3230,
  26021. bottom: 41.3 / 3417
  26022. }
  26023. },
  26024. back: {
  26025. height: math.unit(165, "cm"),
  26026. weight: math.unit(140, "lb"),
  26027. name: "Back",
  26028. image: {
  26029. source: "./media/characters/sam-evans/back.svg",
  26030. extra: 3227 / 3032,
  26031. bottom: 6.8 / 3234
  26032. }
  26033. },
  26034. face: {
  26035. height: math.unit(0.68, "feet"),
  26036. name: "Face",
  26037. image: {
  26038. source: "./media/characters/sam-evans/face.svg"
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(165, "cm"),
  26046. default: true
  26047. },
  26048. {
  26049. name: "Macro",
  26050. height: math.unit(100, "meters")
  26051. },
  26052. {
  26053. name: "Macro+",
  26054. height: math.unit(800, "meters")
  26055. },
  26056. {
  26057. name: "Macro++",
  26058. height: math.unit(3, "km")
  26059. },
  26060. {
  26061. name: "Macro+++",
  26062. height: math.unit(30, "km")
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26068. {
  26069. front: {
  26070. height: math.unit(10, "feet"),
  26071. weight: math.unit(750, "lb"),
  26072. name: "Front",
  26073. image: {
  26074. source: "./media/characters/juliet-a/front.svg",
  26075. extra: 1766 / 1720,
  26076. bottom: 43 / 1809
  26077. }
  26078. },
  26079. back: {
  26080. height: math.unit(10, "feet"),
  26081. weight: math.unit(750, "lb"),
  26082. name: "Back",
  26083. image: {
  26084. source: "./media/characters/juliet-a/back.svg",
  26085. extra: 1781 / 1734,
  26086. bottom: 35 / 1810,
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(10, "feet"),
  26094. default: true
  26095. },
  26096. {
  26097. name: "Dragon Form",
  26098. height: math.unit(250, "feet")
  26099. },
  26100. {
  26101. name: "Macro",
  26102. height: math.unit(1000, "feet")
  26103. },
  26104. {
  26105. name: "Megamacro",
  26106. height: math.unit(10000, "feet")
  26107. }
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26112. {
  26113. regular: {
  26114. height: math.unit(7 + 3 / 12, "feet"),
  26115. weight: math.unit(260, "lb"),
  26116. name: "Regular",
  26117. image: {
  26118. source: "./media/characters/wild/regular.svg",
  26119. extra: 97.45 / 92,
  26120. bottom: 6.8 / 104.3
  26121. }
  26122. },
  26123. biggums: {
  26124. height: math.unit(8 + 6 / 12, "feet"),
  26125. weight: math.unit(425, "lb"),
  26126. name: "Biggums",
  26127. image: {
  26128. source: "./media/characters/wild/biggums.svg",
  26129. extra: 97.45 / 92,
  26130. bottom: 7.5 / 132.34
  26131. }
  26132. },
  26133. mawRegular: {
  26134. height: math.unit(1.24, "feet"),
  26135. name: "Maw (Regular)",
  26136. image: {
  26137. source: "./media/characters/wild/maw.svg"
  26138. }
  26139. },
  26140. mawBiggums: {
  26141. height: math.unit(1.47, "feet"),
  26142. name: "Maw (Biggums)",
  26143. image: {
  26144. source: "./media/characters/wild/maw.svg"
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Normal",
  26151. height: math.unit(7 + 3 / 12, "feet"),
  26152. default: true
  26153. },
  26154. ]
  26155. ))
  26156. characterMakers.push(() => makeCharacter(
  26157. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26158. {
  26159. front: {
  26160. height: math.unit(2.5, "meters"),
  26161. weight: math.unit(200, "kg"),
  26162. name: "Front",
  26163. image: {
  26164. source: "./media/characters/vidar/front.svg",
  26165. extra: 2994 / 2795,
  26166. bottom: 56 / 3061
  26167. }
  26168. },
  26169. back: {
  26170. height: math.unit(2.5, "meters"),
  26171. weight: math.unit(200, "kg"),
  26172. name: "Back",
  26173. image: {
  26174. source: "./media/characters/vidar/back.svg",
  26175. extra: 3131 / 2928,
  26176. bottom: 13.5 / 3141.5
  26177. }
  26178. },
  26179. feral: {
  26180. height: math.unit(2.5, "meters"),
  26181. weight: math.unit(2000, "kg"),
  26182. name: "Feral",
  26183. image: {
  26184. source: "./media/characters/vidar/feral.svg",
  26185. extra: 2790 / 1765,
  26186. bottom: 6 / 2796
  26187. }
  26188. },
  26189. },
  26190. [
  26191. {
  26192. name: "Normal",
  26193. height: math.unit(2.5, "meters"),
  26194. default: true
  26195. },
  26196. {
  26197. name: "Macro",
  26198. height: math.unit(100, "meters")
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(5 + 9 / 12, "feet"),
  26207. weight: math.unit(120, "lb"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/ash/front.svg",
  26211. extra: 2189 / 1961,
  26212. bottom: 5.2 / 2194
  26213. }
  26214. },
  26215. },
  26216. [
  26217. {
  26218. name: "Normal",
  26219. height: math.unit(5 + 9 / 12, "feet"),
  26220. default: true
  26221. },
  26222. ]
  26223. ))
  26224. characterMakers.push(() => makeCharacter(
  26225. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26226. {
  26227. front: {
  26228. height: math.unit(9, "feet"),
  26229. weight: math.unit(10000, "lb"),
  26230. name: "Front",
  26231. image: {
  26232. source: "./media/characters/gygabite/front.svg",
  26233. bottom: 31.7 / 537.8,
  26234. extra: 505 / 370
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(9, "feet"),
  26242. default: true
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26248. {
  26249. front: {
  26250. height: math.unit(12, "feet"),
  26251. weight: math.unit(35000, "lb"),
  26252. name: "Front",
  26253. image: {
  26254. source: "./media/characters/p0tat0/front.svg",
  26255. extra: 1065 / 921,
  26256. bottom: 55.7 / 1121.25
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Normal",
  26263. height: math.unit(12, "feet"),
  26264. default: true
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26270. {
  26271. side: {
  26272. height: math.unit(6.5, "feet"),
  26273. weight: math.unit(800, "lb"),
  26274. name: "Side",
  26275. image: {
  26276. source: "./media/characters/dusk/side.svg",
  26277. extra: 615 / 373,
  26278. bottom: 53 / 664
  26279. }
  26280. },
  26281. sitting: {
  26282. height: math.unit(7, "feet"),
  26283. weight: math.unit(800, "lb"),
  26284. name: "Sitting",
  26285. image: {
  26286. source: "./media/characters/dusk/sitting.svg",
  26287. extra: 753 / 425,
  26288. bottom: 33 / 774
  26289. }
  26290. },
  26291. head: {
  26292. height: math.unit(6.1, "feet"),
  26293. name: "Head",
  26294. image: {
  26295. source: "./media/characters/dusk/head.svg"
  26296. }
  26297. },
  26298. },
  26299. [
  26300. {
  26301. name: "Normal",
  26302. height: math.unit(7, "feet"),
  26303. default: true
  26304. },
  26305. ]
  26306. ))
  26307. characterMakers.push(() => makeCharacter(
  26308. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26309. {
  26310. front: {
  26311. height: math.unit(15, "feet"),
  26312. weight: math.unit(7000, "lb"),
  26313. name: "Front",
  26314. image: {
  26315. source: "./media/characters/jay-direwolf/front.svg",
  26316. extra: 1810 / 1732,
  26317. bottom: 66 / 1892
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Normal",
  26324. height: math.unit(15, "feet"),
  26325. default: true
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26331. {
  26332. front: {
  26333. height: math.unit(4 + 9 / 12, "feet"),
  26334. weight: math.unit(130, "lb"),
  26335. name: "Front",
  26336. image: {
  26337. source: "./media/characters/anchovie/front.svg",
  26338. extra: 382 / 350,
  26339. bottom: 25 / 409
  26340. }
  26341. },
  26342. back: {
  26343. height: math.unit(4 + 9 / 12, "feet"),
  26344. weight: math.unit(130, "lb"),
  26345. name: "Back",
  26346. image: {
  26347. source: "./media/characters/anchovie/back.svg",
  26348. extra: 385 / 352,
  26349. bottom: 16.6 / 402
  26350. }
  26351. },
  26352. frontDressed: {
  26353. height: math.unit(4 + 9 / 12, "feet"),
  26354. weight: math.unit(130, "lb"),
  26355. name: "Front (Dressed)",
  26356. image: {
  26357. source: "./media/characters/anchovie/front-dressed.svg",
  26358. extra: 382 / 350,
  26359. bottom: 25 / 409
  26360. }
  26361. },
  26362. backDressed: {
  26363. height: math.unit(4 + 9 / 12, "feet"),
  26364. weight: math.unit(130, "lb"),
  26365. name: "Back (Dressed)",
  26366. image: {
  26367. source: "./media/characters/anchovie/back-dressed.svg",
  26368. extra: 385 / 352,
  26369. bottom: 16.6 / 402
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Micro",
  26376. height: math.unit(6.4, "inches")
  26377. },
  26378. {
  26379. name: "Normal",
  26380. height: math.unit(4 + 9 / 12, "feet"),
  26381. default: true
  26382. },
  26383. ]
  26384. ))
  26385. characterMakers.push(() => makeCharacter(
  26386. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26387. {
  26388. front: {
  26389. height: math.unit(2, "meters"),
  26390. weight: math.unit(180, "lb"),
  26391. name: "Front",
  26392. image: {
  26393. source: "./media/characters/acidrenamon/front.svg",
  26394. extra: 987 / 890,
  26395. bottom: 22.8 / 1009
  26396. }
  26397. },
  26398. back: {
  26399. height: math.unit(2, "meters"),
  26400. weight: math.unit(180, "lb"),
  26401. name: "Back",
  26402. image: {
  26403. source: "./media/characters/acidrenamon/back.svg",
  26404. extra: 983 / 891,
  26405. bottom: 8.4 / 992
  26406. }
  26407. },
  26408. head: {
  26409. height: math.unit(1.92, "feet"),
  26410. name: "Head",
  26411. image: {
  26412. source: "./media/characters/acidrenamon/head.svg"
  26413. }
  26414. },
  26415. rump: {
  26416. height: math.unit(1.72, "feet"),
  26417. name: "Rump",
  26418. image: {
  26419. source: "./media/characters/acidrenamon/rump.svg"
  26420. }
  26421. },
  26422. tail: {
  26423. height: math.unit(4.2, "feet"),
  26424. name: "Tail",
  26425. image: {
  26426. source: "./media/characters/acidrenamon/tail.svg"
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Normal",
  26433. height: math.unit(2, "meters"),
  26434. default: true
  26435. },
  26436. {
  26437. name: "Minimacro",
  26438. height: math.unit(7, "meters")
  26439. },
  26440. {
  26441. name: "Macro",
  26442. height: math.unit(200, "meters")
  26443. },
  26444. {
  26445. name: "Gigamacro",
  26446. height: math.unit(0.2, "earths")
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(6, "feet"),
  26455. weight: math.unit(150, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/kenzie-lee/front.svg",
  26459. extra: 1525 / 1465,
  26460. bottom: 45 / 1570
  26461. }
  26462. },
  26463. side: {
  26464. height: math.unit(6, "feet"),
  26465. weight: math.unit(150, "lb"),
  26466. name: "Side",
  26467. image: {
  26468. source: "./media/characters/kenzie-lee/side.svg",
  26469. extra: 5505 / 5383,
  26470. bottom: 60 / 5573
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(152, "feet"),
  26478. default: true
  26479. },
  26480. {
  26481. name: "Megamacro",
  26482. height: math.unit(7, "miles")
  26483. },
  26484. {
  26485. name: "Gigamacro",
  26486. height: math.unit(8000, "miles")
  26487. },
  26488. ]
  26489. ))
  26490. characterMakers.push(() => makeCharacter(
  26491. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26492. {
  26493. side: {
  26494. height: math.unit(6, "feet"),
  26495. weight: math.unit(150, "lb"),
  26496. name: "Side",
  26497. image: {
  26498. source: "./media/characters/withers/side.svg",
  26499. extra: 1830 / 1728,
  26500. bottom: 96 / 1927
  26501. }
  26502. },
  26503. front: {
  26504. height: math.unit(6, "feet"),
  26505. weight: math.unit(150, "lb"),
  26506. name: "Front",
  26507. image: {
  26508. source: "./media/characters/withers/front.svg",
  26509. extra: 1514 / 1438,
  26510. bottom: 118 / 1632
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Normal",
  26517. height: math.unit(6, "feet")
  26518. },
  26519. {
  26520. name: "Macro",
  26521. height: math.unit(50, "feet")
  26522. },
  26523. {
  26524. name: "Megamacro",
  26525. height: math.unit(15, "miles"),
  26526. default: true
  26527. },
  26528. {
  26529. name: "Megamacro+",
  26530. height: math.unit(100, "km")
  26531. },
  26532. {
  26533. name: "Gigamacro",
  26534. height: math.unit(4750, "miles")
  26535. },
  26536. {
  26537. name: "Gigamacro+",
  26538. height: math.unit(32000, "miles")
  26539. },
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26544. {
  26545. front: {
  26546. height: math.unit(6 + 7 / 12, "feet"),
  26547. weight: math.unit(250, "lb"),
  26548. name: "Front",
  26549. image: {
  26550. source: "./media/characters/nemoskii/front.svg",
  26551. extra: 2270 / 1734,
  26552. bottom: 86 / 2354
  26553. }
  26554. },
  26555. back: {
  26556. height: math.unit(6 + 7 / 12, "feet"),
  26557. weight: math.unit(250, "lb"),
  26558. name: "Back",
  26559. image: {
  26560. source: "./media/characters/nemoskii/back.svg",
  26561. extra: 1845 / 1788,
  26562. bottom: 10.5 / 1852
  26563. }
  26564. },
  26565. head: {
  26566. height: math.unit(1.31, "feet"),
  26567. name: "Head",
  26568. image: {
  26569. source: "./media/characters/nemoskii/head.svg"
  26570. }
  26571. },
  26572. },
  26573. [
  26574. {
  26575. name: "Normal",
  26576. height: math.unit(6 + 7 / 12, "feet"),
  26577. default: true
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(1, "mile"),
  26586. weight: math.unit(265261.9, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/shui/front.svg",
  26590. extra: 1633 / 1564,
  26591. bottom: 91.5 / 1726
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Macro",
  26598. height: math.unit(1, "mile"),
  26599. default: true
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26605. {
  26606. front: {
  26607. height: math.unit(12 + 6 / 12, "feet"),
  26608. weight: math.unit(1342, "lb"),
  26609. name: "Front",
  26610. image: {
  26611. source: "./media/characters/arokh-takakura/front.svg",
  26612. extra: 1089 / 1043,
  26613. bottom: 77.4 / 1176.7
  26614. }
  26615. },
  26616. back: {
  26617. height: math.unit(12 + 6 / 12, "feet"),
  26618. weight: math.unit(1342, "lb"),
  26619. name: "Back",
  26620. image: {
  26621. source: "./media/characters/arokh-takakura/back.svg",
  26622. extra: 1046 / 1019,
  26623. bottom: 102 / 1150
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Big",
  26630. height: math.unit(12 + 6 / 12, "feet"),
  26631. default: true
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26637. {
  26638. front: {
  26639. height: math.unit(5 + 6 / 12, "feet"),
  26640. weight: math.unit(150, "lb"),
  26641. name: "Front",
  26642. image: {
  26643. source: "./media/characters/theo/front.svg",
  26644. extra: 1184 / 1131,
  26645. bottom: 7.4 / 1191
  26646. }
  26647. },
  26648. },
  26649. [
  26650. {
  26651. name: "Micro",
  26652. height: math.unit(5, "inches")
  26653. },
  26654. {
  26655. name: "Normal",
  26656. height: math.unit(5 + 6 / 12, "feet"),
  26657. default: true
  26658. },
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26663. {
  26664. front: {
  26665. height: math.unit(5 + 9 / 12, "feet"),
  26666. weight: math.unit(130, "lb"),
  26667. name: "Front",
  26668. image: {
  26669. source: "./media/characters/cecelia-swift/front.svg",
  26670. extra: 502 / 484,
  26671. bottom: 23 / 523
  26672. }
  26673. },
  26674. back: {
  26675. height: math.unit(5 + 9 / 12, "feet"),
  26676. weight: math.unit(130, "lb"),
  26677. name: "Back",
  26678. image: {
  26679. source: "./media/characters/cecelia-swift/back.svg",
  26680. extra: 499 / 485,
  26681. bottom: 12 / 511
  26682. }
  26683. },
  26684. head: {
  26685. height: math.unit(0.90, "feet"),
  26686. name: "Head",
  26687. image: {
  26688. source: "./media/characters/cecelia-swift/head.svg"
  26689. }
  26690. },
  26691. rump: {
  26692. height: math.unit(1.75, "feet"),
  26693. name: "Rump",
  26694. image: {
  26695. source: "./media/characters/cecelia-swift/rump.svg"
  26696. }
  26697. },
  26698. },
  26699. [
  26700. {
  26701. name: "Normal",
  26702. height: math.unit(5 + 9 / 12, "feet"),
  26703. default: true
  26704. },
  26705. {
  26706. name: "Big",
  26707. height: math.unit(50, "feet")
  26708. },
  26709. {
  26710. name: "Macro",
  26711. height: math.unit(100, "feet")
  26712. },
  26713. {
  26714. name: "Macro+",
  26715. height: math.unit(500, "feet")
  26716. },
  26717. {
  26718. name: "Macro++",
  26719. height: math.unit(1000, "feet")
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(6, "feet"),
  26728. weight: math.unit(150, "lb"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/kaunan/front.svg",
  26732. extra: 2890 / 2523,
  26733. bottom: 49 / 2939
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Macro",
  26740. height: math.unit(150, "feet"),
  26741. default: true
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26747. {
  26748. front: {
  26749. height: math.unit(175, "cm"),
  26750. weight: math.unit(60, "kg"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/fei/front.svg",
  26754. extra: 2581 / 2400,
  26755. bottom: 82.2 / 2663
  26756. }
  26757. },
  26758. },
  26759. [
  26760. {
  26761. name: "Mortal",
  26762. height: math.unit(175, "cm")
  26763. },
  26764. {
  26765. name: "Normal",
  26766. height: math.unit(3500, "m"),
  26767. default: true
  26768. },
  26769. {
  26770. name: "Stroll",
  26771. height: math.unit(17.5, "km")
  26772. },
  26773. {
  26774. name: "Showoff",
  26775. height: math.unit(175, "km")
  26776. },
  26777. ]
  26778. ))
  26779. characterMakers.push(() => makeCharacter(
  26780. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26781. {
  26782. front: {
  26783. height: math.unit(7, "feet"),
  26784. weight: math.unit(1000, "kg"),
  26785. name: "Front",
  26786. image: {
  26787. source: "./media/characters/edrax/front.svg",
  26788. extra: 2838 / 2550,
  26789. bottom: 130 / 2968
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Small",
  26796. height: math.unit(7, "feet")
  26797. },
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(1500, "meters")
  26801. },
  26802. {
  26803. name: "Mega",
  26804. height: math.unit(12000000, "km"),
  26805. default: true
  26806. },
  26807. {
  26808. name: "Megamacro",
  26809. height: math.unit(10600000, "lightyears")
  26810. },
  26811. {
  26812. name: "Hypermacro",
  26813. height: math.unit(256, "yottameters")
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(10, "feet"),
  26822. weight: math.unit(750, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/clove/front.svg",
  26826. extra: 2031 / 1860,
  26827. bottom: 47.8 / 2080
  26828. }
  26829. },
  26830. back: {
  26831. height: math.unit(10, "feet"),
  26832. weight: math.unit(750, "lb"),
  26833. name: "Back",
  26834. image: {
  26835. source: "./media/characters/clove/back.svg",
  26836. extra: 2025 / 1859,
  26837. bottom: 46 / 2071
  26838. }
  26839. },
  26840. },
  26841. [
  26842. {
  26843. name: "Normal",
  26844. height: math.unit(10, "feet")
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(4, "feet"),
  26853. weight: math.unit(50, "lb"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/alex-rabbit/front.svg",
  26857. extra: 507 / 458,
  26858. bottom: 18.5 / 527
  26859. }
  26860. },
  26861. back: {
  26862. height: math.unit(4, "feet"),
  26863. weight: math.unit(50, "lb"),
  26864. name: "Back",
  26865. image: {
  26866. source: "./media/characters/alex-rabbit/back.svg",
  26867. extra: 502 / 460,
  26868. bottom: 18.9 / 521
  26869. }
  26870. },
  26871. },
  26872. [
  26873. {
  26874. name: "Normal",
  26875. height: math.unit(4, "feet"),
  26876. default: true
  26877. },
  26878. ]
  26879. ))
  26880. characterMakers.push(() => makeCharacter(
  26881. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26882. {
  26883. front: {
  26884. height: math.unit(1 + 3 / 12, "feet"),
  26885. weight: math.unit(80, "lb"),
  26886. name: "Front",
  26887. image: {
  26888. source: "./media/characters/zander-rose/front.svg",
  26889. extra: 916 / 797,
  26890. bottom: 17 / 933
  26891. }
  26892. },
  26893. back: {
  26894. height: math.unit(1 + 3 / 12, "feet"),
  26895. weight: math.unit(80, "lb"),
  26896. name: "Back",
  26897. image: {
  26898. source: "./media/characters/zander-rose/back.svg",
  26899. extra: 903 / 779,
  26900. bottom: 31 / 934
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Normal",
  26907. height: math.unit(1 + 3 / 12, "feet"),
  26908. default: true
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26914. {
  26915. anthro: {
  26916. height: math.unit(6, "feet"),
  26917. weight: math.unit(150, "lb"),
  26918. name: "Anthro",
  26919. image: {
  26920. source: "./media/characters/razz/anthro.svg",
  26921. extra: 1437 / 1343,
  26922. bottom: 48 / 1485
  26923. }
  26924. },
  26925. feral: {
  26926. height: math.unit(6, "feet"),
  26927. weight: math.unit(150, "lb"),
  26928. name: "Feral",
  26929. image: {
  26930. source: "./media/characters/razz/feral.svg",
  26931. extra: 2569 / 1385,
  26932. bottom: 95 / 2664
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Normal",
  26939. height: math.unit(6, "feet"),
  26940. default: true
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26946. {
  26947. front: {
  26948. height: math.unit(9 + 4 / 12, "feet"),
  26949. weight: math.unit(500, "lb"),
  26950. name: "Front",
  26951. image: {
  26952. source: "./media/characters/morrigan/front.svg",
  26953. extra: 2707 / 2579,
  26954. bottom: 156 / 2863
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(9 + 4 / 12, "feet"),
  26962. default: true
  26963. },
  26964. ]
  26965. ))
  26966. characterMakers.push(() => makeCharacter(
  26967. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26968. {
  26969. front: {
  26970. height: math.unit(5, "stories"),
  26971. weight: math.unit(4000, "lb"),
  26972. name: "Front",
  26973. image: {
  26974. source: "./media/characters/jenene/front.svg",
  26975. extra: 1780 / 1710,
  26976. bottom: 57 / 1837
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Normal",
  26983. height: math.unit(5, "stories"),
  26984. default: true
  26985. },
  26986. ]
  26987. ))
  26988. characterMakers.push(() => makeCharacter(
  26989. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26990. {
  26991. front: {
  26992. height: math.unit(6, "feet"),
  26993. weight: math.unit(150, "lb"),
  26994. name: "Front",
  26995. image: {
  26996. source: "./media/characters/vix-archaser/front.svg",
  26997. extra: 2767 / 2562,
  26998. bottom: 36 / 2803
  26999. }
  27000. },
  27001. },
  27002. [
  27003. {
  27004. name: "Micro",
  27005. height: math.unit(1, "foot")
  27006. },
  27007. {
  27008. name: "Normal",
  27009. height: math.unit(6 + 5 / 12, "feet")
  27010. },
  27011. {
  27012. name: "Minimacro",
  27013. height: math.unit(500, "feet")
  27014. },
  27015. {
  27016. name: "Macro",
  27017. height: math.unit(4, "miles")
  27018. },
  27019. {
  27020. name: "Megamacro",
  27021. height: math.unit(250, "miles"),
  27022. default: true
  27023. },
  27024. {
  27025. name: "Gigamacro",
  27026. height: math.unit(1, "universe")
  27027. },
  27028. {
  27029. name: "Endgame",
  27030. height: math.unit(100, "multiverses")
  27031. }
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27036. {
  27037. taurSfw: {
  27038. height: math.unit(10, "meters"),
  27039. weight: math.unit(17500, "kg"),
  27040. name: "Taur",
  27041. image: {
  27042. source: "./media/characters/faey/taur-sfw.svg",
  27043. extra: 1200 / 968,
  27044. bottom: 41 / 1241
  27045. }
  27046. },
  27047. chestmaw: {
  27048. height: math.unit(2.01, "meters"),
  27049. name: "Chestmaw",
  27050. image: {
  27051. source: "./media/characters/faey/chestmaw.svg"
  27052. }
  27053. },
  27054. foot: {
  27055. height: math.unit(2.43, "meters"),
  27056. name: "Foot",
  27057. image: {
  27058. source: "./media/characters/faey/foot.svg"
  27059. }
  27060. },
  27061. jaws: {
  27062. height: math.unit(1.66, "meters"),
  27063. name: "Jaws",
  27064. image: {
  27065. source: "./media/characters/faey/jaws.svg"
  27066. }
  27067. },
  27068. tongues: {
  27069. height: math.unit(2.01, "meters"),
  27070. name: "Tongues",
  27071. image: {
  27072. source: "./media/characters/faey/tongues.svg"
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Small",
  27079. height: math.unit(10, "meters"),
  27080. default: true
  27081. },
  27082. {
  27083. name: "Big",
  27084. height: math.unit(500000, "km")
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(7, "feet"),
  27093. weight: math.unit(275, "lb"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/roku/front.svg",
  27097. extra: 903 / 878,
  27098. bottom: 37 / 940
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Normal",
  27105. height: math.unit(7, "feet"),
  27106. default: true
  27107. },
  27108. {
  27109. name: "Macro",
  27110. height: math.unit(500, "feet")
  27111. },
  27112. {
  27113. name: "Megamacro",
  27114. height: math.unit(200, "miles")
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27120. {
  27121. front: {
  27122. height: math.unit(6 + 2 / 12, "feet"),
  27123. weight: math.unit(150, "lb"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/lira/front.svg",
  27127. extra: 1727 / 1605,
  27128. bottom: 26 / 1753
  27129. }
  27130. },
  27131. back: {
  27132. height: math.unit(6 + 2 / 12, "feet"),
  27133. weight: math.unit(150, "lb"),
  27134. name: "Back",
  27135. image: {
  27136. source: "./media/characters/lira/back.svg",
  27137. extra: 1713 / 159,
  27138. bottom: 20 / 1733
  27139. }
  27140. },
  27141. hand: {
  27142. height: math.unit(0.75, "feet"),
  27143. name: "Hand",
  27144. image: {
  27145. source: "./media/characters/lira/hand.svg"
  27146. }
  27147. },
  27148. maw: {
  27149. height: math.unit(0.65, "feet"),
  27150. name: "Maw",
  27151. image: {
  27152. source: "./media/characters/lira/maw.svg"
  27153. }
  27154. },
  27155. pawDigi: {
  27156. height: math.unit(1.6, "feet"),
  27157. name: "Paw Digi",
  27158. image: {
  27159. source: "./media/characters/lira/paw-digi.svg"
  27160. }
  27161. },
  27162. pawPlanti: {
  27163. height: math.unit(1.4, "feet"),
  27164. name: "Paw Planti",
  27165. image: {
  27166. source: "./media/characters/lira/paw-planti.svg"
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(6 + 2 / 12, "feet"),
  27174. default: true
  27175. },
  27176. {
  27177. name: "Macro",
  27178. height: math.unit(100, "feet")
  27179. },
  27180. {
  27181. name: "Macro²",
  27182. height: math.unit(1600, "feet")
  27183. },
  27184. {
  27185. name: "Planetary",
  27186. height: math.unit(20, "earths")
  27187. },
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(6, "feet"),
  27195. weight: math.unit(150, "lb"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/hadjet/front.svg",
  27199. extra: 1480 / 1346,
  27200. bottom: 26 / 1506
  27201. }
  27202. },
  27203. frontNsfw: {
  27204. height: math.unit(6, "feet"),
  27205. weight: math.unit(150, "lb"),
  27206. name: "Front (NSFW)",
  27207. image: {
  27208. source: "./media/characters/hadjet/front-nsfw.svg",
  27209. extra: 1440 / 1358,
  27210. bottom: 52 / 1492
  27211. }
  27212. },
  27213. },
  27214. [
  27215. {
  27216. name: "Macro",
  27217. height: math.unit(10, "stories"),
  27218. default: true
  27219. },
  27220. {
  27221. name: "Megamacro",
  27222. height: math.unit(1.5, "miles")
  27223. },
  27224. {
  27225. name: "Megamacro+",
  27226. height: math.unit(5, "miles")
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27232. {
  27233. side: {
  27234. height: math.unit(106, "feet"),
  27235. weight: math.unit(500, "tonnes"),
  27236. name: "Side",
  27237. image: {
  27238. source: "./media/characters/kodran/side.svg",
  27239. extra: 553 / 480,
  27240. bottom: 33 / 586
  27241. }
  27242. },
  27243. front: {
  27244. height: math.unit(132, "feet"),
  27245. weight: math.unit(500, "tonnes"),
  27246. name: "Front",
  27247. image: {
  27248. source: "./media/characters/kodran/front.svg",
  27249. extra: 667 / 643,
  27250. bottom: 42 / 709
  27251. }
  27252. },
  27253. flying: {
  27254. height: math.unit(350, "feet"),
  27255. weight: math.unit(500, "tonnes"),
  27256. name: "Flying",
  27257. image: {
  27258. source: "./media/characters/kodran/flying.svg"
  27259. }
  27260. },
  27261. foot: {
  27262. height: math.unit(33, "feet"),
  27263. name: "Foot",
  27264. image: {
  27265. source: "./media/characters/kodran/foot.svg"
  27266. }
  27267. },
  27268. footFront: {
  27269. height: math.unit(19, "feet"),
  27270. name: "Foot (Front)",
  27271. image: {
  27272. source: "./media/characters/kodran/foot-front.svg",
  27273. extra: 261 / 261,
  27274. bottom: 91 / 352
  27275. }
  27276. },
  27277. headFront: {
  27278. height: math.unit(53, "feet"),
  27279. name: "Head (Front)",
  27280. image: {
  27281. source: "./media/characters/kodran/head-front.svg"
  27282. }
  27283. },
  27284. headSide: {
  27285. height: math.unit(65, "feet"),
  27286. name: "Head (Side)",
  27287. image: {
  27288. source: "./media/characters/kodran/head-side.svg"
  27289. }
  27290. },
  27291. throat: {
  27292. height: math.unit(79, "feet"),
  27293. name: "Throat",
  27294. image: {
  27295. source: "./media/characters/kodran/throat.svg"
  27296. }
  27297. },
  27298. },
  27299. [
  27300. {
  27301. name: "Large",
  27302. height: math.unit(106, "feet"),
  27303. default: true
  27304. },
  27305. ]
  27306. ))
  27307. characterMakers.push(() => makeCharacter(
  27308. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27309. {
  27310. side: {
  27311. height: math.unit(11, "feet"),
  27312. weight: math.unit(150, "lb"),
  27313. name: "Side",
  27314. image: {
  27315. source: "./media/characters/pyxaron/side.svg",
  27316. extra: 305 / 195,
  27317. bottom: 17 / 322
  27318. }
  27319. },
  27320. },
  27321. [
  27322. {
  27323. name: "Normal",
  27324. height: math.unit(11, "feet")
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(6, "feet"),
  27333. weight: math.unit(150, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/meep/front.svg",
  27337. extra: 88 / 80,
  27338. bottom: 6 / 94
  27339. }
  27340. },
  27341. },
  27342. [
  27343. {
  27344. name: "Fun Sized",
  27345. height: math.unit(2, "inches"),
  27346. default: true
  27347. },
  27348. {
  27349. name: "Friend Sized",
  27350. height: math.unit(8, "inches")
  27351. },
  27352. ]
  27353. ))
  27354. characterMakers.push(() => makeCharacter(
  27355. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27356. {
  27357. front: {
  27358. height: math.unit(15, "feet"),
  27359. weight: math.unit(2500, "lb"),
  27360. name: "Front",
  27361. image: {
  27362. source: "./media/characters/holly-rabbit/front.svg",
  27363. extra: 1433 / 1233,
  27364. bottom: 125 / 1558
  27365. }
  27366. },
  27367. dick: {
  27368. height: math.unit(4.6, "feet"),
  27369. name: "Dick",
  27370. image: {
  27371. source: "./media/characters/holly-rabbit/dick.svg"
  27372. }
  27373. },
  27374. },
  27375. [
  27376. {
  27377. name: "Normal",
  27378. height: math.unit(15, "feet"),
  27379. default: true
  27380. },
  27381. {
  27382. name: "Macro",
  27383. height: math.unit(250, "feet")
  27384. },
  27385. {
  27386. name: "Macro+",
  27387. height: math.unit(2500, "feet")
  27388. },
  27389. ]
  27390. ))
  27391. characterMakers.push(() => makeCharacter(
  27392. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27393. {
  27394. front: {
  27395. height: math.unit(3.02, "meters"),
  27396. weight: math.unit(500, "kg"),
  27397. name: "Front",
  27398. image: {
  27399. source: "./media/characters/drena/front.svg",
  27400. extra: 282 / 243,
  27401. bottom: 8 / 290
  27402. }
  27403. },
  27404. side: {
  27405. height: math.unit(3.02, "meters"),
  27406. weight: math.unit(500, "kg"),
  27407. name: "Side",
  27408. image: {
  27409. source: "./media/characters/drena/side.svg",
  27410. extra: 280 / 245,
  27411. bottom: 10 / 290
  27412. }
  27413. },
  27414. back: {
  27415. height: math.unit(3.02, "meters"),
  27416. weight: math.unit(500, "kg"),
  27417. name: "Back",
  27418. image: {
  27419. source: "./media/characters/drena/back.svg",
  27420. extra: 278 / 243,
  27421. bottom: 2 / 280
  27422. }
  27423. },
  27424. foot: {
  27425. height: math.unit(0.75, "meters"),
  27426. name: "Foot",
  27427. image: {
  27428. source: "./media/characters/drena/foot.svg"
  27429. }
  27430. },
  27431. maw: {
  27432. height: math.unit(0.82, "meters"),
  27433. name: "Maw",
  27434. image: {
  27435. source: "./media/characters/drena/maw.svg"
  27436. }
  27437. },
  27438. rump: {
  27439. height: math.unit(0.93, "meters"),
  27440. name: "Rump",
  27441. image: {
  27442. source: "./media/characters/drena/rump.svg"
  27443. }
  27444. },
  27445. },
  27446. [
  27447. {
  27448. name: "Normal",
  27449. height: math.unit(3.02, "meters"),
  27450. default: true
  27451. },
  27452. ]
  27453. ))
  27454. characterMakers.push(() => makeCharacter(
  27455. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27456. {
  27457. front: {
  27458. height: math.unit(6 + 4 / 12, "feet"),
  27459. weight: math.unit(250, "lb"),
  27460. name: "Front",
  27461. image: {
  27462. source: "./media/characters/remmyzilla/front.svg",
  27463. extra: 4033 / 3588,
  27464. bottom: 123 / 4156
  27465. }
  27466. },
  27467. back: {
  27468. height: math.unit(6 + 4 / 12, "feet"),
  27469. weight: math.unit(250, "lb"),
  27470. name: "Back",
  27471. image: {
  27472. source: "./media/characters/remmyzilla/back.svg",
  27473. extra: 2687 / 2555,
  27474. bottom: 48 / 2735
  27475. }
  27476. },
  27477. frontFancy: {
  27478. height: math.unit(6 + 4 / 12, "feet"),
  27479. weight: math.unit(250, "lb"),
  27480. name: "Front (Fancy)",
  27481. image: {
  27482. source: "./media/characters/remmyzilla/front-fancy.svg",
  27483. extra: 4119 / 3419,
  27484. bottom: 237 / 4356
  27485. }
  27486. },
  27487. paw: {
  27488. height: math.unit(1.73, "feet"),
  27489. name: "Paw",
  27490. image: {
  27491. source: "./media/characters/remmyzilla/paw.svg"
  27492. }
  27493. },
  27494. maw: {
  27495. height: math.unit(1.73, "feet"),
  27496. name: "Maw",
  27497. image: {
  27498. source: "./media/characters/remmyzilla/maw.svg"
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(6 + 4 / 12, "feet")
  27506. },
  27507. {
  27508. name: "Minimacro",
  27509. height: math.unit(12 + 8 / 12, "feet")
  27510. },
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(640, "feet"),
  27514. default: true
  27515. },
  27516. {
  27517. name: "Megamacro",
  27518. height: math.unit(6400, "feet")
  27519. },
  27520. {
  27521. name: "Gigamacro",
  27522. height: math.unit(64000, "miles")
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27528. {
  27529. front: {
  27530. height: math.unit(2.5, "meters"),
  27531. weight: math.unit(300, "lb"),
  27532. name: "Front",
  27533. image: {
  27534. source: "./media/characters/lawrence/front.svg",
  27535. extra: 357 / 335,
  27536. bottom: 30 / 387
  27537. }
  27538. },
  27539. back: {
  27540. height: math.unit(2.5, "meters"),
  27541. weight: math.unit(300, "lb"),
  27542. name: "Back",
  27543. image: {
  27544. source: "./media/characters/lawrence/back.svg",
  27545. extra: 357 / 338,
  27546. bottom: 16 / 373
  27547. }
  27548. },
  27549. head: {
  27550. height: math.unit(0.9, "meter"),
  27551. name: "Head",
  27552. image: {
  27553. source: "./media/characters/lawrence/head.svg"
  27554. }
  27555. },
  27556. maw: {
  27557. height: math.unit(0.7, "meter"),
  27558. name: "Maw",
  27559. image: {
  27560. source: "./media/characters/lawrence/maw.svg"
  27561. }
  27562. },
  27563. footBottom: {
  27564. height: math.unit(0.5, "meter"),
  27565. name: "Foot (Bottom)",
  27566. image: {
  27567. source: "./media/characters/lawrence/foot-bottom.svg"
  27568. }
  27569. },
  27570. footTop: {
  27571. height: math.unit(0.5, "meter"),
  27572. name: "Foot (Top)",
  27573. image: {
  27574. source: "./media/characters/lawrence/foot-top.svg"
  27575. }
  27576. },
  27577. },
  27578. [
  27579. {
  27580. name: "Normal",
  27581. height: math.unit(2.5, "meters"),
  27582. default: true
  27583. },
  27584. {
  27585. name: "Macro",
  27586. height: math.unit(95, "meters")
  27587. },
  27588. {
  27589. name: "Megamacro",
  27590. height: math.unit(150, "km")
  27591. },
  27592. ]
  27593. ))
  27594. characterMakers.push(() => makeCharacter(
  27595. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27596. {
  27597. front: {
  27598. height: math.unit(4.2, "meters"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/sydney/front.svg",
  27602. extra: 1323 / 1277,
  27603. bottom: 111 / 1434
  27604. }
  27605. },
  27606. },
  27607. [
  27608. {
  27609. name: "Normal",
  27610. height: math.unit(4.2, "meters")
  27611. },
  27612. ]
  27613. ))
  27614. characterMakers.push(() => makeCharacter(
  27615. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27616. {
  27617. back: {
  27618. height: math.unit(201, "feet"),
  27619. name: "Back",
  27620. image: {
  27621. source: "./media/characters/jessica/back.svg",
  27622. extra: 273 / 259,
  27623. bottom: 7 / 280
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(201, "feet"),
  27631. default: true
  27632. },
  27633. {
  27634. name: "Megamacro",
  27635. height: math.unit(8, "miles")
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27641. {
  27642. side: {
  27643. height: math.unit(320, "cm"),
  27644. name: "Side",
  27645. image: {
  27646. source: "./media/characters/victoria/side.svg",
  27647. extra: 778 / 346,
  27648. bottom: 56 / 834
  27649. }
  27650. },
  27651. maw: {
  27652. height: math.unit(5.9, "feet"),
  27653. name: "Maw",
  27654. image: {
  27655. source: "./media/characters/victoria/maw.svg"
  27656. }
  27657. },
  27658. },
  27659. [
  27660. {
  27661. name: "Normal",
  27662. height: math.unit(320, "cm"),
  27663. default: true
  27664. },
  27665. ]
  27666. ))
  27667. characterMakers.push(() => makeCharacter(
  27668. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27669. {
  27670. front: {
  27671. height: math.unit(5 + 6 / 12, "feet"),
  27672. name: "Front",
  27673. image: {
  27674. source: "./media/characters/cat/front.svg",
  27675. extra: 1374 / 1257,
  27676. bottom: 59 / 1433
  27677. }
  27678. },
  27679. back: {
  27680. height: math.unit(5 + 6 / 12, "feet"),
  27681. name: "Back",
  27682. image: {
  27683. source: "./media/characters/cat/back.svg",
  27684. extra: 1337 / 1226,
  27685. bottom: 34 / 1371
  27686. }
  27687. },
  27688. taur: {
  27689. height: math.unit(7, "feet"),
  27690. name: "Taur",
  27691. image: {
  27692. source: "./media/characters/cat/taur.svg",
  27693. extra: 1345 / 1231,
  27694. bottom: 66 / 1411
  27695. }
  27696. },
  27697. lucario: {
  27698. height: math.unit(4, "feet"),
  27699. name: "Lucario",
  27700. image: {
  27701. source: "./media/characters/cat/lucario.svg",
  27702. extra: 1470 / 1318,
  27703. bottom: 65 / 1535
  27704. }
  27705. },
  27706. megaLucario: {
  27707. height: math.unit(4, "feet"),
  27708. name: "Mega Lucario",
  27709. image: {
  27710. source: "./media/characters/cat/mega-lucario.svg",
  27711. extra: 1515 / 1319,
  27712. bottom: 63 / 1578
  27713. }
  27714. },
  27715. nickit: {
  27716. height: math.unit(2, "feet"),
  27717. name: "Nickit",
  27718. image: {
  27719. source: "./media/characters/cat/nickit.svg",
  27720. extra: 1980 / 1585,
  27721. bottom: 102 / 2082
  27722. }
  27723. },
  27724. lopunnyFront: {
  27725. height: math.unit(5, "feet"),
  27726. name: "Lopunny (Front)",
  27727. image: {
  27728. source: "./media/characters/cat/lopunny-front.svg",
  27729. extra: 1782 / 1469,
  27730. bottom: 38 / 1820
  27731. }
  27732. },
  27733. lopunnyBack: {
  27734. height: math.unit(5, "feet"),
  27735. name: "Lopunny (Back)",
  27736. image: {
  27737. source: "./media/characters/cat/lopunny-back.svg",
  27738. extra: 1660 / 1490,
  27739. bottom: 25 / 1685
  27740. }
  27741. },
  27742. },
  27743. [
  27744. {
  27745. name: "Really small",
  27746. height: math.unit(1, "nm")
  27747. },
  27748. {
  27749. name: "Micro",
  27750. height: math.unit(5, "inches")
  27751. },
  27752. {
  27753. name: "Normal",
  27754. height: math.unit(5 + 6 / 12, "feet"),
  27755. default: true
  27756. },
  27757. {
  27758. name: "Macro",
  27759. height: math.unit(50, "feet")
  27760. },
  27761. {
  27762. name: "Macro+",
  27763. height: math.unit(150, "feet")
  27764. },
  27765. {
  27766. name: "Megamacro",
  27767. height: math.unit(100, "miles")
  27768. },
  27769. ]
  27770. ))
  27771. characterMakers.push(() => makeCharacter(
  27772. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27773. {
  27774. front: {
  27775. height: math.unit(63.4, "meters"),
  27776. weight: math.unit(3.28349e+6, "kilograms"),
  27777. name: "Front",
  27778. image: {
  27779. source: "./media/characters/kirina-violet/front.svg",
  27780. extra: 2812/2725,
  27781. bottom: 0/2812
  27782. }
  27783. },
  27784. back: {
  27785. height: math.unit(63.4, "meters"),
  27786. weight: math.unit(3.28349e+6, "kilograms"),
  27787. name: "Back",
  27788. image: {
  27789. source: "./media/characters/kirina-violet/back.svg",
  27790. extra: 2812/2725,
  27791. bottom: 0/2812
  27792. }
  27793. },
  27794. mouth: {
  27795. height: math.unit(4.35, "meters"),
  27796. name: "Mouth",
  27797. image: {
  27798. source: "./media/characters/kirina-violet/mouth.svg"
  27799. }
  27800. },
  27801. paw: {
  27802. height: math.unit(5.6, "meters"),
  27803. name: "Paw",
  27804. image: {
  27805. source: "./media/characters/kirina-violet/paw.svg"
  27806. }
  27807. },
  27808. tail: {
  27809. height: math.unit(18, "meters"),
  27810. name: "Tail",
  27811. image: {
  27812. source: "./media/characters/kirina-violet/tail.svg"
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Macro",
  27819. height: math.unit(63.4, "meters"),
  27820. default: true
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(60, "feet"),
  27829. name: "Front",
  27830. image: {
  27831. source: "./media/characters/cat-gigachu/front.svg",
  27832. extra: 1024/780,
  27833. bottom: 23/1047
  27834. }
  27835. },
  27836. back: {
  27837. height: math.unit(60, "feet"),
  27838. name: "Back",
  27839. image: {
  27840. source: "./media/characters/cat-gigachu/back.svg",
  27841. extra: 1024/780,
  27842. bottom: 23/1047
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Dynamax",
  27849. height: math.unit(60, "feet"),
  27850. default: true
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27856. {
  27857. front: {
  27858. height: math.unit(6, "feet"),
  27859. weight: math.unit(150, "lb"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/sfaiyan/front.svg",
  27863. extra: 999/978,
  27864. bottom: 5/1004
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Normal",
  27871. height: math.unit(1.82, "meters")
  27872. },
  27873. {
  27874. name: "Giant",
  27875. height: math.unit(2.27, "km"),
  27876. default: true
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27882. {
  27883. front: {
  27884. height: math.unit(179, "cm"),
  27885. weight: math.unit(100, "kg"),
  27886. name: "Front",
  27887. image: {
  27888. source: "./media/characters/raunehkeli/front.svg",
  27889. extra: 1934/1926,
  27890. bottom: 0/1934
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(179, "cm")
  27898. },
  27899. {
  27900. name: "Maximum",
  27901. height: math.unit(575, "meters"),
  27902. default: true
  27903. },
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  27908. {
  27909. front: {
  27910. height: math.unit(6, "feet"),
  27911. weight: math.unit(150, "lb"),
  27912. name: "Front",
  27913. image: {
  27914. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  27915. extra: 2625/2518,
  27916. bottom: 60/2685
  27917. }
  27918. },
  27919. },
  27920. [
  27921. {
  27922. name: "Normal",
  27923. height: math.unit(6 + 2/12, "feet"),
  27924. default: true
  27925. },
  27926. {
  27927. name: "Macro",
  27928. height: math.unit(1180, "feet")
  27929. },
  27930. ]
  27931. ))
  27932. characterMakers.push(() => makeCharacter(
  27933. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  27934. {
  27935. front: {
  27936. height: math.unit(5 + 6/12, "feet"),
  27937. weight: math.unit(108, "lb"),
  27938. name: "Front",
  27939. image: {
  27940. source: "./media/characters/lilith-zott/front.svg",
  27941. extra: 2510/2238,
  27942. bottom: 100/2610
  27943. }
  27944. },
  27945. frontDressed: {
  27946. height: math.unit(5 + 6/12, "feet"),
  27947. weight: math.unit(108, "lb"),
  27948. name: "Front (Dressed)",
  27949. image: {
  27950. source: "./media/characters/lilith-zott/front-dressed.svg",
  27951. extra: 2510/2238,
  27952. bottom: 100/2610
  27953. }
  27954. },
  27955. },
  27956. [
  27957. {
  27958. name: "Normal",
  27959. height: math.unit(5 + 6/12, "feet")
  27960. },
  27961. {
  27962. name: "Macro",
  27963. height: math.unit(200, "feet"),
  27964. default: true
  27965. },
  27966. {
  27967. name: "Macro+",
  27968. height: math.unit(1030, "feet")
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(6, "feet"),
  27977. weight: math.unit(150, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  27981. extra: 2567/2435,
  27982. bottom: 39/2606
  27983. }
  27984. },
  27985. frontSuper: {
  27986. height: math.unit(6, "feet"),
  27987. name: "Front (Super)",
  27988. image: {
  27989. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  27990. extra: 2567/2435,
  27991. bottom: 39/2606
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(5 + 10/12, "feet")
  27999. },
  28000. {
  28001. name: "Macro",
  28002. height: math.unit(220, "feet"),
  28003. default: true
  28004. },
  28005. {
  28006. name: "Macro+",
  28007. height: math.unit(1100, "feet")
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(100, "miles"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/sona/front.svg",
  28019. extra: 2433/2201,
  28020. bottom: 53/2486
  28021. }
  28022. },
  28023. foot: {
  28024. height: math.unit(16.1, "miles"),
  28025. name: "Foot",
  28026. image: {
  28027. source: "./media/characters/sona/foot.svg"
  28028. }
  28029. },
  28030. },
  28031. [
  28032. {
  28033. name: "Macro",
  28034. height: math.unit(100, "miles"),
  28035. default: true
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28041. {
  28042. front: {
  28043. height: math.unit(6, "feet"),
  28044. weight: math.unit(150, "lb"),
  28045. name: "Front",
  28046. image: {
  28047. source: "./media/characters/bailey/front.svg",
  28048. extra: 1778/1724,
  28049. bottom: 30/1808
  28050. }
  28051. },
  28052. },
  28053. [
  28054. {
  28055. name: "Micro",
  28056. height: math.unit(4, "inches")
  28057. },
  28058. {
  28059. name: "Normal",
  28060. height: math.unit(5 + 5/12, "feet"),
  28061. default: true
  28062. },
  28063. {
  28064. name: "Macro",
  28065. height: math.unit(250, "feet")
  28066. },
  28067. {
  28068. name: "Megamacro",
  28069. height: math.unit(100, "miles")
  28070. },
  28071. ]
  28072. ))
  28073. //characters
  28074. function makeCharacters() {
  28075. const results = [];
  28076. characterMakers.forEach(character => {
  28077. results.push(character());
  28078. });
  28079. return results;
  28080. }