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

28530 строки
712 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. }
  1348. //species
  1349. function getSpeciesInfo(speciesList) {
  1350. let result = new Set();
  1351. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1352. result.add(entry)
  1353. });
  1354. return Array.from(result);
  1355. };
  1356. function getSpeciesInfoHelper(species) {
  1357. if (!speciesData[species]) {
  1358. console.warn(species + " doesn't exist");
  1359. return [];
  1360. }
  1361. if (speciesData[species].parents) {
  1362. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1363. } else {
  1364. return [species];
  1365. }
  1366. }
  1367. characterMakers.push(() => makeCharacter(
  1368. {
  1369. name: "Fen",
  1370. species: ["crux"],
  1371. description: {
  1372. title: "Bio",
  1373. text: "Very furry. Sheds on everything."
  1374. },
  1375. tags: [
  1376. "anthro",
  1377. "goo"
  1378. ]
  1379. },
  1380. {
  1381. back: {
  1382. height: math.unit(2.2428, "meter"),
  1383. weight: math.unit(124.738, "kg"),
  1384. name: "Back",
  1385. image: {
  1386. source: "./media/characters/fen/back.svg",
  1387. extra: 2024 / 1867,
  1388. bottom: 13 / 2037
  1389. },
  1390. info: {
  1391. description: {
  1392. mode: "append",
  1393. text: "\n\nHe is not currently looking at you."
  1394. }
  1395. }
  1396. },
  1397. full: {
  1398. height: math.unit(1.34, "meter"),
  1399. weight: math.unit(225, "kg"),
  1400. name: "Full",
  1401. image: {
  1402. source: "./media/characters/fen/full.svg"
  1403. },
  1404. info: {
  1405. description: {
  1406. mode: "append",
  1407. text: "\n\nMunch."
  1408. }
  1409. }
  1410. },
  1411. kneeling: {
  1412. height: math.unit(5.4, "feet"),
  1413. weight: math.unit(124.738, "kg"),
  1414. name: "Kneeling",
  1415. image: {
  1416. source: "./media/characters/fen/kneeling.svg",
  1417. extra: 563 / 507
  1418. }
  1419. },
  1420. goo: {
  1421. height: math.unit(2.8, "feet"),
  1422. weight: math.unit(125, "kg"),
  1423. capacity: math.unit(1, "people"),
  1424. name: "Goo",
  1425. image: {
  1426. source: "./media/characters/fen/goo.svg",
  1427. bottom: 116 / 613
  1428. }
  1429. },
  1430. lounging: {
  1431. height: math.unit(6.5, "feet"),
  1432. weight: math.unit(125, "kg"),
  1433. name: "Lounging",
  1434. image: {
  1435. source: "./media/characters/fen/lounging.svg"
  1436. }
  1437. },
  1438. },
  1439. [
  1440. {
  1441. name: "Normal",
  1442. height: math.unit(2.2428, "meter")
  1443. },
  1444. {
  1445. name: "Big",
  1446. height: math.unit(12, "feet")
  1447. },
  1448. {
  1449. name: "Minimacro",
  1450. height: math.unit(40, "feet"),
  1451. default: true,
  1452. info: {
  1453. description: {
  1454. mode: "append",
  1455. text: "\n\nTOO DAMN BIG"
  1456. }
  1457. }
  1458. },
  1459. {
  1460. name: "Macro",
  1461. height: math.unit(100, "feet"),
  1462. info: {
  1463. description: {
  1464. mode: "append",
  1465. text: "\n\nTOO DAMN BIG"
  1466. }
  1467. }
  1468. },
  1469. {
  1470. name: "Macro+",
  1471. height: math.unit(300, "feet")
  1472. },
  1473. {
  1474. name: "Megamacro",
  1475. height: math.unit(2, "miles")
  1476. }
  1477. ]
  1478. ))
  1479. characterMakers.push(() => makeCharacter(
  1480. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1481. {
  1482. front: {
  1483. height: math.unit(183, "cm"),
  1484. weight: math.unit(80, "kg"),
  1485. name: "Front",
  1486. image: {
  1487. source: "./media/characters/sofia-fluttertail/front.svg",
  1488. bottom: 0.01,
  1489. extra: 2154 / 2081
  1490. }
  1491. },
  1492. frontAlt: {
  1493. height: math.unit(183, "cm"),
  1494. weight: math.unit(80, "kg"),
  1495. name: "Front (alt)",
  1496. image: {
  1497. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1498. }
  1499. },
  1500. back: {
  1501. height: math.unit(183, "cm"),
  1502. weight: math.unit(80, "kg"),
  1503. name: "Back",
  1504. image: {
  1505. source: "./media/characters/sofia-fluttertail/back.svg"
  1506. }
  1507. },
  1508. kneeling: {
  1509. height: math.unit(125, "cm"),
  1510. weight: math.unit(80, "kg"),
  1511. name: "Kneeling",
  1512. image: {
  1513. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1514. extra: 1033 / 977,
  1515. bottom: 23.7 / 1057
  1516. }
  1517. },
  1518. maw: {
  1519. height: math.unit(183 / 5, "cm"),
  1520. name: "Maw",
  1521. image: {
  1522. source: "./media/characters/sofia-fluttertail/maw.svg"
  1523. }
  1524. },
  1525. mawcloseup: {
  1526. height: math.unit(183 / 5 * 0.41, "cm"),
  1527. name: "Maw (Closeup)",
  1528. image: {
  1529. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1530. }
  1531. },
  1532. },
  1533. [
  1534. {
  1535. name: "Normal",
  1536. height: math.unit(1.83, "meter")
  1537. },
  1538. {
  1539. name: "Size Thief",
  1540. height: math.unit(18, "feet")
  1541. },
  1542. {
  1543. name: "50 Foot Collie",
  1544. height: math.unit(50, "feet")
  1545. },
  1546. {
  1547. name: "Macro",
  1548. height: math.unit(96, "feet"),
  1549. default: true
  1550. },
  1551. {
  1552. name: "Megamerger",
  1553. height: math.unit(650, "feet")
  1554. },
  1555. ]
  1556. ))
  1557. characterMakers.push(() => makeCharacter(
  1558. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1559. {
  1560. front: {
  1561. height: math.unit(7, "feet"),
  1562. weight: math.unit(100, "kg"),
  1563. name: "Front",
  1564. image: {
  1565. source: "./media/characters/march/front.svg",
  1566. extra: 1,
  1567. bottom: 0.015
  1568. }
  1569. },
  1570. foot: {
  1571. height: math.unit(0.9, "feet"),
  1572. name: "Foot",
  1573. image: {
  1574. source: "./media/characters/march/foot.svg"
  1575. }
  1576. },
  1577. },
  1578. [
  1579. {
  1580. name: "Normal",
  1581. height: math.unit(7.9, "feet")
  1582. },
  1583. {
  1584. name: "Macro",
  1585. height: math.unit(220, "meters")
  1586. },
  1587. {
  1588. name: "Megamacro",
  1589. height: math.unit(2.98, "km"),
  1590. default: true
  1591. },
  1592. {
  1593. name: "Gigamacro",
  1594. height: math.unit(15963, "km")
  1595. },
  1596. {
  1597. name: "Teramacro",
  1598. height: math.unit(2980000000, "km")
  1599. },
  1600. {
  1601. name: "Examacro",
  1602. height: math.unit(250, "parsecs")
  1603. },
  1604. ]
  1605. ))
  1606. characterMakers.push(() => makeCharacter(
  1607. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1608. {
  1609. front: {
  1610. height: math.unit(6, "feet"),
  1611. weight: math.unit(60, "kg"),
  1612. name: "Front",
  1613. image: {
  1614. source: "./media/characters/noir/front.svg",
  1615. extra: 1,
  1616. bottom: 0.032
  1617. }
  1618. },
  1619. },
  1620. [
  1621. {
  1622. name: "Normal",
  1623. height: math.unit(6.6, "feet")
  1624. },
  1625. {
  1626. name: "Macro",
  1627. height: math.unit(500, "feet")
  1628. },
  1629. {
  1630. name: "Megamacro",
  1631. height: math.unit(2.5, "km"),
  1632. default: true
  1633. },
  1634. {
  1635. name: "Gigamacro",
  1636. height: math.unit(22500, "km")
  1637. },
  1638. {
  1639. name: "Teramacro",
  1640. height: math.unit(2500000000, "km")
  1641. },
  1642. {
  1643. name: "Examacro",
  1644. height: math.unit(200, "parsecs")
  1645. },
  1646. ]
  1647. ))
  1648. characterMakers.push(() => makeCharacter(
  1649. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1650. {
  1651. front: {
  1652. height: math.unit(7, "feet"),
  1653. weight: math.unit(100, "kg"),
  1654. name: "Front",
  1655. image: {
  1656. source: "./media/characters/okuri/front.svg",
  1657. extra: 1,
  1658. bottom: 0.037
  1659. }
  1660. },
  1661. back: {
  1662. height: math.unit(7, "feet"),
  1663. weight: math.unit(100, "kg"),
  1664. name: "Back",
  1665. image: {
  1666. source: "./media/characters/okuri/back.svg",
  1667. extra: 1,
  1668. bottom: 0.007
  1669. }
  1670. },
  1671. },
  1672. [
  1673. {
  1674. name: "Megamacro",
  1675. height: math.unit(100, "miles"),
  1676. default: true
  1677. },
  1678. ]
  1679. ))
  1680. characterMakers.push(() => makeCharacter(
  1681. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1682. {
  1683. front: {
  1684. height: math.unit(7, "feet"),
  1685. weight: math.unit(100, "kg"),
  1686. name: "Front",
  1687. image: {
  1688. source: "./media/characters/manny/front.svg",
  1689. extra: 1,
  1690. bottom: 0.06
  1691. }
  1692. },
  1693. back: {
  1694. height: math.unit(7, "feet"),
  1695. weight: math.unit(100, "kg"),
  1696. name: "Back",
  1697. image: {
  1698. source: "./media/characters/manny/back.svg",
  1699. extra: 1,
  1700. bottom: 0.014
  1701. }
  1702. },
  1703. },
  1704. [
  1705. {
  1706. name: "Normal",
  1707. height: math.unit(7, "feet"),
  1708. },
  1709. {
  1710. name: "Macro",
  1711. height: math.unit(78, "feet"),
  1712. default: true
  1713. },
  1714. {
  1715. name: "Macro+",
  1716. height: math.unit(300, "meters")
  1717. },
  1718. {
  1719. name: "Macro++",
  1720. height: math.unit(2400, "meters")
  1721. },
  1722. {
  1723. name: "Megamacro",
  1724. height: math.unit(5167, "meters")
  1725. },
  1726. {
  1727. name: "Gigamacro",
  1728. height: math.unit(41769, "miles")
  1729. },
  1730. ]
  1731. ))
  1732. characterMakers.push(() => makeCharacter(
  1733. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1734. {
  1735. front: {
  1736. height: math.unit(7, "feet"),
  1737. weight: math.unit(100, "kg"),
  1738. name: "Front",
  1739. image: {
  1740. source: "./media/characters/adake/front-1.svg"
  1741. }
  1742. },
  1743. frontAlt: {
  1744. height: math.unit(7, "feet"),
  1745. weight: math.unit(100, "kg"),
  1746. name: "Front (Alt)",
  1747. image: {
  1748. source: "./media/characters/adake/front-2.svg",
  1749. extra: 1,
  1750. bottom: 0.01
  1751. }
  1752. },
  1753. back: {
  1754. height: math.unit(7, "feet"),
  1755. weight: math.unit(100, "kg"),
  1756. name: "Back",
  1757. image: {
  1758. source: "./media/characters/adake/back.svg",
  1759. }
  1760. },
  1761. kneel: {
  1762. height: math.unit(5.385, "feet"),
  1763. weight: math.unit(100, "kg"),
  1764. name: "Kneeling",
  1765. image: {
  1766. source: "./media/characters/adake/kneel.svg",
  1767. bottom: 0.052
  1768. }
  1769. },
  1770. },
  1771. [
  1772. {
  1773. name: "Normal",
  1774. height: math.unit(7, "feet"),
  1775. },
  1776. {
  1777. name: "Macro",
  1778. height: math.unit(78, "feet"),
  1779. default: true
  1780. },
  1781. {
  1782. name: "Macro+",
  1783. height: math.unit(300, "meters")
  1784. },
  1785. {
  1786. name: "Macro++",
  1787. height: math.unit(2400, "meters")
  1788. },
  1789. {
  1790. name: "Megamacro",
  1791. height: math.unit(5167, "meters")
  1792. },
  1793. {
  1794. name: "Gigamacro",
  1795. height: math.unit(41769, "miles")
  1796. },
  1797. ]
  1798. ))
  1799. characterMakers.push(() => makeCharacter(
  1800. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1801. {
  1802. front: {
  1803. height: math.unit(1.65, "meters"),
  1804. weight: math.unit(50, "kg"),
  1805. name: "Front",
  1806. image: {
  1807. source: "./media/characters/elijah/front.svg",
  1808. extra: 858 / 830,
  1809. bottom: 95.5 / 953.8559
  1810. }
  1811. },
  1812. back: {
  1813. height: math.unit(1.65, "meters"),
  1814. weight: math.unit(50, "kg"),
  1815. name: "Back",
  1816. image: {
  1817. source: "./media/characters/elijah/back.svg",
  1818. extra: 895 / 850,
  1819. bottom: 5.3 / 897.956
  1820. }
  1821. },
  1822. frontNsfw: {
  1823. height: math.unit(1.65, "meters"),
  1824. weight: math.unit(50, "kg"),
  1825. name: "Front (NSFW)",
  1826. image: {
  1827. source: "./media/characters/elijah/front-nsfw.svg",
  1828. extra: 858 / 830,
  1829. bottom: 95.5 / 953.8559
  1830. }
  1831. },
  1832. backNsfw: {
  1833. height: math.unit(1.65, "meters"),
  1834. weight: math.unit(50, "kg"),
  1835. name: "Back (NSFW)",
  1836. image: {
  1837. source: "./media/characters/elijah/back-nsfw.svg",
  1838. extra: 895 / 850,
  1839. bottom: 5.3 / 897.956
  1840. }
  1841. },
  1842. dick: {
  1843. height: math.unit(1, "feet"),
  1844. name: "Dick",
  1845. image: {
  1846. source: "./media/characters/elijah/dick.svg"
  1847. }
  1848. },
  1849. beakOpen: {
  1850. height: math.unit(1.25, "feet"),
  1851. name: "Beak (Open)",
  1852. image: {
  1853. source: "./media/characters/elijah/beak-open.svg"
  1854. }
  1855. },
  1856. beakShut: {
  1857. height: math.unit(1.25, "feet"),
  1858. name: "Beak (Shut)",
  1859. image: {
  1860. source: "./media/characters/elijah/beak-shut.svg"
  1861. }
  1862. },
  1863. footFlexing: {
  1864. height: math.unit(1.61, "feet"),
  1865. name: "Foot (Flexing)",
  1866. image: {
  1867. source: "./media/characters/elijah/foot-flexing.svg"
  1868. }
  1869. },
  1870. footStepping: {
  1871. height: math.unit(1.44, "feet"),
  1872. name: "Foot (Stepping)",
  1873. image: {
  1874. source: "./media/characters/elijah/foot-stepping.svg"
  1875. }
  1876. },
  1877. plantigradeLeg: {
  1878. height: math.unit(2.34, "feet"),
  1879. name: "Plantigrade Leg",
  1880. image: {
  1881. source: "./media/characters/elijah/plantigrade-leg.svg"
  1882. }
  1883. },
  1884. plantigradeFootLeft: {
  1885. height: math.unit(0.9, "feet"),
  1886. name: "Plantigrade Foot (Left)",
  1887. image: {
  1888. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1889. }
  1890. },
  1891. plantigradeFootRight: {
  1892. height: math.unit(0.9, "feet"),
  1893. name: "Plantigrade Foot (Right)",
  1894. image: {
  1895. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1896. }
  1897. },
  1898. },
  1899. [
  1900. {
  1901. name: "Normal",
  1902. height: math.unit(1.65, "meters")
  1903. },
  1904. {
  1905. name: "Macro",
  1906. height: math.unit(55, "meters"),
  1907. default: true
  1908. },
  1909. {
  1910. name: "Macro+",
  1911. height: math.unit(105, "meters")
  1912. },
  1913. ]
  1914. ))
  1915. characterMakers.push(() => makeCharacter(
  1916. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1917. {
  1918. front: {
  1919. height: math.unit(11, "feet"),
  1920. weight: math.unit(80, "kg"),
  1921. name: "Front",
  1922. image: {
  1923. source: "./media/characters/rai/front.svg",
  1924. extra: 1,
  1925. bottom: 0.03
  1926. }
  1927. },
  1928. side: {
  1929. height: math.unit(11, "feet"),
  1930. weight: math.unit(80, "kg"),
  1931. name: "Side",
  1932. image: {
  1933. source: "./media/characters/rai/side.svg"
  1934. }
  1935. },
  1936. back: {
  1937. height: math.unit(11, "feet"),
  1938. weight: math.unit(80, "lb"),
  1939. name: "Back",
  1940. image: {
  1941. source: "./media/characters/rai/back.svg",
  1942. extra: 1,
  1943. bottom: 0.01
  1944. }
  1945. },
  1946. feral: {
  1947. height: math.unit(11, "feet"),
  1948. weight: math.unit(800, "lb"),
  1949. name: "Feral",
  1950. image: {
  1951. source: "./media/characters/rai/feral.svg",
  1952. extra: 1050 / 659,
  1953. bottom: 0.07
  1954. }
  1955. },
  1956. dragon: {
  1957. height: math.unit(23, "feet"),
  1958. weight: math.unit(50000, "lb"),
  1959. name: "Dragon",
  1960. image: {
  1961. source: "./media/characters/rai/dragon.svg",
  1962. extra: 2498 / 2030,
  1963. bottom: 85.2 / 2584
  1964. }
  1965. },
  1966. maw: {
  1967. height: math.unit(6 / 3.81416, "feet"),
  1968. name: "Maw",
  1969. image: {
  1970. source: "./media/characters/rai/maw.svg"
  1971. }
  1972. },
  1973. },
  1974. [
  1975. {
  1976. name: "Normal",
  1977. height: math.unit(11, "feet")
  1978. },
  1979. {
  1980. name: "Macro",
  1981. height: math.unit(302, "feet"),
  1982. default: true
  1983. },
  1984. ]
  1985. ))
  1986. characterMakers.push(() => makeCharacter(
  1987. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1988. {
  1989. frontDressed: {
  1990. height: math.unit(216, "feet"),
  1991. weight: math.unit(7000000, "lb"),
  1992. name: "Front (Dressed)",
  1993. image: {
  1994. source: "./media/characters/jazzy/front-dressed.svg",
  1995. extra: 2738 / 2651,
  1996. bottom: 41.8 / 2786
  1997. }
  1998. },
  1999. backDressed: {
  2000. height: math.unit(216, "feet"),
  2001. weight: math.unit(7000000, "lb"),
  2002. name: "Back (Dressed)",
  2003. image: {
  2004. source: "./media/characters/jazzy/back-dressed.svg",
  2005. extra: 2775 / 2673,
  2006. bottom: 36.8 / 2817
  2007. }
  2008. },
  2009. front: {
  2010. height: math.unit(216, "feet"),
  2011. weight: math.unit(7000000, "lb"),
  2012. name: "Front",
  2013. image: {
  2014. source: "./media/characters/jazzy/front.svg",
  2015. extra: 2738 / 2651,
  2016. bottom: 41.8 / 2786
  2017. }
  2018. },
  2019. back: {
  2020. height: math.unit(216, "feet"),
  2021. weight: math.unit(7000000, "lb"),
  2022. name: "Back",
  2023. image: {
  2024. source: "./media/characters/jazzy/back.svg",
  2025. extra: 2775 / 2673,
  2026. bottom: 36.8 / 2817
  2027. }
  2028. },
  2029. maw: {
  2030. height: math.unit(20, "feet"),
  2031. name: "Maw",
  2032. image: {
  2033. source: "./media/characters/jazzy/maw.svg"
  2034. }
  2035. },
  2036. paws: {
  2037. height: math.unit(27.5, "feet"),
  2038. name: "Paws",
  2039. image: {
  2040. source: "./media/characters/jazzy/paws.svg"
  2041. }
  2042. },
  2043. eye: {
  2044. height: math.unit(4.4, "feet"),
  2045. name: "Eye",
  2046. image: {
  2047. source: "./media/characters/jazzy/eye.svg"
  2048. }
  2049. },
  2050. droneOffense: {
  2051. height: math.unit(9.5, "inches"),
  2052. name: "Drone (Offense)",
  2053. image: {
  2054. source: "./media/characters/jazzy/drone-offense.svg"
  2055. }
  2056. },
  2057. droneRecon: {
  2058. height: math.unit(9.5, "inches"),
  2059. name: "Drone (Recon)",
  2060. image: {
  2061. source: "./media/characters/jazzy/drone-recon.svg"
  2062. }
  2063. },
  2064. droneDefense: {
  2065. height: math.unit(9.5, "inches"),
  2066. name: "Drone (Defense)",
  2067. image: {
  2068. source: "./media/characters/jazzy/drone-defense.svg"
  2069. }
  2070. },
  2071. },
  2072. [
  2073. {
  2074. name: "Macro",
  2075. height: math.unit(216, "feet"),
  2076. default: true
  2077. },
  2078. ]
  2079. ))
  2080. characterMakers.push(() => makeCharacter(
  2081. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2082. {
  2083. front: {
  2084. height: math.unit(7, "feet"),
  2085. weight: math.unit(80, "kg"),
  2086. name: "Front",
  2087. image: {
  2088. source: "./media/characters/flamm/front.svg",
  2089. extra: 1794 / 1677,
  2090. bottom: 31.7 / 1828.5
  2091. }
  2092. },
  2093. },
  2094. [
  2095. {
  2096. name: "Normal",
  2097. height: math.unit(9.5, "feet")
  2098. },
  2099. {
  2100. name: "Macro",
  2101. height: math.unit(200, "feet"),
  2102. default: true
  2103. },
  2104. ]
  2105. ))
  2106. characterMakers.push(() => makeCharacter(
  2107. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2108. {
  2109. front: {
  2110. height: math.unit(7, "feet"),
  2111. weight: math.unit(80, "kg"),
  2112. name: "Front",
  2113. image: {
  2114. source: "./media/characters/zephiro/front.svg",
  2115. extra: 2309 / 2162,
  2116. bottom: 0.069
  2117. }
  2118. },
  2119. side: {
  2120. height: math.unit(7, "feet"),
  2121. weight: math.unit(80, "kg"),
  2122. name: "Side",
  2123. image: {
  2124. source: "./media/characters/zephiro/side.svg",
  2125. extra: 2403 / 2279,
  2126. bottom: 0.015
  2127. }
  2128. },
  2129. back: {
  2130. height: math.unit(7, "feet"),
  2131. weight: math.unit(80, "kg"),
  2132. name: "Back",
  2133. image: {
  2134. source: "./media/characters/zephiro/back.svg",
  2135. extra: 2373 / 2244,
  2136. bottom: 0.013
  2137. }
  2138. },
  2139. },
  2140. [
  2141. {
  2142. name: "Micro",
  2143. height: math.unit(3, "inches")
  2144. },
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(5 + 3 / 12, "feet"),
  2148. default: true
  2149. },
  2150. {
  2151. name: "Macro",
  2152. height: math.unit(118, "feet")
  2153. },
  2154. ]
  2155. ))
  2156. characterMakers.push(() => makeCharacter(
  2157. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2158. {
  2159. front: {
  2160. height: math.unit(5, "feet"),
  2161. weight: math.unit(90, "kg"),
  2162. name: "Front",
  2163. image: {
  2164. source: "./media/characters/fory/front.svg",
  2165. extra: 2862 / 2674,
  2166. bottom: 180 / 3043.8
  2167. }
  2168. },
  2169. back: {
  2170. height: math.unit(5, "feet"),
  2171. weight: math.unit(90, "kg"),
  2172. name: "Back",
  2173. image: {
  2174. source: "./media/characters/fory/back.svg",
  2175. extra: 2962 / 2791,
  2176. bottom: 106 / 3071.8
  2177. }
  2178. },
  2179. foot: {
  2180. height: math.unit(2.14, "feet"),
  2181. name: "Foot",
  2182. image: {
  2183. source: "./media/characters/fory/foot.svg"
  2184. }
  2185. },
  2186. },
  2187. [
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(5, "feet")
  2191. },
  2192. {
  2193. name: "Macro",
  2194. height: math.unit(50, "feet"),
  2195. default: true
  2196. },
  2197. {
  2198. name: "Megamacro",
  2199. height: math.unit(10, "miles")
  2200. },
  2201. {
  2202. name: "Gigamacro",
  2203. height: math.unit(5, "earths")
  2204. },
  2205. ]
  2206. ))
  2207. characterMakers.push(() => makeCharacter(
  2208. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2209. {
  2210. front: {
  2211. height: math.unit(7, "feet"),
  2212. weight: math.unit(90, "kg"),
  2213. name: "Front",
  2214. image: {
  2215. source: "./media/characters/kurrikage/front.svg",
  2216. extra: 1,
  2217. bottom: 0.035
  2218. }
  2219. },
  2220. back: {
  2221. height: math.unit(7, "feet"),
  2222. weight: math.unit(90, "lb"),
  2223. name: "Back",
  2224. image: {
  2225. source: "./media/characters/kurrikage/back.svg"
  2226. }
  2227. },
  2228. paw: {
  2229. height: math.unit(1.5, "feet"),
  2230. name: "Paw",
  2231. image: {
  2232. source: "./media/characters/kurrikage/paw.svg"
  2233. }
  2234. },
  2235. staff: {
  2236. height: math.unit(6.7, "feet"),
  2237. name: "Staff",
  2238. image: {
  2239. source: "./media/characters/kurrikage/staff.svg"
  2240. }
  2241. },
  2242. peek: {
  2243. height: math.unit(1.05, "feet"),
  2244. name: "Peeking",
  2245. image: {
  2246. source: "./media/characters/kurrikage/peek.svg",
  2247. bottom: 0.08
  2248. }
  2249. },
  2250. },
  2251. [
  2252. {
  2253. name: "Normal",
  2254. height: math.unit(12, "feet"),
  2255. default: true
  2256. },
  2257. {
  2258. name: "Big",
  2259. height: math.unit(20, "feet")
  2260. },
  2261. {
  2262. name: "Macro",
  2263. height: math.unit(500, "feet")
  2264. },
  2265. {
  2266. name: "Megamacro",
  2267. height: math.unit(20, "miles")
  2268. },
  2269. ]
  2270. ))
  2271. characterMakers.push(() => makeCharacter(
  2272. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2273. {
  2274. front: {
  2275. height: math.unit(6, "feet"),
  2276. weight: math.unit(75, "kg"),
  2277. name: "Front",
  2278. image: {
  2279. source: "./media/characters/shingo/front.svg",
  2280. extra: 3511 / 3338,
  2281. bottom: 0.005
  2282. }
  2283. },
  2284. paw: {
  2285. height: math.unit(1, "feet"),
  2286. name: "Paw",
  2287. image: {
  2288. source: "./media/characters/shingo/paw.svg"
  2289. }
  2290. },
  2291. },
  2292. [
  2293. {
  2294. name: "Micro",
  2295. height: math.unit(4, "inches")
  2296. },
  2297. {
  2298. name: "Normal",
  2299. height: math.unit(6, "feet"),
  2300. default: true
  2301. },
  2302. {
  2303. name: "Macro",
  2304. height: math.unit(108, "feet")
  2305. }
  2306. ]
  2307. ))
  2308. characterMakers.push(() => makeCharacter(
  2309. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2310. {
  2311. side: {
  2312. height: math.unit(6, "feet"),
  2313. weight: math.unit(75, "kg"),
  2314. name: "Side",
  2315. image: {
  2316. source: "./media/characters/aigey/side.svg"
  2317. }
  2318. },
  2319. },
  2320. [
  2321. {
  2322. name: "Macro",
  2323. height: math.unit(200, "feet"),
  2324. default: true
  2325. },
  2326. {
  2327. name: "Megamacro",
  2328. height: math.unit(100, "miles")
  2329. },
  2330. ]
  2331. )
  2332. )
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2335. {
  2336. front: {
  2337. height: math.unit(5 + 5 / 12, "feet"),
  2338. weight: math.unit(75, "kg"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/natasha/front.svg",
  2342. extra: 859 / 824,
  2343. bottom: 23 / 879.6
  2344. }
  2345. },
  2346. frontNsfw: {
  2347. height: math.unit(5 + 5 / 12, "feet"),
  2348. weight: math.unit(75, "kg"),
  2349. name: "Front (NSFW)",
  2350. image: {
  2351. source: "./media/characters/natasha/front-nsfw.svg",
  2352. extra: 859 / 824,
  2353. bottom: 23 / 879.6
  2354. }
  2355. },
  2356. frontErect: {
  2357. height: math.unit(5 + 5 / 12, "feet"),
  2358. weight: math.unit(75, "kg"),
  2359. name: "Front (Erect)",
  2360. image: {
  2361. source: "./media/characters/natasha/front-erect.svg",
  2362. extra: 859 / 824,
  2363. bottom: 23 / 879.6
  2364. }
  2365. },
  2366. back: {
  2367. height: math.unit(5 + 5 / 12, "feet"),
  2368. weight: math.unit(75, "kg"),
  2369. name: "Back",
  2370. image: {
  2371. source: "./media/characters/natasha/back.svg",
  2372. extra: 887.9 / 852.6,
  2373. bottom: 9.7 / 896.4
  2374. }
  2375. },
  2376. backAlt: {
  2377. height: math.unit(5 + 5 / 12, "feet"),
  2378. weight: math.unit(75, "kg"),
  2379. name: "Back (Alt)",
  2380. image: {
  2381. source: "./media/characters/natasha/back-alt.svg",
  2382. extra: 1236.7 / 1192,
  2383. bottom: 22.3 / 1258.2
  2384. }
  2385. },
  2386. dick: {
  2387. height: math.unit(1.772, "feet"),
  2388. name: "Dick",
  2389. image: {
  2390. source: "./media/characters/natasha/dick.svg"
  2391. }
  2392. },
  2393. },
  2394. [
  2395. {
  2396. name: "Normal",
  2397. height: math.unit(5 + 5 / 12, "feet")
  2398. },
  2399. {
  2400. name: "Large",
  2401. height: math.unit(12, "feet")
  2402. },
  2403. {
  2404. name: "Macro",
  2405. height: math.unit(100, "feet"),
  2406. default: true
  2407. },
  2408. {
  2409. name: "Macro+",
  2410. height: math.unit(260, "feet")
  2411. },
  2412. {
  2413. name: "Macro++",
  2414. height: math.unit(1, "mile")
  2415. },
  2416. ]
  2417. ))
  2418. characterMakers.push(() => makeCharacter(
  2419. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2420. {
  2421. front: {
  2422. height: math.unit(6, "feet"),
  2423. weight: math.unit(75, "kg"),
  2424. name: "Front",
  2425. image: {
  2426. source: "./media/characters/malik/front.svg"
  2427. }
  2428. },
  2429. side: {
  2430. height: math.unit(6, "feet"),
  2431. weight: math.unit(75, "kg"),
  2432. name: "Side",
  2433. image: {
  2434. source: "./media/characters/malik/side.svg",
  2435. extra: 1.1539
  2436. }
  2437. },
  2438. back: {
  2439. height: math.unit(6, "feet"),
  2440. weight: math.unit(75, "kg"),
  2441. name: "Back",
  2442. image: {
  2443. source: "./media/characters/malik/back.svg"
  2444. }
  2445. },
  2446. },
  2447. [
  2448. {
  2449. name: "Macro",
  2450. height: math.unit(156, "feet"),
  2451. default: true
  2452. },
  2453. {
  2454. name: "Macro+",
  2455. height: math.unit(1188, "feet")
  2456. },
  2457. ]
  2458. ))
  2459. characterMakers.push(() => makeCharacter(
  2460. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2461. {
  2462. front: {
  2463. height: math.unit(6, "feet"),
  2464. weight: math.unit(75, "kg"),
  2465. name: "Front",
  2466. image: {
  2467. source: "./media/characters/sefer/front.svg",
  2468. extra: 848 / 659,
  2469. bottom: 28.3 / 876.442
  2470. }
  2471. },
  2472. back: {
  2473. height: math.unit(6, "feet"),
  2474. weight: math.unit(75, "kg"),
  2475. name: "Back",
  2476. image: {
  2477. source: "./media/characters/sefer/back.svg",
  2478. extra: 864 / 695,
  2479. bottom: 10 / 871
  2480. }
  2481. },
  2482. frontDressed: {
  2483. height: math.unit(6, "feet"),
  2484. weight: math.unit(75, "kg"),
  2485. name: "Front (Dressed)",
  2486. image: {
  2487. source: "./media/characters/sefer/front-dressed.svg",
  2488. extra: 839 / 653,
  2489. bottom: 37.6 / 878
  2490. }
  2491. },
  2492. },
  2493. [
  2494. {
  2495. name: "Normal",
  2496. height: math.unit(6, "feet"),
  2497. default: true
  2498. },
  2499. ]
  2500. ))
  2501. characterMakers.push(() => makeCharacter(
  2502. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2503. {
  2504. body: {
  2505. height: math.unit(2.2428, "meter"),
  2506. weight: math.unit(124.738, "kg"),
  2507. name: "Body",
  2508. image: {
  2509. extra: 1225 / 1050,
  2510. source: "./media/characters/north/front.svg"
  2511. }
  2512. }
  2513. },
  2514. [
  2515. {
  2516. name: "Micro",
  2517. height: math.unit(4, "inches")
  2518. },
  2519. {
  2520. name: "Macro",
  2521. height: math.unit(63, "meters")
  2522. },
  2523. {
  2524. name: "Megamacro",
  2525. height: math.unit(101, "miles"),
  2526. default: true
  2527. }
  2528. ]
  2529. ))
  2530. characterMakers.push(() => makeCharacter(
  2531. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2532. {
  2533. angled: {
  2534. height: math.unit(4, "meter"),
  2535. weight: math.unit(150, "kg"),
  2536. name: "Angled",
  2537. image: {
  2538. source: "./media/characters/talan/angled-sfw.svg",
  2539. bottom: 29 / 3734
  2540. }
  2541. },
  2542. angledNsfw: {
  2543. height: math.unit(4, "meter"),
  2544. weight: math.unit(150, "kg"),
  2545. name: "Angled (NSFW)",
  2546. image: {
  2547. source: "./media/characters/talan/angled-nsfw.svg",
  2548. bottom: 29 / 3734
  2549. }
  2550. },
  2551. frontNsfw: {
  2552. height: math.unit(4, "meter"),
  2553. weight: math.unit(150, "kg"),
  2554. name: "Front (NSFW)",
  2555. image: {
  2556. source: "./media/characters/talan/front-nsfw.svg",
  2557. bottom: 29 / 3734
  2558. }
  2559. },
  2560. sideNsfw: {
  2561. height: math.unit(4, "meter"),
  2562. weight: math.unit(150, "kg"),
  2563. name: "Side (NSFW)",
  2564. image: {
  2565. source: "./media/characters/talan/side-nsfw.svg",
  2566. bottom: 29 / 3734
  2567. }
  2568. },
  2569. back: {
  2570. height: math.unit(4, "meter"),
  2571. weight: math.unit(150, "kg"),
  2572. name: "Back",
  2573. image: {
  2574. source: "./media/characters/talan/back.svg"
  2575. }
  2576. },
  2577. dickBottom: {
  2578. height: math.unit(0.621, "meter"),
  2579. name: "Dick (Bottom)",
  2580. image: {
  2581. source: "./media/characters/talan/dick-bottom.svg"
  2582. }
  2583. },
  2584. dickTop: {
  2585. height: math.unit(0.621, "meter"),
  2586. name: "Dick (Top)",
  2587. image: {
  2588. source: "./media/characters/talan/dick-top.svg"
  2589. }
  2590. },
  2591. dickSide: {
  2592. height: math.unit(0.305, "meter"),
  2593. name: "Dick (Side)",
  2594. image: {
  2595. source: "./media/characters/talan/dick-side.svg"
  2596. }
  2597. },
  2598. dickFront: {
  2599. height: math.unit(0.305, "meter"),
  2600. name: "Dick (Front)",
  2601. image: {
  2602. source: "./media/characters/talan/dick-front.svg"
  2603. }
  2604. },
  2605. },
  2606. [
  2607. {
  2608. name: "Normal",
  2609. height: math.unit(4, "meters")
  2610. },
  2611. {
  2612. name: "Macro",
  2613. height: math.unit(100, "meters")
  2614. },
  2615. {
  2616. name: "Megamacro",
  2617. height: math.unit(2, "miles"),
  2618. default: true
  2619. },
  2620. {
  2621. name: "Gigamacro",
  2622. height: math.unit(5000, "miles")
  2623. },
  2624. {
  2625. name: "Teramacro",
  2626. height: math.unit(100, "parsecs")
  2627. }
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2632. {
  2633. front: {
  2634. height: math.unit(2, "meter"),
  2635. weight: math.unit(90, "kg"),
  2636. name: "Front",
  2637. image: {
  2638. source: "./media/characters/gael'rathus/front.svg"
  2639. }
  2640. },
  2641. frontAlt: {
  2642. height: math.unit(2, "meter"),
  2643. weight: math.unit(90, "kg"),
  2644. name: "Front (alt)",
  2645. image: {
  2646. source: "./media/characters/gael'rathus/front-alt.svg"
  2647. }
  2648. },
  2649. frontAlt2: {
  2650. height: math.unit(2, "meter"),
  2651. weight: math.unit(90, "kg"),
  2652. name: "Front (alt 2)",
  2653. image: {
  2654. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2655. }
  2656. }
  2657. },
  2658. [
  2659. {
  2660. name: "Normal",
  2661. height: math.unit(9, "feet"),
  2662. default: true
  2663. },
  2664. {
  2665. name: "Large",
  2666. height: math.unit(25, "feet")
  2667. },
  2668. {
  2669. name: "Macro",
  2670. height: math.unit(0.25, "miles")
  2671. },
  2672. {
  2673. name: "Megamacro",
  2674. height: math.unit(10, "miles")
  2675. }
  2676. ]
  2677. ))
  2678. characterMakers.push(() => makeCharacter(
  2679. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2680. {
  2681. side: {
  2682. height: math.unit(2, "meter"),
  2683. weight: math.unit(140, "kg"),
  2684. name: "Side",
  2685. image: {
  2686. source: "./media/characters/sosha/side.svg",
  2687. bottom: 0.042
  2688. }
  2689. },
  2690. },
  2691. [
  2692. {
  2693. name: "Normal",
  2694. height: math.unit(12, "feet"),
  2695. default: true
  2696. }
  2697. ]
  2698. ))
  2699. characterMakers.push(() => makeCharacter(
  2700. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2701. {
  2702. side: {
  2703. height: math.unit(5 + 5 / 12, "feet"),
  2704. weight: math.unit(170, "kg"),
  2705. name: "Side",
  2706. image: {
  2707. source: "./media/characters/runnola/side.svg",
  2708. extra: 741 / 448,
  2709. bottom: 0.05
  2710. }
  2711. },
  2712. },
  2713. [
  2714. {
  2715. name: "Small",
  2716. height: math.unit(3, "feet")
  2717. },
  2718. {
  2719. name: "Normal",
  2720. height: math.unit(5 + 5 / 12, "feet"),
  2721. default: true
  2722. },
  2723. {
  2724. name: "Big",
  2725. height: math.unit(10, "feet")
  2726. },
  2727. ]
  2728. ))
  2729. characterMakers.push(() => makeCharacter(
  2730. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2731. {
  2732. front: {
  2733. height: math.unit(2, "meter"),
  2734. weight: math.unit(50, "kg"),
  2735. name: "Front",
  2736. image: {
  2737. source: "./media/characters/kurribird/front.svg",
  2738. bottom: 0.015
  2739. }
  2740. },
  2741. frontAlt: {
  2742. height: math.unit(1.5, "meter"),
  2743. weight: math.unit(50, "kg"),
  2744. name: "Front (Alt)",
  2745. image: {
  2746. source: "./media/characters/kurribird/front-alt.svg",
  2747. extra: 1.45
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Normal",
  2754. height: math.unit(7, "feet")
  2755. },
  2756. {
  2757. name: "Big",
  2758. height: math.unit(12, "feet"),
  2759. default: true
  2760. },
  2761. {
  2762. name: "Macro",
  2763. height: math.unit(1500, "feet")
  2764. },
  2765. {
  2766. name: "Megamacro",
  2767. height: math.unit(2, "miles")
  2768. }
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(2, "meter"),
  2776. weight: math.unit(80, "kg"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/elbial/front.svg",
  2780. extra: 1643 / 1556,
  2781. bottom: 60.2 / 1696
  2782. }
  2783. },
  2784. side: {
  2785. height: math.unit(2, "meter"),
  2786. weight: math.unit(80, "kg"),
  2787. name: "Side",
  2788. image: {
  2789. source: "./media/characters/elbial/side.svg",
  2790. extra: 1630 / 1565,
  2791. bottom: 71.5 / 1697
  2792. }
  2793. },
  2794. back: {
  2795. height: math.unit(2, "meter"),
  2796. weight: math.unit(80, "kg"),
  2797. name: "Back",
  2798. image: {
  2799. source: "./media/characters/elbial/back.svg",
  2800. extra: 1668 / 1595,
  2801. bottom: 5.6 / 1672
  2802. }
  2803. },
  2804. frontDressed: {
  2805. height: math.unit(2, "meter"),
  2806. weight: math.unit(80, "kg"),
  2807. name: "Front (Dressed)",
  2808. image: {
  2809. source: "./media/characters/elbial/front-dressed.svg",
  2810. extra: 1653 / 1584,
  2811. bottom: 57 / 1708
  2812. }
  2813. },
  2814. genitals: {
  2815. height: math.unit(2 / 3.367, "meter"),
  2816. name: "Genitals",
  2817. image: {
  2818. source: "./media/characters/elbial/genitals.svg"
  2819. }
  2820. },
  2821. },
  2822. [
  2823. {
  2824. name: "Large",
  2825. height: math.unit(100, "feet")
  2826. },
  2827. {
  2828. name: "Macro",
  2829. height: math.unit(500, "feet"),
  2830. default: true
  2831. },
  2832. {
  2833. name: "Megamacro",
  2834. height: math.unit(10, "miles")
  2835. },
  2836. {
  2837. name: "Gigamacro",
  2838. height: math.unit(25000, "miles")
  2839. },
  2840. {
  2841. name: "Full-Size",
  2842. height: math.unit(8000000, "gigaparsecs")
  2843. }
  2844. ]
  2845. ))
  2846. characterMakers.push(() => makeCharacter(
  2847. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2848. {
  2849. front: {
  2850. height: math.unit(2, "meter"),
  2851. weight: math.unit(60, "kg"),
  2852. name: "Front",
  2853. image: {
  2854. source: "./media/characters/noah/front.svg"
  2855. }
  2856. },
  2857. talons: {
  2858. height: math.unit(0.315, "meter"),
  2859. name: "Talons",
  2860. image: {
  2861. source: "./media/characters/noah/talons.svg"
  2862. }
  2863. }
  2864. },
  2865. [
  2866. {
  2867. name: "Large",
  2868. height: math.unit(50, "feet")
  2869. },
  2870. {
  2871. name: "Macro",
  2872. height: math.unit(750, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Megamacro",
  2877. height: math.unit(50, "miles")
  2878. },
  2879. {
  2880. name: "Gigamacro",
  2881. height: math.unit(100000, "miles")
  2882. },
  2883. {
  2884. name: "Full-Size",
  2885. height: math.unit(3000000000, "miles")
  2886. }
  2887. ]
  2888. ))
  2889. characterMakers.push(() => makeCharacter(
  2890. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2891. {
  2892. front: {
  2893. height: math.unit(2, "meter"),
  2894. weight: math.unit(80, "kg"),
  2895. name: "Front",
  2896. image: {
  2897. source: "./media/characters/natalya/front.svg"
  2898. }
  2899. },
  2900. back: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(80, "kg"),
  2903. name: "Back",
  2904. image: {
  2905. source: "./media/characters/natalya/back.svg"
  2906. }
  2907. }
  2908. },
  2909. [
  2910. {
  2911. name: "Normal",
  2912. height: math.unit(150, "feet"),
  2913. default: true
  2914. },
  2915. {
  2916. name: "Megamacro",
  2917. height: math.unit(5, "miles")
  2918. },
  2919. {
  2920. name: "Full-Size",
  2921. height: math.unit(600, "kiloparsecs")
  2922. }
  2923. ]
  2924. ))
  2925. characterMakers.push(() => makeCharacter(
  2926. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2927. {
  2928. front: {
  2929. height: math.unit(2, "meter"),
  2930. weight: math.unit(50, "kg"),
  2931. name: "Front",
  2932. image: {
  2933. source: "./media/characters/erestrebah/front.svg",
  2934. extra: 208 / 193,
  2935. bottom: 0.055
  2936. }
  2937. },
  2938. back: {
  2939. height: math.unit(2, "meter"),
  2940. weight: math.unit(50, "kg"),
  2941. name: "Back",
  2942. image: {
  2943. source: "./media/characters/erestrebah/back.svg",
  2944. extra: 1.3
  2945. }
  2946. }
  2947. },
  2948. [
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(10, "feet")
  2952. },
  2953. {
  2954. name: "Large",
  2955. height: math.unit(50, "feet"),
  2956. default: true
  2957. },
  2958. {
  2959. name: "Macro",
  2960. height: math.unit(300, "feet")
  2961. },
  2962. {
  2963. name: "Macro+",
  2964. height: math.unit(750, "feet")
  2965. },
  2966. {
  2967. name: "Megamacro",
  2968. height: math.unit(3, "miles")
  2969. }
  2970. ]
  2971. ))
  2972. characterMakers.push(() => makeCharacter(
  2973. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2974. {
  2975. front: {
  2976. height: math.unit(2, "meter"),
  2977. weight: math.unit(80, "kg"),
  2978. name: "Front",
  2979. image: {
  2980. source: "./media/characters/jennifer/front.svg",
  2981. bottom: 0.11,
  2982. extra: 1.16
  2983. }
  2984. },
  2985. frontAlt: {
  2986. height: math.unit(2, "meter"),
  2987. weight: math.unit(80, "kg"),
  2988. name: "Front (Alt)",
  2989. image: {
  2990. source: "./media/characters/jennifer/front-alt.svg"
  2991. }
  2992. }
  2993. },
  2994. [
  2995. {
  2996. name: "Canon Height",
  2997. height: math.unit(120, "feet"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Macro+",
  3002. height: math.unit(300, "feet")
  3003. },
  3004. {
  3005. name: "Megamacro",
  3006. height: math.unit(20000, "feet")
  3007. }
  3008. ]
  3009. ))
  3010. characterMakers.push(() => makeCharacter(
  3011. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3012. {
  3013. front: {
  3014. height: math.unit(2, "meter"),
  3015. weight: math.unit(50, "kg"),
  3016. name: "Front",
  3017. image: {
  3018. source: "./media/characters/kalista/front.svg",
  3019. extra: 1947 / 1700,
  3020. bottom: 76.6 / 1412.98
  3021. }
  3022. },
  3023. back: {
  3024. height: math.unit(2, "meter"),
  3025. weight: math.unit(50, "kg"),
  3026. name: "Back",
  3027. image: {
  3028. source: "./media/characters/kalista/back.svg",
  3029. extra: 1366 / 1156,
  3030. bottom: 33.9 / 1362.78
  3031. }
  3032. }
  3033. },
  3034. [
  3035. {
  3036. name: "Uncomfortably Small",
  3037. height: math.unit(10, "feet")
  3038. },
  3039. {
  3040. name: "Small",
  3041. height: math.unit(30, "feet")
  3042. },
  3043. {
  3044. name: "Macro",
  3045. height: math.unit(100, "feet"),
  3046. default: true
  3047. },
  3048. {
  3049. name: "Macro+",
  3050. height: math.unit(2000, "feet")
  3051. },
  3052. {
  3053. name: "True Form",
  3054. height: math.unit(8924, "miles")
  3055. }
  3056. ]
  3057. ))
  3058. characterMakers.push(() => makeCharacter(
  3059. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3060. {
  3061. front: {
  3062. height: math.unit(2, "meter"),
  3063. weight: math.unit(120, "kg"),
  3064. name: "Front",
  3065. image: {
  3066. source: "./media/characters/ggv/front.svg"
  3067. }
  3068. },
  3069. side: {
  3070. height: math.unit(2, "meter"),
  3071. weight: math.unit(120, "kg"),
  3072. name: "Side",
  3073. image: {
  3074. source: "./media/characters/ggv/side.svg"
  3075. }
  3076. }
  3077. },
  3078. [
  3079. {
  3080. name: "Extremely Puny",
  3081. height: math.unit(9 + 5 / 12, "feet")
  3082. },
  3083. {
  3084. name: "Horribly Small",
  3085. height: math.unit(47.7, "miles"),
  3086. default: true
  3087. },
  3088. {
  3089. name: "Reasonably Sized",
  3090. height: math.unit(25000, "parsecs")
  3091. },
  3092. {
  3093. name: "Slightly Uncompressed",
  3094. height: math.unit(7.77e31, "parsecs")
  3095. },
  3096. {
  3097. name: "Omniversal",
  3098. height: math.unit(1e300, "meters")
  3099. },
  3100. ]
  3101. ))
  3102. characterMakers.push(() => makeCharacter(
  3103. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3104. {
  3105. front: {
  3106. height: math.unit(2, "meter"),
  3107. weight: math.unit(75, "lb"),
  3108. name: "Front",
  3109. image: {
  3110. source: "./media/characters/napalm/front.svg"
  3111. }
  3112. },
  3113. back: {
  3114. height: math.unit(2, "meter"),
  3115. weight: math.unit(75, "lb"),
  3116. name: "Back",
  3117. image: {
  3118. source: "./media/characters/napalm/back.svg"
  3119. }
  3120. }
  3121. },
  3122. [
  3123. {
  3124. name: "Standard",
  3125. height: math.unit(55, "feet"),
  3126. default: true
  3127. }
  3128. ]
  3129. ))
  3130. characterMakers.push(() => makeCharacter(
  3131. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3132. {
  3133. front: {
  3134. height: math.unit(7 + 5 / 6, "feet"),
  3135. weight: math.unit(325, "lb"),
  3136. name: "Front",
  3137. image: {
  3138. source: "./media/characters/asana/front.svg",
  3139. extra: 1133 / 1060,
  3140. bottom: 15.2 / 1148.6
  3141. }
  3142. },
  3143. back: {
  3144. height: math.unit(7 + 5 / 6, "feet"),
  3145. weight: math.unit(325, "lb"),
  3146. name: "Back",
  3147. image: {
  3148. source: "./media/characters/asana/back.svg",
  3149. extra: 1114 / 1043,
  3150. bottom: 5 / 1120
  3151. }
  3152. },
  3153. dressedDark: {
  3154. height: math.unit(7 + 5 / 6, "feet"),
  3155. weight: math.unit(325, "lb"),
  3156. name: "Dressed (Dark)",
  3157. image: {
  3158. source: "./media/characters/asana/dressed-dark.svg",
  3159. extra: 1133 / 1060,
  3160. bottom: 15.2 / 1148.6
  3161. }
  3162. },
  3163. dressedLight: {
  3164. height: math.unit(7 + 5 / 6, "feet"),
  3165. weight: math.unit(325, "lb"),
  3166. name: "Dressed (Light)",
  3167. image: {
  3168. source: "./media/characters/asana/dressed-light.svg",
  3169. extra: 1133 / 1060,
  3170. bottom: 15.2 / 1148.6
  3171. }
  3172. },
  3173. },
  3174. [
  3175. {
  3176. name: "Standard",
  3177. height: math.unit(7 + 5 / 6, "feet"),
  3178. default: true
  3179. },
  3180. {
  3181. name: "Large",
  3182. height: math.unit(10, "meters")
  3183. },
  3184. {
  3185. name: "Macro",
  3186. height: math.unit(2500, "meters")
  3187. },
  3188. {
  3189. name: "Megamacro",
  3190. height: math.unit(5e6, "meters")
  3191. },
  3192. {
  3193. name: "Examacro",
  3194. height: math.unit(5e12, "lightyears")
  3195. },
  3196. {
  3197. name: "Max Size",
  3198. height: math.unit(1e31, "lightyears")
  3199. }
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3204. {
  3205. front: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(60, "kg"),
  3208. name: "Front",
  3209. image: {
  3210. source: "./media/characters/ebony/front.svg",
  3211. bottom: 0.03,
  3212. extra: 1045 / 810 + 0.03
  3213. }
  3214. },
  3215. side: {
  3216. height: math.unit(2, "meter"),
  3217. weight: math.unit(60, "kg"),
  3218. name: "Side",
  3219. image: {
  3220. source: "./media/characters/ebony/side.svg",
  3221. bottom: 0.03,
  3222. extra: 1045 / 810 + 0.03
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(2, "meter"),
  3227. weight: math.unit(60, "kg"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/ebony/back.svg",
  3231. bottom: 0.01,
  3232. extra: 1045 / 810 + 0.01
  3233. }
  3234. },
  3235. },
  3236. [
  3237. // TODO check why I did this lol
  3238. {
  3239. name: "Standard",
  3240. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3241. default: true
  3242. },
  3243. {
  3244. name: "Macro",
  3245. height: math.unit(200, "feet")
  3246. },
  3247. {
  3248. name: "Gigamacro",
  3249. height: math.unit(13000, "km")
  3250. }
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(6, "feet"),
  3258. weight: math.unit(175, "lb"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/mountain/front.svg",
  3262. extra: 972 / 955,
  3263. bottom: 64 / 1036.6
  3264. }
  3265. },
  3266. back: {
  3267. height: math.unit(6, "feet"),
  3268. weight: math.unit(175, "lb"),
  3269. name: "Back",
  3270. image: {
  3271. source: "./media/characters/mountain/back.svg",
  3272. extra: 970 / 950,
  3273. bottom: 28.25 / 999
  3274. }
  3275. },
  3276. },
  3277. [
  3278. {
  3279. name: "Large",
  3280. height: math.unit(20, "meters")
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(300, "meters")
  3285. },
  3286. {
  3287. name: "Gigamacro",
  3288. height: math.unit(10000, "km"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Examacro",
  3293. height: math.unit(10e9, "lightyears")
  3294. }
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(8, "feet"),
  3302. weight: math.unit(500, "lb"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/rick/front.svg"
  3306. }
  3307. }
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(8, "feet"),
  3313. default: true
  3314. },
  3315. {
  3316. name: "Macro",
  3317. height: math.unit(5, "km")
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3323. {
  3324. front: {
  3325. height: math.unit(8, "feet"),
  3326. weight: math.unit(120, "lb"),
  3327. name: "Front",
  3328. image: {
  3329. source: "./media/characters/ona/front.svg"
  3330. }
  3331. },
  3332. frontAlt: {
  3333. height: math.unit(8, "feet"),
  3334. weight: math.unit(120, "lb"),
  3335. name: "Front (Alt)",
  3336. image: {
  3337. source: "./media/characters/ona/front-alt.svg"
  3338. }
  3339. },
  3340. back: {
  3341. height: math.unit(8, "feet"),
  3342. weight: math.unit(120, "lb"),
  3343. name: "Back",
  3344. image: {
  3345. source: "./media/characters/ona/back.svg"
  3346. }
  3347. },
  3348. foot: {
  3349. height: math.unit(1.1, "feet"),
  3350. name: "Foot",
  3351. image: {
  3352. source: "./media/characters/ona/foot.svg"
  3353. }
  3354. }
  3355. },
  3356. [
  3357. {
  3358. name: "Megamacro",
  3359. height: math.unit(70, "km"),
  3360. default: true
  3361. },
  3362. {
  3363. name: "Gigamacro",
  3364. height: math.unit(681818, "miles")
  3365. },
  3366. {
  3367. name: "Examacro",
  3368. height: math.unit(3800000, "lightyears")
  3369. },
  3370. ]
  3371. ))
  3372. characterMakers.push(() => makeCharacter(
  3373. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3374. {
  3375. front: {
  3376. height: math.unit(12, "feet"),
  3377. weight: math.unit(3000, "lb"),
  3378. name: "Front",
  3379. image: {
  3380. source: "./media/characters/mech/front.svg",
  3381. bottom: 0.025,
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(12, "feet"),
  3386. weight: math.unit(3000, "lb"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/mech/back.svg",
  3390. bottom: 0.03,
  3391. }
  3392. }
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(12, "feet")
  3398. },
  3399. {
  3400. name: "Macro",
  3401. height: math.unit(300, "feet"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Macro+",
  3406. height: math.unit(1500, "feet")
  3407. },
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(1.3, "meter"),
  3415. weight: math.unit(30, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/gregory/front.svg",
  3419. }
  3420. }
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(1.3, "meter"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(20, "meter")
  3431. }
  3432. ]
  3433. ))
  3434. characterMakers.push(() => makeCharacter(
  3435. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3436. {
  3437. front: {
  3438. height: math.unit(2.8, "meter"),
  3439. weight: math.unit(200, "kg"),
  3440. name: "Front",
  3441. image: {
  3442. source: "./media/characters/elory/front.svg",
  3443. }
  3444. }
  3445. },
  3446. [
  3447. {
  3448. name: "Normal",
  3449. height: math.unit(2.8, "meter"),
  3450. default: true
  3451. },
  3452. {
  3453. name: "Macro",
  3454. height: math.unit(38, "meter")
  3455. }
  3456. ]
  3457. ))
  3458. characterMakers.push(() => makeCharacter(
  3459. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3460. {
  3461. front: {
  3462. height: math.unit(470, "feet"),
  3463. weight: math.unit(924, "tons"),
  3464. name: "Front",
  3465. image: {
  3466. source: "./media/characters/angelpatamon/front.svg",
  3467. }
  3468. }
  3469. },
  3470. [
  3471. {
  3472. name: "Normal",
  3473. height: math.unit(470, "feet"),
  3474. default: true
  3475. },
  3476. {
  3477. name: "Deity Size I",
  3478. height: math.unit(28651.2, "km")
  3479. },
  3480. {
  3481. name: "Deity Size II",
  3482. height: math.unit(171907.2, "km")
  3483. }
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3488. {
  3489. side: {
  3490. height: math.unit(7.2, "meter"),
  3491. weight: math.unit(8.2, "tons"),
  3492. name: "Side",
  3493. image: {
  3494. source: "./media/characters/cryae/side.svg",
  3495. extra: 3500 / 1500
  3496. }
  3497. }
  3498. },
  3499. [
  3500. {
  3501. name: "Normal",
  3502. height: math.unit(7.2, "meter"),
  3503. default: true
  3504. }
  3505. ]
  3506. ))
  3507. characterMakers.push(() => makeCharacter(
  3508. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3509. {
  3510. front: {
  3511. height: math.unit(6, "feet"),
  3512. weight: math.unit(175, "lb"),
  3513. name: "Front",
  3514. image: {
  3515. source: "./media/characters/xera/front.svg",
  3516. extra: 2377 / 1972,
  3517. bottom: 75.5 / 2452
  3518. }
  3519. },
  3520. side: {
  3521. height: math.unit(6, "feet"),
  3522. weight: math.unit(175, "lb"),
  3523. name: "Side",
  3524. image: {
  3525. source: "./media/characters/xera/side.svg",
  3526. extra: 2345 / 2019,
  3527. bottom: 39.7 / 2384
  3528. }
  3529. },
  3530. back: {
  3531. height: math.unit(6, "feet"),
  3532. weight: math.unit(175, "lb"),
  3533. name: "Back",
  3534. image: {
  3535. source: "./media/characters/xera/back.svg",
  3536. extra: 2095 / 1984,
  3537. bottom: 67 / 2166
  3538. }
  3539. },
  3540. },
  3541. [
  3542. {
  3543. name: "Small",
  3544. height: math.unit(10, "feet")
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(500, "meters"),
  3549. default: true
  3550. },
  3551. {
  3552. name: "Macro+",
  3553. height: math.unit(10, "km")
  3554. },
  3555. {
  3556. name: "Gigamacro",
  3557. height: math.unit(25000, "km")
  3558. },
  3559. {
  3560. name: "Teramacro",
  3561. height: math.unit(3e6, "km")
  3562. }
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3567. {
  3568. front: {
  3569. height: math.unit(6, "feet"),
  3570. weight: math.unit(175, "lb"),
  3571. name: "Front",
  3572. image: {
  3573. source: "./media/characters/nebula/front.svg",
  3574. extra: 2566 / 2362,
  3575. bottom: 81 / 2644
  3576. }
  3577. }
  3578. },
  3579. [
  3580. {
  3581. name: "Small",
  3582. height: math.unit(4.5, "meters")
  3583. },
  3584. {
  3585. name: "Macro",
  3586. height: math.unit(1500, "meters"),
  3587. default: true
  3588. },
  3589. {
  3590. name: "Megamacro",
  3591. height: math.unit(150, "km")
  3592. },
  3593. {
  3594. name: "Gigamacro",
  3595. height: math.unit(27000, "km")
  3596. }
  3597. ]
  3598. ))
  3599. characterMakers.push(() => makeCharacter(
  3600. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3601. {
  3602. front: {
  3603. height: math.unit(6, "feet"),
  3604. weight: math.unit(225, "lb"),
  3605. name: "Front",
  3606. image: {
  3607. source: "./media/characters/abysgar/front.svg"
  3608. }
  3609. }
  3610. },
  3611. [
  3612. {
  3613. name: "Small",
  3614. height: math.unit(4.5, "meters")
  3615. },
  3616. {
  3617. name: "Macro",
  3618. height: math.unit(1250, "meters"),
  3619. default: true
  3620. },
  3621. {
  3622. name: "Megamacro",
  3623. height: math.unit(125, "km")
  3624. },
  3625. {
  3626. name: "Gigamacro",
  3627. height: math.unit(26000, "km")
  3628. }
  3629. ]
  3630. ))
  3631. characterMakers.push(() => makeCharacter(
  3632. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3633. {
  3634. front: {
  3635. height: math.unit(6, "feet"),
  3636. weight: math.unit(180, "lb"),
  3637. name: "Front",
  3638. image: {
  3639. source: "./media/characters/yakuz/front.svg"
  3640. }
  3641. }
  3642. },
  3643. [
  3644. {
  3645. name: "Small",
  3646. height: math.unit(5, "meters")
  3647. },
  3648. {
  3649. name: "Macro",
  3650. height: math.unit(1500, "meters"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Megamacro",
  3655. height: math.unit(200, "km")
  3656. },
  3657. {
  3658. name: "Gigamacro",
  3659. height: math.unit(100000, "km")
  3660. }
  3661. ]
  3662. ))
  3663. characterMakers.push(() => makeCharacter(
  3664. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3665. {
  3666. front: {
  3667. height: math.unit(6, "feet"),
  3668. weight: math.unit(175, "lb"),
  3669. name: "Front",
  3670. image: {
  3671. source: "./media/characters/mirova/front.svg",
  3672. extra: 3334 / 3071,
  3673. bottom: 42 / 3375.6
  3674. }
  3675. }
  3676. },
  3677. [
  3678. {
  3679. name: "Small",
  3680. height: math.unit(5, "meters")
  3681. },
  3682. {
  3683. name: "Macro",
  3684. height: math.unit(900, "meters"),
  3685. default: true
  3686. },
  3687. {
  3688. name: "Megamacro",
  3689. height: math.unit(135, "km")
  3690. },
  3691. {
  3692. name: "Gigamacro",
  3693. height: math.unit(20000, "km")
  3694. }
  3695. ]
  3696. ))
  3697. characterMakers.push(() => makeCharacter(
  3698. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3699. {
  3700. side: {
  3701. height: math.unit(28.35, "feet"),
  3702. weight: math.unit(99.75, "tons"),
  3703. name: "Side",
  3704. image: {
  3705. source: "./media/characters/asana-mech/side.svg",
  3706. extra: 923 / 699,
  3707. bottom: 50 / 975
  3708. }
  3709. },
  3710. chaingun: {
  3711. height: math.unit(7, "feet"),
  3712. weight: math.unit(2400, "lb"),
  3713. name: "Chaingun",
  3714. image: {
  3715. source: "./media/characters/asana-mech/chaingun.svg"
  3716. }
  3717. },
  3718. laser: {
  3719. height: math.unit(7.12, "feet"),
  3720. weight: math.unit(2000, "lb"),
  3721. name: "Laser",
  3722. image: {
  3723. source: "./media/characters/asana-mech/laser.svg"
  3724. }
  3725. },
  3726. },
  3727. [
  3728. {
  3729. name: "Normal",
  3730. height: math.unit(28.35, "feet"),
  3731. default: true
  3732. },
  3733. {
  3734. name: "Macro",
  3735. height: math.unit(2500, "feet")
  3736. },
  3737. {
  3738. name: "Megamacro",
  3739. height: math.unit(25, "miles")
  3740. },
  3741. {
  3742. name: "Examacro",
  3743. height: math.unit(6e8, "lightyears")
  3744. },
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(5, "meters"),
  3752. weight: math.unit(1000, "kg"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/asche/front.svg",
  3756. extra: 1258 / 1190,
  3757. bottom: 47 / 1305
  3758. }
  3759. },
  3760. frontUnderwear: {
  3761. height: math.unit(5, "meters"),
  3762. weight: math.unit(1000, "kg"),
  3763. name: "Front (Underwear)",
  3764. image: {
  3765. source: "./media/characters/asche/front-underwear.svg",
  3766. extra: 1258 / 1190,
  3767. bottom: 47 / 1305
  3768. }
  3769. },
  3770. frontDressed: {
  3771. height: math.unit(5, "meters"),
  3772. weight: math.unit(1000, "kg"),
  3773. name: "Front (Dressed)",
  3774. image: {
  3775. source: "./media/characters/asche/front-dressed.svg",
  3776. extra: 1258 / 1190,
  3777. bottom: 47 / 1305
  3778. }
  3779. },
  3780. frontArmor: {
  3781. height: math.unit(5, "meters"),
  3782. weight: math.unit(1000, "kg"),
  3783. name: "Front (Armored)",
  3784. image: {
  3785. source: "./media/characters/asche/front-armored.svg",
  3786. extra: 1374 / 1308,
  3787. bottom: 23 / 1397
  3788. }
  3789. },
  3790. mp724: {
  3791. height: math.unit(0.96, "meters"),
  3792. weight: math.unit(38, "kg"),
  3793. name: "H&K MP724",
  3794. image: {
  3795. source: "./media/characters/asche/h&k-mp724.svg"
  3796. }
  3797. },
  3798. side: {
  3799. height: math.unit(5, "meters"),
  3800. weight: math.unit(1000, "kg"),
  3801. name: "Side",
  3802. image: {
  3803. source: "./media/characters/asche/side.svg",
  3804. extra: 1717 / 1609,
  3805. bottom: 0.005
  3806. }
  3807. },
  3808. back: {
  3809. height: math.unit(5, "meters"),
  3810. weight: math.unit(1000, "kg"),
  3811. name: "Back",
  3812. image: {
  3813. source: "./media/characters/asche/back.svg",
  3814. extra: 1570 / 1501
  3815. }
  3816. },
  3817. },
  3818. [
  3819. {
  3820. name: "DEFCON 5",
  3821. height: math.unit(5, "meters")
  3822. },
  3823. {
  3824. name: "DEFCON 4",
  3825. height: math.unit(500, "meters"),
  3826. default: true
  3827. },
  3828. {
  3829. name: "DEFCON 3",
  3830. height: math.unit(5, "km")
  3831. },
  3832. {
  3833. name: "DEFCON 2",
  3834. height: math.unit(500, "km")
  3835. },
  3836. {
  3837. name: "DEFCON 1",
  3838. height: math.unit(500000, "km")
  3839. },
  3840. {
  3841. name: "DEFCON 0",
  3842. height: math.unit(3, "gigaparsecs")
  3843. },
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3848. {
  3849. front: {
  3850. height: math.unit(2, "meters"),
  3851. weight: math.unit(76, "kg"),
  3852. name: "Front",
  3853. image: {
  3854. source: "./media/characters/gale/front.svg"
  3855. }
  3856. },
  3857. frontAlt1: {
  3858. height: math.unit(2, "meters"),
  3859. weight: math.unit(76, "kg"),
  3860. name: "Front (Alt 1)",
  3861. image: {
  3862. source: "./media/characters/gale/front-alt-1.svg"
  3863. }
  3864. },
  3865. frontAlt2: {
  3866. height: math.unit(2, "meters"),
  3867. weight: math.unit(76, "kg"),
  3868. name: "Front (Alt 2)",
  3869. image: {
  3870. source: "./media/characters/gale/front-alt-2.svg"
  3871. }
  3872. },
  3873. },
  3874. [
  3875. {
  3876. name: "Normal",
  3877. height: math.unit(7, "feet")
  3878. },
  3879. {
  3880. name: "Macro",
  3881. height: math.unit(150, "feet"),
  3882. default: true
  3883. },
  3884. {
  3885. name: "Macro+",
  3886. height: math.unit(300, "feet")
  3887. },
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3892. {
  3893. front: {
  3894. height: math.unit(2, "meters"),
  3895. weight: math.unit(76, "kg"),
  3896. name: "Front",
  3897. image: {
  3898. source: "./media/characters/draylen/front.svg"
  3899. }
  3900. }
  3901. },
  3902. [
  3903. {
  3904. name: "Macro",
  3905. height: math.unit(150, "feet"),
  3906. default: true
  3907. }
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3912. {
  3913. front: {
  3914. height: math.unit(7 + 9 / 12, "feet"),
  3915. weight: math.unit(379, "lbs"),
  3916. name: "Front",
  3917. image: {
  3918. source: "./media/characters/chez/front.svg"
  3919. }
  3920. },
  3921. side: {
  3922. height: math.unit(7 + 9 / 12, "feet"),
  3923. weight: math.unit(379, "lbs"),
  3924. name: "Side",
  3925. image: {
  3926. source: "./media/characters/chez/side.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Normal",
  3933. height: math.unit(7 + 9 / 12, "feet"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "God King",
  3938. height: math.unit(9750000, "meters")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(6, "feet"),
  3947. weight: math.unit(275, "lbs"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/kaylum/front.svg",
  3951. bottom: 0.01,
  3952. extra: 1166 / 1031
  3953. }
  3954. },
  3955. frontWingless: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(275, "lbs"),
  3958. name: "Front (Wingless)",
  3959. image: {
  3960. source: "./media/characters/kaylum/front-wingless.svg",
  3961. bottom: 0.01,
  3962. extra: 1117 / 1031
  3963. }
  3964. }
  3965. },
  3966. [
  3967. {
  3968. name: "Normal",
  3969. height: math.unit(3.05, "meters")
  3970. },
  3971. {
  3972. name: "Master",
  3973. height: math.unit(5.5, "meters")
  3974. },
  3975. {
  3976. name: "Rampage",
  3977. height: math.unit(19, "meters")
  3978. },
  3979. {
  3980. name: "Macro Lite",
  3981. height: math.unit(37, "meters")
  3982. },
  3983. {
  3984. name: "Hyper Predator",
  3985. height: math.unit(61, "meters")
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(138, "meters"),
  3990. default: true
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(150, "lbs"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/geta/front.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Micro",
  4009. height: math.unit(3, "inches"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Normal",
  4014. height: math.unit(5 + 5 / 12, "feet")
  4015. }
  4016. ]
  4017. ))
  4018. characterMakers.push(() => makeCharacter(
  4019. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4020. {
  4021. front: {
  4022. height: math.unit(6, "feet"),
  4023. weight: math.unit(300, "lbs"),
  4024. name: "Front",
  4025. image: {
  4026. source: "./media/characters/tyrnn/front.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Main Height",
  4033. height: math.unit(355, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Fave. Height",
  4038. height: math.unit(2400, "feet")
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(300, "lbs"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/appledectomy/front.svg"
  4051. }
  4052. }
  4053. },
  4054. [
  4055. {
  4056. name: "Macro",
  4057. height: math.unit(2500, "feet")
  4058. },
  4059. {
  4060. name: "Megamacro",
  4061. height: math.unit(50, "miles"),
  4062. default: true
  4063. },
  4064. {
  4065. name: "Gigamacro",
  4066. height: math.unit(5000, "miles")
  4067. },
  4068. {
  4069. name: "Teramacro",
  4070. height: math.unit(250000, "miles")
  4071. },
  4072. ]
  4073. ))
  4074. characterMakers.push(() => makeCharacter(
  4075. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4076. {
  4077. front: {
  4078. height: math.unit(6, "feet"),
  4079. weight: math.unit(200, "lbs"),
  4080. name: "Front",
  4081. image: {
  4082. source: "./media/characters/vulpes/front.svg",
  4083. extra: 573 / 543,
  4084. bottom: 0.033
  4085. }
  4086. },
  4087. side: {
  4088. height: math.unit(6, "feet"),
  4089. weight: math.unit(200, "lbs"),
  4090. name: "Side",
  4091. image: {
  4092. source: "./media/characters/vulpes/side.svg",
  4093. extra: 577 / 549,
  4094. bottom: 11 / 588
  4095. }
  4096. },
  4097. back: {
  4098. height: math.unit(6, "feet"),
  4099. weight: math.unit(200, "lbs"),
  4100. name: "Back",
  4101. image: {
  4102. source: "./media/characters/vulpes/back.svg",
  4103. extra: 573 / 549,
  4104. bottom: 20 / 593
  4105. }
  4106. },
  4107. feet: {
  4108. height: math.unit(1.276, "feet"),
  4109. name: "Feet",
  4110. image: {
  4111. source: "./media/characters/vulpes/feet.svg"
  4112. }
  4113. },
  4114. maw: {
  4115. height: math.unit(1.18, "feet"),
  4116. name: "Maw",
  4117. image: {
  4118. source: "./media/characters/vulpes/maw.svg"
  4119. }
  4120. },
  4121. },
  4122. [
  4123. {
  4124. name: "Micro",
  4125. height: math.unit(2, "inches")
  4126. },
  4127. {
  4128. name: "Normal",
  4129. height: math.unit(6.3, "feet")
  4130. },
  4131. {
  4132. name: "Macro",
  4133. height: math.unit(850, "feet")
  4134. },
  4135. {
  4136. name: "Megamacro",
  4137. height: math.unit(7500, "feet"),
  4138. default: true
  4139. },
  4140. {
  4141. name: "Gigamacro",
  4142. height: math.unit(570000, "miles")
  4143. }
  4144. ]
  4145. ))
  4146. characterMakers.push(() => makeCharacter(
  4147. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4148. {
  4149. front: {
  4150. height: math.unit(6, "feet"),
  4151. weight: math.unit(210, "lbs"),
  4152. name: "Front",
  4153. image: {
  4154. source: "./media/characters/rain-fallen/front.svg"
  4155. }
  4156. },
  4157. side: {
  4158. height: math.unit(6, "feet"),
  4159. weight: math.unit(210, "lbs"),
  4160. name: "Side",
  4161. image: {
  4162. source: "./media/characters/rain-fallen/side.svg"
  4163. }
  4164. },
  4165. back: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(210, "lbs"),
  4168. name: "Back",
  4169. image: {
  4170. source: "./media/characters/rain-fallen/back.svg"
  4171. }
  4172. },
  4173. feral: {
  4174. height: math.unit(9, "feet"),
  4175. weight: math.unit(700, "lbs"),
  4176. name: "Feral",
  4177. image: {
  4178. source: "./media/characters/rain-fallen/feral.svg"
  4179. }
  4180. },
  4181. },
  4182. [
  4183. {
  4184. name: "Normal",
  4185. height: math.unit(5, "meter")
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(150, "meter"),
  4190. default: true
  4191. },
  4192. {
  4193. name: "Megamacro",
  4194. height: math.unit(278e6, "meter")
  4195. },
  4196. {
  4197. name: "Gigamacro",
  4198. height: math.unit(2e9, "meter")
  4199. },
  4200. {
  4201. name: "Teramacro",
  4202. height: math.unit(8e12, "meter")
  4203. },
  4204. {
  4205. name: "Devourer",
  4206. height: math.unit(14, "zettameters")
  4207. },
  4208. {
  4209. name: "Scarlet King",
  4210. height: math.unit(18, "yottameters")
  4211. },
  4212. {
  4213. name: "Void",
  4214. height: math.unit(6.66e66, "yottameters")
  4215. }
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4220. {
  4221. standing: {
  4222. height: math.unit(6, "feet"),
  4223. weight: math.unit(180, "lbs"),
  4224. name: "Standing",
  4225. image: {
  4226. source: "./media/characters/zaakira/standing.svg"
  4227. }
  4228. },
  4229. laying: {
  4230. height: math.unit(3, "feet"),
  4231. weight: math.unit(180, "lbs"),
  4232. name: "Laying",
  4233. image: {
  4234. source: "./media/characters/zaakira/laying.svg"
  4235. }
  4236. },
  4237. },
  4238. [
  4239. {
  4240. name: "Normal",
  4241. height: math.unit(12, "feet")
  4242. },
  4243. {
  4244. name: "Macro",
  4245. height: math.unit(279, "feet"),
  4246. default: true
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4252. {
  4253. femSfw: {
  4254. height: math.unit(8, "feet"),
  4255. weight: math.unit(350, "lb"),
  4256. name: "Fem",
  4257. image: {
  4258. source: "./media/characters/sigvald/fem-sfw.svg",
  4259. extra: 182 / 164,
  4260. bottom: 8.7 / 190.5
  4261. }
  4262. },
  4263. femNsfw: {
  4264. height: math.unit(8, "feet"),
  4265. weight: math.unit(350, "lb"),
  4266. name: "Fem (NSFW)",
  4267. image: {
  4268. source: "./media/characters/sigvald/fem-nsfw.svg",
  4269. extra: 182 / 164,
  4270. bottom: 8.7 / 190.5
  4271. }
  4272. },
  4273. maleNsfw: {
  4274. height: math.unit(8, "feet"),
  4275. weight: math.unit(350, "lb"),
  4276. name: "Male (NSFW)",
  4277. image: {
  4278. source: "./media/characters/sigvald/male-nsfw.svg",
  4279. extra: 182 / 164,
  4280. bottom: 8.7 / 190.5
  4281. }
  4282. },
  4283. hermNsfw: {
  4284. height: math.unit(8, "feet"),
  4285. weight: math.unit(350, "lb"),
  4286. name: "Herm (NSFW)",
  4287. image: {
  4288. source: "./media/characters/sigvald/herm-nsfw.svg",
  4289. extra: 182 / 164,
  4290. bottom: 8.7 / 190.5
  4291. }
  4292. },
  4293. dick: {
  4294. height: math.unit(2.36, "feet"),
  4295. name: "Dick",
  4296. image: {
  4297. source: "./media/characters/sigvald/dick.svg"
  4298. }
  4299. },
  4300. eye: {
  4301. height: math.unit(0.31, "feet"),
  4302. name: "Eye",
  4303. image: {
  4304. source: "./media/characters/sigvald/eye.svg"
  4305. }
  4306. },
  4307. mouth: {
  4308. height: math.unit(0.92, "feet"),
  4309. name: "Mouth",
  4310. image: {
  4311. source: "./media/characters/sigvald/mouth.svg"
  4312. }
  4313. },
  4314. paws: {
  4315. height: math.unit(2.2, "feet"),
  4316. name: "Paws",
  4317. image: {
  4318. source: "./media/characters/sigvald/paws.svg"
  4319. }
  4320. }
  4321. },
  4322. [
  4323. {
  4324. name: "Normal",
  4325. height: math.unit(8, "feet")
  4326. },
  4327. {
  4328. name: "Large",
  4329. height: math.unit(12, "feet")
  4330. },
  4331. {
  4332. name: "Larger",
  4333. height: math.unit(20, "feet")
  4334. },
  4335. {
  4336. name: "Macro",
  4337. height: math.unit(150, "feet")
  4338. },
  4339. {
  4340. name: "Macro+",
  4341. height: math.unit(200, "feet"),
  4342. default: true
  4343. },
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4348. {
  4349. side: {
  4350. height: math.unit(12, "feet"),
  4351. weight: math.unit(2000, "kg"),
  4352. name: "Side",
  4353. image: {
  4354. source: "./media/characters/scott/side.svg",
  4355. extra: 754 / 724,
  4356. bottom: 0.069
  4357. }
  4358. },
  4359. upright: {
  4360. height: math.unit(12, "feet"),
  4361. weight: math.unit(2000, "kg"),
  4362. name: "Upright",
  4363. image: {
  4364. source: "./media/characters/scott/upright.svg",
  4365. extra: 3881 / 3722,
  4366. bottom: 0.05
  4367. }
  4368. },
  4369. },
  4370. [
  4371. {
  4372. name: "Normal",
  4373. height: math.unit(12, "feet"),
  4374. default: true
  4375. },
  4376. ]
  4377. ))
  4378. characterMakers.push(() => makeCharacter(
  4379. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4380. {
  4381. side: {
  4382. height: math.unit(8, "meters"),
  4383. weight: math.unit(84755, "lbs"),
  4384. name: "Side",
  4385. image: {
  4386. source: "./media/characters/tobias/side.svg",
  4387. extra: 1474 / 1096,
  4388. bottom: 38.9 / 1513.1235
  4389. }
  4390. },
  4391. },
  4392. [
  4393. {
  4394. name: "Normal",
  4395. height: math.unit(8, "meters"),
  4396. default: true
  4397. },
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4402. {
  4403. front: {
  4404. height: math.unit(5.5, "feet"),
  4405. weight: math.unit(400, "lbs"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/kieran/front.svg",
  4409. extra: 2694 / 2364,
  4410. bottom: 217 / 2908
  4411. }
  4412. },
  4413. side: {
  4414. height: math.unit(5.5, "feet"),
  4415. weight: math.unit(400, "lbs"),
  4416. name: "Side",
  4417. image: {
  4418. source: "./media/characters/kieran/side.svg",
  4419. extra: 875 / 777,
  4420. bottom: 84.6 / 959
  4421. }
  4422. },
  4423. },
  4424. [
  4425. {
  4426. name: "Normal",
  4427. height: math.unit(5.5, "feet"),
  4428. default: true
  4429. },
  4430. ]
  4431. ))
  4432. characterMakers.push(() => makeCharacter(
  4433. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4434. {
  4435. side: {
  4436. height: math.unit(2, "meters"),
  4437. weight: math.unit(70, "kg"),
  4438. name: "Side",
  4439. image: {
  4440. source: "./media/characters/sanya/side.svg",
  4441. bottom: 0.02,
  4442. extra: 1.02
  4443. }
  4444. },
  4445. },
  4446. [
  4447. {
  4448. name: "Small",
  4449. height: math.unit(2, "meters")
  4450. },
  4451. {
  4452. name: "Normal",
  4453. height: math.unit(3, "meters")
  4454. },
  4455. {
  4456. name: "Macro",
  4457. height: math.unit(16, "meters"),
  4458. default: true
  4459. },
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4464. {
  4465. front: {
  4466. height: math.unit(2, "meters"),
  4467. weight: math.unit(120, "kg"),
  4468. name: "Front",
  4469. image: {
  4470. source: "./media/characters/miranda/front.svg",
  4471. extra: 195 / 185,
  4472. bottom: 10.9 / 206.5
  4473. }
  4474. },
  4475. back: {
  4476. height: math.unit(2, "meters"),
  4477. weight: math.unit(120, "kg"),
  4478. name: "Back",
  4479. image: {
  4480. source: "./media/characters/miranda/back.svg",
  4481. extra: 201 / 193,
  4482. bottom: 2.3 / 203.7
  4483. }
  4484. },
  4485. },
  4486. [
  4487. {
  4488. name: "Normal",
  4489. height: math.unit(10, "feet"),
  4490. default: true
  4491. }
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "James", species: ["deer"], tags: ["anthro"] },
  4496. {
  4497. side: {
  4498. height: math.unit(2, "meters"),
  4499. weight: math.unit(100, "kg"),
  4500. name: "Front",
  4501. image: {
  4502. source: "./media/characters/james/front.svg",
  4503. extra: 10 / 8.5
  4504. }
  4505. },
  4506. },
  4507. [
  4508. {
  4509. name: "Normal",
  4510. height: math.unit(8.5, "feet"),
  4511. default: true
  4512. }
  4513. ]
  4514. ))
  4515. characterMakers.push(() => makeCharacter(
  4516. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4517. {
  4518. side: {
  4519. height: math.unit(9.5, "feet"),
  4520. weight: math.unit(2500, "lbs"),
  4521. name: "Side",
  4522. image: {
  4523. source: "./media/characters/heather/side.svg"
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(9.5, "feet"),
  4531. default: true
  4532. }
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4537. {
  4538. side: {
  4539. height: math.unit(6.5, "feet"),
  4540. weight: math.unit(400, "lbs"),
  4541. name: "Side",
  4542. image: {
  4543. source: "./media/characters/lukas/side.svg",
  4544. extra: 7.25 / 6.5
  4545. }
  4546. },
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(6.5, "feet"),
  4552. default: true
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4558. {
  4559. side: {
  4560. height: math.unit(5, "feet"),
  4561. weight: math.unit(3000, "lbs"),
  4562. name: "Side",
  4563. image: {
  4564. source: "./media/characters/louise/side.svg"
  4565. }
  4566. },
  4567. },
  4568. [
  4569. {
  4570. name: "Normal",
  4571. height: math.unit(5, "feet"),
  4572. default: true
  4573. }
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4578. {
  4579. side: {
  4580. height: math.unit(6, "feet"),
  4581. weight: math.unit(150, "lbs"),
  4582. name: "Side",
  4583. image: {
  4584. source: "./media/characters/ramona/side.svg"
  4585. }
  4586. },
  4587. },
  4588. [
  4589. {
  4590. name: "Normal",
  4591. height: math.unit(5.3, "meters"),
  4592. default: true
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(20, "stories")
  4597. },
  4598. {
  4599. name: "Macro+",
  4600. height: math.unit(50, "stories")
  4601. },
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4606. {
  4607. standing: {
  4608. height: math.unit(5.75, "feet"),
  4609. weight: math.unit(160, "lbs"),
  4610. name: "Standing",
  4611. image: {
  4612. source: "./media/characters/deerpuff/standing.svg",
  4613. extra: 682 / 624
  4614. }
  4615. },
  4616. sitting: {
  4617. height: math.unit(5.75 / 1.79, "feet"),
  4618. weight: math.unit(160, "lbs"),
  4619. name: "Sitting",
  4620. image: {
  4621. source: "./media/characters/deerpuff/sitting.svg",
  4622. bottom: 44 / 400,
  4623. extra: 1
  4624. }
  4625. },
  4626. taurLaying: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(400, "lbs"),
  4629. name: "Taur (Laying)",
  4630. image: {
  4631. source: "./media/characters/deerpuff/taur-laying.svg"
  4632. }
  4633. },
  4634. },
  4635. [
  4636. {
  4637. name: "Puffball",
  4638. height: math.unit(6, "inches")
  4639. },
  4640. {
  4641. name: "Normalpuff",
  4642. height: math.unit(5.75, "feet")
  4643. },
  4644. {
  4645. name: "Macropuff",
  4646. height: math.unit(1500, "feet"),
  4647. default: true
  4648. },
  4649. {
  4650. name: "Megapuff",
  4651. height: math.unit(500, "miles")
  4652. },
  4653. {
  4654. name: "Gigapuff",
  4655. height: math.unit(250000, "miles")
  4656. },
  4657. {
  4658. name: "Omegapuff",
  4659. height: math.unit(1000, "lightyears")
  4660. },
  4661. ]
  4662. ))
  4663. characterMakers.push(() => makeCharacter(
  4664. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4665. {
  4666. stomping: {
  4667. height: math.unit(6, "feet"),
  4668. weight: math.unit(170, "lbs"),
  4669. name: "Stomping",
  4670. image: {
  4671. source: "./media/characters/vivian/stomping.svg"
  4672. }
  4673. },
  4674. sitting: {
  4675. height: math.unit(6 / 1.75, "feet"),
  4676. weight: math.unit(170, "lbs"),
  4677. name: "Sitting",
  4678. image: {
  4679. source: "./media/characters/vivian/sitting.svg",
  4680. bottom: 1 / 6.4,
  4681. extra: 1,
  4682. }
  4683. },
  4684. },
  4685. [
  4686. {
  4687. name: "Normal",
  4688. height: math.unit(7, "feet"),
  4689. default: true
  4690. },
  4691. {
  4692. name: "Macro",
  4693. height: math.unit(10, "stories")
  4694. },
  4695. {
  4696. name: "Macro+",
  4697. height: math.unit(30, "stories")
  4698. },
  4699. {
  4700. name: "Megamacro",
  4701. height: math.unit(10, "miles")
  4702. },
  4703. {
  4704. name: "Megamacro+",
  4705. height: math.unit(2750000, "meters")
  4706. },
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4711. {
  4712. front: {
  4713. height: math.unit(6, "feet"),
  4714. weight: math.unit(160, "lbs"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/prince/front.svg",
  4718. extra: 3400 / 3000
  4719. }
  4720. },
  4721. jumping: {
  4722. height: math.unit(6, "feet"),
  4723. weight: math.unit(160, "lbs"),
  4724. name: "Jumping",
  4725. image: {
  4726. source: "./media/characters/prince/jump.svg",
  4727. extra: 2555 / 2134
  4728. }
  4729. },
  4730. },
  4731. [
  4732. {
  4733. name: "Normal",
  4734. height: math.unit(7.75, "feet"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Not cute",
  4739. height: math.unit(17, "feet")
  4740. },
  4741. {
  4742. name: "I said NOT",
  4743. height: math.unit(91, "feet")
  4744. },
  4745. {
  4746. name: "Please stop",
  4747. height: math.unit(560, "feet")
  4748. },
  4749. {
  4750. name: "What have you done",
  4751. height: math.unit(2200, "feet")
  4752. },
  4753. {
  4754. name: "Deer God",
  4755. height: math.unit(3.6, "miles")
  4756. },
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4761. {
  4762. standing: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(300, "lbs"),
  4765. name: "Standing",
  4766. image: {
  4767. source: "./media/characters/psymon/standing.svg",
  4768. extra: 1888 / 1810,
  4769. bottom: 0.05
  4770. }
  4771. },
  4772. slithering: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(300, "lbs"),
  4775. name: "Slithering",
  4776. image: {
  4777. source: "./media/characters/psymon/slithering.svg",
  4778. extra: 1330 / 1224
  4779. }
  4780. },
  4781. slitheringAlt: {
  4782. height: math.unit(6, "feet"),
  4783. weight: math.unit(300, "lbs"),
  4784. name: "Slithering (Alt)",
  4785. image: {
  4786. source: "./media/characters/psymon/slithering-alt.svg",
  4787. extra: 1330 / 1224
  4788. }
  4789. },
  4790. },
  4791. [
  4792. {
  4793. name: "Normal",
  4794. height: math.unit(11.25, "feet"),
  4795. default: true
  4796. },
  4797. {
  4798. name: "Large",
  4799. height: math.unit(27, "feet")
  4800. },
  4801. {
  4802. name: "Giant",
  4803. height: math.unit(87, "feet")
  4804. },
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(365, "feet")
  4808. },
  4809. {
  4810. name: "Megamacro",
  4811. height: math.unit(3, "miles")
  4812. },
  4813. {
  4814. name: "World Serpent",
  4815. height: math.unit(8000, "miles")
  4816. },
  4817. ]
  4818. ))
  4819. characterMakers.push(() => makeCharacter(
  4820. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4821. {
  4822. front: {
  4823. height: math.unit(6, "feet"),
  4824. weight: math.unit(180, "lbs"),
  4825. name: "Front",
  4826. image: {
  4827. source: "./media/characters/daimos/front.svg",
  4828. extra: 4160 / 3897,
  4829. bottom: 0.021
  4830. }
  4831. }
  4832. },
  4833. [
  4834. {
  4835. name: "Normal",
  4836. height: math.unit(8, "feet"),
  4837. default: true
  4838. },
  4839. {
  4840. name: "Big Dog",
  4841. height: math.unit(22, "feet")
  4842. },
  4843. {
  4844. name: "Macro",
  4845. height: math.unit(127, "feet")
  4846. },
  4847. {
  4848. name: "Megamacro",
  4849. height: math.unit(3600, "feet")
  4850. },
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4855. {
  4856. side: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(180, "lbs"),
  4859. name: "Side",
  4860. image: {
  4861. source: "./media/characters/blake/side.svg",
  4862. extra: 1212 / 1120,
  4863. bottom: 0.05
  4864. }
  4865. },
  4866. crouched: {
  4867. height: math.unit(6 * 0.57, "feet"),
  4868. weight: math.unit(180, "lbs"),
  4869. name: "Crouched",
  4870. image: {
  4871. source: "./media/characters/blake/crouched.svg",
  4872. extra: 840 / 587,
  4873. bottom: 0.04
  4874. }
  4875. },
  4876. bent: {
  4877. height: math.unit(6 * 0.75, "feet"),
  4878. weight: math.unit(180, "lbs"),
  4879. name: "Bent",
  4880. image: {
  4881. source: "./media/characters/blake/bent.svg",
  4882. extra: 592 / 544,
  4883. bottom: 0.035
  4884. }
  4885. },
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(8 + 1 / 6, "feet"),
  4891. default: true
  4892. },
  4893. {
  4894. name: "Big Backside",
  4895. height: math.unit(37, "feet")
  4896. },
  4897. {
  4898. name: "Subway Shredder",
  4899. height: math.unit(72, "feet")
  4900. },
  4901. {
  4902. name: "City Carver",
  4903. height: math.unit(1675, "feet")
  4904. },
  4905. {
  4906. name: "Tectonic Tweaker",
  4907. height: math.unit(2300, "miles")
  4908. },
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4913. {
  4914. front: {
  4915. height: math.unit(6, "feet"),
  4916. weight: math.unit(180, "lbs"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/guisetto/front.svg",
  4920. extra: 856 / 817,
  4921. bottom: 0.06
  4922. }
  4923. },
  4924. airborne: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(180, "lbs"),
  4927. name: "Airborne",
  4928. image: {
  4929. source: "./media/characters/guisetto/airborne.svg",
  4930. extra: 584 / 525
  4931. }
  4932. },
  4933. },
  4934. [
  4935. {
  4936. name: "Normal",
  4937. height: math.unit(10 + 11 / 12, "feet"),
  4938. default: true
  4939. },
  4940. {
  4941. name: "Large",
  4942. height: math.unit(35, "feet")
  4943. },
  4944. {
  4945. name: "Macro",
  4946. height: math.unit(475, "feet")
  4947. },
  4948. ]
  4949. ))
  4950. characterMakers.push(() => makeCharacter(
  4951. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4952. {
  4953. front: {
  4954. height: math.unit(6, "feet"),
  4955. weight: math.unit(180, "lbs"),
  4956. name: "Front",
  4957. image: {
  4958. source: "./media/characters/luxor/front.svg",
  4959. extra: 2940 / 2152
  4960. }
  4961. },
  4962. back: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(180, "lbs"),
  4965. name: "Back",
  4966. image: {
  4967. source: "./media/characters/luxor/back.svg",
  4968. extra: 1083 / 960
  4969. }
  4970. },
  4971. },
  4972. [
  4973. {
  4974. name: "Normal",
  4975. height: math.unit(5 + 5 / 6, "feet"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Lamp",
  4980. height: math.unit(50, "feet")
  4981. },
  4982. {
  4983. name: "Lämp",
  4984. height: math.unit(300, "feet")
  4985. },
  4986. {
  4987. name: "The sun is a lamp",
  4988. height: math.unit(250000, "miles")
  4989. },
  4990. ]
  4991. ))
  4992. characterMakers.push(() => makeCharacter(
  4993. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4994. {
  4995. front: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(50, "lbs"),
  4998. name: "Front",
  4999. image: {
  5000. source: "./media/characters/huoyan/front.svg"
  5001. }
  5002. },
  5003. side: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(180, "lbs"),
  5006. name: "Side",
  5007. image: {
  5008. source: "./media/characters/huoyan/side.svg"
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Chef",
  5015. height: math.unit(9, "feet")
  5016. },
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(65, "feet"),
  5020. default: true
  5021. },
  5022. {
  5023. name: "Macro",
  5024. height: math.unit(780, "feet")
  5025. },
  5026. {
  5027. name: "Flaming Mountain",
  5028. height: math.unit(4.8, "miles")
  5029. },
  5030. {
  5031. name: "Celestial",
  5032. height: math.unit(765000, "miles")
  5033. },
  5034. ]
  5035. ))
  5036. characterMakers.push(() => makeCharacter(
  5037. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5038. {
  5039. front: {
  5040. height: math.unit(5 + 3 / 4, "feet"),
  5041. weight: math.unit(120, "lbs"),
  5042. name: "Front",
  5043. image: {
  5044. source: "./media/characters/tails/front.svg"
  5045. }
  5046. }
  5047. },
  5048. [
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(5 + 3 / 4, "feet"),
  5052. default: true
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5058. {
  5059. front: {
  5060. height: math.unit(4, "feet"),
  5061. weight: math.unit(50, "lbs"),
  5062. name: "Front",
  5063. image: {
  5064. source: "./media/characters/rainy/front.svg"
  5065. }
  5066. }
  5067. },
  5068. [
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(800, "feet"),
  5072. default: true
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5078. {
  5079. front: {
  5080. height: math.unit(6, "feet"),
  5081. weight: math.unit(150, "lbs"),
  5082. name: "Front",
  5083. image: {
  5084. source: "./media/characters/rainier/front.svg"
  5085. }
  5086. }
  5087. },
  5088. [
  5089. {
  5090. name: "Micro",
  5091. height: math.unit(2, "mm"),
  5092. default: true
  5093. }
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5098. {
  5099. front: {
  5100. height: math.unit(6, "feet"),
  5101. weight: math.unit(180, "lbs"),
  5102. name: "Front",
  5103. image: {
  5104. source: "./media/characters/andy/front.svg"
  5105. }
  5106. }
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(8, "feet"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Macro",
  5116. height: math.unit(1000, "feet")
  5117. },
  5118. {
  5119. name: "Megamacro",
  5120. height: math.unit(5, "miles")
  5121. },
  5122. {
  5123. name: "Gigamacro",
  5124. height: math.unit(5000, "miles")
  5125. },
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5130. {
  5131. front: {
  5132. height: math.unit(6, "feet"),
  5133. weight: math.unit(210, "lbs"),
  5134. name: "Front",
  5135. image: {
  5136. source: "./media/characters/cimmaron/front-sfw.svg",
  5137. extra: 701 / 676,
  5138. bottom: 0.046
  5139. }
  5140. },
  5141. back: {
  5142. height: math.unit(6, "feet"),
  5143. weight: math.unit(210, "lbs"),
  5144. name: "Back",
  5145. image: {
  5146. source: "./media/characters/cimmaron/back-sfw.svg",
  5147. extra: 701 / 676,
  5148. bottom: 0.046
  5149. }
  5150. },
  5151. frontNsfw: {
  5152. height: math.unit(6, "feet"),
  5153. weight: math.unit(210, "lbs"),
  5154. name: "Front (NSFW)",
  5155. image: {
  5156. source: "./media/characters/cimmaron/front-nsfw.svg",
  5157. extra: 701 / 676,
  5158. bottom: 0.046
  5159. }
  5160. },
  5161. backNsfw: {
  5162. height: math.unit(6, "feet"),
  5163. weight: math.unit(210, "lbs"),
  5164. name: "Back (NSFW)",
  5165. image: {
  5166. source: "./media/characters/cimmaron/back-nsfw.svg",
  5167. extra: 701 / 676,
  5168. bottom: 0.046
  5169. }
  5170. },
  5171. dick: {
  5172. height: math.unit(1.714, "feet"),
  5173. name: "Dick",
  5174. image: {
  5175. source: "./media/characters/cimmaron/dick.svg"
  5176. }
  5177. },
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(6, "feet"),
  5183. default: true
  5184. },
  5185. {
  5186. name: "Macro Mayor",
  5187. height: math.unit(350, "meters")
  5188. },
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5193. {
  5194. front: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(200, "lbs"),
  5197. name: "Front",
  5198. image: {
  5199. source: "./media/characters/akari/front.svg",
  5200. extra: 962 / 901,
  5201. bottom: 0.04
  5202. }
  5203. }
  5204. },
  5205. [
  5206. {
  5207. name: "Micro",
  5208. height: math.unit(5, "inches"),
  5209. default: true
  5210. },
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(7, "feet")
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5219. {
  5220. front: {
  5221. height: math.unit(6, "feet"),
  5222. weight: math.unit(140, "lbs"),
  5223. name: "Front",
  5224. image: {
  5225. source: "./media/characters/cynosura/front.svg",
  5226. extra: 896 / 847
  5227. }
  5228. },
  5229. back: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(140, "lbs"),
  5232. name: "Back",
  5233. image: {
  5234. source: "./media/characters/cynosura/back.svg",
  5235. extra: 1365 / 1250
  5236. }
  5237. },
  5238. },
  5239. [
  5240. {
  5241. name: "Micro",
  5242. height: math.unit(4, "inches")
  5243. },
  5244. {
  5245. name: "Normal",
  5246. height: math.unit(5.75, "feet"),
  5247. default: true
  5248. },
  5249. {
  5250. name: "Tall",
  5251. height: math.unit(10, "feet")
  5252. },
  5253. {
  5254. name: "Big",
  5255. height: math.unit(20, "feet")
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(50, "feet")
  5260. },
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5265. {
  5266. front: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(170, "lbs"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/gin/front.svg",
  5272. extra: 1.053,
  5273. bottom: 0.025
  5274. }
  5275. },
  5276. foot: {
  5277. height: math.unit(6 / 4.25, "feet"),
  5278. name: "Foot",
  5279. image: {
  5280. source: "./media/characters/gin/foot.svg"
  5281. }
  5282. },
  5283. sole: {
  5284. height: math.unit(6 / 4.40, "feet"),
  5285. name: "Sole",
  5286. image: {
  5287. source: "./media/characters/gin/sole.svg"
  5288. }
  5289. },
  5290. },
  5291. [
  5292. {
  5293. name: "Normal",
  5294. height: math.unit(13 + 2 / 12, "feet")
  5295. },
  5296. {
  5297. name: "Macro",
  5298. height: math.unit(1500, "feet")
  5299. },
  5300. {
  5301. name: "Megamacro",
  5302. height: math.unit(200, "miles"),
  5303. default: true
  5304. },
  5305. {
  5306. name: "Gigamacro",
  5307. height: math.unit(500, "megameters")
  5308. },
  5309. {
  5310. name: "Teramacro",
  5311. height: math.unit(15, "lightyears")
  5312. }
  5313. ]
  5314. ))
  5315. characterMakers.push(() => makeCharacter(
  5316. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5317. {
  5318. front: {
  5319. height: math.unit(6 + 1 / 6, "feet"),
  5320. weight: math.unit(178, "lbs"),
  5321. name: "Front",
  5322. image: {
  5323. source: "./media/characters/guy/front.svg"
  5324. }
  5325. }
  5326. },
  5327. [
  5328. {
  5329. name: "Normal",
  5330. height: math.unit(6 + 1 / 6, "feet"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Large",
  5335. height: math.unit(25 + 7 / 12, "feet")
  5336. },
  5337. {
  5338. name: "Macro",
  5339. height: math.unit(60 + 9 / 12, "feet")
  5340. },
  5341. {
  5342. name: "Macro+",
  5343. height: math.unit(246, "feet")
  5344. },
  5345. {
  5346. name: "Macro++",
  5347. height: math.unit(878, "feet")
  5348. }
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5353. {
  5354. front: {
  5355. height: math.unit(9, "feet"),
  5356. weight: math.unit(800, "lbs"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/tiberius/front.svg",
  5360. extra: 2295 / 2071
  5361. }
  5362. },
  5363. back: {
  5364. height: math.unit(9, "feet"),
  5365. weight: math.unit(800, "lbs"),
  5366. name: "Back",
  5367. image: {
  5368. source: "./media/characters/tiberius/back.svg",
  5369. extra: 2373 / 2160
  5370. }
  5371. },
  5372. },
  5373. [
  5374. {
  5375. name: "Normal",
  5376. height: math.unit(9, "feet"),
  5377. default: true
  5378. }
  5379. ]
  5380. ))
  5381. characterMakers.push(() => makeCharacter(
  5382. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5383. {
  5384. front: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(600, "lbs"),
  5387. name: "Front",
  5388. image: {
  5389. source: "./media/characters/surgo/front.svg",
  5390. extra: 3591 / 2227
  5391. }
  5392. },
  5393. back: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(600, "lbs"),
  5396. name: "Back",
  5397. image: {
  5398. source: "./media/characters/surgo/back.svg",
  5399. extra: 3557 / 2228
  5400. }
  5401. },
  5402. laying: {
  5403. height: math.unit(6 * 0.85, "feet"),
  5404. weight: math.unit(600, "lbs"),
  5405. name: "Laying",
  5406. image: {
  5407. source: "./media/characters/surgo/laying.svg"
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(6, "feet"),
  5415. default: true
  5416. }
  5417. ]
  5418. ))
  5419. characterMakers.push(() => makeCharacter(
  5420. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5421. {
  5422. side: {
  5423. height: math.unit(6, "feet"),
  5424. weight: math.unit(150, "lbs"),
  5425. name: "Side",
  5426. image: {
  5427. source: "./media/characters/cibus/side.svg",
  5428. extra: 800 / 400
  5429. }
  5430. },
  5431. },
  5432. [
  5433. {
  5434. name: "Normal",
  5435. height: math.unit(6, "feet"),
  5436. default: true
  5437. }
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5442. {
  5443. front: {
  5444. height: math.unit(6, "feet"),
  5445. weight: math.unit(240, "lbs"),
  5446. name: "Front",
  5447. image: {
  5448. source: "./media/characters/nibbles/front.svg"
  5449. }
  5450. },
  5451. side: {
  5452. height: math.unit(6, "feet"),
  5453. weight: math.unit(240, "lbs"),
  5454. name: "Side",
  5455. image: {
  5456. source: "./media/characters/nibbles/side.svg"
  5457. }
  5458. },
  5459. },
  5460. [
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(9, "feet"),
  5464. default: true
  5465. }
  5466. ]
  5467. ))
  5468. characterMakers.push(() => makeCharacter(
  5469. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5470. {
  5471. side: {
  5472. height: math.unit(5 + 1 / 6, "feet"),
  5473. weight: math.unit(130, "lbs"),
  5474. name: "Side",
  5475. image: {
  5476. source: "./media/characters/rikky/side.svg",
  5477. extra: 851 / 801
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(5 + 1 / 6, "feet")
  5485. },
  5486. {
  5487. name: "Macro",
  5488. height: math.unit(152, "feet"),
  5489. default: true
  5490. },
  5491. {
  5492. name: "Megamacro",
  5493. height: math.unit(7, "miles")
  5494. }
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5499. {
  5500. side: {
  5501. height: math.unit(370, "cm"),
  5502. weight: math.unit(350, "lbs"),
  5503. name: "Side",
  5504. image: {
  5505. source: "./media/characters/malfressa/side.svg"
  5506. }
  5507. },
  5508. walking: {
  5509. height: math.unit(370, "cm"),
  5510. weight: math.unit(350, "lbs"),
  5511. name: "Walking",
  5512. image: {
  5513. source: "./media/characters/malfressa/walking.svg"
  5514. }
  5515. },
  5516. feral: {
  5517. height: math.unit(2500, "cm"),
  5518. weight: math.unit(100000, "lbs"),
  5519. name: "Feral",
  5520. image: {
  5521. source: "./media/characters/malfressa/feral.svg",
  5522. extra: 2108 / 837,
  5523. bottom: 0.02
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(370, "cm")
  5531. },
  5532. {
  5533. name: "Macro",
  5534. height: math.unit(300, "meters"),
  5535. default: true
  5536. }
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5541. {
  5542. front: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(60, "kg"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/jaro/front.svg"
  5548. }
  5549. },
  5550. back: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(60, "kg"),
  5553. name: "Back",
  5554. image: {
  5555. source: "./media/characters/jaro/back.svg"
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Micro",
  5562. height: math.unit(7, "inches")
  5563. },
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(5.5, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Minimacro",
  5571. height: math.unit(20, "feet")
  5572. },
  5573. {
  5574. name: "Macro",
  5575. height: math.unit(200, "meters")
  5576. }
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(195, "lb"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/rogue/front.svg"
  5588. }
  5589. },
  5590. },
  5591. [
  5592. {
  5593. name: "Macro",
  5594. height: math.unit(90, "feet"),
  5595. default: true
  5596. },
  5597. ]
  5598. ))
  5599. characterMakers.push(() => makeCharacter(
  5600. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5601. {
  5602. front: {
  5603. height: math.unit(5 + 8 / 12, "feet"),
  5604. weight: math.unit(140, "lb"),
  5605. name: "Front",
  5606. image: {
  5607. source: "./media/characters/piper/front.svg",
  5608. extra: 3928 / 3681
  5609. }
  5610. },
  5611. },
  5612. [
  5613. {
  5614. name: "Micro",
  5615. height: math.unit(2, "inches")
  5616. },
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(5 + 8 / 12, "feet")
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(250, "feet"),
  5624. default: true
  5625. },
  5626. {
  5627. name: "Megamacro",
  5628. height: math.unit(7, "miles")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5634. {
  5635. front: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(220, "lb"),
  5638. name: "Front",
  5639. image: {
  5640. source: "./media/characters/gemini/front.svg"
  5641. }
  5642. },
  5643. back: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(220, "lb"),
  5646. name: "Back",
  5647. image: {
  5648. source: "./media/characters/gemini/back.svg"
  5649. }
  5650. },
  5651. kneeling: {
  5652. height: math.unit(6 / 1.5, "feet"),
  5653. weight: math.unit(220, "lb"),
  5654. name: "Kneeling",
  5655. image: {
  5656. source: "./media/characters/gemini/kneeling.svg",
  5657. bottom: 0.02
  5658. }
  5659. },
  5660. },
  5661. [
  5662. {
  5663. name: "Macro",
  5664. height: math.unit(300, "meters"),
  5665. default: true
  5666. },
  5667. {
  5668. name: "Megamacro",
  5669. height: math.unit(6900, "meters")
  5670. },
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5675. {
  5676. anthro: {
  5677. height: math.unit(2.35, "meters"),
  5678. weight: math.unit(73, "kg"),
  5679. name: "Anthro",
  5680. image: {
  5681. source: "./media/characters/alicia/anthro.svg",
  5682. extra: 2571 / 2385,
  5683. bottom: 75 / 2648
  5684. }
  5685. },
  5686. paw: {
  5687. height: math.unit(1.32, "feet"),
  5688. name: "Paw",
  5689. image: {
  5690. source: "./media/characters/alicia/paw.svg"
  5691. }
  5692. },
  5693. feral: {
  5694. height: math.unit(1.69, "meters"),
  5695. weight: math.unit(73, "kg"),
  5696. name: "Feral",
  5697. image: {
  5698. source: "./media/characters/alicia/feral.svg",
  5699. extra: 2123 / 1715,
  5700. bottom: 222 / 2349
  5701. }
  5702. },
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(2.35, "meters")
  5708. },
  5709. {
  5710. name: "Macro",
  5711. height: math.unit(60, "meters"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Megamacro",
  5716. height: math.unit(10000, "kilometers")
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5722. {
  5723. front: {
  5724. height: math.unit(7, "feet"),
  5725. weight: math.unit(250, "lbs"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/archy/front.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Micro",
  5735. height: math.unit(1, "inch")
  5736. },
  5737. {
  5738. name: "Shorty",
  5739. height: math.unit(5, "feet")
  5740. },
  5741. {
  5742. name: "Normal",
  5743. height: math.unit(7, "feet")
  5744. },
  5745. {
  5746. name: "Macro",
  5747. height: math.unit(600, "meters"),
  5748. default: true
  5749. },
  5750. {
  5751. name: "Megamacro",
  5752. height: math.unit(1, "mile")
  5753. },
  5754. ]
  5755. ))
  5756. characterMakers.push(() => makeCharacter(
  5757. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5758. {
  5759. front: {
  5760. height: math.unit(1.65, "meters"),
  5761. weight: math.unit(74, "kg"),
  5762. name: "Front",
  5763. image: {
  5764. source: "./media/characters/berri/front.svg",
  5765. extra: 857 / 837,
  5766. bottom: 18 / 877
  5767. }
  5768. },
  5769. bum: {
  5770. height: math.unit(1.46, "feet"),
  5771. name: "Bum",
  5772. image: {
  5773. source: "./media/characters/berri/bum.svg"
  5774. }
  5775. },
  5776. mouth: {
  5777. height: math.unit(0.44, "feet"),
  5778. name: "Mouth",
  5779. image: {
  5780. source: "./media/characters/berri/mouth.svg"
  5781. }
  5782. },
  5783. paw: {
  5784. height: math.unit(0.826, "feet"),
  5785. name: "Paw",
  5786. image: {
  5787. source: "./media/characters/berri/paw.svg"
  5788. }
  5789. },
  5790. },
  5791. [
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(1.65, "meters")
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(60, "m"),
  5799. default: true
  5800. },
  5801. {
  5802. name: "Megamacro",
  5803. height: math.unit(9.213, "km")
  5804. },
  5805. {
  5806. name: "Planet Eater",
  5807. height: math.unit(489, "megameters")
  5808. },
  5809. {
  5810. name: "Teramacro",
  5811. height: math.unit(2471635000000, "meters")
  5812. },
  5813. {
  5814. name: "Examacro",
  5815. height: math.unit(8.0624e+26, "meters")
  5816. }
  5817. ]
  5818. ))
  5819. characterMakers.push(() => makeCharacter(
  5820. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5821. {
  5822. front: {
  5823. height: math.unit(1.72, "meters"),
  5824. weight: math.unit(68, "kg"),
  5825. name: "Front",
  5826. image: {
  5827. source: "./media/characters/lexi/front.svg"
  5828. }
  5829. }
  5830. },
  5831. [
  5832. {
  5833. name: "Very Smol",
  5834. height: math.unit(10, "mm")
  5835. },
  5836. {
  5837. name: "Micro",
  5838. height: math.unit(6.8, "cm"),
  5839. default: true
  5840. },
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(1.72, "m")
  5844. }
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5849. {
  5850. front: {
  5851. height: math.unit(1.69, "meters"),
  5852. weight: math.unit(68, "kg"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/martin/front.svg",
  5856. extra: 596 / 581
  5857. }
  5858. }
  5859. },
  5860. [
  5861. {
  5862. name: "Micro",
  5863. height: math.unit(6.85, "cm"),
  5864. default: true
  5865. },
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(1.69, "m")
  5869. }
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5874. {
  5875. front: {
  5876. height: math.unit(1.69, "meters"),
  5877. weight: math.unit(68, "kg"),
  5878. name: "Front",
  5879. image: {
  5880. source: "./media/characters/juno/front.svg"
  5881. }
  5882. }
  5883. },
  5884. [
  5885. {
  5886. name: "Micro",
  5887. height: math.unit(7, "cm")
  5888. },
  5889. {
  5890. name: "Normal",
  5891. height: math.unit(1.89, "m")
  5892. },
  5893. {
  5894. name: "Macro",
  5895. height: math.unit(353, "meters"),
  5896. default: true
  5897. }
  5898. ]
  5899. ))
  5900. characterMakers.push(() => makeCharacter(
  5901. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5902. {
  5903. front: {
  5904. height: math.unit(1.93, "meters"),
  5905. weight: math.unit(83, "kg"),
  5906. name: "Front",
  5907. image: {
  5908. source: "./media/characters/samantha/front.svg"
  5909. }
  5910. },
  5911. frontClothed: {
  5912. height: math.unit(1.93, "meters"),
  5913. weight: math.unit(83, "kg"),
  5914. name: "Front (Clothed)",
  5915. image: {
  5916. source: "./media/characters/samantha/front-clothed.svg"
  5917. }
  5918. },
  5919. back: {
  5920. height: math.unit(1.93, "meters"),
  5921. weight: math.unit(83, "kg"),
  5922. name: "Back",
  5923. image: {
  5924. source: "./media/characters/samantha/back.svg"
  5925. }
  5926. },
  5927. },
  5928. [
  5929. {
  5930. name: "Normal",
  5931. height: math.unit(1.93, "m")
  5932. },
  5933. {
  5934. name: "Macro",
  5935. height: math.unit(74, "meters"),
  5936. default: true
  5937. },
  5938. {
  5939. name: "Macro+",
  5940. height: math.unit(223, "meters"),
  5941. },
  5942. {
  5943. name: "Megamacro",
  5944. height: math.unit(8381, "meters"),
  5945. },
  5946. {
  5947. name: "Megamacro+",
  5948. height: math.unit(12000, "kilometers")
  5949. },
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5954. {
  5955. front: {
  5956. height: math.unit(1.92, "meters"),
  5957. weight: math.unit(80, "kg"),
  5958. name: "Front",
  5959. image: {
  5960. source: "./media/characters/dr-clay/front.svg"
  5961. }
  5962. },
  5963. frontClothed: {
  5964. height: math.unit(1.92, "meters"),
  5965. weight: math.unit(80, "kg"),
  5966. name: "Front (Clothed)",
  5967. image: {
  5968. source: "./media/characters/dr-clay/front-clothed.svg"
  5969. }
  5970. }
  5971. },
  5972. [
  5973. {
  5974. name: "Normal",
  5975. height: math.unit(1.92, "m")
  5976. },
  5977. {
  5978. name: "Macro",
  5979. height: math.unit(214, "meters"),
  5980. default: true
  5981. },
  5982. {
  5983. name: "Macro+",
  5984. height: math.unit(12.237, "meters"),
  5985. },
  5986. {
  5987. name: "Megamacro",
  5988. height: math.unit(557, "megameters"),
  5989. },
  5990. {
  5991. name: "Unimaginable",
  5992. height: math.unit(120e9, "lightyears")
  5993. },
  5994. ]
  5995. ))
  5996. characterMakers.push(() => makeCharacter(
  5997. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5998. {
  5999. front: {
  6000. height: math.unit(2, "meters"),
  6001. weight: math.unit(80, "kg"),
  6002. name: "Front",
  6003. image: {
  6004. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6005. }
  6006. }
  6007. },
  6008. [
  6009. {
  6010. name: "Teramacro",
  6011. height: math.unit(500000, "lightyears"),
  6012. default: true
  6013. },
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6018. {
  6019. front: {
  6020. height: math.unit(2, "meters"),
  6021. weight: math.unit(150, "kg"),
  6022. name: "Front",
  6023. image: {
  6024. source: "./media/characters/vemus/front.svg",
  6025. extra: 2384 / 2084,
  6026. bottom: 0.0123
  6027. }
  6028. }
  6029. },
  6030. [
  6031. {
  6032. name: "Normal",
  6033. height: math.unit(3.75, "meters"),
  6034. default: true
  6035. },
  6036. {
  6037. name: "Big",
  6038. height: math.unit(8, "meters")
  6039. },
  6040. {
  6041. name: "Macro",
  6042. height: math.unit(100, "meters")
  6043. },
  6044. {
  6045. name: "Macro+",
  6046. height: math.unit(1500, "meters")
  6047. },
  6048. {
  6049. name: "Stellar",
  6050. height: math.unit(14e8, "meters")
  6051. },
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6056. {
  6057. front: {
  6058. height: math.unit(2, "meters"),
  6059. weight: math.unit(70, "kg"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/beherit/front.svg",
  6063. extra: 1408 / 1242
  6064. }
  6065. }
  6066. },
  6067. [
  6068. {
  6069. name: "Normal",
  6070. height: math.unit(6, "feet")
  6071. },
  6072. {
  6073. name: "Lorg",
  6074. height: math.unit(25, "feet"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Lorger",
  6079. height: math.unit(75, "feet")
  6080. },
  6081. {
  6082. name: "Macro",
  6083. height: math.unit(200, "meters")
  6084. },
  6085. ]
  6086. ))
  6087. characterMakers.push(() => makeCharacter(
  6088. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6089. {
  6090. front: {
  6091. height: math.unit(2, "meters"),
  6092. weight: math.unit(150, "kg"),
  6093. name: "Front",
  6094. image: {
  6095. source: "./media/characters/everett/front.svg",
  6096. extra: 2038 / 1737,
  6097. bottom: 0.03
  6098. }
  6099. },
  6100. paw: {
  6101. height: math.unit(2 / 3.6, "meters"),
  6102. name: "Paw",
  6103. image: {
  6104. source: "./media/characters/everett/paw.svg"
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(15, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Lorg",
  6116. height: math.unit(70, "feet"),
  6117. default: true
  6118. },
  6119. {
  6120. name: "Lorger",
  6121. height: math.unit(250, "feet")
  6122. },
  6123. {
  6124. name: "Macro",
  6125. height: math.unit(500, "meters")
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(2, "meters"),
  6134. weight: math.unit(86, "kg"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/rose-lion/front.svg"
  6138. }
  6139. },
  6140. bent: {
  6141. height: math.unit(2 / 1.4288, "meters"),
  6142. weight: math.unit(86, "kg"),
  6143. name: "Bent",
  6144. image: {
  6145. source: "./media/characters/rose-lion/bent.svg"
  6146. }
  6147. }
  6148. },
  6149. [
  6150. {
  6151. name: "Mini-Micro",
  6152. height: math.unit(1, "cm")
  6153. },
  6154. {
  6155. name: "Micro",
  6156. height: math.unit(3.5, "inches"),
  6157. default: true
  6158. },
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(6 + 1 / 6, "feet")
  6162. },
  6163. {
  6164. name: "Mini-Macro",
  6165. height: math.unit(9 + 10 / 12, "feet")
  6166. },
  6167. ]
  6168. ))
  6169. characterMakers.push(() => makeCharacter(
  6170. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6171. {
  6172. front: {
  6173. height: math.unit(2, "meters"),
  6174. weight: math.unit(350, "lbs"),
  6175. name: "Front",
  6176. image: {
  6177. source: "./media/characters/regal/front.svg"
  6178. }
  6179. },
  6180. back: {
  6181. height: math.unit(2, "meters"),
  6182. weight: math.unit(350, "lbs"),
  6183. name: "Back",
  6184. image: {
  6185. source: "./media/characters/regal/back.svg"
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Macro",
  6192. height: math.unit(350, "feet"),
  6193. default: true
  6194. }
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6199. {
  6200. front: {
  6201. height: math.unit(4 + 11 / 12, "feet"),
  6202. weight: math.unit(100, "lbs"),
  6203. name: "Front",
  6204. image: {
  6205. source: "./media/characters/opal/front.svg"
  6206. }
  6207. },
  6208. frontAlt: {
  6209. height: math.unit(4 + 11 / 12, "feet"),
  6210. weight: math.unit(100, "lbs"),
  6211. name: "Front (Alt)",
  6212. image: {
  6213. source: "./media/characters/opal/front-alt.svg"
  6214. }
  6215. },
  6216. },
  6217. [
  6218. {
  6219. name: "Small",
  6220. height: math.unit(4 + 11 / 12, "feet")
  6221. },
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(20, "feet"),
  6225. default: true
  6226. },
  6227. {
  6228. name: "Macro",
  6229. height: math.unit(120, "feet")
  6230. },
  6231. {
  6232. name: "Megamacro",
  6233. height: math.unit(80, "miles")
  6234. },
  6235. {
  6236. name: "True Size",
  6237. height: math.unit(100000, "lightyears")
  6238. },
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6243. {
  6244. front: {
  6245. height: math.unit(6, "feet"),
  6246. weight: math.unit(200, "lbs"),
  6247. name: "Front",
  6248. image: {
  6249. source: "./media/characters/vector-wuff/front.svg"
  6250. }
  6251. }
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(2.8, "meters")
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(450, "meters"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Megamacro",
  6265. height: math.unit(15, "kilometers")
  6266. }
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6271. {
  6272. front: {
  6273. height: math.unit(6, "feet"),
  6274. weight: math.unit(256, "lbs"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/dannik/front.svg"
  6278. }
  6279. }
  6280. },
  6281. [
  6282. {
  6283. name: "Macro",
  6284. height: math.unit(69.57, "meters"),
  6285. default: true
  6286. },
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6291. {
  6292. front: {
  6293. height: math.unit(6, "feet"),
  6294. weight: math.unit(120, "lbs"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/azura-saharah/front.svg"
  6298. }
  6299. },
  6300. back: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(120, "lbs"),
  6303. name: "Back",
  6304. image: {
  6305. source: "./media/characters/azura-saharah/back.svg"
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Macro",
  6312. height: math.unit(100, "feet"),
  6313. default: true
  6314. },
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6319. {
  6320. side: {
  6321. height: math.unit(5 + 4 / 12, "feet"),
  6322. weight: math.unit(163, "lbs"),
  6323. name: "Side",
  6324. image: {
  6325. source: "./media/characters/kennedy/side.svg"
  6326. }
  6327. }
  6328. },
  6329. [
  6330. {
  6331. name: "Standard Doggo",
  6332. height: math.unit(5 + 4 / 12, "feet")
  6333. },
  6334. {
  6335. name: "Big Doggo",
  6336. height: math.unit(25 + 3 / 12, "feet"),
  6337. default: true
  6338. },
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(90, "lbs"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/odi-lunar/front.svg"
  6350. }
  6351. }
  6352. },
  6353. [
  6354. {
  6355. name: "Micro",
  6356. height: math.unit(3, "inches"),
  6357. default: true
  6358. },
  6359. {
  6360. name: "Normal",
  6361. height: math.unit(5.5, "feet")
  6362. }
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6367. {
  6368. back: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(220, "lbs"),
  6371. name: "Back",
  6372. image: {
  6373. source: "./media/characters/mandake/back.svg"
  6374. }
  6375. }
  6376. },
  6377. [
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(7, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(78, "feet")
  6386. },
  6387. {
  6388. name: "Macro+",
  6389. height: math.unit(300, "meters")
  6390. },
  6391. {
  6392. name: "Macro++",
  6393. height: math.unit(2400, "feet")
  6394. },
  6395. {
  6396. name: "Megamacro",
  6397. height: math.unit(5167, "meters")
  6398. },
  6399. {
  6400. name: "Gigamacro",
  6401. height: math.unit(41769, "miles")
  6402. },
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(6, "feet"),
  6410. weight: math.unit(120, "lbs"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/yozey/front.svg"
  6414. }
  6415. },
  6416. frontAlt: {
  6417. height: math.unit(6, "feet"),
  6418. weight: math.unit(120, "lbs"),
  6419. name: "Front (Alt)",
  6420. image: {
  6421. source: "./media/characters/yozey/front-alt.svg"
  6422. }
  6423. },
  6424. side: {
  6425. height: math.unit(6, "feet"),
  6426. weight: math.unit(120, "lbs"),
  6427. name: "Side",
  6428. image: {
  6429. source: "./media/characters/yozey/side.svg"
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Micro",
  6436. height: math.unit(3, "inches"),
  6437. default: true
  6438. },
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(6, "feet")
  6442. }
  6443. ]
  6444. ))
  6445. characterMakers.push(() => makeCharacter(
  6446. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6447. {
  6448. front: {
  6449. height: math.unit(6, "feet"),
  6450. weight: math.unit(103, "lbs"),
  6451. name: "Front",
  6452. image: {
  6453. source: "./media/characters/valeska-voss/front.svg"
  6454. }
  6455. }
  6456. },
  6457. [
  6458. {
  6459. name: "Mini-Sized Sub",
  6460. height: math.unit(3.1, "inches")
  6461. },
  6462. {
  6463. name: "Mid-Sized Sub",
  6464. height: math.unit(6.2, "inches")
  6465. },
  6466. {
  6467. name: "Full-Sized Sub",
  6468. height: math.unit(9.3, "inches")
  6469. },
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(5 + 2 / 12, "foot"),
  6473. default: true
  6474. },
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6479. {
  6480. front: {
  6481. height: math.unit(6, "feet"),
  6482. weight: math.unit(160, "lbs"),
  6483. name: "Front",
  6484. image: {
  6485. source: "./media/characters/gene-zeta/front.svg",
  6486. bottom: 0.03,
  6487. extra: 1
  6488. }
  6489. }
  6490. },
  6491. [
  6492. {
  6493. name: "Normal",
  6494. height: math.unit(6.25, "foot"),
  6495. default: true
  6496. },
  6497. ]
  6498. ))
  6499. characterMakers.push(() => makeCharacter(
  6500. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6501. {
  6502. front: {
  6503. height: math.unit(6, "feet"),
  6504. weight: math.unit(350, "lbs"),
  6505. name: "Front",
  6506. image: {
  6507. source: "./media/characters/razinox/front.svg",
  6508. extra: 1686 / 1548,
  6509. bottom: 28.2 / 1868
  6510. }
  6511. },
  6512. back: {
  6513. height: math.unit(6, "feet"),
  6514. weight: math.unit(350, "lbs"),
  6515. name: "Back",
  6516. image: {
  6517. source: "./media/characters/razinox/back.svg",
  6518. extra: 1660 / 1590,
  6519. bottom: 15 / 1665
  6520. }
  6521. },
  6522. },
  6523. [
  6524. {
  6525. name: "Normal",
  6526. height: math.unit(10 + 8 / 12, "foot")
  6527. },
  6528. {
  6529. name: "Minimacro",
  6530. height: math.unit(15, "foot")
  6531. },
  6532. {
  6533. name: "Macro",
  6534. height: math.unit(60, "foot"),
  6535. default: true
  6536. },
  6537. {
  6538. name: "Megamacro",
  6539. height: math.unit(5, "miles")
  6540. },
  6541. {
  6542. name: "Gigamacro",
  6543. height: math.unit(6000, "miles")
  6544. },
  6545. ]
  6546. ))
  6547. characterMakers.push(() => makeCharacter(
  6548. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6549. {
  6550. front: {
  6551. height: math.unit(6, "feet"),
  6552. weight: math.unit(150, "lbs"),
  6553. name: "Front",
  6554. image: {
  6555. source: "./media/characters/cobalt/front.svg"
  6556. }
  6557. }
  6558. },
  6559. [
  6560. {
  6561. name: "Normal",
  6562. height: math.unit(8 + 1 / 12, "foot")
  6563. },
  6564. {
  6565. name: "Macro",
  6566. height: math.unit(111, "foot"),
  6567. default: true
  6568. },
  6569. {
  6570. name: "Supracosmic",
  6571. height: math.unit(1e42, "feet")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(6, "feet"),
  6580. weight: math.unit(140, "lbs"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/amanda/front.svg"
  6584. }
  6585. }
  6586. },
  6587. [
  6588. {
  6589. name: "Micro",
  6590. height: math.unit(5, "inches"),
  6591. default: true
  6592. },
  6593. ]
  6594. ))
  6595. characterMakers.push(() => makeCharacter(
  6596. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6597. {
  6598. front: {
  6599. height: math.unit(5.59, "feet"),
  6600. weight: math.unit(250, "lbs"),
  6601. name: "Front",
  6602. image: {
  6603. source: "./media/characters/teal/front.svg"
  6604. }
  6605. },
  6606. frontAlt: {
  6607. height: math.unit(6, "feet"),
  6608. weight: math.unit(250, "lbs"),
  6609. name: "Front (Alt)",
  6610. image: {
  6611. source: "./media/characters/teal/front-alt.svg",
  6612. bottom: 0.04,
  6613. extra: 1
  6614. }
  6615. },
  6616. },
  6617. [
  6618. {
  6619. name: "Normal",
  6620. height: math.unit(12, "feet"),
  6621. default: true
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(300, "feet")
  6626. },
  6627. ]
  6628. ))
  6629. characterMakers.push(() => makeCharacter(
  6630. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6631. {
  6632. frontCat: {
  6633. height: math.unit(6, "feet"),
  6634. weight: math.unit(180, "lbs"),
  6635. name: "Front (Cat)",
  6636. image: {
  6637. source: "./media/characters/ravin-amulet/front-cat.svg"
  6638. }
  6639. },
  6640. frontCatAlt: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(180, "lbs"),
  6643. name: "Front (Alt, Cat)",
  6644. image: {
  6645. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6646. }
  6647. },
  6648. frontWerewolf: {
  6649. height: math.unit(6 * 1.2, "feet"),
  6650. weight: math.unit(225, "lbs"),
  6651. name: "Front (Werewolf)",
  6652. image: {
  6653. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6654. }
  6655. },
  6656. backWerewolf: {
  6657. height: math.unit(6 * 1.2, "feet"),
  6658. weight: math.unit(225, "lbs"),
  6659. name: "Back (Werewolf)",
  6660. image: {
  6661. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6662. }
  6663. },
  6664. },
  6665. [
  6666. {
  6667. name: "Nano",
  6668. height: math.unit(1, "micrometer")
  6669. },
  6670. {
  6671. name: "Micro",
  6672. height: math.unit(1, "inch")
  6673. },
  6674. {
  6675. name: "Normal",
  6676. height: math.unit(6, "feet"),
  6677. default: true
  6678. },
  6679. {
  6680. name: "Macro",
  6681. height: math.unit(60, "feet")
  6682. }
  6683. ]
  6684. ))
  6685. characterMakers.push(() => makeCharacter(
  6686. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6687. {
  6688. front: {
  6689. height: math.unit(6, "feet"),
  6690. weight: math.unit(165, "lbs"),
  6691. name: "Front",
  6692. image: {
  6693. source: "./media/characters/fluoresce/front.svg"
  6694. }
  6695. }
  6696. },
  6697. [
  6698. {
  6699. name: "Micro",
  6700. height: math.unit(6, "cm")
  6701. },
  6702. {
  6703. name: "Normal",
  6704. height: math.unit(5 + 7 / 12, "feet"),
  6705. default: true
  6706. },
  6707. {
  6708. name: "Macro",
  6709. height: math.unit(56, "feet")
  6710. },
  6711. {
  6712. name: "Megamacro",
  6713. height: math.unit(1.9, "miles")
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(9 + 6 / 12, "feet"),
  6722. weight: math.unit(523, "lbs"),
  6723. name: "Side",
  6724. image: {
  6725. source: "./media/characters/aurora/side.svg"
  6726. }
  6727. }
  6728. },
  6729. [
  6730. {
  6731. name: "Normal",
  6732. height: math.unit(9 + 6 / 12, "feet")
  6733. },
  6734. {
  6735. name: "Macro",
  6736. height: math.unit(96, "feet"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Macro+",
  6741. height: math.unit(243, "feet")
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6747. {
  6748. front: {
  6749. height: math.unit(194, "cm"),
  6750. weight: math.unit(90, "kg"),
  6751. name: "Front",
  6752. image: {
  6753. source: "./media/characters/ranek/front.svg"
  6754. }
  6755. },
  6756. side: {
  6757. height: math.unit(194, "cm"),
  6758. weight: math.unit(90, "kg"),
  6759. name: "Side",
  6760. image: {
  6761. source: "./media/characters/ranek/side.svg"
  6762. }
  6763. },
  6764. back: {
  6765. height: math.unit(194, "cm"),
  6766. weight: math.unit(90, "kg"),
  6767. name: "Back",
  6768. image: {
  6769. source: "./media/characters/ranek/back.svg"
  6770. }
  6771. },
  6772. feral: {
  6773. height: math.unit(30, "cm"),
  6774. weight: math.unit(1.6, "lbs"),
  6775. name: "Feral",
  6776. image: {
  6777. source: "./media/characters/ranek/feral.svg"
  6778. }
  6779. },
  6780. },
  6781. [
  6782. {
  6783. name: "Normal",
  6784. height: math.unit(194, "cm"),
  6785. default: true
  6786. },
  6787. {
  6788. name: "Macro",
  6789. height: math.unit(100, "meters")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(5 + 6 / 12, "feet"),
  6798. weight: math.unit(153, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/andrew-cooper/front.svg"
  6802. }
  6803. },
  6804. },
  6805. [
  6806. {
  6807. name: "Nano",
  6808. height: math.unit(1, "mm")
  6809. },
  6810. {
  6811. name: "Micro",
  6812. height: math.unit(2, "inches")
  6813. },
  6814. {
  6815. name: "Normal",
  6816. height: math.unit(5 + 6 / 12, "feet"),
  6817. default: true
  6818. }
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6823. {
  6824. front: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(180, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/akane-sato/front.svg",
  6830. extra: 1219 / 1140
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(180, "lbs"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/akane-sato/back.svg",
  6839. extra: 1219 / 1170
  6840. }
  6841. },
  6842. },
  6843. [
  6844. {
  6845. name: "Normal",
  6846. height: math.unit(2.5, "meters")
  6847. },
  6848. {
  6849. name: "Macro",
  6850. height: math.unit(250, "meters"),
  6851. default: true
  6852. },
  6853. {
  6854. name: "Megamacro",
  6855. height: math.unit(25, "km")
  6856. },
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(65, "kg"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/rook/front.svg",
  6868. extra: 960 / 950
  6869. }
  6870. }
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(8.8, "feet")
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(88, "feet"),
  6880. default: true
  6881. },
  6882. {
  6883. name: "Megamacro",
  6884. height: math.unit(8, "miles")
  6885. },
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6890. {
  6891. front: {
  6892. height: math.unit(12 + 2 / 12, "feet"),
  6893. weight: math.unit(808, "lbs"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/prodigy/front.svg"
  6897. }
  6898. }
  6899. },
  6900. [
  6901. {
  6902. name: "Normal",
  6903. height: math.unit(12 + 2 / 12, "feet"),
  6904. default: true
  6905. },
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(143, "feet")
  6909. },
  6910. {
  6911. name: "Macro+",
  6912. height: math.unit(400, "feet")
  6913. },
  6914. ]
  6915. ))
  6916. characterMakers.push(() => makeCharacter(
  6917. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6918. {
  6919. front: {
  6920. height: math.unit(6, "feet"),
  6921. weight: math.unit(225, "lbs"),
  6922. name: "Front",
  6923. image: {
  6924. source: "./media/characters/daniel/front.svg"
  6925. }
  6926. },
  6927. leaning: {
  6928. height: math.unit(6, "feet"),
  6929. weight: math.unit(225, "lbs"),
  6930. name: "Leaning",
  6931. image: {
  6932. source: "./media/characters/daniel/leaning.svg"
  6933. }
  6934. },
  6935. },
  6936. [
  6937. {
  6938. name: "Macro",
  6939. height: math.unit(1000, "feet"),
  6940. default: true
  6941. },
  6942. ]
  6943. ))
  6944. characterMakers.push(() => makeCharacter(
  6945. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6946. {
  6947. front: {
  6948. height: math.unit(6, "feet"),
  6949. weight: math.unit(88, "lbs"),
  6950. name: "Front",
  6951. image: {
  6952. source: "./media/characters/chiros/front.svg",
  6953. extra: 306 / 226
  6954. }
  6955. },
  6956. side: {
  6957. height: math.unit(6, "feet"),
  6958. weight: math.unit(88, "lbs"),
  6959. name: "Side",
  6960. image: {
  6961. source: "./media/characters/chiros/side.svg",
  6962. extra: 306 / 226
  6963. }
  6964. },
  6965. },
  6966. [
  6967. {
  6968. name: "Normal",
  6969. height: math.unit(6, "cm"),
  6970. default: true
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6976. {
  6977. front: {
  6978. height: math.unit(6, "feet"),
  6979. weight: math.unit(100, "lbs"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/selka/front.svg",
  6983. extra: 947 / 887
  6984. }
  6985. }
  6986. },
  6987. [
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(5, "cm"),
  6991. default: true
  6992. },
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(8 + 3 / 12, "feet"),
  7000. weight: math.unit(424, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/verin/front.svg",
  7004. extra: 1845 / 1550
  7005. }
  7006. },
  7007. frontArmored: {
  7008. height: math.unit(8 + 3 / 12, "feet"),
  7009. weight: math.unit(424, "lbs"),
  7010. name: "Front (Armored)",
  7011. image: {
  7012. source: "./media/characters/verin/front-armor.svg",
  7013. extra: 1845 / 1550,
  7014. bottom: 0.01
  7015. }
  7016. },
  7017. back: {
  7018. height: math.unit(8 + 3 / 12, "feet"),
  7019. weight: math.unit(424, "lbs"),
  7020. name: "Back",
  7021. image: {
  7022. source: "./media/characters/verin/back.svg",
  7023. bottom: 0.1,
  7024. extra: 1
  7025. }
  7026. },
  7027. foot: {
  7028. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7029. name: "Foot",
  7030. image: {
  7031. source: "./media/characters/verin/foot.svg"
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(8 + 3 / 12, "feet")
  7039. },
  7040. {
  7041. name: "Minimacro",
  7042. height: math.unit(21, "feet"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(626, "feet")
  7048. },
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(2.718, "meters"),
  7056. weight: math.unit(150, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/sovrim-terraquian/front.svg"
  7060. }
  7061. },
  7062. back: {
  7063. height: math.unit(2.718, "meters"),
  7064. weight: math.unit(150, "lbs"),
  7065. name: "Back",
  7066. image: {
  7067. source: "./media/characters/sovrim-terraquian/back.svg"
  7068. }
  7069. }
  7070. },
  7071. [
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(2, "inches")
  7075. },
  7076. {
  7077. name: "Small",
  7078. height: math.unit(1, "meter")
  7079. },
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(Math.E, "meters"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(20, "meters")
  7088. },
  7089. {
  7090. name: "Macro+",
  7091. height: math.unit(400, "meters")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(7, "feet"),
  7100. weight: math.unit(489, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/reece-silvermane/front.svg",
  7104. bottom: 0.02,
  7105. extra: 1
  7106. }
  7107. },
  7108. },
  7109. [
  7110. {
  7111. name: "Macro",
  7112. height: math.unit(1.5, "miles"),
  7113. default: true
  7114. },
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(78, "kg"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/kane/front.svg",
  7126. extra: 978 / 899
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(2.1, "m"),
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(1, "km"),
  7138. default: true
  7139. },
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7144. {
  7145. front: {
  7146. height: math.unit(6, "feet"),
  7147. weight: math.unit(200, "kg"),
  7148. name: "Front",
  7149. image: {
  7150. source: "./media/characters/tegon/front.svg",
  7151. bottom: 0.01,
  7152. extra: 1
  7153. }
  7154. },
  7155. },
  7156. [
  7157. {
  7158. name: "Micro",
  7159. height: math.unit(1, "inch")
  7160. },
  7161. {
  7162. name: "Normal",
  7163. height: math.unit(6 + 3 / 12, "feet"),
  7164. default: true
  7165. },
  7166. {
  7167. name: "Macro",
  7168. height: math.unit(300, "feet")
  7169. },
  7170. {
  7171. name: "Megamacro",
  7172. height: math.unit(69, "miles")
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7178. {
  7179. side: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(2304, "lbs"),
  7182. name: "Side",
  7183. image: {
  7184. source: "./media/characters/arcturax/side.svg",
  7185. extra: 790 / 376,
  7186. bottom: 0.01
  7187. }
  7188. },
  7189. },
  7190. [
  7191. {
  7192. name: "Micro",
  7193. height: math.unit(2, "inch")
  7194. },
  7195. {
  7196. name: "Normal",
  7197. height: math.unit(6, "feet")
  7198. },
  7199. {
  7200. name: "Macro",
  7201. height: math.unit(39, "feet"),
  7202. default: true
  7203. },
  7204. {
  7205. name: "Megamacro",
  7206. height: math.unit(7, "miles")
  7207. },
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7212. {
  7213. front: {
  7214. height: math.unit(6, "feet"),
  7215. weight: math.unit(50, "lbs"),
  7216. name: "Front",
  7217. image: {
  7218. source: "./media/characters/sentri/front.svg",
  7219. extra: 1750 / 1570,
  7220. bottom: 0.025
  7221. }
  7222. },
  7223. frontAlt: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(50, "lbs"),
  7226. name: "Front (Alt)",
  7227. image: {
  7228. source: "./media/characters/sentri/front-alt.svg",
  7229. extra: 1750 / 1570,
  7230. bottom: 0.025
  7231. }
  7232. },
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(15, "feet"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(2500, "feet")
  7243. }
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7248. {
  7249. front: {
  7250. height: math.unit(5 + 8 / 12, "feet"),
  7251. weight: math.unit(130, "lbs"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/corvin/front.svg",
  7255. extra: 1803 / 1629
  7256. }
  7257. },
  7258. frontShirt: {
  7259. height: math.unit(5 + 8 / 12, "feet"),
  7260. weight: math.unit(130, "lbs"),
  7261. name: "Front (Shirt)",
  7262. image: {
  7263. source: "./media/characters/corvin/front-shirt.svg",
  7264. extra: 1803 / 1629
  7265. }
  7266. },
  7267. frontPoncho: {
  7268. height: math.unit(5 + 8 / 12, "feet"),
  7269. weight: math.unit(130, "lbs"),
  7270. name: "Front (Poncho)",
  7271. image: {
  7272. source: "./media/characters/corvin/front-poncho.svg",
  7273. extra: 1803 / 1629
  7274. }
  7275. },
  7276. side: {
  7277. height: math.unit(5 + 8 / 12, "feet"),
  7278. weight: math.unit(130, "lbs"),
  7279. name: "Side",
  7280. image: {
  7281. source: "./media/characters/corvin/side.svg",
  7282. extra: 1012 / 945
  7283. }
  7284. },
  7285. back: {
  7286. height: math.unit(5 + 8 / 12, "feet"),
  7287. weight: math.unit(130, "lbs"),
  7288. name: "Back",
  7289. image: {
  7290. source: "./media/characters/corvin/back.svg",
  7291. extra: 1803 / 1629
  7292. }
  7293. },
  7294. },
  7295. [
  7296. {
  7297. name: "Micro",
  7298. height: math.unit(3, "inches")
  7299. },
  7300. {
  7301. name: "Normal",
  7302. height: math.unit(5 + 8 / 12, "feet")
  7303. },
  7304. {
  7305. name: "Macro",
  7306. height: math.unit(300, "feet"),
  7307. default: true
  7308. },
  7309. {
  7310. name: "Megamacro",
  7311. height: math.unit(500, "miles")
  7312. }
  7313. ]
  7314. ))
  7315. characterMakers.push(() => makeCharacter(
  7316. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7317. {
  7318. front: {
  7319. height: math.unit(6, "feet"),
  7320. weight: math.unit(135, "lbs"),
  7321. name: "Front",
  7322. image: {
  7323. source: "./media/characters/q/front.svg",
  7324. extra: 854 / 752,
  7325. bottom: 0.005
  7326. }
  7327. },
  7328. back: {
  7329. height: math.unit(6, "feet"),
  7330. weight: math.unit(130, "lbs"),
  7331. name: "Back",
  7332. image: {
  7333. source: "./media/characters/q/back.svg",
  7334. extra: 854 / 752
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Macro",
  7341. height: math.unit(90, "feet"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Extra Macro",
  7346. height: math.unit(300, "feet"),
  7347. },
  7348. {
  7349. name: "BIG WALF",
  7350. height: math.unit(750, "feet"),
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(150, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/carley/front.svg",
  7363. extra: 3927 / 3540,
  7364. bottom: 29.2 / 735
  7365. }
  7366. }
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(6 + 3 / 12, "feet")
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(185, "feet"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Megamacro",
  7380. height: math.unit(8, "miles"),
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(3, "feet"),
  7389. weight: math.unit(28, "lbs"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/citrine/front.svg"
  7393. }
  7394. }
  7395. },
  7396. [
  7397. {
  7398. name: "Normal",
  7399. height: math.unit(3, "feet"),
  7400. default: true
  7401. }
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7406. {
  7407. front: {
  7408. height: math.unit(14, "feet"),
  7409. weight: math.unit(1450, "kg"),
  7410. capacity: math.unit(15, "people"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/aura-starwind/front.svg",
  7414. extra: 1455 / 1335
  7415. }
  7416. },
  7417. side: {
  7418. height: math.unit(14, "feet"),
  7419. weight: math.unit(1450, "kg"),
  7420. capacity: math.unit(15, "people"),
  7421. name: "Side",
  7422. image: {
  7423. source: "./media/characters/aura-starwind/side.svg",
  7424. extra: 1654 / 1497
  7425. }
  7426. },
  7427. taur: {
  7428. height: math.unit(18, "feet"),
  7429. weight: math.unit(5500, "kg"),
  7430. capacity: math.unit(50, "people"),
  7431. name: "Taur",
  7432. image: {
  7433. source: "./media/characters/aura-starwind/taur.svg",
  7434. extra: 1760 / 1650
  7435. }
  7436. },
  7437. feral: {
  7438. height: math.unit(46, "feet"),
  7439. weight: math.unit(25000, "kg"),
  7440. capacity: math.unit(120, "people"),
  7441. name: "Feral",
  7442. image: {
  7443. source: "./media/characters/aura-starwind/feral.svg"
  7444. }
  7445. },
  7446. },
  7447. [
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(14, "feet"),
  7451. default: true
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(50, "meters")
  7456. },
  7457. {
  7458. name: "Megamacro",
  7459. height: math.unit(5000, "meters")
  7460. },
  7461. {
  7462. name: "Gigamacro",
  7463. height: math.unit(100000, "kilometers")
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7469. {
  7470. front: {
  7471. height: math.unit(2 + 7 / 12, "feet"),
  7472. weight: math.unit(32, "lbs"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/rivet/front.svg",
  7476. extra: 1716 / 1658,
  7477. bottom: 0.03
  7478. }
  7479. },
  7480. foot: {
  7481. height: math.unit(0.551, "feet"),
  7482. name: "Rivet's Foot",
  7483. image: {
  7484. source: "./media/characters/rivet/foot.svg"
  7485. },
  7486. rename: true
  7487. }
  7488. },
  7489. [
  7490. {
  7491. name: "Micro",
  7492. height: math.unit(1.5, "inches"),
  7493. },
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(2 + 7 / 12, "feet"),
  7497. default: true
  7498. },
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(85, "feet")
  7502. },
  7503. {
  7504. name: "Megamacro",
  7505. height: math.unit(2.2, "km")
  7506. }
  7507. ]
  7508. ))
  7509. characterMakers.push(() => makeCharacter(
  7510. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7511. {
  7512. front: {
  7513. height: math.unit(5 + 9 / 12, "feet"),
  7514. weight: math.unit(150, "lbs"),
  7515. name: "Front",
  7516. image: {
  7517. source: "./media/characters/coffee/front.svg",
  7518. extra: 3666 / 3032,
  7519. bottom: 0.04
  7520. }
  7521. },
  7522. foot: {
  7523. height: math.unit(1.29, "feet"),
  7524. name: "Foot",
  7525. image: {
  7526. source: "./media/characters/coffee/foot.svg"
  7527. }
  7528. },
  7529. },
  7530. [
  7531. {
  7532. name: "Micro",
  7533. height: math.unit(2, "inches"),
  7534. },
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(5 + 9 / 12, "feet"),
  7538. default: true
  7539. },
  7540. {
  7541. name: "Macro",
  7542. height: math.unit(800, "feet")
  7543. },
  7544. {
  7545. name: "Megamacro",
  7546. height: math.unit(25, "miles")
  7547. }
  7548. ]
  7549. ))
  7550. characterMakers.push(() => makeCharacter(
  7551. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7552. {
  7553. front: {
  7554. height: math.unit(6, "feet"),
  7555. weight: math.unit(200, "lbs"),
  7556. name: "Front",
  7557. image: {
  7558. source: "./media/characters/chari-gal/front.svg",
  7559. extra: 1568 / 1385,
  7560. bottom: 0.047
  7561. }
  7562. },
  7563. gigantamax: {
  7564. height: math.unit(6 * 16, "feet"),
  7565. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7566. name: "Gigantamax",
  7567. image: {
  7568. source: "./media/characters/chari-gal/gigantamax.svg",
  7569. extra: 1124 / 888,
  7570. bottom: 0.03
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(5 + 7 / 12, "feet")
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(200, "feet"),
  7582. default: true
  7583. }
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(150, "lbs"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/nova/front.svg",
  7595. extra: 5000 / 4722,
  7596. bottom: 0.02
  7597. }
  7598. }
  7599. },
  7600. [
  7601. {
  7602. name: "Micro-",
  7603. height: math.unit(0.8, "inches")
  7604. },
  7605. {
  7606. name: "Micro",
  7607. height: math.unit(2, "inches"),
  7608. default: true
  7609. },
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7614. {
  7615. front: {
  7616. height: math.unit(3 + 1 / 12, "feet"),
  7617. weight: math.unit(21.7, "lbs"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/argent/front.svg",
  7621. extra: 1471 / 1331,
  7622. bottom: 100.8 / 1575.5
  7623. }
  7624. }
  7625. },
  7626. [
  7627. {
  7628. name: "Micro",
  7629. height: math.unit(2, "inches")
  7630. },
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(3 + 1 / 12, "feet"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(120, "feet")
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7644. {
  7645. lamp: {
  7646. height: math.unit(7 * 1559 / 989, "feet"),
  7647. name: "Magic Lamp",
  7648. image: {
  7649. source: "./media/characters/mira-al-cul/lamp.svg",
  7650. extra: 1617 / 1559
  7651. }
  7652. },
  7653. front: {
  7654. height: math.unit(7, "feet"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/mira-al-cul/front.svg",
  7658. extra: 1044 / 990
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Heavily Restricted",
  7665. height: math.unit(7 * 1559 / 989, "feet")
  7666. },
  7667. {
  7668. name: "Freshly Freed",
  7669. height: math.unit(50 * 1559 / 989, "feet")
  7670. },
  7671. {
  7672. name: "World Encompassing",
  7673. height: math.unit(10000 * 1559 / 989, "miles")
  7674. },
  7675. {
  7676. name: "Galactic",
  7677. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7678. },
  7679. {
  7680. name: "Palmed Universe",
  7681. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7682. default: true
  7683. },
  7684. {
  7685. name: "Multiversal Matriarch",
  7686. height: math.unit(8.87e10, "yottameters")
  7687. },
  7688. {
  7689. name: "Void Mother",
  7690. height: math.unit(3.14e110, "yottaparsecs")
  7691. },
  7692. {
  7693. name: "Toying with Transcendence",
  7694. height: math.unit(1e307, "meters")
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7700. {
  7701. front: {
  7702. height: math.unit(17 + 1 / 12, "feet"),
  7703. weight: math.unit(476.2 * 5, "lbs"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/kuro-shi-uchū/front.svg",
  7707. extra: 2329 / 1835,
  7708. bottom: 0.02
  7709. }
  7710. },
  7711. },
  7712. [
  7713. {
  7714. name: "Micro",
  7715. height: math.unit(2, "inches")
  7716. },
  7717. {
  7718. name: "Normal",
  7719. height: math.unit(12, "meters")
  7720. },
  7721. {
  7722. name: "Planetary",
  7723. height: math.unit(0.00929, "AU"),
  7724. default: true
  7725. },
  7726. {
  7727. name: "Universal",
  7728. height: math.unit(20, "gigaparsecs")
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7734. {
  7735. front: {
  7736. height: math.unit(5 + 2 / 12, "feet"),
  7737. weight: math.unit(120, "lbs"),
  7738. name: "Front",
  7739. image: {
  7740. source: "./media/characters/katherine/front.svg",
  7741. extra: 2075 / 1969
  7742. }
  7743. },
  7744. dress: {
  7745. height: math.unit(5 + 2 / 12, "feet"),
  7746. weight: math.unit(120, "lbs"),
  7747. name: "Dress",
  7748. image: {
  7749. source: "./media/characters/katherine/dress.svg",
  7750. extra: 2258 / 2064
  7751. }
  7752. },
  7753. },
  7754. [
  7755. {
  7756. name: "Micro",
  7757. height: math.unit(1, "inches"),
  7758. default: true
  7759. },
  7760. {
  7761. name: "Normal",
  7762. height: math.unit(5 + 2 / 12, "feet")
  7763. },
  7764. {
  7765. name: "Macro",
  7766. height: math.unit(100, "meters")
  7767. },
  7768. {
  7769. name: "Megamacro",
  7770. height: math.unit(80, "miles")
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(7 + 8 / 12, "feet"),
  7779. weight: math.unit(250, "lbs"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/yevis/front.svg",
  7783. extra: 1938 / 1755
  7784. }
  7785. }
  7786. },
  7787. [
  7788. {
  7789. name: "Mortal",
  7790. height: math.unit(7 + 8 / 12, "feet")
  7791. },
  7792. {
  7793. name: "Battle",
  7794. height: math.unit(25 + 11 / 12, "feet")
  7795. },
  7796. {
  7797. name: "Wrath",
  7798. height: math.unit(1654 + 11 / 12, "feet")
  7799. },
  7800. {
  7801. name: "Planet Destroyer",
  7802. height: math.unit(12000, "miles")
  7803. },
  7804. {
  7805. name: "Galaxy Conqueror",
  7806. height: math.unit(1.45, "zettameters"),
  7807. default: true
  7808. },
  7809. {
  7810. name: "Universal War",
  7811. height: math.unit(184, "gigaparsecs")
  7812. },
  7813. {
  7814. name: "Eternity War",
  7815. height: math.unit(1.98e55, "yottaparsecs")
  7816. },
  7817. ]
  7818. ))
  7819. characterMakers.push(() => makeCharacter(
  7820. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7821. {
  7822. front: {
  7823. height: math.unit(5 + 8 / 12, "feet"),
  7824. weight: math.unit(63, "kg"),
  7825. name: "Front",
  7826. image: {
  7827. source: "./media/characters/xavier/front.svg",
  7828. extra: 944 / 883
  7829. }
  7830. },
  7831. frontStretch: {
  7832. height: math.unit(5 + 8 / 12, "feet"),
  7833. weight: math.unit(63, "kg"),
  7834. name: "Stretching",
  7835. image: {
  7836. source: "./media/characters/xavier/front-stretch.svg",
  7837. extra: 962 / 820
  7838. }
  7839. },
  7840. },
  7841. [
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(5 + 8 / 12, "feet")
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(100, "meters"),
  7849. default: true
  7850. },
  7851. {
  7852. name: "McLargeHuge",
  7853. height: math.unit(10, "miles")
  7854. },
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(5 + 5 / 12, "feet"),
  7862. weight: math.unit(150, "lb"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/joshii/front.svg"
  7866. }
  7867. },
  7868. foot: {
  7869. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7870. name: "Foot",
  7871. image: {
  7872. source: "./media/characters/joshii/foot.svg"
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Micro",
  7879. height: math.unit(2, "inches")
  7880. },
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(5 + 5 / 12, "feet"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(785, "feet")
  7889. },
  7890. {
  7891. name: "Megamacro",
  7892. height: math.unit(24.5, "miles")
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(150, "lb"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/goddess-elizabeth/front.svg",
  7905. extra: 1800 / 1525,
  7906. bottom: 0.005
  7907. }
  7908. },
  7909. foot: {
  7910. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7911. name: "Foot",
  7912. image: {
  7913. source: "./media/characters/goddess-elizabeth/foot.svg"
  7914. }
  7915. },
  7916. mouth: {
  7917. height: math.unit(6, "feet"),
  7918. name: "Mouth",
  7919. image: {
  7920. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7921. }
  7922. },
  7923. },
  7924. [
  7925. {
  7926. name: "Micro",
  7927. height: math.unit(12, "feet")
  7928. },
  7929. {
  7930. name: "Normal",
  7931. height: math.unit(80, "miles"),
  7932. default: true
  7933. },
  7934. {
  7935. name: "Macro",
  7936. height: math.unit(15000, "parsecs")
  7937. },
  7938. ]
  7939. ))
  7940. characterMakers.push(() => makeCharacter(
  7941. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7942. {
  7943. front: {
  7944. height: math.unit(5 + 9 / 12, "feet"),
  7945. weight: math.unit(144, "lb"),
  7946. name: "Front",
  7947. image: {
  7948. source: "./media/characters/kara/front.svg"
  7949. }
  7950. },
  7951. feet: {
  7952. height: math.unit(6 / 6.765, "feet"),
  7953. name: "Kara's Feet",
  7954. rename: true,
  7955. image: {
  7956. source: "./media/characters/kara/feet.svg"
  7957. }
  7958. },
  7959. },
  7960. [
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(5 + 9 / 12, "feet")
  7964. },
  7965. {
  7966. name: "Macro",
  7967. height: math.unit(174, "feet"),
  7968. default: true
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(18, "feet"),
  7977. weight: math.unit(4050, "lb"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/tyrone/front.svg",
  7981. extra: 2520 / 2402,
  7982. bottom: 0.025
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(18, "feet"),
  7990. default: true
  7991. },
  7992. {
  7993. name: "Macro",
  7994. height: math.unit(300, "feet")
  7995. },
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8000. {
  8001. front: {
  8002. height: math.unit(7 + 8 / 12, "feet"),
  8003. weight: math.unit(120, "lb"),
  8004. name: "Front",
  8005. image: {
  8006. source: "./media/characters/danny/front.svg",
  8007. extra: 1490 / 1350
  8008. }
  8009. },
  8010. back: {
  8011. height: math.unit(7 + 8 / 12, "feet"),
  8012. weight: math.unit(120, "lb"),
  8013. name: "Back",
  8014. image: {
  8015. source: "./media/characters/danny/back.svg",
  8016. extra: 1490 / 1350
  8017. }
  8018. },
  8019. },
  8020. [
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(7 + 8 / 12, "feet"),
  8024. default: true
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8030. {
  8031. front: {
  8032. height: math.unit(3.5, "inches"),
  8033. weight: math.unit(19, "grams"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/mallow/front.svg",
  8037. extra: 471 / 431
  8038. }
  8039. },
  8040. back: {
  8041. height: math.unit(3.5, "inches"),
  8042. weight: math.unit(19, "grams"),
  8043. name: "Back",
  8044. image: {
  8045. source: "./media/characters/mallow/back.svg",
  8046. extra: 471 / 431
  8047. }
  8048. },
  8049. },
  8050. [
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(3.5, "inches"),
  8054. default: true
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(9, "feet"),
  8063. weight: math.unit(230, "kg"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/starry-aqua/front.svg"
  8067. }
  8068. },
  8069. back: {
  8070. height: math.unit(9, "feet"),
  8071. weight: math.unit(230, "kg"),
  8072. name: "Back",
  8073. image: {
  8074. source: "./media/characters/starry-aqua/back.svg"
  8075. }
  8076. },
  8077. hand: {
  8078. height: math.unit(9 * 0.1168, "feet"),
  8079. name: "Hand",
  8080. image: {
  8081. source: "./media/characters/starry-aqua/hand.svg"
  8082. }
  8083. },
  8084. foot: {
  8085. height: math.unit(9 * 0.18, "feet"),
  8086. name: "Foot",
  8087. image: {
  8088. source: "./media/characters/starry-aqua/foot.svg"
  8089. }
  8090. }
  8091. },
  8092. [
  8093. {
  8094. name: "Micro",
  8095. height: math.unit(3, "inches")
  8096. },
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(9, "feet")
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(300, "feet"),
  8104. default: true
  8105. },
  8106. {
  8107. name: "Megamacro",
  8108. height: math.unit(3200, "feet")
  8109. }
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(230, "lb"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/luka/front.svg",
  8121. extra: 1,
  8122. bottom: 0.025
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(12 + 8 / 12, "feet"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Minimacro",
  8134. height: math.unit(20, "feet")
  8135. },
  8136. {
  8137. name: "Macro",
  8138. height: math.unit(250, "feet")
  8139. },
  8140. {
  8141. name: "Megamacro",
  8142. height: math.unit(5, "miles")
  8143. },
  8144. {
  8145. name: "Gigamacro",
  8146. height: math.unit(8000, "miles")
  8147. },
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(6, "feet"),
  8155. weight: math.unit(150, "lb"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/natalie-nightring/front.svg",
  8159. extra: 1,
  8160. bottom: 0.06
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Uh Oh",
  8167. height: math.unit(0.1, "mm")
  8168. },
  8169. {
  8170. name: "Small",
  8171. height: math.unit(3, "inches")
  8172. },
  8173. {
  8174. name: "Human Scale",
  8175. height: math.unit(6, "feet")
  8176. },
  8177. {
  8178. name: "Librarian",
  8179. height: math.unit(50, "feet"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Immense",
  8184. height: math.unit(200, "miles")
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(6, "feet"),
  8193. weight: math.unit(180, "lbs"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/danni-rosie/front.svg",
  8197. extra: 1260 / 1128,
  8198. bottom: 0.022
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Micro",
  8205. height: math.unit(2, "inches"),
  8206. default: true
  8207. },
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8212. {
  8213. front: {
  8214. height: math.unit(5 + 9 / 12, "feet"),
  8215. weight: math.unit(220, "lb"),
  8216. name: "Front",
  8217. image: {
  8218. source: "./media/characters/samantha-kruse/front.svg",
  8219. extra: (985 / 935),
  8220. bottom: 0.03
  8221. }
  8222. },
  8223. frontUndressed: {
  8224. height: math.unit(5 + 9 / 12, "feet"),
  8225. weight: math.unit(220, "lb"),
  8226. name: "Front (Undressed)",
  8227. image: {
  8228. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8229. extra: (973 / 923),
  8230. bottom: 0.025
  8231. }
  8232. },
  8233. fat: {
  8234. height: math.unit(5 + 9 / 12, "feet"),
  8235. weight: math.unit(900, "lb"),
  8236. name: "Front (Fat)",
  8237. image: {
  8238. source: "./media/characters/samantha-kruse/fat.svg",
  8239. extra: 2688 / 2561
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(5 + 9 / 12, "feet"),
  8247. default: true
  8248. }
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8253. {
  8254. back: {
  8255. height: math.unit(5 + 4 / 12, "feet"),
  8256. weight: math.unit(4963, "lb"),
  8257. name: "Back",
  8258. image: {
  8259. source: "./media/characters/amelia-rosie/back.svg",
  8260. extra: 1113 / 963,
  8261. bottom: 0.01
  8262. }
  8263. },
  8264. },
  8265. [
  8266. {
  8267. name: "Level 0",
  8268. height: math.unit(5 + 4 / 12, "feet")
  8269. },
  8270. {
  8271. name: "Level 1",
  8272. height: math.unit(164597, "feet"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Level 2",
  8277. height: math.unit(956243, "miles")
  8278. },
  8279. {
  8280. name: "Level 3",
  8281. height: math.unit(29421709423, "miles")
  8282. },
  8283. {
  8284. name: "Level 4",
  8285. height: math.unit(154, "lightyears")
  8286. },
  8287. {
  8288. name: "Level 5",
  8289. height: math.unit(4738272, "lightyears")
  8290. },
  8291. {
  8292. name: "Level 6",
  8293. height: math.unit(145787152896, "lightyears")
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8299. {
  8300. front: {
  8301. height: math.unit(5 + 11 / 12, "feet"),
  8302. weight: math.unit(65, "kg"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/rook-kitara/front.svg",
  8306. extra: 1347 / 1274,
  8307. bottom: 0.005
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Totally Unfair",
  8314. height: math.unit(1.8, "mm")
  8315. },
  8316. {
  8317. name: "Lap Rookie",
  8318. height: math.unit(1.4, "feet")
  8319. },
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(5 + 11 / 12, "feet"),
  8323. default: true
  8324. },
  8325. {
  8326. name: "How Did This Happen",
  8327. height: math.unit(80, "miles")
  8328. }
  8329. ]
  8330. ))
  8331. characterMakers.push(() => makeCharacter(
  8332. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8333. {
  8334. front: {
  8335. height: math.unit(7, "feet"),
  8336. weight: math.unit(300, "lb"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/pisces/front.svg",
  8340. extra: 2255 / 2115,
  8341. bottom: 0.03
  8342. }
  8343. },
  8344. back: {
  8345. height: math.unit(7, "feet"),
  8346. weight: math.unit(300, "lb"),
  8347. name: "Back",
  8348. image: {
  8349. source: "./media/characters/pisces/back.svg",
  8350. extra: 2146 / 2055,
  8351. bottom: 0.04
  8352. }
  8353. },
  8354. },
  8355. [
  8356. {
  8357. name: "Normal",
  8358. height: math.unit(7, "feet"),
  8359. default: true
  8360. },
  8361. {
  8362. name: "Swimming Pool",
  8363. height: math.unit(12.2, "meters")
  8364. },
  8365. {
  8366. name: "Olympic Swimming Pool",
  8367. height: math.unit(56.3, "meters")
  8368. },
  8369. {
  8370. name: "Lake Superior",
  8371. height: math.unit(93900, "meters")
  8372. },
  8373. {
  8374. name: "Mediterranean Sea",
  8375. height: math.unit(644457, "meters")
  8376. },
  8377. {
  8378. name: "World's Oceans",
  8379. height: math.unit(4567491, "meters")
  8380. },
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8385. {
  8386. front: {
  8387. height: math.unit(2.3, "meters"),
  8388. weight: math.unit(120, "kg"),
  8389. name: "Front",
  8390. image: {
  8391. source: "./media/characters/zelas/front.svg"
  8392. }
  8393. },
  8394. side: {
  8395. height: math.unit(2.3, "meters"),
  8396. weight: math.unit(120, "kg"),
  8397. name: "Side",
  8398. image: {
  8399. source: "./media/characters/zelas/side.svg"
  8400. }
  8401. },
  8402. back: {
  8403. height: math.unit(2.3, "meters"),
  8404. weight: math.unit(120, "kg"),
  8405. name: "Back",
  8406. image: {
  8407. source: "./media/characters/zelas/back.svg"
  8408. }
  8409. },
  8410. foot: {
  8411. height: math.unit(1.116, "feet"),
  8412. name: "Foot",
  8413. image: {
  8414. source: "./media/characters/zelas/foot.svg"
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Normal",
  8421. height: math.unit(2.3, "meters")
  8422. },
  8423. {
  8424. name: "Macro",
  8425. height: math.unit(30, "meters"),
  8426. default: true
  8427. },
  8428. ]
  8429. ))
  8430. characterMakers.push(() => makeCharacter(
  8431. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8432. {
  8433. front: {
  8434. height: math.unit(1, "inch"),
  8435. weight: math.unit(0.21, "grams"),
  8436. name: "Front",
  8437. image: {
  8438. source: "./media/characters/talbot/front.svg",
  8439. extra: 594 / 544
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Micro",
  8446. height: math.unit(1, "inch"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8453. {
  8454. front: {
  8455. height: math.unit(3 + 3 / 12, "feet"),
  8456. weight: math.unit(51.8, "lb"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/fliss/front.svg",
  8460. extra: 840 / 640
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Teeny Tiny",
  8467. height: math.unit(1, "mm")
  8468. },
  8469. {
  8470. name: "Small",
  8471. height: math.unit(1, "inch"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "Standard Sylveon",
  8476. height: math.unit(3 + 3 / 12, "feet")
  8477. },
  8478. {
  8479. name: "Large Nuisance",
  8480. height: math.unit(33, "feet")
  8481. },
  8482. {
  8483. name: "City Filler",
  8484. height: math.unit(3000, "feet")
  8485. },
  8486. {
  8487. name: "New Horizon",
  8488. height: math.unit(6000, "miles")
  8489. },
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(5, "cm"),
  8497. weight: math.unit(1.94, "g"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/fleta/front.svg",
  8501. extra: 835 / 803
  8502. }
  8503. },
  8504. back: {
  8505. height: math.unit(5, "cm"),
  8506. weight: math.unit(1.94, "g"),
  8507. name: "Back",
  8508. image: {
  8509. source: "./media/characters/fleta/back.svg",
  8510. extra: 835 / 803
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Micro",
  8517. height: math.unit(5, "cm"),
  8518. default: true
  8519. },
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(225, "lb"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/dominic/front.svg",
  8531. extra: 1770 / 1620,
  8532. bottom: 0.025
  8533. }
  8534. },
  8535. back: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(225, "lb"),
  8538. name: "Back",
  8539. image: {
  8540. source: "./media/characters/dominic/back.svg",
  8541. extra: 1745 / 1620,
  8542. bottom: 0.065
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Nano",
  8549. height: math.unit(0.1, "mm")
  8550. },
  8551. {
  8552. name: "Micro-",
  8553. height: math.unit(1, "mm")
  8554. },
  8555. {
  8556. name: "Micro",
  8557. height: math.unit(4, "inches")
  8558. },
  8559. {
  8560. name: "Normal",
  8561. height: math.unit(6 + 4 / 12, "feet"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "Macro",
  8566. height: math.unit(115, "feet")
  8567. },
  8568. {
  8569. name: "Macro+",
  8570. height: math.unit(955, "feet")
  8571. },
  8572. {
  8573. name: "Megamacro",
  8574. height: math.unit(8990, "feet")
  8575. },
  8576. {
  8577. name: "Gigmacro",
  8578. height: math.unit(9310, "miles")
  8579. },
  8580. {
  8581. name: "Teramacro",
  8582. height: math.unit(1567005010, "miles")
  8583. },
  8584. {
  8585. name: "Examacro",
  8586. height: math.unit(1425, "parsecs")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(400, "feet"),
  8595. weight: math.unit(44444444, "lb"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/major-colonel/front.svg"
  8599. }
  8600. },
  8601. back: {
  8602. height: math.unit(400, "feet"),
  8603. weight: math.unit(44444444, "lb"),
  8604. name: "Back",
  8605. image: {
  8606. source: "./media/characters/major-colonel/back.svg"
  8607. }
  8608. },
  8609. },
  8610. [
  8611. {
  8612. name: "Macro",
  8613. height: math.unit(400, "feet"),
  8614. default: true
  8615. },
  8616. ]
  8617. ))
  8618. characterMakers.push(() => makeCharacter(
  8619. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8620. {
  8621. catFront: {
  8622. height: math.unit(6, "feet"),
  8623. weight: math.unit(120, "lb"),
  8624. name: "Front (Cat Side)",
  8625. image: {
  8626. source: "./media/characters/axel-lycan/cat-front.svg",
  8627. extra: 430 / 402,
  8628. bottom: 43 / 472.35
  8629. }
  8630. },
  8631. catBack: {
  8632. height: math.unit(6, "feet"),
  8633. weight: math.unit(120, "lb"),
  8634. name: "Back (Cat Side)",
  8635. image: {
  8636. source: "./media/characters/axel-lycan/cat-back.svg",
  8637. extra: 447 / 419,
  8638. bottom: 23.3 / 469
  8639. }
  8640. },
  8641. wolfFront: {
  8642. height: math.unit(6, "feet"),
  8643. weight: math.unit(120, "lb"),
  8644. name: "Front (Wolf Side)",
  8645. image: {
  8646. source: "./media/characters/axel-lycan/wolf-front.svg",
  8647. extra: 485 / 456,
  8648. bottom: 19 / 504
  8649. }
  8650. },
  8651. wolfBack: {
  8652. height: math.unit(6, "feet"),
  8653. weight: math.unit(120, "lb"),
  8654. name: "Back (Wolf Side)",
  8655. image: {
  8656. source: "./media/characters/axel-lycan/wolf-back.svg",
  8657. extra: 475 / 438,
  8658. bottom: 39.2 / 514
  8659. }
  8660. },
  8661. },
  8662. [
  8663. {
  8664. name: "Macro",
  8665. height: math.unit(1, "km"),
  8666. default: true
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(5 + 9 / 12, "feet"),
  8675. weight: math.unit(175, "lb"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/vanrel-hyena/front.svg",
  8679. extra: 1086 / 1010,
  8680. bottom: 0.04
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Normal",
  8687. height: math.unit(5 + 9 / 12, "feet"),
  8688. default: true
  8689. },
  8690. ]
  8691. ))
  8692. characterMakers.push(() => makeCharacter(
  8693. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8694. {
  8695. front: {
  8696. height: math.unit(6, "feet"),
  8697. weight: math.unit(103, "lb"),
  8698. name: "Front",
  8699. image: {
  8700. source: "./media/characters/abbott-absol/front.svg",
  8701. extra: 2010 / 1842
  8702. }
  8703. },
  8704. },
  8705. [
  8706. {
  8707. name: "Megamicro",
  8708. height: math.unit(0.1, "mm")
  8709. },
  8710. {
  8711. name: "Micro",
  8712. height: math.unit(1, "inch")
  8713. },
  8714. {
  8715. name: "Normal",
  8716. height: math.unit(6, "feet"),
  8717. default: true
  8718. },
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(6, "feet"),
  8726. weight: math.unit(264, "lb"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/hector/front.svg",
  8730. extra: 2280 / 2130,
  8731. bottom: 0.07
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Normal",
  8738. height: math.unit(12.25, "foot"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Macro",
  8743. height: math.unit(160, "feet")
  8744. },
  8745. ]
  8746. ))
  8747. characterMakers.push(() => makeCharacter(
  8748. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8749. {
  8750. front: {
  8751. height: math.unit(6, "feet"),
  8752. weight: math.unit(150, "lb"),
  8753. name: "Front",
  8754. image: {
  8755. source: "./media/characters/sal/front.svg",
  8756. extra: 1846 / 1699,
  8757. bottom: 0.04
  8758. }
  8759. },
  8760. },
  8761. [
  8762. {
  8763. name: "Megamacro",
  8764. height: math.unit(10, "miles"),
  8765. default: true
  8766. },
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8771. {
  8772. front: {
  8773. height: math.unit(3, "meters"),
  8774. weight: math.unit(450, "kg"),
  8775. name: "front",
  8776. image: {
  8777. source: "./media/characters/ranger/front.svg",
  8778. extra: 2401 / 2243,
  8779. bottom: 0.05
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(3, "meters"),
  8787. default: true
  8788. },
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(14, "feet"),
  8796. weight: math.unit(800, "kg"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/theresa/front.svg",
  8800. extra: 3575 / 3346,
  8801. bottom: 0.03
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(14, "feet"),
  8809. default: true
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8815. {
  8816. front: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(3, "kg"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/ine/front.svg",
  8822. extra: 678 / 539,
  8823. bottom: 0.023
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(2.265, "feet"),
  8831. default: true
  8832. },
  8833. ]
  8834. ))
  8835. characterMakers.push(() => makeCharacter(
  8836. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8837. {
  8838. front: {
  8839. height: math.unit(5, "feet"),
  8840. weight: math.unit(30, "kg"),
  8841. name: "Front",
  8842. image: {
  8843. source: "./media/characters/vial/front.svg",
  8844. extra: 1365 / 1277,
  8845. bottom: 0.04
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Normal",
  8852. height: math.unit(5, "feet"),
  8853. default: true
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8859. {
  8860. side: {
  8861. height: math.unit(3.4, "meters"),
  8862. weight: math.unit(1000, "lb"),
  8863. name: "Side",
  8864. image: {
  8865. source: "./media/characters/rovoska/side.svg",
  8866. extra: 4403 / 1515
  8867. }
  8868. },
  8869. },
  8870. [
  8871. {
  8872. name: "Normal",
  8873. height: math.unit(3.4, "meters"),
  8874. default: true
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8880. {
  8881. front: {
  8882. height: math.unit(8, "feet"),
  8883. weight: math.unit(315, "lb"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/gunner-rotthbauer/front.svg"
  8887. }
  8888. },
  8889. back: {
  8890. height: math.unit(8, "feet"),
  8891. weight: math.unit(315, "lb"),
  8892. name: "Back",
  8893. image: {
  8894. source: "./media/characters/gunner-rotthbauer/back.svg"
  8895. }
  8896. },
  8897. },
  8898. [
  8899. {
  8900. name: "Micro",
  8901. height: math.unit(3.5, "inches")
  8902. },
  8903. {
  8904. name: "Normal",
  8905. height: math.unit(8, "feet"),
  8906. default: true
  8907. },
  8908. {
  8909. name: "Macro",
  8910. height: math.unit(250, "feet")
  8911. },
  8912. {
  8913. name: "Megamacro",
  8914. height: math.unit(1, "AU")
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(5 + 5 / 12, "feet"),
  8923. weight: math.unit(140, "lb"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/allatia/front.svg",
  8927. extra: 1227 / 1180,
  8928. bottom: 0.027
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(5 + 5 / 12, "feet")
  8936. },
  8937. {
  8938. name: "Macro",
  8939. height: math.unit(250, "feet"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Megamacro",
  8944. height: math.unit(8, "miles")
  8945. }
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8950. {
  8951. front: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(120, "lb"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/tene/front.svg",
  8957. extra: 1728 / 1578,
  8958. bottom: 0.022
  8959. }
  8960. },
  8961. stomping: {
  8962. height: math.unit(2.025, "meters"),
  8963. weight: math.unit(120, "lb"),
  8964. name: "Stomping",
  8965. image: {
  8966. source: "./media/characters/tene/stomping.svg",
  8967. extra: 938 / 873,
  8968. bottom: 0.01
  8969. }
  8970. },
  8971. sitting: {
  8972. height: math.unit(1, "meter"),
  8973. weight: math.unit(120, "lb"),
  8974. name: "Sitting",
  8975. image: {
  8976. source: "./media/characters/tene/sitting.svg",
  8977. extra: 437 / 415,
  8978. bottom: 0.1
  8979. }
  8980. },
  8981. feral: {
  8982. height: math.unit(3.9, "feet"),
  8983. weight: math.unit(250, "lb"),
  8984. name: "Feral",
  8985. image: {
  8986. source: "./media/characters/tene/feral.svg",
  8987. extra: 717 / 458,
  8988. bottom: 0.179
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(6, "feet")
  8996. },
  8997. {
  8998. name: "Macro",
  8999. height: math.unit(300, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Megamacro",
  9004. height: math.unit(5, "miles")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9010. {
  9011. side: {
  9012. height: math.unit(6, "feet"),
  9013. name: "Side",
  9014. image: {
  9015. source: "./media/characters/evander/side.svg",
  9016. extra: 877 / 477
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(0.83, "meters"),
  9024. default: true
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(12, "feet"),
  9033. weight: math.unit(1000, "lb"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9037. extra: 1762 / 1611
  9038. }
  9039. },
  9040. back: {
  9041. height: math.unit(12, "feet"),
  9042. weight: math.unit(1000, "lb"),
  9043. name: "Back",
  9044. image: {
  9045. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9046. extra: 1762 / 1611
  9047. }
  9048. },
  9049. },
  9050. [
  9051. {
  9052. name: "Normal",
  9053. height: math.unit(12, "feet"),
  9054. default: true
  9055. },
  9056. {
  9057. name: "Kaiju",
  9058. height: math.unit(150, "feet")
  9059. },
  9060. ]
  9061. ))
  9062. characterMakers.push(() => makeCharacter(
  9063. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9064. {
  9065. front: {
  9066. height: math.unit(6, "feet"),
  9067. weight: math.unit(150, "lb"),
  9068. name: "Front",
  9069. image: {
  9070. source: "./media/characters/zero-alurus/front.svg"
  9071. }
  9072. },
  9073. back: {
  9074. height: math.unit(6, "feet"),
  9075. weight: math.unit(150, "lb"),
  9076. name: "Back",
  9077. image: {
  9078. source: "./media/characters/zero-alurus/back.svg"
  9079. }
  9080. },
  9081. },
  9082. [
  9083. {
  9084. name: "Normal",
  9085. height: math.unit(5 + 10 / 12, "feet")
  9086. },
  9087. {
  9088. name: "Macro",
  9089. height: math.unit(60, "feet"),
  9090. default: true
  9091. },
  9092. {
  9093. name: "Macro+",
  9094. height: math.unit(450, "feet")
  9095. },
  9096. ]
  9097. ))
  9098. characterMakers.push(() => makeCharacter(
  9099. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9100. {
  9101. front: {
  9102. height: math.unit(6, "feet"),
  9103. weight: math.unit(200, "lb"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/mega-shi/front.svg",
  9107. extra: 1279 / 1250,
  9108. bottom: 0.02
  9109. }
  9110. },
  9111. back: {
  9112. height: math.unit(6, "feet"),
  9113. weight: math.unit(200, "lb"),
  9114. name: "Back",
  9115. image: {
  9116. source: "./media/characters/mega-shi/back.svg",
  9117. extra: 1279 / 1250,
  9118. bottom: 0.02
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Micro",
  9125. height: math.unit(16 + 6 / 12, "feet")
  9126. },
  9127. {
  9128. name: "Third Dimension",
  9129. height: math.unit(40, "meters")
  9130. },
  9131. {
  9132. name: "Normal",
  9133. height: math.unit(660, "feet"),
  9134. default: true
  9135. },
  9136. {
  9137. name: "Megamacro",
  9138. height: math.unit(10, "miles")
  9139. },
  9140. {
  9141. name: "Planetary Launch",
  9142. height: math.unit(500, "miles")
  9143. },
  9144. {
  9145. name: "Interstellar",
  9146. height: math.unit(1e9, "miles")
  9147. },
  9148. {
  9149. name: "Leaving the Universe",
  9150. height: math.unit(1, "gigaparsec")
  9151. },
  9152. {
  9153. name: "Travelling Universes",
  9154. height: math.unit(30e15, "parsecs")
  9155. },
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9160. {
  9161. front: {
  9162. height: math.unit(6, "feet"),
  9163. weight: math.unit(150, "lb"),
  9164. name: "Front",
  9165. image: {
  9166. source: "./media/characters/odyssey/front.svg",
  9167. extra: 1782 / 1582,
  9168. bottom: 0.01
  9169. }
  9170. },
  9171. side: {
  9172. height: math.unit(5.7, "feet"),
  9173. weight: math.unit(140, "lb"),
  9174. name: "Side",
  9175. image: {
  9176. source: "./media/characters/odyssey/side.svg",
  9177. extra: 6462 / 5700
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(5 + 4 / 12, "feet")
  9185. },
  9186. {
  9187. name: "Macro",
  9188. height: math.unit(1, "km")
  9189. },
  9190. {
  9191. name: "Megamacro",
  9192. height: math.unit(3000, "km")
  9193. },
  9194. {
  9195. name: "Gigamacro",
  9196. height: math.unit(1, "AU"),
  9197. default: true
  9198. },
  9199. {
  9200. name: "Omniversal",
  9201. height: math.unit(100e14, "lightyears")
  9202. },
  9203. ]
  9204. ))
  9205. characterMakers.push(() => makeCharacter(
  9206. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9207. {
  9208. front: {
  9209. height: math.unit(6, "feet"),
  9210. weight: math.unit(300, "lb"),
  9211. name: "Front",
  9212. image: {
  9213. source: "./media/characters/mekuto/front.svg",
  9214. extra: 921 / 832,
  9215. bottom: 0.03
  9216. }
  9217. },
  9218. hand: {
  9219. height: math.unit(6 / 10.24, "feet"),
  9220. name: "Hand",
  9221. image: {
  9222. source: "./media/characters/mekuto/hand.svg"
  9223. }
  9224. },
  9225. foot: {
  9226. height: math.unit(6 / 5.05, "feet"),
  9227. name: "Foot",
  9228. image: {
  9229. source: "./media/characters/mekuto/foot.svg"
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Minimicro",
  9236. height: math.unit(0.2, "inches")
  9237. },
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(1.5, "inches")
  9241. },
  9242. {
  9243. name: "Normal",
  9244. height: math.unit(5 + 11 / 12, "feet"),
  9245. default: true
  9246. },
  9247. {
  9248. name: "Minimacro",
  9249. height: math.unit(17 + 9 / 12, "feet")
  9250. },
  9251. {
  9252. name: "Macro",
  9253. height: math.unit(177.5, "feet")
  9254. },
  9255. {
  9256. name: "Megamacro",
  9257. height: math.unit(152, "miles")
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9263. {
  9264. front: {
  9265. height: math.unit(6.5, "inches"),
  9266. weight: math.unit(13, "oz"),
  9267. name: "Front",
  9268. image: {
  9269. source: "./media/characters/dafydd-tomos/front.svg",
  9270. extra: 2990 / 2603,
  9271. bottom: 0.03
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Micro",
  9278. height: math.unit(6.5, "inches"),
  9279. default: true
  9280. },
  9281. ]
  9282. ))
  9283. characterMakers.push(() => makeCharacter(
  9284. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9285. {
  9286. front: {
  9287. height: math.unit(6, "feet"),
  9288. weight: math.unit(150, "lb"),
  9289. name: "Front",
  9290. image: {
  9291. source: "./media/characters/splinter/front.svg",
  9292. extra: 2990 / 2882,
  9293. bottom: 0.04
  9294. }
  9295. },
  9296. back: {
  9297. height: math.unit(6, "feet"),
  9298. weight: math.unit(150, "lb"),
  9299. name: "Back",
  9300. image: {
  9301. source: "./media/characters/splinter/back.svg",
  9302. extra: 2990 / 2882,
  9303. bottom: 0.04
  9304. }
  9305. },
  9306. },
  9307. [
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(6, "feet")
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(230, "meters"),
  9315. default: true
  9316. },
  9317. ]
  9318. ))
  9319. characterMakers.push(() => makeCharacter(
  9320. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9321. {
  9322. front: {
  9323. height: math.unit(4 + 10 / 12, "feet"),
  9324. weight: math.unit(480, "lb"),
  9325. name: "Front",
  9326. image: {
  9327. source: "./media/characters/snow-gabumon/front.svg",
  9328. extra: 1140 / 963,
  9329. bottom: 0.058
  9330. }
  9331. },
  9332. back: {
  9333. height: math.unit(4 + 10 / 12, "feet"),
  9334. weight: math.unit(480, "lb"),
  9335. name: "Back",
  9336. image: {
  9337. source: "./media/characters/snow-gabumon/back.svg",
  9338. extra: 1115 / 962,
  9339. bottom: 0.041
  9340. }
  9341. },
  9342. frontUndresed: {
  9343. height: math.unit(4 + 10 / 12, "feet"),
  9344. weight: math.unit(480, "lb"),
  9345. name: "Front (Undressed)",
  9346. image: {
  9347. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9348. extra: 1061 / 960,
  9349. bottom: 0.045
  9350. }
  9351. },
  9352. },
  9353. [
  9354. {
  9355. name: "Micro",
  9356. height: math.unit(1, "inch")
  9357. },
  9358. {
  9359. name: "Normal",
  9360. height: math.unit(4 + 10 / 12, "feet"),
  9361. default: true
  9362. },
  9363. {
  9364. name: "Macro",
  9365. height: math.unit(200, "feet")
  9366. },
  9367. {
  9368. name: "Megamacro",
  9369. height: math.unit(120, "miles")
  9370. },
  9371. {
  9372. name: "Gigamacro",
  9373. height: math.unit(9800, "miles")
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(1.7, "meters"),
  9382. weight: math.unit(140, "lb"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/moody/front.svg",
  9386. extra: 3226 / 3007,
  9387. bottom: 0.087
  9388. }
  9389. },
  9390. },
  9391. [
  9392. {
  9393. name: "Micro",
  9394. height: math.unit(1, "mm")
  9395. },
  9396. {
  9397. name: "Normal",
  9398. height: math.unit(1.7, "meters"),
  9399. default: true
  9400. },
  9401. {
  9402. name: "Macro",
  9403. height: math.unit(80, "meters")
  9404. },
  9405. {
  9406. name: "Macro+",
  9407. height: math.unit(500, "meters")
  9408. },
  9409. ]
  9410. ))
  9411. characterMakers.push(() => makeCharacter(
  9412. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9413. {
  9414. front: {
  9415. height: math.unit(6, "feet"),
  9416. weight: math.unit(150, "lb"),
  9417. name: "Front",
  9418. image: {
  9419. source: "./media/characters/zyas/front.svg",
  9420. extra: 1180 / 1120,
  9421. bottom: 0.045
  9422. }
  9423. },
  9424. },
  9425. [
  9426. {
  9427. name: "Normal",
  9428. height: math.unit(10, "feet"),
  9429. default: true
  9430. },
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(500, "feet")
  9434. },
  9435. {
  9436. name: "Megamacro",
  9437. height: math.unit(5, "miles")
  9438. },
  9439. {
  9440. name: "Teramacro",
  9441. height: math.unit(150000, "miles")
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9447. {
  9448. front: {
  9449. height: math.unit(6, "feet"),
  9450. weight: math.unit(150, "lb"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/cuon/front.svg",
  9454. extra: 1390 / 1320,
  9455. bottom: 0.008
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Micro",
  9462. height: math.unit(3, "inches")
  9463. },
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(18 + 9 / 12, "feet"),
  9467. default: true
  9468. },
  9469. {
  9470. name: "Macro",
  9471. height: math.unit(360, "feet")
  9472. },
  9473. {
  9474. name: "Megamacro",
  9475. height: math.unit(360, "miles")
  9476. },
  9477. ]
  9478. ))
  9479. characterMakers.push(() => makeCharacter(
  9480. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9481. {
  9482. front: {
  9483. height: math.unit(2.4, "meters"),
  9484. weight: math.unit(70, "kg"),
  9485. name: "Front",
  9486. image: {
  9487. source: "./media/characters/nyanuxk/front.svg",
  9488. extra: 1172 / 1084,
  9489. bottom: 0.065
  9490. }
  9491. },
  9492. side: {
  9493. height: math.unit(2.4, "meters"),
  9494. weight: math.unit(70, "kg"),
  9495. name: "Side",
  9496. image: {
  9497. source: "./media/characters/nyanuxk/side.svg",
  9498. extra: 1190 / 1132,
  9499. bottom: 0.007
  9500. }
  9501. },
  9502. back: {
  9503. height: math.unit(2.4, "meters"),
  9504. weight: math.unit(70, "kg"),
  9505. name: "Back",
  9506. image: {
  9507. source: "./media/characters/nyanuxk/back.svg",
  9508. extra: 1200 / 1141,
  9509. bottom: 0.015
  9510. }
  9511. },
  9512. foot: {
  9513. height: math.unit(0.52, "meters"),
  9514. name: "Foot",
  9515. image: {
  9516. source: "./media/characters/nyanuxk/foot.svg"
  9517. }
  9518. },
  9519. },
  9520. [
  9521. {
  9522. name: "Micro",
  9523. height: math.unit(2, "cm")
  9524. },
  9525. {
  9526. name: "Normal",
  9527. height: math.unit(2.4, "meters"),
  9528. default: true
  9529. },
  9530. {
  9531. name: "Smaller Macro",
  9532. height: math.unit(120, "meters")
  9533. },
  9534. {
  9535. name: "Bigger Macro",
  9536. height: math.unit(1.2, "km")
  9537. },
  9538. {
  9539. name: "Megamacro",
  9540. height: math.unit(15, "kilometers")
  9541. },
  9542. {
  9543. name: "Gigamacro",
  9544. height: math.unit(2000, "km")
  9545. },
  9546. {
  9547. name: "Teramacro",
  9548. height: math.unit(500000, "km")
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9554. {
  9555. side: {
  9556. height: math.unit(6, "feet"),
  9557. name: "Side",
  9558. image: {
  9559. source: "./media/characters/ailbhe/side.svg",
  9560. extra: 757 / 464,
  9561. bottom: 0.041
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Normal",
  9568. height: math.unit(1.07, "meters"),
  9569. default: true
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9575. {
  9576. front: {
  9577. height: math.unit(6, "feet"),
  9578. weight: math.unit(120, "kg"),
  9579. name: "Front",
  9580. image: {
  9581. source: "./media/characters/zevulfius/front.svg",
  9582. extra: 965 / 903
  9583. }
  9584. },
  9585. side: {
  9586. height: math.unit(6, "feet"),
  9587. weight: math.unit(120, "kg"),
  9588. name: "Side",
  9589. image: {
  9590. source: "./media/characters/zevulfius/side.svg",
  9591. extra: 939 / 900
  9592. }
  9593. },
  9594. back: {
  9595. height: math.unit(6, "feet"),
  9596. weight: math.unit(120, "kg"),
  9597. name: "Back",
  9598. image: {
  9599. source: "./media/characters/zevulfius/back.svg",
  9600. extra: 918 / 854,
  9601. bottom: 0.005
  9602. }
  9603. },
  9604. foot: {
  9605. height: math.unit(6 / 3.72, "feet"),
  9606. name: "Foot",
  9607. image: {
  9608. source: "./media/characters/zevulfius/foot.svg"
  9609. }
  9610. },
  9611. },
  9612. [
  9613. {
  9614. name: "Macro",
  9615. height: math.unit(750, "meters")
  9616. },
  9617. {
  9618. name: "Megamacro",
  9619. height: math.unit(20, "km"),
  9620. default: true
  9621. },
  9622. {
  9623. name: "Gigamacro",
  9624. height: math.unit(2000, "km")
  9625. },
  9626. {
  9627. name: "Teramacro",
  9628. height: math.unit(250000, "km")
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9634. {
  9635. front: {
  9636. height: math.unit(100, "feet"),
  9637. weight: math.unit(350, "kg"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/rikes/front.svg",
  9641. extra: 1565 / 1483,
  9642. bottom: 0.017
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Macro",
  9649. height: math.unit(100, "feet"),
  9650. default: true
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9656. {
  9657. anthro: {
  9658. height: math.unit(8, "feet"),
  9659. weight: math.unit(120, "kg"),
  9660. name: "Anthro",
  9661. image: {
  9662. source: "./media/characters/adam-silver-mane/anthro.svg",
  9663. extra: 5743 / 5339,
  9664. bottom: 0.07
  9665. }
  9666. },
  9667. taur: {
  9668. height: math.unit(16, "feet"),
  9669. weight: math.unit(1500, "kg"),
  9670. name: "Taur",
  9671. image: {
  9672. source: "./media/characters/adam-silver-mane/taur.svg",
  9673. extra: 1713 / 1571,
  9674. bottom: 0.01
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(8, "feet")
  9682. },
  9683. {
  9684. name: "Minimacro",
  9685. height: math.unit(80, "feet")
  9686. },
  9687. {
  9688. name: "Macro",
  9689. height: math.unit(800, "feet"),
  9690. default: true
  9691. },
  9692. {
  9693. name: "Megamacro",
  9694. height: math.unit(8000, "feet")
  9695. },
  9696. {
  9697. name: "Gigamacro",
  9698. height: math.unit(800, "miles")
  9699. },
  9700. {
  9701. name: "Teramacro",
  9702. height: math.unit(80000, "miles")
  9703. },
  9704. {
  9705. name: "Celestial",
  9706. height: math.unit(8e6, "miles")
  9707. },
  9708. {
  9709. name: "Star Dragon",
  9710. height: math.unit(800000, "parsecs")
  9711. },
  9712. {
  9713. name: "Godly",
  9714. height: math.unit(800, "teraparsecs")
  9715. },
  9716. ]
  9717. ))
  9718. characterMakers.push(() => makeCharacter(
  9719. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9720. {
  9721. front: {
  9722. height: math.unit(6, "feet"),
  9723. weight: math.unit(150, "lb"),
  9724. name: "Front",
  9725. image: {
  9726. source: "./media/characters/ky'owin/front.svg",
  9727. extra: 3888 / 3068,
  9728. bottom: 0.015
  9729. }
  9730. },
  9731. },
  9732. [
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(6 + 8 / 12, "feet")
  9736. },
  9737. {
  9738. name: "Large",
  9739. height: math.unit(68, "feet")
  9740. },
  9741. {
  9742. name: "Macro",
  9743. height: math.unit(132, "feet")
  9744. },
  9745. {
  9746. name: "Macro+",
  9747. height: math.unit(340, "feet")
  9748. },
  9749. {
  9750. name: "Macro++",
  9751. height: math.unit(680, "feet"),
  9752. default: true
  9753. },
  9754. {
  9755. name: "Megamacro",
  9756. height: math.unit(1, "mile")
  9757. },
  9758. {
  9759. name: "Megamacro+",
  9760. height: math.unit(10, "miles")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9766. {
  9767. front: {
  9768. height: math.unit(4, "feet"),
  9769. weight: math.unit(50, "lb"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/mal/front.svg",
  9773. extra: 785 / 724,
  9774. bottom: 0.07
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Micro",
  9781. height: math.unit(4, "inches")
  9782. },
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(4, "feet"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "Macro",
  9790. height: math.unit(200, "feet")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(6, "feet"),
  9799. weight: math.unit(150, "lb"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/jordan-deware/front.svg",
  9803. extra: 1191 / 1012
  9804. }
  9805. },
  9806. },
  9807. [
  9808. {
  9809. name: "Nano",
  9810. height: math.unit(0.01, "mm")
  9811. },
  9812. {
  9813. name: "Minimicro",
  9814. height: math.unit(1, "mm")
  9815. },
  9816. {
  9817. name: "Micro",
  9818. height: math.unit(0.5, "inches")
  9819. },
  9820. {
  9821. name: "Normal",
  9822. height: math.unit(4, "feet"),
  9823. default: true
  9824. },
  9825. {
  9826. name: "Minimacro",
  9827. height: math.unit(40, "meters")
  9828. },
  9829. {
  9830. name: "Small Macro",
  9831. height: math.unit(400, "meters")
  9832. },
  9833. {
  9834. name: "Macro",
  9835. height: math.unit(4, "miles")
  9836. },
  9837. {
  9838. name: "Megamacro",
  9839. height: math.unit(40, "miles")
  9840. },
  9841. {
  9842. name: "Megamacro+",
  9843. height: math.unit(400, "miles")
  9844. },
  9845. {
  9846. name: "Gigamacro",
  9847. height: math.unit(400000, "miles")
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9853. {
  9854. side: {
  9855. height: math.unit(6, "feet"),
  9856. weight: math.unit(150, "lb"),
  9857. name: "Side",
  9858. image: {
  9859. source: "./media/characters/kimiko/side.svg",
  9860. extra: 600 / 358
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Normal",
  9867. height: math.unit(15, "feet"),
  9868. default: true
  9869. },
  9870. {
  9871. name: "Macro",
  9872. height: math.unit(220, "feet")
  9873. },
  9874. {
  9875. name: "Macro+",
  9876. height: math.unit(1450, "feet")
  9877. },
  9878. {
  9879. name: "Megamacro",
  9880. height: math.unit(11500, "feet")
  9881. },
  9882. {
  9883. name: "Gigamacro",
  9884. height: math.unit(9500, "miles")
  9885. },
  9886. {
  9887. name: "Teramacro",
  9888. height: math.unit(2208005005, "miles")
  9889. },
  9890. {
  9891. name: "Examacro",
  9892. height: math.unit(2750, "parsecs")
  9893. },
  9894. {
  9895. name: "Zettamacro",
  9896. height: math.unit(101500, "parsecs")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9902. {
  9903. front: {
  9904. height: math.unit(6, "feet"),
  9905. weight: math.unit(70, "kg"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/andrew-sleepy/front.svg"
  9909. }
  9910. },
  9911. side: {
  9912. height: math.unit(6, "feet"),
  9913. weight: math.unit(70, "kg"),
  9914. name: "Side",
  9915. image: {
  9916. source: "./media/characters/andrew-sleepy/side.svg"
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Micro",
  9923. height: math.unit(1, "mm"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(6, "feet"),
  9933. weight: math.unit(150, "lb"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/judio/front.svg",
  9937. extra: 1258 / 1110
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(5 + 6 / 12, "feet")
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(1000, "feet"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Megamacro",
  9953. height: math.unit(10, "miles")
  9954. },
  9955. ]
  9956. ))
  9957. characterMakers.push(() => makeCharacter(
  9958. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9959. {
  9960. front: {
  9961. height: math.unit(6, "feet"),
  9962. weight: math.unit(68, "kg"),
  9963. name: "Front",
  9964. image: {
  9965. source: "./media/characters/nomaxice/front.svg",
  9966. extra: 1498 / 1073,
  9967. bottom: 0.075
  9968. }
  9969. },
  9970. foot: {
  9971. height: math.unit(1.1, "feet"),
  9972. name: "Foot",
  9973. image: {
  9974. source: "./media/characters/nomaxice/foot.svg"
  9975. }
  9976. },
  9977. },
  9978. [
  9979. {
  9980. name: "Micro",
  9981. height: math.unit(8, "cm")
  9982. },
  9983. {
  9984. name: "Norm",
  9985. height: math.unit(1.82, "m")
  9986. },
  9987. {
  9988. name: "Norm+",
  9989. height: math.unit(8.8, "feet")
  9990. },
  9991. {
  9992. name: "Big",
  9993. height: math.unit(8, "meters"),
  9994. default: true
  9995. },
  9996. {
  9997. name: "Macro",
  9998. height: math.unit(18, "meters")
  9999. },
  10000. {
  10001. name: "Macro+",
  10002. height: math.unit(88, "meters")
  10003. },
  10004. ]
  10005. ))
  10006. characterMakers.push(() => makeCharacter(
  10007. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10008. {
  10009. front: {
  10010. height: math.unit(12, "feet"),
  10011. weight: math.unit(1.5, "tons"),
  10012. name: "Front",
  10013. image: {
  10014. source: "./media/characters/dydros/front.svg",
  10015. extra: 863 / 800,
  10016. bottom: 0.015
  10017. }
  10018. },
  10019. back: {
  10020. height: math.unit(12, "feet"),
  10021. weight: math.unit(1.5, "tons"),
  10022. name: "Back",
  10023. image: {
  10024. source: "./media/characters/dydros/back.svg",
  10025. extra: 900 / 843,
  10026. bottom: 0.005
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Normal",
  10033. height: math.unit(12, "feet"),
  10034. default: true
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10040. {
  10041. front: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(100, "kg"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/riggi/front.svg",
  10047. extra: 5787 / 5303
  10048. }
  10049. },
  10050. hyper: {
  10051. height: math.unit(6 * 5 / 3, "feet"),
  10052. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10053. name: "Hyper",
  10054. image: {
  10055. source: "./media/characters/riggi/hyper.svg",
  10056. extra: 3595 / 3485
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Small Macro",
  10063. height: math.unit(50, "feet")
  10064. },
  10065. {
  10066. name: "Default",
  10067. height: math.unit(200, "feet"),
  10068. default: true
  10069. },
  10070. {
  10071. name: "Loom",
  10072. height: math.unit(10000, "feet")
  10073. },
  10074. {
  10075. name: "Cruising Altitude",
  10076. height: math.unit(30000, "feet")
  10077. },
  10078. {
  10079. name: "Megamacro",
  10080. height: math.unit(100, "miles")
  10081. },
  10082. {
  10083. name: "Continent Sized",
  10084. height: math.unit(2800, "miles")
  10085. },
  10086. {
  10087. name: "Earth Sized",
  10088. height: math.unit(8000, "miles")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(6, "feet"),
  10097. weight: math.unit(250, "lb"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/alexi/front.svg",
  10101. extra: 3483 / 3291,
  10102. bottom: 0.04
  10103. }
  10104. },
  10105. back: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(250, "lb"),
  10108. name: "Back",
  10109. image: {
  10110. source: "./media/characters/alexi/back.svg",
  10111. extra: 3533 / 3356,
  10112. bottom: 0.021
  10113. }
  10114. },
  10115. frontTransforming: {
  10116. height: math.unit(8.58, "feet"),
  10117. weight: math.unit(1300, "lb"),
  10118. name: "Transforming",
  10119. image: {
  10120. source: "./media/characters/alexi/front-transforming.svg",
  10121. extra: 437 / 409,
  10122. bottom: 19 / 458.66
  10123. }
  10124. },
  10125. frontTransformed: {
  10126. height: math.unit(12.5, "feet"),
  10127. weight: math.unit(4000, "lb"),
  10128. name: "Transformed",
  10129. image: {
  10130. source: "./media/characters/alexi/front-transformed.svg",
  10131. extra: 639 / 614,
  10132. bottom: 30.55 / 671
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(14, "feet"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Minimacro",
  10144. height: math.unit(30, "meters")
  10145. },
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(500, "meters")
  10149. },
  10150. {
  10151. name: "Megamacro",
  10152. height: math.unit(9000, "km")
  10153. },
  10154. {
  10155. name: "Teramacro",
  10156. height: math.unit(384000, "km")
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(6, "feet"),
  10165. weight: math.unit(150, "lb"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/kayroo/front.svg",
  10169. extra: 1153 / 1038,
  10170. bottom: 0.06
  10171. }
  10172. },
  10173. foot: {
  10174. height: math.unit(6, "feet"),
  10175. weight: math.unit(150, "lb"),
  10176. name: "Foot",
  10177. image: {
  10178. source: "./media/characters/kayroo/foot.svg"
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(8, "feet"),
  10186. default: true
  10187. },
  10188. {
  10189. name: "Minimacro",
  10190. height: math.unit(250, "feet")
  10191. },
  10192. {
  10193. name: "Macro",
  10194. height: math.unit(2800, "feet")
  10195. },
  10196. {
  10197. name: "Megamacro",
  10198. height: math.unit(5200, "feet")
  10199. },
  10200. {
  10201. name: "Gigamacro",
  10202. height: math.unit(27000, "feet")
  10203. },
  10204. {
  10205. name: "Omega",
  10206. height: math.unit(45000, "feet")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(18, "feet"),
  10215. weight: math.unit(5800, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/rhys/front.svg",
  10219. extra: 3386 / 3090,
  10220. bottom: 0.07
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(18, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Working Size",
  10232. height: math.unit(200, "feet")
  10233. },
  10234. {
  10235. name: "Demolition Size",
  10236. height: math.unit(2000, "feet")
  10237. },
  10238. {
  10239. name: "Maximum Licensed Size",
  10240. height: math.unit(5, "miles")
  10241. },
  10242. {
  10243. name: "Maximum Observed Size",
  10244. height: math.unit(10, "yottameters")
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(250, "lb"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/toto/front.svg",
  10257. extra: 527 / 479,
  10258. bottom: 0.05
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Micro",
  10265. height: math.unit(3, "feet")
  10266. },
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(10, "feet")
  10270. },
  10271. {
  10272. name: "Macro",
  10273. height: math.unit(150, "feet"),
  10274. default: true
  10275. },
  10276. {
  10277. name: "Megamacro",
  10278. height: math.unit(1200, "feet")
  10279. },
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "King", species: ["lion"], tags: ["anthro"] },
  10284. {
  10285. back: {
  10286. height: math.unit(6, "feet"),
  10287. weight: math.unit(150, "lb"),
  10288. name: "Back",
  10289. image: {
  10290. source: "./media/characters/king/back.svg"
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Micro",
  10297. height: math.unit(2, "inches")
  10298. },
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(8, "feet")
  10302. },
  10303. {
  10304. name: "Macro",
  10305. height: math.unit(200, "feet"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Megamacro",
  10310. height: math.unit(50, "miles")
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10316. {
  10317. anthro: {
  10318. height: math.unit(6 + 5 / 12, "feet"),
  10319. weight: math.unit(280, "lb"),
  10320. name: "Anthro",
  10321. image: {
  10322. source: "./media/characters/cordite/anthro.svg",
  10323. extra: 1986 / 1905,
  10324. bottom: 0.025
  10325. }
  10326. },
  10327. feral: {
  10328. height: math.unit(2, "feet"),
  10329. weight: math.unit(90, "lb"),
  10330. name: "Feral",
  10331. image: {
  10332. source: "./media/characters/cordite/feral.svg",
  10333. extra: 1260 / 755,
  10334. bottom: 0.05
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(6 + 5 / 12, "feet"),
  10342. default: true
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(150, "lb"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/pianostrong/front.svg",
  10355. extra: 6577 / 6254,
  10356. bottom: 0.02
  10357. }
  10358. },
  10359. side: {
  10360. height: math.unit(6, "feet"),
  10361. weight: math.unit(150, "lb"),
  10362. name: "Side",
  10363. image: {
  10364. source: "./media/characters/pianostrong/side.svg",
  10365. extra: 6106 / 5730
  10366. }
  10367. },
  10368. back: {
  10369. height: math.unit(6, "feet"),
  10370. weight: math.unit(150, "lb"),
  10371. name: "Back",
  10372. image: {
  10373. source: "./media/characters/pianostrong/back.svg",
  10374. extra: 6085 / 5733,
  10375. bottom: 0.01
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Macro",
  10382. height: math.unit(100, "feet")
  10383. },
  10384. {
  10385. name: "Macro+",
  10386. height: math.unit(300, "feet"),
  10387. default: true
  10388. },
  10389. {
  10390. name: "Macro++",
  10391. height: math.unit(1000, "feet")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10397. {
  10398. front: {
  10399. height: math.unit(6, "feet"),
  10400. weight: math.unit(150, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/kona/front.svg",
  10404. extra: 2960 / 2629,
  10405. bottom: 0.005
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(11 + 8 / 12, "feet")
  10413. },
  10414. {
  10415. name: "Macro",
  10416. height: math.unit(850, "feet"),
  10417. default: true
  10418. },
  10419. {
  10420. name: "Macro+",
  10421. height: math.unit(1.5, "km"),
  10422. default: true
  10423. },
  10424. {
  10425. name: "Megamacro",
  10426. height: math.unit(80, "miles")
  10427. },
  10428. {
  10429. name: "Gigamacro",
  10430. height: math.unit(3500, "miles")
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10436. {
  10437. side: {
  10438. height: math.unit(1.9, "meters"),
  10439. weight: math.unit(326, "kg"),
  10440. name: "Side",
  10441. image: {
  10442. source: "./media/characters/levi/side.svg",
  10443. extra: 1704 / 1334,
  10444. bottom: 0.02
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Normal",
  10451. height: math.unit(1.9, "meters"),
  10452. default: true
  10453. },
  10454. {
  10455. name: "Macro",
  10456. height: math.unit(20, "meters")
  10457. },
  10458. {
  10459. name: "Macro+",
  10460. height: math.unit(200, "meters")
  10461. },
  10462. {
  10463. name: "Megamacro",
  10464. height: math.unit(2, "km")
  10465. },
  10466. {
  10467. name: "Megamacro+",
  10468. height: math.unit(20, "km")
  10469. },
  10470. {
  10471. name: "Gigamacro",
  10472. height: math.unit(2500, "km")
  10473. },
  10474. {
  10475. name: "Gigamacro+",
  10476. height: math.unit(120000, "km")
  10477. },
  10478. {
  10479. name: "Teramacro",
  10480. height: math.unit(7.77e6, "km")
  10481. },
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10486. {
  10487. front: {
  10488. height: math.unit(6 + 4 / 12, "feet"),
  10489. weight: math.unit(188, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/bmc/front.svg",
  10493. extra: 1067 / 1022,
  10494. bottom: 0.047
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Human-sized",
  10501. height: math.unit(6 + 4 / 12, "feet")
  10502. },
  10503. {
  10504. name: "Small",
  10505. height: math.unit(250, "feet")
  10506. },
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(1250, "feet"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Good Day",
  10514. height: math.unit(88, "miles")
  10515. },
  10516. {
  10517. name: "Largest Measured Size",
  10518. height: math.unit(11.2e6, "lightyears")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(20, "feet"),
  10527. weight: math.unit(2016, "kg"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/sven-the-kaiju/front.svg",
  10531. extra: 1479 / 1449,
  10532. bottom: 0.05
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Fairy",
  10539. height: math.unit(6, "inches")
  10540. },
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(20, "feet"),
  10544. default: true
  10545. },
  10546. {
  10547. name: "Rampage",
  10548. height: math.unit(200, "feet")
  10549. },
  10550. {
  10551. name: "Archfey Forest Guardian",
  10552. height: math.unit(1, "mile")
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(4, "meters"),
  10561. weight: math.unit(2, "tons"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/marik/front.svg",
  10565. extra: 1057 / 1003,
  10566. bottom: 0.08
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(4, "meters"),
  10574. default: true
  10575. },
  10576. {
  10577. name: "Macro",
  10578. height: math.unit(20, "meters")
  10579. },
  10580. {
  10581. name: "Megamacro",
  10582. height: math.unit(50, "km")
  10583. },
  10584. {
  10585. name: "Gigamacro",
  10586. height: math.unit(100, "km")
  10587. },
  10588. {
  10589. name: "Alpha Macro",
  10590. height: math.unit(7.88e7, "yottameters")
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(6, "feet"),
  10599. weight: math.unit(110, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/mel/front.svg",
  10603. extra: 736 / 617,
  10604. bottom: 0.017
  10605. }
  10606. },
  10607. },
  10608. [
  10609. {
  10610. name: "Pico",
  10611. height: math.unit(3, "pm")
  10612. },
  10613. {
  10614. name: "Nano",
  10615. height: math.unit(3, "nm")
  10616. },
  10617. {
  10618. name: "Micro",
  10619. height: math.unit(0.3, "mm"),
  10620. default: true
  10621. },
  10622. {
  10623. name: "Micro+",
  10624. height: math.unit(3, "mm")
  10625. },
  10626. {
  10627. name: "Normal",
  10628. height: math.unit(5 + 10.5 / 12, "feet")
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10634. {
  10635. kaiju: {
  10636. height: math.unit(1.75, "meters"),
  10637. weight: math.unit(55, "kg"),
  10638. name: "Kaiju",
  10639. image: {
  10640. source: "./media/characters/lykonous/kaiju.svg",
  10641. extra: 1055 / 946,
  10642. bottom: 0.135
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(2.5, "meters"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Kaiju Dragon",
  10654. height: math.unit(60, "meters")
  10655. },
  10656. {
  10657. name: "Mega Kaiju",
  10658. height: math.unit(120, "km")
  10659. },
  10660. {
  10661. name: "Giga Kaiju",
  10662. height: math.unit(200, "megameters")
  10663. },
  10664. {
  10665. name: "Terra Kaiju",
  10666. height: math.unit(400, "gigameters")
  10667. },
  10668. {
  10669. name: "Kaiju Dragon God",
  10670. height: math.unit(13000, "exaparsecs")
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10676. {
  10677. front: {
  10678. height: math.unit(6, "feet"),
  10679. weight: math.unit(150, "lb"),
  10680. name: "Front",
  10681. image: {
  10682. source: "./media/characters/blü/front.svg",
  10683. extra: 1883 / 1564,
  10684. bottom: 0.031
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Normal",
  10691. height: math.unit(13, "feet"),
  10692. default: true
  10693. },
  10694. {
  10695. name: "Big Boi",
  10696. height: math.unit(150, "meters")
  10697. },
  10698. {
  10699. name: "Mini Stomper",
  10700. height: math.unit(300, "meters")
  10701. },
  10702. {
  10703. name: "Macro",
  10704. height: math.unit(1000, "meters")
  10705. },
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(11000, "meters")
  10709. },
  10710. {
  10711. name: "Gigamacro",
  10712. height: math.unit(11000, "km")
  10713. },
  10714. {
  10715. name: "Teramacro",
  10716. height: math.unit(420000, "km")
  10717. },
  10718. {
  10719. name: "Examacro",
  10720. height: math.unit(120, "parsecs")
  10721. },
  10722. {
  10723. name: "God Tho",
  10724. height: math.unit(98000000000, "parsecs")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10730. {
  10731. taurFront: {
  10732. height: math.unit(6, "feet"),
  10733. weight: math.unit(200, "lb"),
  10734. name: "Taur (Front)",
  10735. image: {
  10736. source: "./media/characters/scales/taur-front.svg",
  10737. extra: 1,
  10738. bottom: 0.05
  10739. }
  10740. },
  10741. taurBack: {
  10742. height: math.unit(6, "feet"),
  10743. weight: math.unit(200, "lb"),
  10744. name: "Taur (Back)",
  10745. image: {
  10746. source: "./media/characters/scales/taur-back.svg",
  10747. extra: 1,
  10748. bottom: 0.08
  10749. }
  10750. },
  10751. anthro: {
  10752. height: math.unit(6 * 7 / 12, "feet"),
  10753. weight: math.unit(100, "lb"),
  10754. name: "Anthro",
  10755. image: {
  10756. source: "./media/characters/scales/anthro.svg",
  10757. extra: 1,
  10758. bottom: 0.06
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Normal",
  10765. height: math.unit(12, "feet"),
  10766. default: true
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(6, "feet"),
  10775. weight: math.unit(150, "lb"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/koragos/front.svg",
  10779. extra: 841 / 794,
  10780. bottom: 0.035
  10781. }
  10782. },
  10783. back: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(150, "lb"),
  10786. name: "Back",
  10787. image: {
  10788. source: "./media/characters/koragos/back.svg",
  10789. extra: 841 / 810,
  10790. bottom: 0.022
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(6 + 11 / 12, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Macro",
  10802. height: math.unit(490, "feet")
  10803. },
  10804. {
  10805. name: "Megamacro",
  10806. height: math.unit(10, "miles")
  10807. },
  10808. {
  10809. name: "Gigamacro",
  10810. height: math.unit(50, "miles")
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(6, "feet"),
  10819. weight: math.unit(250, "lb"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/xylrem/front.svg",
  10823. extra: 3323 / 3050,
  10824. bottom: 0.065
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Micro",
  10831. height: math.unit(4, "feet")
  10832. },
  10833. {
  10834. name: "Normal",
  10835. height: math.unit(16, "feet"),
  10836. default: true
  10837. },
  10838. {
  10839. name: "Macro",
  10840. height: math.unit(2720, "feet")
  10841. },
  10842. {
  10843. name: "Megamacro",
  10844. height: math.unit(25000, "miles")
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(8, "feet"),
  10853. weight: math.unit(250, "kg"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/ikideru/front.svg",
  10857. extra: 930 / 870,
  10858. bottom: 0.087
  10859. }
  10860. },
  10861. back: {
  10862. height: math.unit(8, "feet"),
  10863. weight: math.unit(250, "kg"),
  10864. name: "Back",
  10865. image: {
  10866. source: "./media/characters/ikideru/back.svg",
  10867. extra: 919 / 852,
  10868. bottom: 0.055
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Rare",
  10875. height: math.unit(8, "feet"),
  10876. default: true
  10877. },
  10878. {
  10879. name: "Playful Loom",
  10880. height: math.unit(80, "feet")
  10881. },
  10882. {
  10883. name: "City Leaner",
  10884. height: math.unit(230, "feet")
  10885. },
  10886. {
  10887. name: "Megamacro",
  10888. height: math.unit(2500, "feet")
  10889. },
  10890. {
  10891. name: "Gigamacro",
  10892. height: math.unit(26400, "feet")
  10893. },
  10894. {
  10895. name: "Tectonic Shifter",
  10896. height: math.unit(1.7, "megameters")
  10897. },
  10898. {
  10899. name: "Planet Carer",
  10900. height: math.unit(21, "megameters")
  10901. },
  10902. {
  10903. name: "God",
  10904. height: math.unit(11157.22, "parsecs")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10910. {
  10911. front: {
  10912. height: math.unit(6, "feet"),
  10913. weight: math.unit(120, "lb"),
  10914. name: "Front",
  10915. image: {
  10916. source: "./media/characters/neo/front.svg"
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Micro",
  10923. height: math.unit(2, "inches"),
  10924. default: true
  10925. },
  10926. {
  10927. name: "Human Size",
  10928. height: math.unit(5 + 8 / 12, "feet")
  10929. },
  10930. ]
  10931. ))
  10932. characterMakers.push(() => makeCharacter(
  10933. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10934. {
  10935. front: {
  10936. height: math.unit(13 + 10 / 12, "feet"),
  10937. weight: math.unit(5320, "lb"),
  10938. name: "Front",
  10939. image: {
  10940. source: "./media/characters/chauncey-chantz/front.svg",
  10941. extra: 1587 / 1435,
  10942. bottom: 0.02
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(13 + 10 / 12, "feet"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Macro",
  10954. height: math.unit(45, "feet")
  10955. },
  10956. {
  10957. name: "Megamacro",
  10958. height: math.unit(250, "miles")
  10959. },
  10960. {
  10961. name: "Planetary",
  10962. height: math.unit(10000, "miles")
  10963. },
  10964. {
  10965. name: "Galactic",
  10966. height: math.unit(40000, "parsecs")
  10967. },
  10968. {
  10969. name: "Universal",
  10970. height: math.unit(1, "yottameter")
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10976. {
  10977. front: {
  10978. height: math.unit(6, "feet"),
  10979. weight: math.unit(150, "lb"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/epifox/front.svg",
  10983. extra: 1,
  10984. bottom: 0.075
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Micro",
  10991. height: math.unit(6, "inches")
  10992. },
  10993. {
  10994. name: "Normal",
  10995. height: math.unit(12, "feet"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Macro",
  11000. height: math.unit(3810, "feet")
  11001. },
  11002. {
  11003. name: "Megamacro",
  11004. height: math.unit(500, "miles")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(1.8796, "m"),
  11013. weight: math.unit(230, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/colin-t/front.svg",
  11017. extra: 1272 / 1193,
  11018. bottom: 0.07
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Micro",
  11025. height: math.unit(0.571, "meters")
  11026. },
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(1.8796, "meters"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Tall",
  11034. height: math.unit(4, "meters")
  11035. },
  11036. {
  11037. name: "Macro",
  11038. height: math.unit(67.241, "meters")
  11039. },
  11040. {
  11041. name: "Megamacro",
  11042. height: math.unit(371.856, "meters")
  11043. },
  11044. {
  11045. name: "Planetary",
  11046. height: math.unit(12631.5689, "km")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11052. {
  11053. front: {
  11054. height: math.unit(1.85, "meters"),
  11055. weight: math.unit(80, "kg"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/matvei/front.svg",
  11059. extra: 614 / 594,
  11060. bottom: 0.01
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(1.85, "meters"),
  11068. default: true
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(5 + 9 / 12, "feet"),
  11077. weight: math.unit(70, "lb"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/quincy/front.svg",
  11081. extra: 3041 / 2751
  11082. }
  11083. },
  11084. back: {
  11085. height: math.unit(5 + 9 / 12, "feet"),
  11086. weight: math.unit(70, "lb"),
  11087. name: "Back",
  11088. image: {
  11089. source: "./media/characters/quincy/back.svg",
  11090. extra: 3041 / 2751
  11091. }
  11092. },
  11093. flying: {
  11094. height: math.unit(5 + 4 / 12, "feet"),
  11095. weight: math.unit(70, "lb"),
  11096. name: "Flying",
  11097. image: {
  11098. source: "./media/characters/quincy/flying.svg",
  11099. extra: 1044 / 930
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Micro",
  11106. height: math.unit(3, "cm")
  11107. },
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(5 + 9 / 12, "feet")
  11111. },
  11112. {
  11113. name: "Macro",
  11114. height: math.unit(200, "meters"),
  11115. default: true
  11116. },
  11117. {
  11118. name: "Megamacro",
  11119. height: math.unit(1000, "meters")
  11120. },
  11121. ]
  11122. ))
  11123. characterMakers.push(() => makeCharacter(
  11124. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11125. {
  11126. front: {
  11127. height: math.unit(4 + 7 / 12, "feet"),
  11128. weight: math.unit(150, "lb"),
  11129. name: "Front",
  11130. image: {
  11131. source: "./media/characters/vanrel/front.svg",
  11132. extra: 1,
  11133. bottom: 0.02
  11134. }
  11135. },
  11136. elemental: {
  11137. height: math.unit(3, "feet"),
  11138. weight: math.unit(150, "lb"),
  11139. name: "Elemental",
  11140. image: {
  11141. source: "./media/characters/vanrel/elemental.svg",
  11142. extra: 192.3 / 162.8,
  11143. bottom: 1.79 / 194.17
  11144. }
  11145. },
  11146. side: {
  11147. height: math.unit(4 + 7 / 12, "feet"),
  11148. weight: math.unit(150, "lb"),
  11149. name: "Side",
  11150. image: {
  11151. source: "./media/characters/vanrel/side.svg",
  11152. extra: 1,
  11153. bottom: 0.025
  11154. }
  11155. },
  11156. tome: {
  11157. height: math.unit(1.35, "feet"),
  11158. weight: math.unit(10, "lb"),
  11159. name: "Vanrel's Tome",
  11160. rename: true,
  11161. image: {
  11162. source: "./media/characters/vanrel/tome.svg"
  11163. }
  11164. },
  11165. beans: {
  11166. height: math.unit(0.89, "feet"),
  11167. name: "Beans",
  11168. image: {
  11169. source: "./media/characters/vanrel/beans.svg"
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Normal",
  11176. height: math.unit(4 + 7 / 12, "feet"),
  11177. default: true
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11183. {
  11184. front: {
  11185. height: math.unit(7 + 5 / 12, "feet"),
  11186. weight: math.unit(150, "lb"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/kuiper-vanrel/front.svg",
  11190. extra: 1118 / 1068,
  11191. bottom: 0.09
  11192. }
  11193. },
  11194. foot: {
  11195. height: math.unit(0.55, "meters"),
  11196. name: "Foot",
  11197. image: {
  11198. source: "./media/characters/kuiper-vanrel/foot.svg",
  11199. }
  11200. },
  11201. battle: {
  11202. height: math.unit(6.824, "feet"),
  11203. weight: math.unit(150, "lb"),
  11204. name: "Battle",
  11205. image: {
  11206. source: "./media/characters/kuiper-vanrel/battle.svg",
  11207. extra: 1466 / 1327,
  11208. bottom: 29 / 1492.5
  11209. }
  11210. },
  11211. battleAlt: {
  11212. height: math.unit(6.824, "feet"),
  11213. weight: math.unit(150, "lb"),
  11214. name: "Battle (Alt)",
  11215. image: {
  11216. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11217. extra: 2081 / 1965,
  11218. bottom: 40 / 2121
  11219. }
  11220. },
  11221. },
  11222. [
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(7 + 5 / 12, "feet"),
  11226. default: true
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11232. {
  11233. front: {
  11234. height: math.unit(8 + 5 / 12, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/keset-vanrel/front.svg",
  11239. extra: 1150 / 1084,
  11240. bottom: 0.05
  11241. }
  11242. },
  11243. hand: {
  11244. height: math.unit(0.6, "meters"),
  11245. name: "Hand",
  11246. image: {
  11247. source: "./media/characters/keset-vanrel/hand.svg"
  11248. }
  11249. },
  11250. foot: {
  11251. height: math.unit(0.94978, "meters"),
  11252. name: "Foot",
  11253. image: {
  11254. source: "./media/characters/keset-vanrel/foot.svg"
  11255. }
  11256. },
  11257. battle: {
  11258. height: math.unit(7.408, "feet"),
  11259. weight: math.unit(150, "lb"),
  11260. name: "Battle",
  11261. image: {
  11262. source: "./media/characters/keset-vanrel/battle.svg",
  11263. extra: 1890 / 1386,
  11264. bottom: 73.28 / 1970
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Normal",
  11271. height: math.unit(8 + 5 / 12, "feet"),
  11272. default: true
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(150, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/neos/front.svg",
  11285. extra: 1696 / 992,
  11286. bottom: 0.14
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(54, "cm"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(100, "m")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(10, "km")
  11303. },
  11304. {
  11305. name: "Megamacro+",
  11306. height: math.unit(100, "km")
  11307. },
  11308. {
  11309. name: "Gigamacro",
  11310. height: math.unit(100, "Mm")
  11311. },
  11312. {
  11313. name: "Teramacro",
  11314. height: math.unit(100, "Gm")
  11315. },
  11316. {
  11317. name: "Examacro",
  11318. height: math.unit(100, "Em")
  11319. },
  11320. {
  11321. name: "Godly",
  11322. height: math.unit(10000, "Ym")
  11323. },
  11324. {
  11325. name: "Beyond Godly",
  11326. height: math.unit(25, "multiverses")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11332. {
  11333. feminine: {
  11334. height: math.unit(5, "feet"),
  11335. weight: math.unit(100, "lb"),
  11336. name: "Feminine",
  11337. image: {
  11338. source: "./media/characters/sammy-mouse/feminine.svg",
  11339. extra: 2526 / 2425,
  11340. bottom: 0.123
  11341. }
  11342. },
  11343. masculine: {
  11344. height: math.unit(5, "feet"),
  11345. weight: math.unit(100, "lb"),
  11346. name: "Masculine",
  11347. image: {
  11348. source: "./media/characters/sammy-mouse/masculine.svg",
  11349. extra: 2526 / 2425,
  11350. bottom: 0.123
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Micro",
  11357. height: math.unit(5, "inches")
  11358. },
  11359. {
  11360. name: "Normal",
  11361. height: math.unit(5, "feet"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(60, "feet")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(4, "feet"),
  11375. weight: math.unit(50, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/kole/front.svg",
  11379. extra: 1423 / 1303,
  11380. bottom: 0.025
  11381. }
  11382. },
  11383. back: {
  11384. height: math.unit(4, "feet"),
  11385. weight: math.unit(50, "lb"),
  11386. name: "Back",
  11387. image: {
  11388. source: "./media/characters/kole/back.svg",
  11389. extra: 1426 / 1280,
  11390. bottom: 0.02
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(4, "feet"),
  11398. default: true
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(2 + 6 / 12, "feet"),
  11407. weight: math.unit(20, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/rufran/front.svg",
  11411. extra: 2041 / 1839,
  11412. bottom: 0.055
  11413. }
  11414. },
  11415. back: {
  11416. height: math.unit(2 + 6 / 12, "feet"),
  11417. weight: math.unit(20, "lb"),
  11418. name: "Back",
  11419. image: {
  11420. source: "./media/characters/rufran/back.svg",
  11421. extra: 2054 / 1839,
  11422. bottom: 0.01
  11423. }
  11424. },
  11425. hand: {
  11426. height: math.unit(0.2166, "meters"),
  11427. name: "Hand",
  11428. image: {
  11429. source: "./media/characters/rufran/hand.svg"
  11430. }
  11431. },
  11432. foot: {
  11433. height: math.unit(0.185, "meters"),
  11434. name: "Foot",
  11435. image: {
  11436. source: "./media/characters/rufran/foot.svg"
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Micro",
  11443. height: math.unit(1, "inch")
  11444. },
  11445. {
  11446. name: "Normal",
  11447. height: math.unit(2 + 6 / 12, "feet"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Big",
  11452. height: math.unit(60, "feet")
  11453. },
  11454. {
  11455. name: "Macro",
  11456. height: math.unit(325, "feet")
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(0.3, "meters"),
  11465. weight: math.unit(3.5, "kg"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/chip/front.svg",
  11469. extra: 748 / 674
  11470. }
  11471. },
  11472. },
  11473. [
  11474. {
  11475. name: "Micro",
  11476. height: math.unit(1, "inch"),
  11477. default: true
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11483. {
  11484. side: {
  11485. height: math.unit(2.3, "meters"),
  11486. weight: math.unit(3500, "lb"),
  11487. name: "Side",
  11488. image: {
  11489. source: "./media/characters/torvid/side.svg",
  11490. extra: 1972 / 722,
  11491. bottom: 0.035
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Normal",
  11498. height: math.unit(2.3, "meters"),
  11499. default: true
  11500. },
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11505. {
  11506. front: {
  11507. height: math.unit(2, "meters"),
  11508. weight: math.unit(150.5, "kg"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/susan/front.svg",
  11512. extra: 693 / 635,
  11513. bottom: 0.05
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Megamacro",
  11520. height: math.unit(505, "miles"),
  11521. default: true
  11522. },
  11523. ]
  11524. ))
  11525. characterMakers.push(() => makeCharacter(
  11526. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11527. {
  11528. front: {
  11529. height: math.unit(6, "feet"),
  11530. weight: math.unit(150, "lb"),
  11531. name: "Front",
  11532. image: {
  11533. source: "./media/characters/raindrops/front.svg",
  11534. extra: 2655 / 2461,
  11535. bottom: 49 / 2705
  11536. }
  11537. },
  11538. back: {
  11539. height: math.unit(6, "feet"),
  11540. weight: math.unit(150, "lb"),
  11541. name: "Back",
  11542. image: {
  11543. source: "./media/characters/raindrops/back.svg",
  11544. extra: 2574 / 2400,
  11545. bottom: 65 / 2634
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Micro",
  11552. height: math.unit(6, "inches")
  11553. },
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(6 + 2 / 12, "feet")
  11557. },
  11558. {
  11559. name: "Macro",
  11560. height: math.unit(131, "feet"),
  11561. default: true
  11562. },
  11563. {
  11564. name: "Megamacro",
  11565. height: math.unit(15, "miles")
  11566. },
  11567. {
  11568. name: "Gigamacro",
  11569. height: math.unit(4000, "miles")
  11570. },
  11571. {
  11572. name: "Teramacro",
  11573. height: math.unit(315000, "miles")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(2.794, "meters"),
  11582. weight: math.unit(325, "kg"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/tezwa/front.svg",
  11586. extra: 2083 / 1906,
  11587. bottom: 0.031
  11588. }
  11589. },
  11590. foot: {
  11591. height: math.unit(0.687, "meters"),
  11592. name: "Foot",
  11593. image: {
  11594. source: "./media/characters/tezwa/foot.svg"
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(9 + 2 / 12, "feet"),
  11602. default: true
  11603. },
  11604. ]
  11605. ))
  11606. characterMakers.push(() => makeCharacter(
  11607. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11608. {
  11609. front: {
  11610. height: math.unit(58, "feet"),
  11611. weight: math.unit(89000, "lb"),
  11612. name: "Front",
  11613. image: {
  11614. source: "./media/characters/typhus/front.svg",
  11615. extra: 816 / 800,
  11616. bottom: 0.065
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Macro",
  11623. height: math.unit(58, "feet"),
  11624. default: true
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(12, "feet"),
  11633. weight: math.unit(6, "tonnes"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/lyra-von-wulf/front.svg",
  11637. extra: 1,
  11638. bottom: 0.10
  11639. }
  11640. },
  11641. frontMecha: {
  11642. height: math.unit(12, "feet"),
  11643. weight: math.unit(12, "tonnes"),
  11644. name: "Front (Mecha)",
  11645. image: {
  11646. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11647. extra: 1,
  11648. bottom: 0.042
  11649. }
  11650. },
  11651. maw: {
  11652. height: math.unit(2.2, "feet"),
  11653. name: "Maw",
  11654. image: {
  11655. source: "./media/characters/lyra-von-wulf/maw.svg"
  11656. }
  11657. },
  11658. },
  11659. [
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(12, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Classic",
  11667. height: math.unit(50, "feet")
  11668. },
  11669. {
  11670. name: "Macro",
  11671. height: math.unit(500, "feet")
  11672. },
  11673. {
  11674. name: "Megamacro",
  11675. height: math.unit(1, "mile")
  11676. },
  11677. {
  11678. name: "Gigamacro",
  11679. height: math.unit(400, "miles")
  11680. },
  11681. {
  11682. name: "Teramacro",
  11683. height: math.unit(22000, "miles")
  11684. },
  11685. {
  11686. name: "Solarmacro",
  11687. height: math.unit(8600000, "miles")
  11688. },
  11689. {
  11690. name: "Galactic",
  11691. height: math.unit(1057000, "lightyears")
  11692. },
  11693. ]
  11694. ))
  11695. characterMakers.push(() => makeCharacter(
  11696. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11697. {
  11698. front: {
  11699. height: math.unit(6 + 10 / 12, "feet"),
  11700. weight: math.unit(150, "lb"),
  11701. name: "Front",
  11702. image: {
  11703. source: "./media/characters/dixon/front.svg",
  11704. extra: 3361 / 3209,
  11705. bottom: 0.01
  11706. }
  11707. },
  11708. },
  11709. [
  11710. {
  11711. name: "Normal",
  11712. height: math.unit(6 + 10 / 12, "feet"),
  11713. default: true
  11714. },
  11715. {
  11716. name: "Big",
  11717. height: math.unit(12, "meters")
  11718. },
  11719. {
  11720. name: "Macro",
  11721. height: math.unit(500, "meters")
  11722. },
  11723. {
  11724. name: "Megamacro",
  11725. height: math.unit(2, "km")
  11726. },
  11727. ]
  11728. ))
  11729. characterMakers.push(() => makeCharacter(
  11730. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11731. {
  11732. front: {
  11733. height: math.unit(185, "cm"),
  11734. weight: math.unit(68, "kg"),
  11735. name: "Front",
  11736. image: {
  11737. source: "./media/characters/kauko/front.svg",
  11738. extra: 1455 / 1421,
  11739. bottom: 0.03
  11740. }
  11741. },
  11742. back: {
  11743. height: math.unit(185, "cm"),
  11744. weight: math.unit(68, "kg"),
  11745. name: "Back",
  11746. image: {
  11747. source: "./media/characters/kauko/back.svg",
  11748. extra: 1455 / 1421,
  11749. bottom: 0.004
  11750. }
  11751. },
  11752. },
  11753. [
  11754. {
  11755. name: "Normal",
  11756. height: math.unit(185, "cm"),
  11757. default: true
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(6, "feet"),
  11766. weight: math.unit(150, "kg"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/varg/front.svg",
  11770. extra: 1108 / 1018,
  11771. bottom: 0.0375
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(5, "meters")
  11779. },
  11780. {
  11781. name: "Macro",
  11782. height: math.unit(200, "meters")
  11783. },
  11784. {
  11785. name: "Megamacro",
  11786. height: math.unit(20, "kilometers")
  11787. },
  11788. {
  11789. name: "True Size",
  11790. height: math.unit(211, "km"),
  11791. default: true
  11792. },
  11793. {
  11794. name: "Gigamacro",
  11795. height: math.unit(1000, "km")
  11796. },
  11797. {
  11798. name: "Gigamacro+",
  11799. height: math.unit(8000, "km")
  11800. },
  11801. {
  11802. name: "Teramacro",
  11803. height: math.unit(1000000, "km")
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(7 + 7 / 12, "feet"),
  11812. weight: math.unit(267, "lb"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/dayza/front.svg",
  11816. extra: 1262 / 1200,
  11817. bottom: 0.035
  11818. }
  11819. },
  11820. side: {
  11821. height: math.unit(7 + 7 / 12, "feet"),
  11822. weight: math.unit(267, "lb"),
  11823. name: "Side",
  11824. image: {
  11825. source: "./media/characters/dayza/side.svg",
  11826. extra: 1295 / 1245,
  11827. bottom: 0.05
  11828. }
  11829. },
  11830. back: {
  11831. height: math.unit(7 + 7 / 12, "feet"),
  11832. weight: math.unit(267, "lb"),
  11833. name: "Back",
  11834. image: {
  11835. source: "./media/characters/dayza/back.svg",
  11836. extra: 1241 / 1170
  11837. }
  11838. },
  11839. },
  11840. [
  11841. {
  11842. name: "Normal",
  11843. height: math.unit(7 + 7 / 12, "feet"),
  11844. default: true
  11845. },
  11846. {
  11847. name: "Macro",
  11848. height: math.unit(155, "feet")
  11849. },
  11850. ]
  11851. ))
  11852. characterMakers.push(() => makeCharacter(
  11853. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11854. {
  11855. front: {
  11856. height: math.unit(6 + 5 / 12, "feet"),
  11857. weight: math.unit(160, "lb"),
  11858. name: "Front",
  11859. image: {
  11860. source: "./media/characters/xanthos/front.svg",
  11861. extra: 1,
  11862. bottom: 0.04
  11863. }
  11864. },
  11865. back: {
  11866. height: math.unit(6 + 5 / 12, "feet"),
  11867. weight: math.unit(160, "lb"),
  11868. name: "Back",
  11869. image: {
  11870. source: "./media/characters/xanthos/back.svg",
  11871. extra: 1,
  11872. bottom: 0.03
  11873. }
  11874. },
  11875. hand: {
  11876. height: math.unit(0.928, "feet"),
  11877. name: "Hand",
  11878. image: {
  11879. source: "./media/characters/xanthos/hand.svg"
  11880. }
  11881. },
  11882. foot: {
  11883. height: math.unit(1.286, "feet"),
  11884. name: "Foot",
  11885. image: {
  11886. source: "./media/characters/xanthos/foot.svg"
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Normal",
  11893. height: math.unit(6 + 5 / 12, "feet"),
  11894. default: true
  11895. },
  11896. {
  11897. name: "Normal+",
  11898. height: math.unit(6, "meters")
  11899. },
  11900. {
  11901. name: "Macro",
  11902. height: math.unit(40, "feet")
  11903. },
  11904. {
  11905. name: "Macro+",
  11906. height: math.unit(200, "meters")
  11907. },
  11908. {
  11909. name: "Megamacro",
  11910. height: math.unit(20, "km")
  11911. },
  11912. {
  11913. name: "Megamacro+",
  11914. height: math.unit(100, "km")
  11915. },
  11916. ]
  11917. ))
  11918. characterMakers.push(() => makeCharacter(
  11919. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11920. {
  11921. front: {
  11922. height: math.unit(6 + 3 / 12, "feet"),
  11923. weight: math.unit(215, "lb"),
  11924. name: "Front",
  11925. image: {
  11926. source: "./media/characters/grynn/front.svg",
  11927. extra: 4627 / 4209,
  11928. bottom: 0.047
  11929. }
  11930. },
  11931. },
  11932. [
  11933. {
  11934. name: "Micro",
  11935. height: math.unit(6, "inches")
  11936. },
  11937. {
  11938. name: "Normal",
  11939. height: math.unit(6 + 3 / 12, "feet"),
  11940. default: true
  11941. },
  11942. {
  11943. name: "Big",
  11944. height: math.unit(104, "feet")
  11945. },
  11946. {
  11947. name: "Macro",
  11948. height: math.unit(944, "feet")
  11949. },
  11950. {
  11951. name: "Macro+",
  11952. height: math.unit(9480, "feet")
  11953. },
  11954. {
  11955. name: "Megamacro",
  11956. height: math.unit(78752, "feet")
  11957. },
  11958. {
  11959. name: "Megamacro+",
  11960. height: math.unit(630128, "feet")
  11961. },
  11962. {
  11963. name: "Megamacro++",
  11964. height: math.unit(3150695, "feet")
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(7 + 5 / 12, "feet"),
  11973. weight: math.unit(450, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/mocha-aura/front.svg",
  11977. extra: 1907 / 1817,
  11978. bottom: 0.04
  11979. }
  11980. },
  11981. back: {
  11982. height: math.unit(7 + 5 / 12, "feet"),
  11983. weight: math.unit(450, "lb"),
  11984. name: "Back",
  11985. image: {
  11986. source: "./media/characters/mocha-aura/back.svg",
  11987. extra: 1900 / 1825,
  11988. bottom: 0.045
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Nano",
  11995. height: math.unit(1, "nm")
  11996. },
  11997. {
  11998. name: "Megamicro",
  11999. height: math.unit(1, "mm")
  12000. },
  12001. {
  12002. name: "Micro",
  12003. height: math.unit(3, "inches")
  12004. },
  12005. {
  12006. name: "Normal",
  12007. height: math.unit(7 + 5 / 12, "feet"),
  12008. default: true
  12009. },
  12010. {
  12011. name: "Macro",
  12012. height: math.unit(30, "feet")
  12013. },
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(3500, "feet")
  12017. },
  12018. {
  12019. name: "Teramacro",
  12020. height: math.unit(500000, "miles")
  12021. },
  12022. {
  12023. name: "Petamacro",
  12024. height: math.unit(50000000000000000, "parsecs")
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12030. {
  12031. front: {
  12032. height: math.unit(6, "feet"),
  12033. weight: math.unit(150, "lb"),
  12034. name: "Front",
  12035. image: {
  12036. source: "./media/characters/ilisha-devya/front.svg",
  12037. extra: 1,
  12038. bottom: 0.175
  12039. }
  12040. },
  12041. back: {
  12042. height: math.unit(6, "feet"),
  12043. weight: math.unit(150, "lb"),
  12044. name: "Back",
  12045. image: {
  12046. source: "./media/characters/ilisha-devya/back.svg",
  12047. extra: 1,
  12048. bottom: 0.015
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Macro",
  12055. height: math.unit(500, "feet"),
  12056. default: true
  12057. },
  12058. {
  12059. name: "Megamacro",
  12060. height: math.unit(10, "miles")
  12061. },
  12062. {
  12063. name: "Gigamacro",
  12064. height: math.unit(100000, "miles")
  12065. },
  12066. {
  12067. name: "Examacro",
  12068. height: math.unit(1e9, "lightyears")
  12069. },
  12070. {
  12071. name: "Omniversal",
  12072. height: math.unit(1e33, "lightyears")
  12073. },
  12074. {
  12075. name: "Beyond Infinite",
  12076. height: math.unit(1e100, "lightyears")
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12082. {
  12083. Side: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(150, "lb"),
  12086. name: "Side",
  12087. image: {
  12088. source: "./media/characters/mira/side.svg",
  12089. extra: 900 / 799,
  12090. bottom: 0.02
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Human Size",
  12097. height: math.unit(6, "feet")
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(100, "feet"),
  12102. default: true
  12103. },
  12104. {
  12105. name: "Megamacro",
  12106. height: math.unit(10, "miles")
  12107. },
  12108. {
  12109. name: "Gigamacro",
  12110. height: math.unit(25000, "miles")
  12111. },
  12112. {
  12113. name: "Teramacro",
  12114. height: math.unit(300, "AU")
  12115. },
  12116. {
  12117. name: "Full Size",
  12118. height: math.unit(4.5e10, "lightyears")
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(6, "feet"),
  12127. weight: math.unit(150, "lb"),
  12128. name: "Front",
  12129. image: {
  12130. source: "./media/characters/holly/front.svg",
  12131. extra: 639 / 606
  12132. }
  12133. },
  12134. back: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(150, "lb"),
  12137. name: "Back",
  12138. image: {
  12139. source: "./media/characters/holly/back.svg",
  12140. extra: 623 / 598
  12141. }
  12142. },
  12143. frontWorking: {
  12144. height: math.unit(6, "feet"),
  12145. weight: math.unit(150, "lb"),
  12146. name: "Front (Working)",
  12147. image: {
  12148. source: "./media/characters/holly/front-working.svg",
  12149. extra: 607 / 577,
  12150. bottom: 0.048
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(12 + 3 / 12, "feet"),
  12158. default: true
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(6, "feet"),
  12167. weight: math.unit(150, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/porter/front.svg",
  12171. extra: 1,
  12172. bottom: 0.01
  12173. }
  12174. },
  12175. frontRobes: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(150, "lb"),
  12178. name: "Front (Robes)",
  12179. image: {
  12180. source: "./media/characters/porter/front-robes.svg",
  12181. extra: 1.01,
  12182. bottom: 0.01
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(11 + 9 / 12, "feet"),
  12190. default: true
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12196. {
  12197. legendary: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(150, "lb"),
  12200. name: "Legendary",
  12201. image: {
  12202. source: "./media/characters/lucy/legendary.svg",
  12203. extra: 1355 / 1100,
  12204. bottom: 0.045
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Legendary",
  12211. height: math.unit(86882 * 2, "miles"),
  12212. default: true
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12218. {
  12219. front: {
  12220. height: math.unit(6, "feet"),
  12221. weight: math.unit(150, "lb"),
  12222. name: "Front",
  12223. image: {
  12224. source: "./media/characters/drusilla/front.svg",
  12225. extra: 678 / 635,
  12226. bottom: 0.03
  12227. }
  12228. },
  12229. back: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(150, "lb"),
  12232. name: "Back",
  12233. image: {
  12234. source: "./media/characters/drusilla/back.svg",
  12235. extra: 678 / 635,
  12236. bottom: 0.005
  12237. }
  12238. },
  12239. },
  12240. [
  12241. {
  12242. name: "Macro",
  12243. height: math.unit(100, "feet")
  12244. },
  12245. {
  12246. name: "Canon Height",
  12247. height: math.unit(2000, "feet"),
  12248. default: true
  12249. },
  12250. ]
  12251. ))
  12252. characterMakers.push(() => makeCharacter(
  12253. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12254. {
  12255. front: {
  12256. height: math.unit(6, "feet"),
  12257. weight: math.unit(180, "lb"),
  12258. name: "Front",
  12259. image: {
  12260. source: "./media/characters/renard-thatch/front.svg",
  12261. extra: 2411 / 2275,
  12262. bottom: 0.01
  12263. }
  12264. },
  12265. frontPosing: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(180, "lb"),
  12268. name: "Front (Posing)",
  12269. image: {
  12270. source: "./media/characters/renard-thatch/front-posing.svg",
  12271. extra: 2381 / 2261,
  12272. bottom: 0.01
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(6, "feet"),
  12277. weight: math.unit(180, "lb"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/renard-thatch/back.svg",
  12281. extra: 2428 / 2288
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Micro",
  12288. height: math.unit(3, "inches")
  12289. },
  12290. {
  12291. name: "Default",
  12292. height: math.unit(6, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Macro",
  12297. height: math.unit(75, "feet")
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(1450, "feet"),
  12306. weight: math.unit(1.21e6, "tons"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/sekvra/front.svg",
  12310. extra: 1,
  12311. bottom: 0.03
  12312. }
  12313. },
  12314. frontClothed: {
  12315. height: math.unit(1450, "feet"),
  12316. weight: math.unit(1.21e6, "tons"),
  12317. name: "Front (Clothed)",
  12318. image: {
  12319. source: "./media/characters/sekvra/front-clothed.svg",
  12320. extra: 1,
  12321. bottom: 0.03
  12322. }
  12323. },
  12324. side: {
  12325. height: math.unit(1450, "feet"),
  12326. weight: math.unit(1.21e6, "tons"),
  12327. name: "Side",
  12328. image: {
  12329. source: "./media/characters/sekvra/side.svg",
  12330. extra: 1,
  12331. bottom: 0.025
  12332. }
  12333. },
  12334. back: {
  12335. height: math.unit(1450, "feet"),
  12336. weight: math.unit(1.21e6, "tons"),
  12337. name: "Back",
  12338. image: {
  12339. source: "./media/characters/sekvra/back.svg",
  12340. extra: 1,
  12341. bottom: 0.005
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Macro",
  12348. height: math.unit(1450, "feet"),
  12349. default: true
  12350. },
  12351. {
  12352. name: "Megamacro",
  12353. height: math.unit(15000, "feet")
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/carmine/front.svg",
  12366. extra: 1,
  12367. bottom: 0.035
  12368. }
  12369. },
  12370. frontArmor: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(150, "lb"),
  12373. name: "Front (Armor)",
  12374. image: {
  12375. source: "./media/characters/carmine/front-armor.svg",
  12376. extra: 1,
  12377. bottom: 0.035
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Large",
  12384. height: math.unit(1, "mile")
  12385. },
  12386. {
  12387. name: "Huge",
  12388. height: math.unit(40, "miles"),
  12389. default: true
  12390. },
  12391. {
  12392. name: "Colossal",
  12393. height: math.unit(2500, "miles")
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12399. {
  12400. front: {
  12401. height: math.unit(6, "feet"),
  12402. weight: math.unit(150, "lb"),
  12403. name: "Front",
  12404. image: {
  12405. source: "./media/characters/elyssia/front.svg",
  12406. extra: 2201 / 2035,
  12407. bottom: 0.05
  12408. }
  12409. },
  12410. frontClothed: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(150, "lb"),
  12413. name: "Front (Clothed)",
  12414. image: {
  12415. source: "./media/characters/elyssia/front-clothed.svg",
  12416. extra: 2201 / 2035,
  12417. bottom: 0.05
  12418. }
  12419. },
  12420. back: {
  12421. height: math.unit(6, "feet"),
  12422. weight: math.unit(150, "lb"),
  12423. name: "Back",
  12424. image: {
  12425. source: "./media/characters/elyssia/back.svg",
  12426. extra: 2201 / 2035,
  12427. bottom: 0.013
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Smaller",
  12434. height: math.unit(150, "feet")
  12435. },
  12436. {
  12437. name: "Standard",
  12438. height: math.unit(1400, "feet"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Distracted",
  12443. height: math.unit(15000, "feet")
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(7 + 4 / 12, "feet"),
  12452. weight: math.unit(500, "lb"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/geno-maxwell/front.svg",
  12456. extra: 2207 / 2040,
  12457. bottom: 0.015
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Micro",
  12464. height: math.unit(3, "inches")
  12465. },
  12466. {
  12467. name: "Normal",
  12468. height: math.unit(7 + 4 / 12, "feet"),
  12469. default: true
  12470. },
  12471. {
  12472. name: "Macro",
  12473. height: math.unit(220, "feet")
  12474. },
  12475. {
  12476. name: "Megamacro",
  12477. height: math.unit(11, "miles")
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12483. {
  12484. front: {
  12485. height: math.unit(7 + 4 / 12, "feet"),
  12486. weight: math.unit(500, "lb"),
  12487. name: "Front",
  12488. image: {
  12489. source: "./media/characters/regena-maxwell/front.svg",
  12490. extra: 3115 / 2770,
  12491. bottom: 0.02
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Normal",
  12498. height: math.unit(7 + 4 / 12, "feet"),
  12499. default: true
  12500. },
  12501. {
  12502. name: "Macro",
  12503. height: math.unit(220, "feet")
  12504. },
  12505. {
  12506. name: "Megamacro",
  12507. height: math.unit(11, "miles")
  12508. },
  12509. ]
  12510. ))
  12511. characterMakers.push(() => makeCharacter(
  12512. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12513. {
  12514. front: {
  12515. height: math.unit(6, "feet"),
  12516. weight: math.unit(150, "lb"),
  12517. name: "Front",
  12518. image: {
  12519. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12520. extra: 860 / 690,
  12521. bottom: 0.03
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(1.7, "meters"),
  12529. default: true
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(6, "feet"),
  12538. weight: math.unit(150, "lb"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/quilly/front.svg",
  12542. extra: 890 / 776
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Gigamacro",
  12549. height: math.unit(404090, "miles"),
  12550. default: true
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12556. {
  12557. front: {
  12558. height: math.unit(7 + 8 / 12, "feet"),
  12559. weight: math.unit(350, "lb"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/tempest/front.svg",
  12563. extra: 1175 / 1086,
  12564. bottom: 0.02
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Normal",
  12571. height: math.unit(7 + 8 / 12, "feet"),
  12572. default: true
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12578. {
  12579. side: {
  12580. height: math.unit(4 + 5 / 12, "feet"),
  12581. weight: math.unit(80, "lb"),
  12582. name: "Side",
  12583. image: {
  12584. source: "./media/characters/rodger/side.svg",
  12585. extra: 1235 / 1118
  12586. }
  12587. },
  12588. },
  12589. [
  12590. {
  12591. name: "Micro",
  12592. height: math.unit(1, "inch")
  12593. },
  12594. {
  12595. name: "Normal",
  12596. height: math.unit(4 + 5 / 12, "feet"),
  12597. default: true
  12598. },
  12599. {
  12600. name: "Macro",
  12601. height: math.unit(120, "feet")
  12602. },
  12603. ]
  12604. ))
  12605. characterMakers.push(() => makeCharacter(
  12606. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12607. {
  12608. front: {
  12609. height: math.unit(6, "feet"),
  12610. weight: math.unit(150, "lb"),
  12611. name: "Front",
  12612. image: {
  12613. source: "./media/characters/danyel/front.svg",
  12614. extra: 1185 / 1123,
  12615. bottom: 0.05
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Shrunken",
  12622. height: math.unit(0.5, "mm")
  12623. },
  12624. {
  12625. name: "Micro",
  12626. height: math.unit(1, "mm"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Upsized",
  12631. height: math.unit(5 + 5 / 12, "feet")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(5 + 6 / 12, "feet"),
  12640. weight: math.unit(200, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/vivian-bijoux/front.svg",
  12644. extra: 1,
  12645. bottom: 0.072
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(5 + 6 / 12, "feet"),
  12653. default: true
  12654. },
  12655. {
  12656. name: "Bad Dream",
  12657. height: math.unit(500, "feet")
  12658. },
  12659. {
  12660. name: "Nightmare",
  12661. height: math.unit(500, "miles")
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12667. {
  12668. front: {
  12669. height: math.unit(6 + 1 / 12, "feet"),
  12670. weight: math.unit(260, "lb"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/zeta/front.svg",
  12674. extra: 1968 / 1889,
  12675. bottom: 0.06
  12676. }
  12677. },
  12678. back: {
  12679. height: math.unit(6 + 1 / 12, "feet"),
  12680. weight: math.unit(260, "lb"),
  12681. name: "Back",
  12682. image: {
  12683. source: "./media/characters/zeta/back.svg",
  12684. extra: 1944 / 1858,
  12685. bottom: 0.03
  12686. }
  12687. },
  12688. hand: {
  12689. height: math.unit(1.112, "feet"),
  12690. name: "Hand",
  12691. image: {
  12692. source: "./media/characters/zeta/hand.svg"
  12693. }
  12694. },
  12695. foot: {
  12696. height: math.unit(1.48, "feet"),
  12697. name: "Foot",
  12698. image: {
  12699. source: "./media/characters/zeta/foot.svg"
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Micro",
  12706. height: math.unit(6, "inches")
  12707. },
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(6 + 1 / 12, "feet"),
  12711. default: true
  12712. },
  12713. {
  12714. name: "Macro",
  12715. height: math.unit(20, "feet")
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(6, "feet"),
  12724. weight: math.unit(150, "lb"),
  12725. name: "Front",
  12726. image: {
  12727. source: "./media/characters/jamie-larsen/front.svg",
  12728. extra: 962 / 933,
  12729. bottom: 0.02
  12730. }
  12731. },
  12732. back: {
  12733. height: math.unit(6, "feet"),
  12734. weight: math.unit(150, "lb"),
  12735. name: "Back",
  12736. image: {
  12737. source: "./media/characters/jamie-larsen/back.svg",
  12738. extra: 997 / 946
  12739. }
  12740. },
  12741. },
  12742. [
  12743. {
  12744. name: "Macro",
  12745. height: math.unit(28 + 7 / 12, "feet"),
  12746. default: true
  12747. },
  12748. {
  12749. name: "Macro+",
  12750. height: math.unit(180, "feet")
  12751. },
  12752. {
  12753. name: "Megamacro",
  12754. height: math.unit(10, "miles")
  12755. },
  12756. {
  12757. name: "Gigamacro",
  12758. height: math.unit(200000, "miles")
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12764. {
  12765. front: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(120, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/vance/front.svg",
  12771. extra: 1980 / 1890,
  12772. bottom: 0.09
  12773. }
  12774. },
  12775. back: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(120, "lb"),
  12778. name: "Back",
  12779. image: {
  12780. source: "./media/characters/vance/back.svg",
  12781. extra: 2081 / 1994,
  12782. bottom: 0.014
  12783. }
  12784. },
  12785. hand: {
  12786. height: math.unit(0.88, "feet"),
  12787. name: "Hand",
  12788. image: {
  12789. source: "./media/characters/vance/hand.svg"
  12790. }
  12791. },
  12792. foot: {
  12793. height: math.unit(0.64, "feet"),
  12794. name: "Foot",
  12795. image: {
  12796. source: "./media/characters/vance/foot.svg"
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Small",
  12803. height: math.unit(90, "feet"),
  12804. default: true
  12805. },
  12806. {
  12807. name: "Macro",
  12808. height: math.unit(100, "meters")
  12809. },
  12810. {
  12811. name: "Megamacro",
  12812. height: math.unit(15, "miles")
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12818. {
  12819. front: {
  12820. height: math.unit(6, "feet"),
  12821. weight: math.unit(180, "lb"),
  12822. name: "Front",
  12823. image: {
  12824. source: "./media/characters/xochitl/front.svg",
  12825. extra: 2297 / 2261,
  12826. bottom: 0.065
  12827. }
  12828. },
  12829. back: {
  12830. height: math.unit(6, "feet"),
  12831. weight: math.unit(180, "lb"),
  12832. name: "Back",
  12833. image: {
  12834. source: "./media/characters/xochitl/back.svg",
  12835. extra: 2386 / 2354,
  12836. bottom: 0.01
  12837. }
  12838. },
  12839. foot: {
  12840. height: math.unit(6 / 5 * 1.15, "feet"),
  12841. weight: math.unit(150, "lb"),
  12842. name: "Foot",
  12843. image: {
  12844. source: "./media/characters/xochitl/foot.svg"
  12845. }
  12846. },
  12847. },
  12848. [
  12849. {
  12850. name: "Macro",
  12851. height: math.unit(80, "feet")
  12852. },
  12853. {
  12854. name: "Macro+",
  12855. height: math.unit(400, "feet"),
  12856. default: true
  12857. },
  12858. {
  12859. name: "Gigamacro",
  12860. height: math.unit(80000, "miles")
  12861. },
  12862. {
  12863. name: "Gigamacro+",
  12864. height: math.unit(400000, "miles")
  12865. },
  12866. {
  12867. name: "Teramacro",
  12868. height: math.unit(300, "AU")
  12869. },
  12870. ]
  12871. ))
  12872. characterMakers.push(() => makeCharacter(
  12873. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12874. {
  12875. front: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(150, "lb"),
  12878. name: "Front",
  12879. image: {
  12880. source: "./media/characters/vincent/front.svg",
  12881. extra: 1130 / 1080,
  12882. bottom: 0.055
  12883. }
  12884. },
  12885. beak: {
  12886. height: math.unit(6 * 0.1, "feet"),
  12887. name: "Beak",
  12888. image: {
  12889. source: "./media/characters/vincent/beak.svg"
  12890. }
  12891. },
  12892. hand: {
  12893. height: math.unit(6 * 0.85, "feet"),
  12894. weight: math.unit(150, "lb"),
  12895. name: "Hand",
  12896. image: {
  12897. source: "./media/characters/vincent/hand.svg"
  12898. }
  12899. },
  12900. foot: {
  12901. height: math.unit(6 * 0.19, "feet"),
  12902. weight: math.unit(150, "lb"),
  12903. name: "Foot",
  12904. image: {
  12905. source: "./media/characters/vincent/foot.svg"
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Base",
  12912. height: math.unit(6 + 5 / 12, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Macro",
  12917. height: math.unit(300, "feet")
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(2, "miles")
  12922. },
  12923. {
  12924. name: "Gigamacro",
  12925. height: math.unit(1000, "miles")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(6 + 2 / 12, "feet"),
  12934. weight: math.unit(265, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/jay/front.svg",
  12938. extra: 1510 / 1430,
  12939. bottom: 0.042
  12940. }
  12941. },
  12942. back: {
  12943. height: math.unit(6 + 2 / 12, "feet"),
  12944. weight: math.unit(265, "lb"),
  12945. name: "Back",
  12946. image: {
  12947. source: "./media/characters/jay/back.svg",
  12948. extra: 1510 / 1430,
  12949. bottom: 0.025
  12950. }
  12951. },
  12952. clothed: {
  12953. height: math.unit(6 + 2 / 12, "feet"),
  12954. weight: math.unit(265, "lb"),
  12955. name: "Front (Clothed)",
  12956. image: {
  12957. source: "./media/characters/jay/clothed.svg",
  12958. extra: 744 / 699,
  12959. bottom: 0.043
  12960. }
  12961. },
  12962. head: {
  12963. height: math.unit(1.772, "feet"),
  12964. name: "Head",
  12965. image: {
  12966. source: "./media/characters/jay/head.svg"
  12967. }
  12968. },
  12969. sizeRay: {
  12970. height: math.unit(1.331, "feet"),
  12971. name: "Size Ray",
  12972. image: {
  12973. source: "./media/characters/jay/size-ray.svg"
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Micro",
  12980. height: math.unit(1, "inch")
  12981. },
  12982. {
  12983. name: "Normal",
  12984. height: math.unit(6 + 2 / 12, "feet"),
  12985. default: true
  12986. },
  12987. {
  12988. name: "Macro",
  12989. height: math.unit(1, "mile")
  12990. },
  12991. {
  12992. name: "Megamacro",
  12993. height: math.unit(100, "miles")
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12999. {
  13000. front: {
  13001. height: math.unit(2, "meters"),
  13002. weight: math.unit(500, "kg"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/coatl/front.svg",
  13006. extra: 3948 / 3500,
  13007. bottom: 0.082
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Normal",
  13014. height: math.unit(4, "meters")
  13015. },
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(100, "meters"),
  13019. default: true
  13020. },
  13021. {
  13022. name: "Macro+",
  13023. height: math.unit(300, "meters")
  13024. },
  13025. {
  13026. name: "Megamacro",
  13027. height: math.unit(3, "gigameters")
  13028. },
  13029. {
  13030. name: "Megamacro+",
  13031. height: math.unit(300, "terameters")
  13032. },
  13033. {
  13034. name: "Megamacro++",
  13035. height: math.unit(3, "lightyears")
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13041. {
  13042. front: {
  13043. height: math.unit(6, "feet"),
  13044. weight: math.unit(50, "kg"),
  13045. name: "front",
  13046. image: {
  13047. source: "./media/characters/shiroryu/front.svg",
  13048. extra: 1990 / 1935
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Mortal Mingling",
  13055. height: math.unit(3, "meters")
  13056. },
  13057. {
  13058. name: "Kaiju-ish",
  13059. height: math.unit(250, "meters")
  13060. },
  13061. {
  13062. name: "Somewhat Godly",
  13063. height: math.unit(400, "km"),
  13064. default: true
  13065. },
  13066. {
  13067. name: "Planetary",
  13068. height: math.unit(300, "megameters")
  13069. },
  13070. {
  13071. name: "Galaxy-dwarfing",
  13072. height: math.unit(450, "kiloparsecs")
  13073. },
  13074. {
  13075. name: "Universe Eater",
  13076. height: math.unit(150, "gigaparsecs")
  13077. },
  13078. {
  13079. name: "Almost Immeasurable",
  13080. height: math.unit(1.3e266, "yottaparsecs")
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(6, "feet"),
  13089. weight: math.unit(150, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/umeko/front.svg",
  13093. extra: 1,
  13094. bottom: 0.019
  13095. }
  13096. },
  13097. frontArmored: {
  13098. height: math.unit(6, "feet"),
  13099. weight: math.unit(150, "lb"),
  13100. name: "Front (Armored)",
  13101. image: {
  13102. source: "./media/characters/umeko/front-armored.svg",
  13103. extra: 1,
  13104. bottom: 0.021
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Macro",
  13111. height: math.unit(220, "feet"),
  13112. default: true
  13113. },
  13114. {
  13115. name: "Guardian Dragon",
  13116. height: math.unit(50, "miles")
  13117. },
  13118. {
  13119. name: "Cosmic",
  13120. height: math.unit(800000, "miles")
  13121. },
  13122. ]
  13123. ))
  13124. characterMakers.push(() => makeCharacter(
  13125. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13126. {
  13127. front: {
  13128. height: math.unit(6, "feet"),
  13129. weight: math.unit(150, "lb"),
  13130. name: "Front",
  13131. image: {
  13132. source: "./media/characters/cassidy/front.svg",
  13133. extra: 1,
  13134. bottom: 0.043
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Canon Height",
  13141. height: math.unit(120, "feet"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Macro+",
  13146. height: math.unit(400, "feet")
  13147. },
  13148. {
  13149. name: "Macro++",
  13150. height: math.unit(4000, "feet")
  13151. },
  13152. {
  13153. name: "Megamacro",
  13154. height: math.unit(3, "miles")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13160. {
  13161. front: {
  13162. height: math.unit(6, "feet"),
  13163. weight: math.unit(150, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/isaac/front.svg",
  13167. extra: 896 / 815,
  13168. bottom: 0.11
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Human Size",
  13175. height: math.unit(8, "feet"),
  13176. default: true
  13177. },
  13178. {
  13179. name: "Macro",
  13180. height: math.unit(400, "feet")
  13181. },
  13182. {
  13183. name: "Megamacro",
  13184. height: math.unit(50, "miles")
  13185. },
  13186. {
  13187. name: "Canon Height",
  13188. height: math.unit(200, "AU")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(72, "kg"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/sleekit/front.svg",
  13201. extra: 4693 / 4487,
  13202. bottom: 0.012
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Minimum Height",
  13209. height: math.unit(10, "meters")
  13210. },
  13211. {
  13212. name: "Smaller",
  13213. height: math.unit(25, "meters")
  13214. },
  13215. {
  13216. name: "Larger",
  13217. height: math.unit(38, "meters"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Maximum height",
  13222. height: math.unit(100, "meters")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/nillia/front.svg",
  13235. extra: 2195 / 2037,
  13236. bottom: 0.005
  13237. }
  13238. },
  13239. back: {
  13240. height: math.unit(6, "feet"),
  13241. weight: math.unit(150, "lb"),
  13242. name: "Back",
  13243. image: {
  13244. source: "./media/characters/nillia/back.svg",
  13245. extra: 2195 / 2037,
  13246. bottom: 0.005
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Canon Height",
  13253. height: math.unit(489, "feet"),
  13254. default: true
  13255. }
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13260. {
  13261. front: {
  13262. height: math.unit(6, "feet"),
  13263. weight: math.unit(150, "lb"),
  13264. name: "Front",
  13265. image: {
  13266. source: "./media/characters/mesmyriza/front.svg",
  13267. extra: 2067 / 1784,
  13268. bottom: 0.035
  13269. }
  13270. },
  13271. foot: {
  13272. height: math.unit(6 / (250 / 35), "feet"),
  13273. name: "Foot",
  13274. image: {
  13275. source: "./media/characters/mesmyriza/foot.svg"
  13276. }
  13277. },
  13278. },
  13279. [
  13280. {
  13281. name: "Macro",
  13282. height: math.unit(457, "meters"),
  13283. default: true
  13284. },
  13285. {
  13286. name: "Megamacro",
  13287. height: math.unit(8, "megameters")
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13293. {
  13294. front: {
  13295. height: math.unit(6, "feet"),
  13296. weight: math.unit(250, "lb"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/saudade/front.svg",
  13300. extra: 1172 / 1139,
  13301. bottom: 0.035
  13302. }
  13303. },
  13304. },
  13305. [
  13306. {
  13307. name: "Micro",
  13308. height: math.unit(3, "inches")
  13309. },
  13310. {
  13311. name: "Normal",
  13312. height: math.unit(6, "feet"),
  13313. default: true
  13314. },
  13315. {
  13316. name: "Macro",
  13317. height: math.unit(50, "feet")
  13318. },
  13319. {
  13320. name: "Megamacro",
  13321. height: math.unit(2800, "feet")
  13322. },
  13323. ]
  13324. ))
  13325. characterMakers.push(() => makeCharacter(
  13326. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13327. {
  13328. front: {
  13329. height: math.unit(5 + 4 / 12, "feet"),
  13330. weight: math.unit(100, "lb"),
  13331. name: "Front",
  13332. image: {
  13333. source: "./media/characters/keireer/front.svg",
  13334. extra: 716 / 666,
  13335. bottom: 0.05
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Normal",
  13342. height: math.unit(5 + 4 / 12, "feet"),
  13343. default: true
  13344. },
  13345. ]
  13346. ))
  13347. characterMakers.push(() => makeCharacter(
  13348. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13349. {
  13350. front: {
  13351. height: math.unit(6, "feet"),
  13352. weight: math.unit(90, "kg"),
  13353. name: "Front",
  13354. image: {
  13355. source: "./media/characters/mirja/front.svg",
  13356. extra: 1789 / 1683,
  13357. bottom: 0.05
  13358. }
  13359. },
  13360. frontDressed: {
  13361. height: math.unit(6, "feet"),
  13362. weight: math.unit(90, "lb"),
  13363. name: "Front (Dressed)",
  13364. image: {
  13365. source: "./media/characters/mirja/front-dressed.svg",
  13366. extra: 1789 / 1683,
  13367. bottom: 0.05
  13368. }
  13369. },
  13370. back: {
  13371. height: math.unit(6, "feet"),
  13372. weight: math.unit(90, "lb"),
  13373. name: "Back",
  13374. image: {
  13375. source: "./media/characters/mirja/back.svg",
  13376. extra: 953 / 917,
  13377. bottom: 0.017
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "\"Incognito\"",
  13384. height: math.unit(3, "meters")
  13385. },
  13386. {
  13387. name: "Strolling Size",
  13388. height: math.unit(15, "km")
  13389. },
  13390. {
  13391. name: "Larger Strolling Size",
  13392. height: math.unit(400, "km")
  13393. },
  13394. {
  13395. name: "Preferred Size",
  13396. height: math.unit(5000, "km")
  13397. },
  13398. {
  13399. name: "True Size",
  13400. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13401. default: true
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(15, "feet"),
  13410. weight: math.unit(880, "kg"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/nightraver/front.svg",
  13414. extra: 2444 / 2160,
  13415. bottom: 0.027
  13416. }
  13417. },
  13418. back: {
  13419. height: math.unit(15, "feet"),
  13420. weight: math.unit(880, "kg"),
  13421. name: "Back",
  13422. image: {
  13423. source: "./media/characters/nightraver/back.svg",
  13424. extra: 2309 / 2180,
  13425. bottom: 0.005
  13426. }
  13427. },
  13428. sole: {
  13429. height: math.unit(2.878, "feet"),
  13430. name: "Sole",
  13431. image: {
  13432. source: "./media/characters/nightraver/sole.svg"
  13433. }
  13434. },
  13435. foot: {
  13436. height: math.unit(2.285, "feet"),
  13437. name: "Foot",
  13438. image: {
  13439. source: "./media/characters/nightraver/foot.svg"
  13440. }
  13441. },
  13442. maw: {
  13443. height: math.unit(2.67, "feet"),
  13444. name: "Maw",
  13445. image: {
  13446. source: "./media/characters/nightraver/maw.svg"
  13447. }
  13448. },
  13449. },
  13450. [
  13451. {
  13452. name: "Micro",
  13453. height: math.unit(1, "cm")
  13454. },
  13455. {
  13456. name: "Normal",
  13457. height: math.unit(15, "feet"),
  13458. default: true
  13459. },
  13460. {
  13461. name: "Macro",
  13462. height: math.unit(300, "feet")
  13463. },
  13464. {
  13465. name: "Megamacro",
  13466. height: math.unit(300, "miles")
  13467. },
  13468. {
  13469. name: "Gigamacro",
  13470. height: math.unit(10000, "miles")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13476. {
  13477. side: {
  13478. height: math.unit(2, "inches"),
  13479. weight: math.unit(5, "grams"),
  13480. name: "Side",
  13481. image: {
  13482. source: "./media/characters/arc/side.svg"
  13483. }
  13484. },
  13485. },
  13486. [
  13487. {
  13488. name: "Micro",
  13489. height: math.unit(2, "inches"),
  13490. default: true
  13491. },
  13492. ]
  13493. ))
  13494. characterMakers.push(() => makeCharacter(
  13495. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13496. {
  13497. front: {
  13498. height: math.unit(1.1938, "meters"),
  13499. weight: math.unit(54, "kg"),
  13500. name: "Front",
  13501. image: {
  13502. source: "./media/characters/nebula-shahar/front.svg",
  13503. extra: 1642 / 1436,
  13504. bottom: 0.06
  13505. }
  13506. },
  13507. },
  13508. [
  13509. {
  13510. name: "Megamicro",
  13511. height: math.unit(0.3, "mm")
  13512. },
  13513. {
  13514. name: "Micro",
  13515. height: math.unit(3, "cm")
  13516. },
  13517. {
  13518. name: "Normal",
  13519. height: math.unit(138, "cm"),
  13520. default: true
  13521. },
  13522. {
  13523. name: "Macro",
  13524. height: math.unit(30, "m")
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13530. {
  13531. front: {
  13532. height: math.unit(5.24, "feet"),
  13533. weight: math.unit(150, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/shayla/front.svg",
  13537. extra: 1512 / 1414,
  13538. bottom: 0.01
  13539. }
  13540. },
  13541. back: {
  13542. height: math.unit(5.24, "feet"),
  13543. weight: math.unit(150, "lb"),
  13544. name: "Back",
  13545. image: {
  13546. source: "./media/characters/shayla/back.svg",
  13547. extra: 1512 / 1414
  13548. }
  13549. },
  13550. hand: {
  13551. height: math.unit(0.7781496062992126, "feet"),
  13552. name: "Hand",
  13553. image: {
  13554. source: "./media/characters/shayla/hand.svg"
  13555. }
  13556. },
  13557. foot: {
  13558. height: math.unit(1.4206036745406823, "feet"),
  13559. name: "Foot",
  13560. image: {
  13561. source: "./media/characters/shayla/foot.svg"
  13562. }
  13563. },
  13564. },
  13565. [
  13566. {
  13567. name: "Micro",
  13568. height: math.unit(0.32, "feet")
  13569. },
  13570. {
  13571. name: "Normal",
  13572. height: math.unit(5.24, "feet"),
  13573. default: true
  13574. },
  13575. {
  13576. name: "Macro",
  13577. height: math.unit(492.12, "feet")
  13578. },
  13579. {
  13580. name: "Megamacro",
  13581. height: math.unit(186.41, "miles")
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(2.2, "m"),
  13590. weight: math.unit(120, "kg"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/pia-jr/front.svg",
  13594. extra: 1000 / 970,
  13595. bottom: 0.035
  13596. }
  13597. },
  13598. hand: {
  13599. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13600. name: "Hand",
  13601. image: {
  13602. source: "./media/characters/pia-jr/hand.svg"
  13603. }
  13604. },
  13605. paw: {
  13606. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13607. name: "Paw",
  13608. image: {
  13609. source: "./media/characters/pia-jr/paw.svg"
  13610. }
  13611. },
  13612. },
  13613. [
  13614. {
  13615. name: "Micro",
  13616. height: math.unit(1.2, "cm")
  13617. },
  13618. {
  13619. name: "Normal",
  13620. height: math.unit(2.2, "m"),
  13621. default: true
  13622. },
  13623. {
  13624. name: "Macro",
  13625. height: math.unit(180, "m")
  13626. },
  13627. {
  13628. name: "Megamacro",
  13629. height: math.unit(420, "km")
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(2, "m"),
  13638. weight: math.unit(115, "kg"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/pia-sr/front.svg",
  13642. extra: 760 / 730,
  13643. bottom: 0.015
  13644. }
  13645. },
  13646. back: {
  13647. height: math.unit(2, "m"),
  13648. weight: math.unit(115, "kg"),
  13649. name: "Back",
  13650. image: {
  13651. source: "./media/characters/pia-sr/back.svg",
  13652. extra: 760 / 730,
  13653. bottom: 0.01
  13654. }
  13655. },
  13656. hand: {
  13657. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13658. name: "Hand",
  13659. image: {
  13660. source: "./media/characters/pia-sr/hand.svg"
  13661. }
  13662. },
  13663. foot: {
  13664. height: math.unit(1.83, "feet"),
  13665. name: "Foot",
  13666. image: {
  13667. source: "./media/characters/pia-sr/foot.svg"
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Micro",
  13674. height: math.unit(88, "mm")
  13675. },
  13676. {
  13677. name: "Normal",
  13678. height: math.unit(2, "m"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Macro",
  13683. height: math.unit(200, "m")
  13684. },
  13685. {
  13686. name: "Megamacro",
  13687. height: math.unit(420, "km")
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(8 + 2 / 12, "feet"),
  13696. weight: math.unit(300, "lb"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/kibibyte/front.svg",
  13700. extra: 2221 / 2098,
  13701. bottom: 0.04
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Normal",
  13708. height: math.unit(8 + 2 / 12, "feet"),
  13709. default: true
  13710. },
  13711. {
  13712. name: "Socialable Macro",
  13713. height: math.unit(50, "feet")
  13714. },
  13715. {
  13716. name: "Macro",
  13717. height: math.unit(300, "feet")
  13718. },
  13719. {
  13720. name: "Megamacro",
  13721. height: math.unit(500, "miles")
  13722. },
  13723. ]
  13724. ))
  13725. characterMakers.push(() => makeCharacter(
  13726. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13727. {
  13728. front: {
  13729. height: math.unit(6, "feet"),
  13730. weight: math.unit(150, "lb"),
  13731. name: "Front",
  13732. image: {
  13733. source: "./media/characters/felix/front.svg",
  13734. extra: 762 / 722,
  13735. bottom: 0.02
  13736. }
  13737. },
  13738. frontClothed: {
  13739. height: math.unit(6, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front (Clothed)",
  13742. image: {
  13743. source: "./media/characters/felix/front-clothed.svg",
  13744. extra: 762 / 722,
  13745. bottom: 0.02
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Normal",
  13752. height: math.unit(6 + 8 / 12, "feet"),
  13753. default: true
  13754. },
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(2600, "feet")
  13758. },
  13759. {
  13760. name: "Megamacro",
  13761. height: math.unit(450, "miles")
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(6 + 1 / 12, "feet"),
  13770. weight: math.unit(250, "lb"),
  13771. name: "Front",
  13772. image: {
  13773. source: "./media/characters/tobo/front.svg",
  13774. extra: 608 / 586,
  13775. bottom: 0.023
  13776. }
  13777. },
  13778. back: {
  13779. height: math.unit(6 + 1 / 12, "feet"),
  13780. weight: math.unit(250, "lb"),
  13781. name: "Back",
  13782. image: {
  13783. source: "./media/characters/tobo/back.svg",
  13784. extra: 608 / 586
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Nano",
  13791. height: math.unit(2, "nm")
  13792. },
  13793. {
  13794. name: "Megamicro",
  13795. height: math.unit(0.1, "mm")
  13796. },
  13797. {
  13798. name: "Micro",
  13799. height: math.unit(1, "inch"),
  13800. default: true
  13801. },
  13802. {
  13803. name: "Human-sized",
  13804. height: math.unit(6 + 1 / 12, "feet")
  13805. },
  13806. {
  13807. name: "Macro",
  13808. height: math.unit(250, "feet")
  13809. },
  13810. {
  13811. name: "Megamacro",
  13812. height: math.unit(75, "miles")
  13813. },
  13814. {
  13815. name: "Texas-sized",
  13816. height: math.unit(750, "miles")
  13817. },
  13818. {
  13819. name: "Teramacro",
  13820. height: math.unit(50000, "miles")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(6, "feet"),
  13829. weight: math.unit(269, "lb"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/danny-kapowsky/front.svg",
  13833. extra: 766 / 736,
  13834. bottom: 0.044
  13835. }
  13836. },
  13837. back: {
  13838. height: math.unit(6, "feet"),
  13839. weight: math.unit(269, "lb"),
  13840. name: "Back",
  13841. image: {
  13842. source: "./media/characters/danny-kapowsky/back.svg",
  13843. extra: 797 / 760,
  13844. bottom: 0.025
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Macro",
  13851. height: math.unit(150, "feet"),
  13852. default: true
  13853. },
  13854. {
  13855. name: "Macro+",
  13856. height: math.unit(200, "feet")
  13857. },
  13858. {
  13859. name: "Macro++",
  13860. height: math.unit(300, "feet")
  13861. },
  13862. {
  13863. name: "Macro+++",
  13864. height: math.unit(400, "feet")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13870. {
  13871. side: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(170, "lb"),
  13874. name: "Side",
  13875. image: {
  13876. source: "./media/characters/finn/side.svg",
  13877. extra: 1953 / 1807,
  13878. bottom: 0.057
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Megamacro",
  13885. height: math.unit(14445, "feet"),
  13886. default: true
  13887. },
  13888. ]
  13889. ))
  13890. characterMakers.push(() => makeCharacter(
  13891. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13892. {
  13893. front: {
  13894. height: math.unit(5 + 6 / 12, "feet"),
  13895. weight: math.unit(125, "lb"),
  13896. name: "Front",
  13897. image: {
  13898. source: "./media/characters/roy/front.svg",
  13899. extra: 1,
  13900. bottom: 0.11
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Micro",
  13907. height: math.unit(3, "inches"),
  13908. default: true
  13909. },
  13910. {
  13911. name: "Normal",
  13912. height: math.unit(5 + 6 / 12, "feet")
  13913. },
  13914. {
  13915. name: "Lesser Macro",
  13916. height: math.unit(60, "feet")
  13917. },
  13918. {
  13919. name: "Greater Macro",
  13920. height: math.unit(120, "feet")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(100, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/aevsivs/front.svg",
  13933. extra: 1,
  13934. bottom: 0.03
  13935. }
  13936. },
  13937. back: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(100, "lb"),
  13940. name: "Back",
  13941. image: {
  13942. source: "./media/characters/aevsivs/back.svg"
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Micro",
  13949. height: math.unit(2, "inches"),
  13950. default: true
  13951. },
  13952. {
  13953. name: "Normal",
  13954. height: math.unit(5, "feet")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(5 + 7 / 12, "feet"),
  13963. weight: math.unit(159, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/hildegard/front.svg",
  13967. extra: 289 / 269,
  13968. bottom: 7.63 / 297.8
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(5 + 7 / 12, "feet"),
  13973. weight: math.unit(159, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/hildegard/back.svg",
  13977. extra: 280 / 260,
  13978. bottom: 2.3 / 282
  13979. }
  13980. },
  13981. },
  13982. [
  13983. {
  13984. name: "Normal",
  13985. height: math.unit(5 + 7 / 12, "feet"),
  13986. default: true
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13992. {
  13993. bernard: {
  13994. height: math.unit(2 + 7 / 12, "feet"),
  13995. weight: math.unit(66, "lb"),
  13996. name: "Bernard",
  13997. rename: true,
  13998. image: {
  13999. source: "./media/characters/bernard-wilder/bernard.svg",
  14000. extra: 192 / 128,
  14001. bottom: 0.05
  14002. }
  14003. },
  14004. wilder: {
  14005. height: math.unit(5 + 8 / 12, "feet"),
  14006. weight: math.unit(143, "lb"),
  14007. name: "Wilder",
  14008. rename: true,
  14009. image: {
  14010. source: "./media/characters/bernard-wilder/wilder.svg",
  14011. extra: 361 / 312,
  14012. bottom: 0.02
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(2 + 7 / 12, "feet"),
  14020. default: true
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14026. {
  14027. anthro: {
  14028. height: math.unit(6 + 1 / 12, "feet"),
  14029. weight: math.unit(155, "lb"),
  14030. name: "Anthro",
  14031. image: {
  14032. source: "./media/characters/hearth/anthro.svg",
  14033. extra: 260 / 250,
  14034. bottom: 0.02
  14035. }
  14036. },
  14037. feral: {
  14038. height: math.unit(3.78, "feet"),
  14039. weight: math.unit(35, "kg"),
  14040. name: "Feral",
  14041. image: {
  14042. source: "./media/characters/hearth/feral.svg",
  14043. extra: 153 / 135,
  14044. bottom: 0.03
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Normal",
  14051. height: math.unit(6 + 1 / 12, "feet"),
  14052. default: true
  14053. },
  14054. ]
  14055. ))
  14056. characterMakers.push(() => makeCharacter(
  14057. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14058. {
  14059. front: {
  14060. height: math.unit(6, "feet"),
  14061. weight: math.unit(182, "lb"),
  14062. name: "Front",
  14063. image: {
  14064. source: "./media/characters/ingrid/front.svg",
  14065. extra: 294 / 268,
  14066. bottom: 0.027
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(6, "feet"),
  14074. default: true
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14080. {
  14081. eevee: {
  14082. height: math.unit(2 + 10 / 12, "feet"),
  14083. weight: math.unit(86, "lb"),
  14084. name: "Malgam",
  14085. image: {
  14086. source: "./media/characters/malgam/eevee.svg",
  14087. extra: 218 / 180,
  14088. bottom: 0.2
  14089. }
  14090. },
  14091. sylveon: {
  14092. height: math.unit(4, "feet"),
  14093. weight: math.unit(101, "lb"),
  14094. name: "Future Malgam",
  14095. rename: true,
  14096. image: {
  14097. source: "./media/characters/malgam/sylveon.svg",
  14098. extra: 371 / 325,
  14099. bottom: 0.015
  14100. }
  14101. },
  14102. gigantamax: {
  14103. height: math.unit(50, "feet"),
  14104. name: "Gigantamax Malgam",
  14105. rename: true,
  14106. image: {
  14107. source: "./media/characters/malgam/gigantamax.svg"
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Normal",
  14114. height: math.unit(2 + 10 / 12, "feet"),
  14115. default: true
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(5 + 11 / 12, "feet"),
  14124. weight: math.unit(188, "lb"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/fleur/front.svg",
  14128. extra: 309 / 283,
  14129. bottom: 0.007
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(5 + 11 / 12, "feet"),
  14137. default: true
  14138. },
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14143. {
  14144. front: {
  14145. height: math.unit(5 + 4 / 12, "feet"),
  14146. weight: math.unit(122, "lb"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/jude/front.svg",
  14150. extra: 288 / 273,
  14151. bottom: 0.03
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(5 + 4 / 12, "feet"),
  14159. default: true
  14160. },
  14161. ]
  14162. ))
  14163. characterMakers.push(() => makeCharacter(
  14164. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14165. {
  14166. front: {
  14167. height: math.unit(5 + 11 / 12, "feet"),
  14168. weight: math.unit(190, "lb"),
  14169. name: "Front",
  14170. image: {
  14171. source: "./media/characters/seara/front.svg",
  14172. extra: 1,
  14173. bottom: 0.05
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Normal",
  14180. height: math.unit(5 + 11 / 12, "feet"),
  14181. default: true
  14182. },
  14183. ]
  14184. ))
  14185. characterMakers.push(() => makeCharacter(
  14186. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14187. {
  14188. front: {
  14189. height: math.unit(16 + 5 / 12, "feet"),
  14190. weight: math.unit(524, "lb"),
  14191. name: "Front",
  14192. image: {
  14193. source: "./media/characters/caspian/front.svg",
  14194. extra: 1,
  14195. bottom: 0.04
  14196. }
  14197. },
  14198. },
  14199. [
  14200. {
  14201. name: "Normal",
  14202. height: math.unit(16 + 5 / 12, "feet"),
  14203. default: true
  14204. },
  14205. ]
  14206. ))
  14207. characterMakers.push(() => makeCharacter(
  14208. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14209. {
  14210. front: {
  14211. height: math.unit(5 + 7 / 12, "feet"),
  14212. weight: math.unit(170, "lb"),
  14213. name: "Front",
  14214. image: {
  14215. source: "./media/characters/mika/front.svg",
  14216. extra: 1,
  14217. bottom: 0.016
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Normal",
  14224. height: math.unit(5 + 7 / 12, "feet"),
  14225. default: true
  14226. },
  14227. ]
  14228. ))
  14229. characterMakers.push(() => makeCharacter(
  14230. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14231. {
  14232. front: {
  14233. height: math.unit(6 + 2 / 12, "feet"),
  14234. weight: math.unit(268, "lb"),
  14235. name: "Front",
  14236. image: {
  14237. source: "./media/characters/sol/front.svg",
  14238. extra: 247 / 231,
  14239. bottom: 0.05
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Normal",
  14246. height: math.unit(6 + 2 / 12, "feet"),
  14247. default: true
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14253. {
  14254. buizel: {
  14255. height: math.unit(2 + 5 / 12, "feet"),
  14256. weight: math.unit(87, "lb"),
  14257. name: "Buizel",
  14258. image: {
  14259. source: "./media/characters/umiko/buizel.svg",
  14260. extra: 172 / 157,
  14261. bottom: 0.01
  14262. }
  14263. },
  14264. floatzel: {
  14265. height: math.unit(5 + 9 / 12, "feet"),
  14266. weight: math.unit(250, "lb"),
  14267. name: "Floatzel",
  14268. image: {
  14269. source: "./media/characters/umiko/floatzel.svg",
  14270. extra: 262 / 248
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Normal",
  14277. height: math.unit(2 + 5 / 12, "feet"),
  14278. default: true
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14284. {
  14285. front: {
  14286. height: math.unit(6 + 2 / 12, "feet"),
  14287. weight: math.unit(146, "lb"),
  14288. name: "Front",
  14289. image: {
  14290. source: "./media/characters/iliac/front.svg",
  14291. extra: 389 / 365,
  14292. bottom: 0.035
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Normal",
  14299. height: math.unit(6 + 2 / 12, "feet"),
  14300. default: true
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(6, "feet"),
  14309. weight: math.unit(170, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/topaz/front.svg",
  14313. extra: 317 / 303,
  14314. bottom: 0.055
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Normal",
  14321. height: math.unit(6, "feet"),
  14322. default: true
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14328. {
  14329. front: {
  14330. height: math.unit(5 + 11 / 12, "feet"),
  14331. weight: math.unit(144, "lb"),
  14332. name: "Front",
  14333. image: {
  14334. source: "./media/characters/gabriel/front.svg",
  14335. extra: 285 / 262,
  14336. bottom: 0.004
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Normal",
  14343. height: math.unit(5 + 11 / 12, "feet"),
  14344. default: true
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14350. {
  14351. side: {
  14352. height: math.unit(6 + 5 / 12, "feet"),
  14353. weight: math.unit(300, "lb"),
  14354. name: "Side",
  14355. image: {
  14356. source: "./media/characters/tempest-suicune/side.svg",
  14357. extra: 195 / 154,
  14358. bottom: 0.04
  14359. }
  14360. },
  14361. },
  14362. [
  14363. {
  14364. name: "Normal",
  14365. height: math.unit(6 + 5 / 12, "feet"),
  14366. default: true
  14367. },
  14368. ]
  14369. ))
  14370. characterMakers.push(() => makeCharacter(
  14371. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14372. {
  14373. front: {
  14374. height: math.unit(7 + 2 / 12, "feet"),
  14375. weight: math.unit(322, "lb"),
  14376. name: "Front",
  14377. image: {
  14378. source: "./media/characters/vulcan/front.svg",
  14379. extra: 154 / 147,
  14380. bottom: 0.04
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Normal",
  14387. height: math.unit(7 + 2 / 12, "feet"),
  14388. default: true
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14394. {
  14395. front: {
  14396. height: math.unit(5 + 10 / 12, "feet"),
  14397. weight: math.unit(264, "lb"),
  14398. name: "Front",
  14399. image: {
  14400. source: "./media/characters/gault/front.svg",
  14401. extra: 161 / 140,
  14402. bottom: 0.028
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Normal",
  14409. height: math.unit(5 + 10 / 12, "feet"),
  14410. default: true
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(6, "feet"),
  14419. weight: math.unit(150, "lb"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/shard/front.svg",
  14423. extra: 273 / 238,
  14424. bottom: 0.02
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Normal",
  14431. height: math.unit(3 + 6 / 12, "feet"),
  14432. default: true
  14433. },
  14434. ]
  14435. ))
  14436. characterMakers.push(() => makeCharacter(
  14437. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14438. {
  14439. front: {
  14440. height: math.unit(5 + 11 / 12, "feet"),
  14441. weight: math.unit(146, "lb"),
  14442. name: "Front",
  14443. image: {
  14444. source: "./media/characters/ashe/front.svg",
  14445. extra: 400 / 373,
  14446. bottom: 0.01
  14447. }
  14448. },
  14449. },
  14450. [
  14451. {
  14452. name: "Normal",
  14453. height: math.unit(5 + 11 / 12, "feet"),
  14454. default: true
  14455. },
  14456. ]
  14457. ))
  14458. characterMakers.push(() => makeCharacter(
  14459. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14460. {
  14461. front: {
  14462. height: math.unit(5 + 5 / 12, "feet"),
  14463. weight: math.unit(135, "lb"),
  14464. name: "Front",
  14465. image: {
  14466. source: "./media/characters/beatrix/front.svg",
  14467. extra: 392 / 379,
  14468. bottom: 0.01
  14469. }
  14470. },
  14471. },
  14472. [
  14473. {
  14474. name: "Normal",
  14475. height: math.unit(6, "feet"),
  14476. default: true
  14477. },
  14478. ]
  14479. ))
  14480. characterMakers.push(() => makeCharacter(
  14481. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14482. {
  14483. front: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(150, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/ignatius/front.svg",
  14489. extra: 245 / 222,
  14490. bottom: 0.01
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(5 + 5 / 12, "feet"),
  14498. default: true
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14504. {
  14505. front: {
  14506. height: math.unit(6 + 2 / 12, "feet"),
  14507. weight: math.unit(138, "lb"),
  14508. name: "Front",
  14509. image: {
  14510. source: "./media/characters/mei-li/front.svg",
  14511. extra: 237 / 229,
  14512. bottom: 0.03
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Normal",
  14519. height: math.unit(6 + 2 / 12, "feet"),
  14520. default: true
  14521. },
  14522. ]
  14523. ))
  14524. characterMakers.push(() => makeCharacter(
  14525. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14526. {
  14527. front: {
  14528. height: math.unit(2 + 4 / 12, "feet"),
  14529. weight: math.unit(62, "lb"),
  14530. name: "Front",
  14531. image: {
  14532. source: "./media/characters/puru/front.svg",
  14533. extra: 206 / 149,
  14534. bottom: 0.06
  14535. }
  14536. },
  14537. },
  14538. [
  14539. {
  14540. name: "Normal",
  14541. height: math.unit(2 + 4 / 12, "feet"),
  14542. default: true
  14543. },
  14544. ]
  14545. ))
  14546. characterMakers.push(() => makeCharacter(
  14547. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14548. {
  14549. taur: {
  14550. height: math.unit(11, "feet"),
  14551. weight: math.unit(500, "lb"),
  14552. name: "Taur",
  14553. image: {
  14554. source: "./media/characters/kee/taur.svg",
  14555. extra: 1,
  14556. bottom: 0.04
  14557. }
  14558. },
  14559. },
  14560. [
  14561. {
  14562. name: "Normal",
  14563. height: math.unit(11, "feet"),
  14564. default: true
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14570. {
  14571. anthro: {
  14572. height: math.unit(7, "feet"),
  14573. weight: math.unit(190, "lb"),
  14574. name: "Anthro",
  14575. image: {
  14576. source: "./media/characters/cobalt-dracha/anthro.svg",
  14577. extra: 231 / 225,
  14578. bottom: 0.04
  14579. }
  14580. },
  14581. feral: {
  14582. height: math.unit(9 + 7 / 12, "feet"),
  14583. weight: math.unit(294, "lb"),
  14584. name: "Feral",
  14585. image: {
  14586. source: "./media/characters/cobalt-dracha/feral.svg",
  14587. extra: 692 / 633,
  14588. bottom: 0.05
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(7, "feet"),
  14596. default: true
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14602. {
  14603. fallen: {
  14604. height: math.unit(11 + 8 / 12, "feet"),
  14605. weight: math.unit(485, "lb"),
  14606. name: "Java (Fallen)",
  14607. rename: true,
  14608. image: {
  14609. source: "./media/characters/java/fallen.svg",
  14610. extra: 226 / 208,
  14611. bottom: 0.005
  14612. }
  14613. },
  14614. godkin: {
  14615. height: math.unit(10 + 6 / 12, "feet"),
  14616. weight: math.unit(328, "lb"),
  14617. name: "Java (Godkin)",
  14618. rename: true,
  14619. image: {
  14620. source: "./media/characters/java/godkin.svg",
  14621. extra: 270 / 262,
  14622. bottom: 0.02
  14623. }
  14624. },
  14625. },
  14626. [
  14627. {
  14628. name: "Normal",
  14629. height: math.unit(11 + 8 / 12, "feet"),
  14630. default: true
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14636. {
  14637. front: {
  14638. height: math.unit(7 + 8 / 12, "feet"),
  14639. weight: math.unit(320, "lb"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/skoll/front.svg",
  14643. extra: 232 / 220,
  14644. bottom: 0.02
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(7 + 8 / 12, "feet"),
  14652. default: true
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(5 + 9 / 12, "feet"),
  14661. weight: math.unit(170, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/purna/front.svg",
  14665. extra: 239 / 229,
  14666. bottom: 0.01
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Normal",
  14673. height: math.unit(5 + 9 / 12, "feet"),
  14674. default: true
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14680. {
  14681. front: {
  14682. height: math.unit(5 + 9 / 12, "feet"),
  14683. weight: math.unit(142, "lb"),
  14684. name: "Front",
  14685. image: {
  14686. source: "./media/characters/kuva/front.svg",
  14687. extra: 281 / 271,
  14688. bottom: 0.006
  14689. }
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(5 + 9 / 12, "feet"),
  14696. default: true
  14697. },
  14698. ]
  14699. ))
  14700. characterMakers.push(() => makeCharacter(
  14701. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14702. {
  14703. anthro: {
  14704. height: math.unit(9 + 2 / 12, "feet"),
  14705. weight: math.unit(270, "lb"),
  14706. name: "Anthro",
  14707. image: {
  14708. source: "./media/characters/embra/anthro.svg",
  14709. extra: 200 / 187,
  14710. bottom: 0.02
  14711. }
  14712. },
  14713. feral: {
  14714. height: math.unit(18 + 8 / 12, "feet"),
  14715. weight: math.unit(576, "lb"),
  14716. name: "Feral",
  14717. image: {
  14718. source: "./media/characters/embra/feral.svg",
  14719. extra: 152 / 137,
  14720. bottom: 0.037
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(9 + 2 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14734. {
  14735. anthro: {
  14736. height: math.unit(10 + 9 / 12, "feet"),
  14737. weight: math.unit(224, "lb"),
  14738. name: "Anthro",
  14739. image: {
  14740. source: "./media/characters/grottos/anthro.svg",
  14741. extra: 350 / 332,
  14742. bottom: 0.045
  14743. }
  14744. },
  14745. feral: {
  14746. height: math.unit(20 + 7 / 12, "feet"),
  14747. weight: math.unit(629, "lb"),
  14748. name: "Feral",
  14749. image: {
  14750. source: "./media/characters/grottos/feral.svg",
  14751. extra: 207 / 190,
  14752. bottom: 0.05
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(10 + 9 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14766. {
  14767. anthro: {
  14768. height: math.unit(9 + 6 / 12, "feet"),
  14769. weight: math.unit(298, "lb"),
  14770. name: "Anthro",
  14771. image: {
  14772. source: "./media/characters/frifna/anthro.svg",
  14773. extra: 282 / 269,
  14774. bottom: 0.015
  14775. }
  14776. },
  14777. feral: {
  14778. height: math.unit(16 + 2 / 12, "feet"),
  14779. weight: math.unit(624, "lb"),
  14780. name: "Feral",
  14781. image: {
  14782. source: "./media/characters/frifna/feral.svg"
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(9 + 6 / 12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(6 + 2 / 12, "feet"),
  14799. weight: math.unit(168, "lb"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/elise/front.svg",
  14803. extra: 276 / 271
  14804. }
  14805. },
  14806. },
  14807. [
  14808. {
  14809. name: "Normal",
  14810. height: math.unit(6 + 2 / 12, "feet"),
  14811. default: true
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(5 + 10 / 12, "feet"),
  14820. weight: math.unit(210, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/glade/front.svg",
  14824. extra: 258 / 247,
  14825. bottom: 0.008
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Normal",
  14832. height: math.unit(5 + 10 / 12, "feet"),
  14833. default: true
  14834. },
  14835. ]
  14836. ))
  14837. characterMakers.push(() => makeCharacter(
  14838. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14839. {
  14840. front: {
  14841. height: math.unit(5 + 10 / 12, "feet"),
  14842. weight: math.unit(129, "lb"),
  14843. name: "Front",
  14844. image: {
  14845. source: "./media/characters/rina/front.svg",
  14846. extra: 266 / 255,
  14847. bottom: 0.005
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(5 + 10 / 12, "feet"),
  14855. default: true
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(6 + 1 / 12, "feet"),
  14864. weight: math.unit(192, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/veronica/front.svg",
  14868. extra: 319 / 309,
  14869. bottom: 0.005
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(6 + 1 / 12, "feet"),
  14877. default: true
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14883. {
  14884. front: {
  14885. height: math.unit(9 + 3 / 12, "feet"),
  14886. weight: math.unit(1100, "lb"),
  14887. name: "Front",
  14888. image: {
  14889. source: "./media/characters/braxton/front.svg",
  14890. extra: 1057 / 984,
  14891. bottom: 0.05
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Normal",
  14898. height: math.unit(9 + 3 / 12, "feet")
  14899. },
  14900. {
  14901. name: "Giant",
  14902. height: math.unit(300, "feet"),
  14903. default: true
  14904. },
  14905. {
  14906. name: "Macro",
  14907. height: math.unit(700, "feet")
  14908. },
  14909. {
  14910. name: "Megamacro",
  14911. height: math.unit(6000, "feet")
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(6 + 7 / 12, "feet"),
  14920. weight: math.unit(150, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/blue-feyonics/front.svg",
  14924. extra: 1403 / 1306,
  14925. bottom: 0.047
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Normal",
  14932. height: math.unit(6 + 7 / 12, "feet"),
  14933. default: true
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(1.8, "meters"),
  14942. weight: math.unit(60, "kg"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/maxwell/front.svg",
  14946. extra: 2060 / 1873
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Micro",
  14953. height: math.unit(1, "mm")
  14954. },
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(1.8, "meter"),
  14958. default: true
  14959. },
  14960. {
  14961. name: "Macro",
  14962. height: math.unit(30, "meters")
  14963. },
  14964. {
  14965. name: "Megamacro",
  14966. height: math.unit(10, "km")
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14972. {
  14973. front: {
  14974. height: math.unit(6, "feet"),
  14975. weight: math.unit(150, "lb"),
  14976. name: "Front",
  14977. image: {
  14978. source: "./media/characters/jack/front.svg",
  14979. extra: 1754 / 1640,
  14980. bottom: 0.01
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Normal",
  14987. height: math.unit(80000, "feet"),
  14988. default: true
  14989. },
  14990. {
  14991. name: "Max size",
  14992. height: math.unit(10, "lightyears")
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14998. {
  14999. upright: {
  15000. height: math.unit(7, "feet"),
  15001. weight: math.unit(170, "lb"),
  15002. name: "Upright",
  15003. image: {
  15004. source: "./media/characters/cafat/upright.svg",
  15005. bottom: 0.01
  15006. }
  15007. },
  15008. uprightFull: {
  15009. height: math.unit(7, "feet"),
  15010. weight: math.unit(170, "lb"),
  15011. name: "Upright (Full)",
  15012. image: {
  15013. source: "./media/characters/cafat/upright-full.svg",
  15014. bottom: 0.01
  15015. }
  15016. },
  15017. side: {
  15018. height: math.unit(5, "feet"),
  15019. weight: math.unit(150, "lb"),
  15020. name: "Side",
  15021. image: {
  15022. source: "./media/characters/cafat/side.svg"
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Small",
  15029. height: math.unit(7, "feet"),
  15030. default: true
  15031. },
  15032. {
  15033. name: "Large",
  15034. height: math.unit(15.5, "feet")
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(6, "feet"),
  15043. weight: math.unit(150, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/verin-raharra/front.svg",
  15047. extra: 5019 / 4835,
  15048. bottom: 0.023
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(7 + 5 / 12, "feet"),
  15056. default: true
  15057. },
  15058. {
  15059. name: "Upsized",
  15060. height: math.unit(20, "feet")
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15066. {
  15067. front: {
  15068. height: math.unit(7, "feet"),
  15069. weight: math.unit(230, "lb"),
  15070. name: "Front",
  15071. image: {
  15072. source: "./media/characters/nakata/front.svg",
  15073. extra: 1.005,
  15074. bottom: 0.01
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(7, "feet"),
  15082. default: true
  15083. },
  15084. {
  15085. name: "Big",
  15086. height: math.unit(14, "feet")
  15087. },
  15088. {
  15089. name: "Macro",
  15090. height: math.unit(400, "feet")
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(4.91, "feet"),
  15099. weight: math.unit(100, "lb"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/lily/front.svg",
  15103. extra: 1585 / 1415,
  15104. bottom: 0.02
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Normal",
  15111. height: math.unit(4.91, "feet"),
  15112. default: true
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15118. {
  15119. laying: {
  15120. height: math.unit(4 + 4 / 12, "feet"),
  15121. weight: math.unit(600, "lb"),
  15122. name: "Laying",
  15123. image: {
  15124. source: "./media/characters/sheila/laying.svg",
  15125. extra: 1333 / 1265,
  15126. bottom: 0.16
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(4 + 4 / 12, "feet"),
  15134. default: true
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(190, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/sax/front.svg",
  15147. extra: 1187 / 973,
  15148. bottom: 0.042
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Micro",
  15155. height: math.unit(4, "inches"),
  15156. default: true
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(150, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/pandora/front.svg",
  15169. extra: 2720 / 2556,
  15170. bottom: 0.015
  15171. }
  15172. },
  15173. back: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Back",
  15177. image: {
  15178. source: "./media/characters/pandora/back.svg",
  15179. extra: 2720 / 2556,
  15180. bottom: 0.01
  15181. }
  15182. },
  15183. beans: {
  15184. height: math.unit(6 / 8, "feet"),
  15185. name: "Beans",
  15186. image: {
  15187. source: "./media/characters/pandora/beans.svg"
  15188. }
  15189. },
  15190. skirt: {
  15191. height: math.unit(6, "feet"),
  15192. weight: math.unit(150, "lb"),
  15193. name: "Skirt",
  15194. image: {
  15195. source: "./media/characters/pandora/skirt.svg",
  15196. extra: 1622 / 1525,
  15197. bottom: 0.015
  15198. }
  15199. },
  15200. hoodie: {
  15201. height: math.unit(6, "feet"),
  15202. weight: math.unit(150, "lb"),
  15203. name: "Hoodie",
  15204. image: {
  15205. source: "./media/characters/pandora/hoodie.svg",
  15206. extra: 1622 / 1525,
  15207. bottom: 0.015
  15208. }
  15209. },
  15210. casual: {
  15211. height: math.unit(6, "feet"),
  15212. weight: math.unit(150, "lb"),
  15213. name: "Casual",
  15214. image: {
  15215. source: "./media/characters/pandora/casual.svg",
  15216. extra: 1622 / 1525,
  15217. bottom: 0.015
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(6, "feet")
  15225. },
  15226. {
  15227. name: "Big Steppy",
  15228. height: math.unit(1, "km"),
  15229. default: true
  15230. },
  15231. ]
  15232. ))
  15233. characterMakers.push(() => makeCharacter(
  15234. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15235. {
  15236. side: {
  15237. height: math.unit(10, "feet"),
  15238. weight: math.unit(800, "kg"),
  15239. name: "Side",
  15240. image: {
  15241. source: "./media/characters/venio-darcony/side.svg",
  15242. extra: 1373 / 1003,
  15243. bottom: 0.037
  15244. }
  15245. },
  15246. front: {
  15247. height: math.unit(19, "feet"),
  15248. weight: math.unit(800, "kg"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/venio-darcony/front.svg"
  15252. }
  15253. },
  15254. back: {
  15255. height: math.unit(19, "feet"),
  15256. weight: math.unit(800, "kg"),
  15257. name: "Back",
  15258. image: {
  15259. source: "./media/characters/venio-darcony/back.svg"
  15260. }
  15261. },
  15262. sideNsfw: {
  15263. height: math.unit(10, "feet"),
  15264. weight: math.unit(800, "kg"),
  15265. name: "Side (NSFW)",
  15266. image: {
  15267. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15268. extra: 1373 / 1003,
  15269. bottom: 0.037
  15270. }
  15271. },
  15272. frontNsfw: {
  15273. height: math.unit(19, "feet"),
  15274. weight: math.unit(800, "kg"),
  15275. name: "Front (NSFW)",
  15276. image: {
  15277. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15278. }
  15279. },
  15280. backNsfw: {
  15281. height: math.unit(19, "feet"),
  15282. weight: math.unit(800, "kg"),
  15283. name: "Back (NSFW)",
  15284. image: {
  15285. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15286. }
  15287. },
  15288. sideArmored: {
  15289. height: math.unit(10, "feet"),
  15290. weight: math.unit(800, "kg"),
  15291. name: "Side (Armored)",
  15292. image: {
  15293. source: "./media/characters/venio-darcony/side-armored.svg",
  15294. extra: 1373 / 1003,
  15295. bottom: 0.037
  15296. }
  15297. },
  15298. frontArmored: {
  15299. height: math.unit(19, "feet"),
  15300. weight: math.unit(900, "kg"),
  15301. name: "Front (Armored)",
  15302. image: {
  15303. source: "./media/characters/venio-darcony/front-armored.svg"
  15304. }
  15305. },
  15306. backArmored: {
  15307. height: math.unit(19, "feet"),
  15308. weight: math.unit(900, "kg"),
  15309. name: "Back (Armored)",
  15310. image: {
  15311. source: "./media/characters/venio-darcony/back-armored.svg"
  15312. }
  15313. },
  15314. sword: {
  15315. height: math.unit(10, "feet"),
  15316. weight: math.unit(50, "lb"),
  15317. name: "Sword",
  15318. image: {
  15319. source: "./media/characters/venio-darcony/sword.svg"
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(10, "feet")
  15327. },
  15328. {
  15329. name: "Macro",
  15330. height: math.unit(130, "feet"),
  15331. default: true
  15332. },
  15333. {
  15334. name: "Macro+",
  15335. height: math.unit(240, "feet")
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15341. {
  15342. front: {
  15343. height: math.unit(6, "feet"),
  15344. weight: math.unit(150, "lb"),
  15345. name: "Front",
  15346. image: {
  15347. source: "./media/characters/veski/front.svg",
  15348. extra: 1299 / 1225,
  15349. bottom: 0.04
  15350. }
  15351. },
  15352. back: {
  15353. height: math.unit(6, "feet"),
  15354. weight: math.unit(150, "lb"),
  15355. name: "Back",
  15356. image: {
  15357. source: "./media/characters/veski/back.svg",
  15358. extra: 1299 / 1225,
  15359. bottom: 0.008
  15360. }
  15361. },
  15362. maw: {
  15363. height: math.unit(1.5 * 1.21, "feet"),
  15364. name: "Maw",
  15365. image: {
  15366. source: "./media/characters/veski/maw.svg"
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Macro",
  15373. height: math.unit(2, "km"),
  15374. default: true
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15380. {
  15381. front: {
  15382. height: math.unit(5 + 7 / 12, "feet"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/isabelle/front.svg",
  15386. extra: 2130 / 1976,
  15387. bottom: 0.05
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Supermicro",
  15394. height: math.unit(10, "micrometers")
  15395. },
  15396. {
  15397. name: "Micro",
  15398. height: math.unit(1, "inch")
  15399. },
  15400. {
  15401. name: "Tiny",
  15402. height: math.unit(5, "inches")
  15403. },
  15404. {
  15405. name: "Standard",
  15406. height: math.unit(5 + 7 / 12, "inches")
  15407. },
  15408. {
  15409. name: "Macro",
  15410. height: math.unit(80, "meters"),
  15411. default: true
  15412. },
  15413. {
  15414. name: "Megamacro",
  15415. height: math.unit(250, "meters")
  15416. },
  15417. {
  15418. name: "Gigamacro",
  15419. height: math.unit(5, "km")
  15420. },
  15421. {
  15422. name: "Cosmic",
  15423. height: math.unit(2.5e6, "miles")
  15424. },
  15425. ]
  15426. ))
  15427. characterMakers.push(() => makeCharacter(
  15428. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15429. {
  15430. front: {
  15431. height: math.unit(6, "feet"),
  15432. weight: math.unit(150, "lb"),
  15433. name: "Front",
  15434. image: {
  15435. source: "./media/characters/hanzo/front.svg",
  15436. extra: 374 / 344,
  15437. bottom: 0.02
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(8, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15451. {
  15452. front: {
  15453. height: math.unit(7, "feet"),
  15454. weight: math.unit(130, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/anna/front.svg",
  15458. extra: 169 / 145,
  15459. bottom: 0.06
  15460. }
  15461. },
  15462. full: {
  15463. height: math.unit(4.96, "feet"),
  15464. weight: math.unit(220, "lb"),
  15465. name: "Full",
  15466. image: {
  15467. source: "./media/characters/anna/full.svg",
  15468. extra: 138 / 114,
  15469. bottom: 0.15
  15470. }
  15471. },
  15472. tongue: {
  15473. height: math.unit(2.53, "feet"),
  15474. name: "Tongue",
  15475. image: {
  15476. source: "./media/characters/anna/tongue.svg"
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(7, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(7, "feet"),
  15493. weight: math.unit(150, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/ian-corvid/front.svg",
  15497. extra: 150 / 142,
  15498. bottom: 0.02
  15499. }
  15500. },
  15501. back: {
  15502. height: math.unit(7, "feet"),
  15503. weight: math.unit(150, "lb"),
  15504. name: "Back",
  15505. image: {
  15506. source: "./media/characters/ian-corvid/back.svg",
  15507. extra: 150 / 143,
  15508. bottom: 0.01
  15509. }
  15510. },
  15511. stomping: {
  15512. height: math.unit(7, "feet"),
  15513. weight: math.unit(150, "lb"),
  15514. name: "Stomping",
  15515. image: {
  15516. source: "./media/characters/ian-corvid/stomping.svg",
  15517. extra: 76 / 72
  15518. }
  15519. },
  15520. sitting: {
  15521. height: math.unit(7 / 1.8, "feet"),
  15522. weight: math.unit(150, "lb"),
  15523. name: "Sitting",
  15524. image: {
  15525. source: "./media/characters/ian-corvid/sitting.svg",
  15526. extra: 1400 / 1269,
  15527. bottom: 0.15
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Tiny Microw",
  15534. height: math.unit(1, "inch")
  15535. },
  15536. {
  15537. name: "Microw",
  15538. height: math.unit(6, "inches")
  15539. },
  15540. {
  15541. name: "Crow",
  15542. height: math.unit(7 + 1 / 12, "feet"),
  15543. default: true
  15544. },
  15545. {
  15546. name: "Macrow",
  15547. height: math.unit(176, "feet")
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(5 + 7 / 12, "feet"),
  15556. weight: math.unit(147, "lb"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/natalie-kellon/front.svg",
  15560. extra: 1214 / 1141,
  15561. bottom: 0.02
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Micro",
  15568. height: math.unit(1 / 16, "inch")
  15569. },
  15570. {
  15571. name: "Tiny",
  15572. height: math.unit(4, "inches")
  15573. },
  15574. {
  15575. name: "Normal",
  15576. height: math.unit(5 + 7 / 12, "feet"),
  15577. default: true
  15578. },
  15579. {
  15580. name: "Amazon",
  15581. height: math.unit(12, "feet")
  15582. },
  15583. {
  15584. name: "Giantess",
  15585. height: math.unit(160, "meters")
  15586. },
  15587. {
  15588. name: "Titaness",
  15589. height: math.unit(800, "meters")
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(6, "feet"),
  15598. weight: math.unit(150, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/alluria/front.svg",
  15602. extra: 806 / 738,
  15603. bottom: 0.01
  15604. }
  15605. },
  15606. side: {
  15607. height: math.unit(6, "feet"),
  15608. weight: math.unit(150, "lb"),
  15609. name: "Side",
  15610. image: {
  15611. source: "./media/characters/alluria/side.svg",
  15612. extra: 800 / 750,
  15613. }
  15614. },
  15615. back: {
  15616. height: math.unit(6, "feet"),
  15617. weight: math.unit(150, "lb"),
  15618. name: "Back",
  15619. image: {
  15620. source: "./media/characters/alluria/back.svg",
  15621. extra: 806 / 738,
  15622. }
  15623. },
  15624. frontMaid: {
  15625. height: math.unit(6, "feet"),
  15626. weight: math.unit(150, "lb"),
  15627. name: "Front (Maid)",
  15628. image: {
  15629. source: "./media/characters/alluria/front-maid.svg",
  15630. extra: 806 / 738,
  15631. bottom: 0.01
  15632. }
  15633. },
  15634. sideMaid: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(150, "lb"),
  15637. name: "Side (Maid)",
  15638. image: {
  15639. source: "./media/characters/alluria/side-maid.svg",
  15640. extra: 800 / 750,
  15641. bottom: 0.005
  15642. }
  15643. },
  15644. backMaid: {
  15645. height: math.unit(6, "feet"),
  15646. weight: math.unit(150, "lb"),
  15647. name: "Back (Maid)",
  15648. image: {
  15649. source: "./media/characters/alluria/back-maid.svg",
  15650. extra: 806 / 738,
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Micro",
  15657. height: math.unit(6, "inches"),
  15658. default: true
  15659. },
  15660. ]
  15661. ))
  15662. characterMakers.push(() => makeCharacter(
  15663. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15664. {
  15665. front: {
  15666. height: math.unit(6, "feet"),
  15667. weight: math.unit(150, "lb"),
  15668. name: "Front",
  15669. image: {
  15670. source: "./media/characters/kyle/front.svg",
  15671. extra: 1069 / 962,
  15672. bottom: 77.228 / 1727.45
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Macro",
  15679. height: math.unit(150, "feet"),
  15680. default: true
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(6, "feet"),
  15689. weight: math.unit(300, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/duncan/front.svg",
  15693. extra: 1650 / 1482,
  15694. bottom: 0.05
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Macro",
  15701. height: math.unit(100, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(5 + 4 / 12, "feet"),
  15711. weight: math.unit(220, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/memory/front.svg",
  15715. extra: 3641 / 3545,
  15716. bottom: 0.03
  15717. }
  15718. },
  15719. back: {
  15720. height: math.unit(5 + 4 / 12, "feet"),
  15721. weight: math.unit(220, "lb"),
  15722. name: "Back",
  15723. image: {
  15724. source: "./media/characters/memory/back.svg",
  15725. extra: 3641 / 3545,
  15726. bottom: 0.025
  15727. }
  15728. },
  15729. frontSkirt: {
  15730. height: math.unit(5 + 4 / 12, "feet"),
  15731. weight: math.unit(220, "lb"),
  15732. name: "Front (Skirt)",
  15733. image: {
  15734. source: "./media/characters/memory/front-skirt.svg",
  15735. extra: 3641 / 3545,
  15736. bottom: 0.03
  15737. }
  15738. },
  15739. frontDress: {
  15740. height: math.unit(5 + 4 / 12, "feet"),
  15741. weight: math.unit(220, "lb"),
  15742. name: "Front (Dress)",
  15743. image: {
  15744. source: "./media/characters/memory/front-dress.svg",
  15745. extra: 3641 / 3545,
  15746. bottom: 0.03
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Micro",
  15753. height: math.unit(6, "inches"),
  15754. default: true
  15755. },
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(5 + 4 / 12, "feet")
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(4 + 11 / 12, "feet"),
  15767. weight: math.unit(100, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/luno/front.svg",
  15771. extra: 1535 / 1487,
  15772. bottom: 0.03
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Micro",
  15779. height: math.unit(3, "inches")
  15780. },
  15781. {
  15782. name: "Normal",
  15783. height: math.unit(4 + 11 / 12, "feet"),
  15784. default: true
  15785. },
  15786. {
  15787. name: "Macro",
  15788. height: math.unit(300, "feet")
  15789. },
  15790. {
  15791. name: "Megamacro",
  15792. height: math.unit(700, "miles")
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15798. {
  15799. front: {
  15800. height: math.unit(6 + 2 / 12, "feet"),
  15801. weight: math.unit(170, "lb"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/jamesy/front.svg",
  15805. extra: 440 / 382,
  15806. bottom: 0.005
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Micro",
  15813. height: math.unit(3, "inches")
  15814. },
  15815. {
  15816. name: "Normal",
  15817. height: math.unit(6 + 2 / 12, "feet"),
  15818. default: true
  15819. },
  15820. {
  15821. name: "Macro",
  15822. height: math.unit(300, "feet")
  15823. },
  15824. {
  15825. name: "Megamacro",
  15826. height: math.unit(700, "miles")
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(6, "feet"),
  15835. weight: math.unit(160, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/mark/front.svg",
  15839. extra: 3300 / 3100,
  15840. bottom: 136.42 / 3440.47
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Macro",
  15847. height: math.unit(120, "meters")
  15848. },
  15849. {
  15850. name: "Bigger Macro",
  15851. height: math.unit(350, "meters")
  15852. },
  15853. {
  15854. name: "Megamacro",
  15855. height: math.unit(8, "km"),
  15856. default: true
  15857. },
  15858. {
  15859. name: "Continental",
  15860. height: math.unit(4550, "km")
  15861. },
  15862. {
  15863. name: "Planetary",
  15864. height: math.unit(65000, "km")
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15870. {
  15871. front: {
  15872. height: math.unit(6, "feet"),
  15873. weight: math.unit(400, "lb"),
  15874. name: "Front",
  15875. image: {
  15876. source: "./media/characters/mac/front.svg",
  15877. extra: 1048 / 987.7,
  15878. bottom: 60 / 1107.6,
  15879. }
  15880. },
  15881. },
  15882. [
  15883. {
  15884. name: "Macro",
  15885. height: math.unit(500, "feet"),
  15886. default: true
  15887. },
  15888. ]
  15889. ))
  15890. characterMakers.push(() => makeCharacter(
  15891. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15892. {
  15893. front: {
  15894. height: math.unit(5 + 2 / 12, "feet"),
  15895. weight: math.unit(190, "lb"),
  15896. name: "Front",
  15897. image: {
  15898. source: "./media/characters/bari/front.svg",
  15899. extra: 3156 / 2880,
  15900. bottom: 0.03
  15901. }
  15902. },
  15903. back: {
  15904. height: math.unit(5 + 2 / 12, "feet"),
  15905. weight: math.unit(190, "lb"),
  15906. name: "Back",
  15907. image: {
  15908. source: "./media/characters/bari/back.svg",
  15909. extra: 3260 / 2834,
  15910. bottom: 0.025
  15911. }
  15912. },
  15913. frontPlush: {
  15914. height: math.unit(5 + 2 / 12, "feet"),
  15915. weight: math.unit(190, "lb"),
  15916. name: "Front (Plush)",
  15917. image: {
  15918. source: "./media/characters/bari/front-plush.svg",
  15919. extra: 1112 / 1061,
  15920. bottom: 0.002
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Micro",
  15927. height: math.unit(3, "inches")
  15928. },
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(5 + 2 / 12, "feet"),
  15932. default: true
  15933. },
  15934. {
  15935. name: "Macro",
  15936. height: math.unit(20, "feet")
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(6 + 1 / 12, "feet"),
  15945. weight: math.unit(275, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/hunter-misha-raven/front.svg"
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Mortal",
  15955. height: math.unit(6 + 1 / 12, "feet")
  15956. },
  15957. {
  15958. name: "Divine",
  15959. height: math.unit(1.12134e34, "parsecs"),
  15960. default: true
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15966. {
  15967. front: {
  15968. height: math.unit(6 + 3 / 12, "feet"),
  15969. weight: math.unit(220, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/max-calore/front.svg",
  15973. extra: 1700 / 1648,
  15974. bottom: 0.01
  15975. }
  15976. },
  15977. back: {
  15978. height: math.unit(6 + 3 / 12, "feet"),
  15979. weight: math.unit(220, "lb"),
  15980. name: "Back",
  15981. image: {
  15982. source: "./media/characters/max-calore/back.svg",
  15983. extra: 1700 / 1648,
  15984. bottom: 0.01
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(6 + 3 / 12, "feet"),
  15992. default: true
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15998. {
  15999. side: {
  16000. height: math.unit(2 + 8 / 12, "feet"),
  16001. weight: math.unit(99, "lb"),
  16002. name: "Side",
  16003. image: {
  16004. source: "./media/characters/aspen/side.svg",
  16005. extra: 152 / 138,
  16006. bottom: 0.032
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Normal",
  16013. height: math.unit(2 + 8 / 12, "feet"),
  16014. default: true
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16020. {
  16021. side: {
  16022. height: math.unit(3 + 2 / 12, "feet"),
  16023. weight: math.unit(224, "lb"),
  16024. name: "Side",
  16025. image: {
  16026. source: "./media/characters/sheila-feral-wolf/side.svg",
  16027. extra: 179 / 166,
  16028. bottom: 0.03
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(3 + 2 / 12, "feet"),
  16036. default: true
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16042. {
  16043. side: {
  16044. height: math.unit(1 + 9 / 12, "feet"),
  16045. weight: math.unit(38, "lb"),
  16046. name: "Side",
  16047. image: {
  16048. source: "./media/characters/michelle/side.svg",
  16049. extra: 147 / 136.7,
  16050. bottom: 0.03
  16051. }
  16052. },
  16053. },
  16054. [
  16055. {
  16056. name: "Normal",
  16057. height: math.unit(1 + 9 / 12, "feet"),
  16058. default: true
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16064. {
  16065. front: {
  16066. height: math.unit(1 + 1 / 12, "feet"),
  16067. weight: math.unit(18, "lb"),
  16068. name: "Front",
  16069. image: {
  16070. source: "./media/characters/nino/front.svg"
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Normal",
  16077. height: math.unit(1 + 1 / 12, "feet"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(1, "feet"),
  16087. weight: math.unit(16, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/viola/front.svg"
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(1, "feet"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6 + 5 / 12, "feet"),
  16107. weight: math.unit(580, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/atlas/front.svg",
  16111. extra: 298.5 / 290,
  16112. bottom: 0.015
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Normal",
  16119. height: math.unit(6 + 5 / 12, "feet"),
  16120. default: true
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16126. {
  16127. side: {
  16128. height: math.unit(1 + 10 / 12, "feet"),
  16129. weight: math.unit(25, "lb"),
  16130. name: "Side",
  16131. image: {
  16132. source: "./media/characters/davy/side.svg",
  16133. extra: 200 / 170,
  16134. bottom: 0.01
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(1 + 10 / 12, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16148. {
  16149. side: {
  16150. height: math.unit(4 + 8 / 12, "feet"),
  16151. weight: math.unit(166, "lb"),
  16152. name: "Side",
  16153. image: {
  16154. source: "./media/characters/fiona/side.svg",
  16155. extra: 232 / 220,
  16156. bottom: 0.03
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(4 + 8 / 12, "feet"),
  16164. default: true
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16170. {
  16171. front: {
  16172. height: math.unit(2, "feet"),
  16173. weight: math.unit(62, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/lyla/front.svg",
  16177. bottom: 0.1
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Normal",
  16184. height: math.unit(2, "feet"),
  16185. default: true
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16191. {
  16192. side: {
  16193. height: math.unit(1.8, "feet"),
  16194. weight: math.unit(44, "lb"),
  16195. name: "Side",
  16196. image: {
  16197. source: "./media/characters/perseus/side.svg",
  16198. bottom: 0.21
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(1.8, "feet"),
  16206. default: true
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16212. {
  16213. side: {
  16214. height: math.unit(4 + 2 / 12, "feet"),
  16215. weight: math.unit(20, "lb"),
  16216. name: "Side",
  16217. image: {
  16218. source: "./media/characters/remus/side.svg"
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(4 + 2 / 12, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(4 + 11 / 12, "feet"),
  16235. weight: math.unit(114, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/raf/front.svg",
  16239. bottom: 20.5 / 1863
  16240. }
  16241. },
  16242. side: {
  16243. height: math.unit(4 + 11 / 12, "feet"),
  16244. weight: math.unit(114, "lb"),
  16245. name: "Side",
  16246. image: {
  16247. source: "./media/characters/raf/side.svg",
  16248. bottom: 22 / 1822
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Micro",
  16255. height: math.unit(2, "inches")
  16256. },
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(4 + 11 / 12, "feet"),
  16260. default: true
  16261. },
  16262. {
  16263. name: "Macro",
  16264. height: math.unit(70, "feet")
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(1.5, "meters"),
  16273. weight: math.unit(68, "kg"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/liam-einarr/front.svg",
  16277. extra: 2822 / 2666
  16278. }
  16279. },
  16280. back: {
  16281. height: math.unit(1.5, "meters"),
  16282. weight: math.unit(68, "kg"),
  16283. name: "Back",
  16284. image: {
  16285. source: "./media/characters/liam-einarr/back.svg",
  16286. extra: 2822 / 2666,
  16287. bottom: 0.015
  16288. }
  16289. },
  16290. },
  16291. [
  16292. {
  16293. name: "Normal",
  16294. height: math.unit(1.5, "meters"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(150, "meters")
  16300. },
  16301. {
  16302. name: "Megamacro",
  16303. height: math.unit(35, "km")
  16304. },
  16305. ]
  16306. ))
  16307. characterMakers.push(() => makeCharacter(
  16308. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16309. {
  16310. front: {
  16311. height: math.unit(6, "feet"),
  16312. weight: math.unit(75, "kg"),
  16313. name: "Front",
  16314. image: {
  16315. source: "./media/characters/linda/front.svg",
  16316. extra: 930 / 874,
  16317. bottom: 0.004
  16318. }
  16319. },
  16320. },
  16321. [
  16322. {
  16323. name: "Normal",
  16324. height: math.unit(6, "feet"),
  16325. default: true
  16326. },
  16327. ]
  16328. ))
  16329. characterMakers.push(() => makeCharacter(
  16330. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16331. {
  16332. front: {
  16333. height: math.unit(6 + 8 / 12, "feet"),
  16334. weight: math.unit(220, "lb"),
  16335. name: "Front",
  16336. image: {
  16337. source: "./media/characters/caylex/front.svg",
  16338. extra: 821 / 772,
  16339. bottom: 0.07
  16340. }
  16341. },
  16342. back: {
  16343. height: math.unit(6 + 8 / 12, "feet"),
  16344. weight: math.unit(220, "lb"),
  16345. name: "Back",
  16346. image: {
  16347. source: "./media/characters/caylex/back.svg",
  16348. extra: 821 / 772,
  16349. bottom: 0.022
  16350. }
  16351. },
  16352. hand: {
  16353. height: math.unit(1.25, "feet"),
  16354. name: "Hand",
  16355. image: {
  16356. source: "./media/characters/caylex/hand.svg"
  16357. }
  16358. },
  16359. foot: {
  16360. height: math.unit(1.6, "feet"),
  16361. name: "Foot",
  16362. image: {
  16363. source: "./media/characters/caylex/foot.svg"
  16364. }
  16365. },
  16366. armored: {
  16367. height: math.unit(6 + 8 / 12, "feet"),
  16368. weight: math.unit(250, "lb"),
  16369. name: "Armored",
  16370. image: {
  16371. source: "./media/characters/caylex/armored.svg",
  16372. extra: 1420 / 1310,
  16373. bottom: 0.045
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(6 + 8 / 12, "feet"),
  16381. default: true
  16382. },
  16383. {
  16384. name: "Normal+",
  16385. height: math.unit(12, "feet")
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(7 + 6 / 12, "feet"),
  16394. weight: math.unit(288, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/alana/front.svg",
  16398. extra: 679 / 653,
  16399. bottom: 22.5 / 701
  16400. }
  16401. },
  16402. },
  16403. [
  16404. {
  16405. name: "Normal",
  16406. height: math.unit(7 + 6 / 12, "feet")
  16407. },
  16408. {
  16409. name: "Large",
  16410. height: math.unit(50, "feet")
  16411. },
  16412. {
  16413. name: "Macro",
  16414. height: math.unit(100, "feet"),
  16415. default: true
  16416. },
  16417. {
  16418. name: "Macro+",
  16419. height: math.unit(200, "feet")
  16420. },
  16421. ]
  16422. ))
  16423. characterMakers.push(() => makeCharacter(
  16424. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16425. {
  16426. front: {
  16427. height: math.unit(6 + 1 / 12, "feet"),
  16428. weight: math.unit(210, "lb"),
  16429. name: "Front",
  16430. image: {
  16431. source: "./media/characters/hasani/front.svg",
  16432. extra: 244 / 232,
  16433. bottom: 0.01
  16434. }
  16435. },
  16436. back: {
  16437. height: math.unit(6 + 1 / 12, "feet"),
  16438. weight: math.unit(210, "lb"),
  16439. name: "Back",
  16440. image: {
  16441. source: "./media/characters/hasani/back.svg",
  16442. extra: 244 / 232,
  16443. bottom: 0.01
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(6 + 1 / 12, "feet")
  16451. },
  16452. {
  16453. name: "Macro",
  16454. height: math.unit(175, "feet"),
  16455. default: true
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(1.82, "meters"),
  16464. weight: math.unit(140, "lb"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/nita/front.svg",
  16468. extra: 2473 / 2363,
  16469. bottom: 0.01
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(1.82, "m")
  16477. },
  16478. {
  16479. name: "Macro",
  16480. height: math.unit(300, "m")
  16481. },
  16482. {
  16483. name: "Mistake Canon",
  16484. height: math.unit(0.5, "miles"),
  16485. default: true
  16486. },
  16487. {
  16488. name: "Big Mistake",
  16489. height: math.unit(13, "miles")
  16490. },
  16491. {
  16492. name: "Playing God",
  16493. height: math.unit(2450, "miles")
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16499. {
  16500. front: {
  16501. height: math.unit(4, "feet"),
  16502. weight: math.unit(120, "lb"),
  16503. name: "Front",
  16504. image: {
  16505. source: "./media/characters/shiriko/front.svg",
  16506. extra: 195 / 188
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(4, "feet"),
  16514. default: true
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(6, "feet"),
  16523. name: "front",
  16524. image: {
  16525. source: "./media/characters/deja/front.svg",
  16526. extra: 926 / 840,
  16527. bottom: 0.07
  16528. }
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Planck Length",
  16534. height: math.unit(1.6e-35, "meters")
  16535. },
  16536. {
  16537. name: "Normal",
  16538. height: math.unit(30.48, "meters"),
  16539. default: true
  16540. },
  16541. {
  16542. name: "Universal",
  16543. height: math.unit(8.8e26, "meters")
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16549. {
  16550. side: {
  16551. height: math.unit(8, "feet"),
  16552. weight: math.unit(6300, "lb"),
  16553. name: "Side",
  16554. image: {
  16555. source: "./media/characters/anima/side.svg",
  16556. bottom: 0.035
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(8, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(8, "feet"),
  16573. weight: math.unit(350, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/bianca/front.svg",
  16577. extra: 234 / 225,
  16578. bottom: 0.03
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(8, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16592. {
  16593. front: {
  16594. height: math.unit(6, "feet"),
  16595. weight: math.unit(150, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/adinia/front.svg",
  16599. extra: 1845 / 1672,
  16600. bottom: 0.02
  16601. }
  16602. },
  16603. back: {
  16604. height: math.unit(6, "feet"),
  16605. weight: math.unit(150, "lb"),
  16606. name: "Back",
  16607. image: {
  16608. source: "./media/characters/adinia/back.svg",
  16609. extra: 1845 / 1672,
  16610. bottom: 0.002
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(11 + 5 / 12, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16624. {
  16625. front: {
  16626. height: math.unit(3, "meters"),
  16627. weight: math.unit(200, "kg"),
  16628. name: "Front",
  16629. image: {
  16630. source: "./media/characters/lykasa/front.svg",
  16631. extra: 1076 / 976,
  16632. bottom: 0.06
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(3, "meters")
  16640. },
  16641. {
  16642. name: "Kaiju",
  16643. height: math.unit(120, "meters"),
  16644. default: true
  16645. },
  16646. {
  16647. name: "Mega Kaiju",
  16648. height: math.unit(240, "km")
  16649. },
  16650. {
  16651. name: "Giga Kaiju",
  16652. height: math.unit(400, "megameters")
  16653. },
  16654. {
  16655. name: "Tera Kaiju",
  16656. height: math.unit(800, "gigameters")
  16657. },
  16658. {
  16659. name: "Kaiju Dragon Goddess",
  16660. height: math.unit(26, "zettaparsecs")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16666. {
  16667. side: {
  16668. height: math.unit(283 / 124 * 6, "feet"),
  16669. weight: math.unit(35000, "lb"),
  16670. name: "Side",
  16671. image: {
  16672. source: "./media/characters/malfaren/side.svg",
  16673. extra: 2500 / 1010,
  16674. bottom: 0.01
  16675. }
  16676. },
  16677. front: {
  16678. height: math.unit(22.36, "feet"),
  16679. weight: math.unit(35000, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/malfaren/front.svg",
  16683. extra: 1631 / 1476,
  16684. bottom: 0.01
  16685. }
  16686. },
  16687. maw: {
  16688. height: math.unit(6.9, "feet"),
  16689. name: "Maw",
  16690. image: {
  16691. source: "./media/characters/malfaren/maw.svg"
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Big",
  16698. height: math.unit(283 / 162 * 6, "feet"),
  16699. },
  16700. {
  16701. name: "Bigger",
  16702. height: math.unit(283 / 124 * 6, "feet")
  16703. },
  16704. {
  16705. name: "Massive",
  16706. height: math.unit(283 / 92 * 6, "feet"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "👀💦",
  16711. height: math.unit(283 / 73 * 6, "feet"),
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16717. {
  16718. front: {
  16719. height: math.unit(1.7, "m"),
  16720. weight: math.unit(70, "kg"),
  16721. name: "Front",
  16722. image: {
  16723. source: "./media/characters/kernel/front.svg",
  16724. extra: 222 / 210,
  16725. bottom: 0.007
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Nano",
  16732. height: math.unit(17, "micrometers")
  16733. },
  16734. {
  16735. name: "Micro",
  16736. height: math.unit(1.7, "mm")
  16737. },
  16738. {
  16739. name: "Small",
  16740. height: math.unit(1.7, "cm")
  16741. },
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(1.7, "m"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16751. {
  16752. front: {
  16753. height: math.unit(1.75, "meters"),
  16754. weight: math.unit(65, "kg"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/jayne-folest/front.svg",
  16758. extra: 2115 / 2007,
  16759. bottom: 0.02
  16760. }
  16761. },
  16762. back: {
  16763. height: math.unit(1.75, "meters"),
  16764. weight: math.unit(65, "kg"),
  16765. name: "Back",
  16766. image: {
  16767. source: "./media/characters/jayne-folest/back.svg",
  16768. extra: 2115 / 2007,
  16769. bottom: 0.005
  16770. }
  16771. },
  16772. frontClothed: {
  16773. height: math.unit(1.75, "meters"),
  16774. weight: math.unit(65, "kg"),
  16775. name: "Front (Clothed)",
  16776. image: {
  16777. source: "./media/characters/jayne-folest/front-clothed.svg",
  16778. extra: 2115 / 2007,
  16779. bottom: 0.035
  16780. }
  16781. },
  16782. hand: {
  16783. height: math.unit(1 / 1.260, "feet"),
  16784. name: "Hand",
  16785. image: {
  16786. source: "./media/characters/jayne-folest/hand.svg"
  16787. }
  16788. },
  16789. foot: {
  16790. height: math.unit(1 / 0.918, "feet"),
  16791. name: "Foot",
  16792. image: {
  16793. source: "./media/characters/jayne-folest/foot.svg"
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Micro",
  16800. height: math.unit(4, "cm")
  16801. },
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(1.75, "meters")
  16805. },
  16806. {
  16807. name: "Macro",
  16808. height: math.unit(47.5, "meters"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(180, "cm"),
  16818. weight: math.unit(70, "kg"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/algier/front.svg",
  16822. extra: 596 / 572,
  16823. bottom: 0.04
  16824. }
  16825. },
  16826. back: {
  16827. height: math.unit(180, "cm"),
  16828. weight: math.unit(70, "kg"),
  16829. name: "Back",
  16830. image: {
  16831. source: "./media/characters/algier/back.svg",
  16832. extra: 596 / 572,
  16833. bottom: 0.025
  16834. }
  16835. },
  16836. frontdressed: {
  16837. height: math.unit(180, "cm"),
  16838. weight: math.unit(150, "kg"),
  16839. name: "Front-dressed",
  16840. image: {
  16841. source: "./media/characters/algier/front-dressed.svg",
  16842. extra: 596 / 572,
  16843. bottom: 0.038
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Micro",
  16850. height: math.unit(5, "cm")
  16851. },
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(180, "cm"),
  16855. default: true
  16856. },
  16857. {
  16858. name: "Macro",
  16859. height: math.unit(64, "m")
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16865. {
  16866. upright: {
  16867. height: math.unit(7, "feet"),
  16868. weight: math.unit(300, "lb"),
  16869. name: "Upright",
  16870. image: {
  16871. source: "./media/characters/pretzel/upright.svg",
  16872. extra: 534 / 522,
  16873. bottom: 0.065
  16874. }
  16875. },
  16876. sprawling: {
  16877. height: math.unit(3.75, "feet"),
  16878. weight: math.unit(300, "lb"),
  16879. name: "Sprawling",
  16880. image: {
  16881. source: "./media/characters/pretzel/sprawling.svg",
  16882. extra: 314 / 281,
  16883. bottom: 0.1
  16884. }
  16885. },
  16886. tongue: {
  16887. height: math.unit(2, "feet"),
  16888. name: "Tongue",
  16889. image: {
  16890. source: "./media/characters/pretzel/tongue.svg"
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(7, "feet"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Oversized",
  16902. height: math.unit(15, "feet")
  16903. },
  16904. {
  16905. name: "Huge",
  16906. height: math.unit(30, "feet")
  16907. },
  16908. {
  16909. name: "Macro",
  16910. height: math.unit(250, "feet")
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16916. {
  16917. sideFront: {
  16918. height: math.unit(5 + 2 / 12, "feet"),
  16919. weight: math.unit(120, "lb"),
  16920. name: "Front Side",
  16921. image: {
  16922. source: "./media/characters/roxi/side-front.svg",
  16923. extra: 2924 / 2717,
  16924. bottom: 0.08
  16925. }
  16926. },
  16927. sideBack: {
  16928. height: math.unit(5 + 2 / 12, "feet"),
  16929. weight: math.unit(120, "lb"),
  16930. name: "Back Side",
  16931. image: {
  16932. source: "./media/characters/roxi/side-back.svg",
  16933. extra: 2904 / 2693,
  16934. bottom: 0.06
  16935. }
  16936. },
  16937. front: {
  16938. height: math.unit(5 + 2 / 12, "feet"),
  16939. weight: math.unit(120, "lb"),
  16940. name: "Front",
  16941. image: {
  16942. source: "./media/characters/roxi/front.svg",
  16943. extra: 2028 / 1907,
  16944. bottom: 0.01
  16945. }
  16946. },
  16947. frontAlt: {
  16948. height: math.unit(5 + 2 / 12, "feet"),
  16949. weight: math.unit(120, "lb"),
  16950. name: "Front (Alt)",
  16951. image: {
  16952. source: "./media/characters/roxi/front-alt.svg",
  16953. extra: 1828 / 1798,
  16954. bottom: 0.01
  16955. }
  16956. },
  16957. sitting: {
  16958. height: math.unit(2.8, "feet"),
  16959. weight: math.unit(120, "lb"),
  16960. name: "Sitting",
  16961. image: {
  16962. source: "./media/characters/roxi/sitting.svg",
  16963. extra: 2660 / 2462,
  16964. bottom: 0.1
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(5 + 2 / 12, "feet"),
  16972. default: true
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16978. {
  16979. side: {
  16980. height: math.unit(55, "feet"),
  16981. weight: math.unit(153, "tons"),
  16982. name: "Side",
  16983. image: {
  16984. source: "./media/characters/shadow/side.svg",
  16985. extra: 701 / 628,
  16986. bottom: 0.02
  16987. }
  16988. },
  16989. flying: {
  16990. height: math.unit(145, "feet"),
  16991. weight: math.unit(153, "tons"),
  16992. name: "Flying",
  16993. image: {
  16994. source: "./media/characters/shadow/flying.svg"
  16995. }
  16996. },
  16997. },
  16998. [
  16999. {
  17000. name: "Normal",
  17001. height: math.unit(55, "feet"),
  17002. default: true
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17008. {
  17009. front: {
  17010. height: math.unit(6, "feet"),
  17011. weight: math.unit(200, "lb"),
  17012. name: "Front",
  17013. image: {
  17014. source: "./media/characters/marcie/front.svg",
  17015. extra: 960 / 876,
  17016. bottom: 58 / 1017.87
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Macro",
  17023. height: math.unit(1, "mile"),
  17024. default: true
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17030. {
  17031. front: {
  17032. height: math.unit(7, "feet"),
  17033. weight: math.unit(200, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/kachina/front.svg",
  17037. extra: 1290.68 / 1119,
  17038. bottom: 36.5 / 1327.18
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(7, "feet"),
  17046. default: true
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17052. {
  17053. looking: {
  17054. height: math.unit(2, "meters"),
  17055. weight: math.unit(300, "kg"),
  17056. name: "Looking",
  17057. image: {
  17058. source: "./media/characters/kash/looking.svg",
  17059. extra: 474 / 344,
  17060. bottom: 0.03
  17061. }
  17062. },
  17063. side: {
  17064. height: math.unit(2, "meters"),
  17065. weight: math.unit(300, "kg"),
  17066. name: "Side",
  17067. image: {
  17068. source: "./media/characters/kash/side.svg",
  17069. extra: 302 / 251,
  17070. bottom: 0.03
  17071. }
  17072. },
  17073. front: {
  17074. height: math.unit(2, "meters"),
  17075. weight: math.unit(300, "kg"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/kash/front.svg",
  17079. extra: 495 / 360,
  17080. bottom: 0.015
  17081. }
  17082. },
  17083. },
  17084. [
  17085. {
  17086. name: "Normal",
  17087. height: math.unit(2, "meters"),
  17088. default: true
  17089. },
  17090. {
  17091. name: "Big",
  17092. height: math.unit(3, "meters")
  17093. },
  17094. {
  17095. name: "Large",
  17096. height: math.unit(5, "meters")
  17097. },
  17098. ]
  17099. ))
  17100. characterMakers.push(() => makeCharacter(
  17101. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17102. {
  17103. feeding: {
  17104. height: math.unit(6.7, "feet"),
  17105. weight: math.unit(350, "lb"),
  17106. name: "Feeding",
  17107. image: {
  17108. source: "./media/characters/lalim/feeding.svg",
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(6.7, "feet"),
  17116. default: true
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(9.5, "feet"),
  17125. weight: math.unit(600, "lb"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/de'vout/front.svg",
  17129. extra: 1443 / 1328,
  17130. bottom: 0.025
  17131. }
  17132. },
  17133. back: {
  17134. height: math.unit(9.5, "feet"),
  17135. weight: math.unit(600, "lb"),
  17136. name: "Back",
  17137. image: {
  17138. source: "./media/characters/de'vout/back.svg",
  17139. extra: 1443 / 1328
  17140. }
  17141. },
  17142. frontDressed: {
  17143. height: math.unit(9.5, "feet"),
  17144. weight: math.unit(600, "lb"),
  17145. name: "Front (Dressed",
  17146. image: {
  17147. source: "./media/characters/de'vout/front-dressed.svg",
  17148. extra: 1443 / 1328,
  17149. bottom: 0.025
  17150. }
  17151. },
  17152. backDressed: {
  17153. height: math.unit(9.5, "feet"),
  17154. weight: math.unit(600, "lb"),
  17155. name: "Back (Dressed",
  17156. image: {
  17157. source: "./media/characters/de'vout/back-dressed.svg",
  17158. extra: 1443 / 1328
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(9.5, "feet"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(8, "feet"),
  17175. weight: math.unit(225, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/talana/front.svg",
  17179. extra: 1410 / 1300,
  17180. bottom: 0.015
  17181. }
  17182. },
  17183. frontDressed: {
  17184. height: math.unit(8, "feet"),
  17185. weight: math.unit(225, "lb"),
  17186. name: "Front (Dressed",
  17187. image: {
  17188. source: "./media/characters/talana/front-dressed.svg",
  17189. extra: 1410 / 1300,
  17190. bottom: 0.015
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Normal",
  17197. height: math.unit(8, "feet"),
  17198. default: true
  17199. },
  17200. ]
  17201. ))
  17202. characterMakers.push(() => makeCharacter(
  17203. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17204. {
  17205. side: {
  17206. height: math.unit(7.2, "feet"),
  17207. weight: math.unit(150, "lb"),
  17208. name: "Side",
  17209. image: {
  17210. source: "./media/characters/xeauvok/side.svg",
  17211. extra: 1975 / 1523,
  17212. bottom: 0.07
  17213. }
  17214. },
  17215. },
  17216. [
  17217. {
  17218. name: "Normal",
  17219. height: math.unit(7.2, "feet"),
  17220. default: true
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17226. {
  17227. side: {
  17228. height: math.unit(10, "feet"),
  17229. weight: math.unit(900, "kg"),
  17230. name: "Side",
  17231. image: {
  17232. source: "./media/characters/zara/side.svg",
  17233. extra: 504 / 498
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(10, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17247. {
  17248. side: {
  17249. height: math.unit(6, "feet"),
  17250. weight: math.unit(150, "lb"),
  17251. name: "Side",
  17252. image: {
  17253. source: "./media/characters/richard-dragon/side.svg",
  17254. extra: 845 / 340,
  17255. bottom: 0.017
  17256. }
  17257. },
  17258. maw: {
  17259. height: math.unit(2.97, "feet"),
  17260. name: "Maw",
  17261. image: {
  17262. source: "./media/characters/richard-dragon/maw.svg"
  17263. }
  17264. },
  17265. },
  17266. [
  17267. ]
  17268. ))
  17269. characterMakers.push(() => makeCharacter(
  17270. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17271. {
  17272. front: {
  17273. height: math.unit(4, "feet"),
  17274. weight: math.unit(100, "lb"),
  17275. name: "Front",
  17276. image: {
  17277. source: "./media/characters/richard-smeargle/front.svg",
  17278. extra: 2952 / 2820,
  17279. bottom: 0.028
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(4, "feet"),
  17287. default: true
  17288. },
  17289. {
  17290. name: "Dynamax",
  17291. height: math.unit(20, "meters")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(6, "feet"),
  17300. weight: math.unit(110, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/klay/front.svg",
  17304. extra: 962 / 883,
  17305. bottom: 0.04
  17306. }
  17307. },
  17308. back: {
  17309. height: math.unit(6, "feet"),
  17310. weight: math.unit(110, "lb"),
  17311. name: "Back",
  17312. image: {
  17313. source: "./media/characters/klay/back.svg",
  17314. extra: 962 / 883
  17315. }
  17316. },
  17317. beans: {
  17318. height: math.unit(1.15, "feet"),
  17319. name: "Beans",
  17320. image: {
  17321. source: "./media/characters/klay/beans.svg"
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Micro",
  17328. height: math.unit(6, "inches")
  17329. },
  17330. {
  17331. name: "Mini",
  17332. height: math.unit(3, "feet")
  17333. },
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(6, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Big",
  17341. height: math.unit(25, "feet")
  17342. },
  17343. {
  17344. name: "Macro",
  17345. height: math.unit(100, "feet")
  17346. },
  17347. {
  17348. name: "Megamacro",
  17349. height: math.unit(400, "feet")
  17350. },
  17351. ]
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17355. {
  17356. front: {
  17357. height: math.unit(6, "feet"),
  17358. weight: math.unit(160, "lb"),
  17359. name: "Front",
  17360. image: {
  17361. source: "./media/characters/marcus/front.svg",
  17362. extra: 734 / 676,
  17363. bottom: 0.03
  17364. }
  17365. },
  17366. },
  17367. [
  17368. {
  17369. name: "Little",
  17370. height: math.unit(6, "feet")
  17371. },
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(110, "feet"),
  17375. default: true
  17376. },
  17377. {
  17378. name: "Macro",
  17379. height: math.unit(250, "feet")
  17380. },
  17381. {
  17382. name: "Megamacro",
  17383. height: math.unit(1000, "feet")
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(7, "feet"),
  17392. weight: math.unit(275, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/claude-delroute/front.svg",
  17396. extra: 230 / 214,
  17397. bottom: 0.007
  17398. }
  17399. },
  17400. side: {
  17401. height: math.unit(7, "feet"),
  17402. weight: math.unit(275, "lb"),
  17403. name: "Side",
  17404. image: {
  17405. source: "./media/characters/claude-delroute/side.svg",
  17406. extra: 222 / 214,
  17407. bottom: 0.01
  17408. }
  17409. },
  17410. back: {
  17411. height: math.unit(7, "feet"),
  17412. weight: math.unit(275, "lb"),
  17413. name: "Back",
  17414. image: {
  17415. source: "./media/characters/claude-delroute/back.svg",
  17416. extra: 230 / 214,
  17417. bottom: 0.015
  17418. }
  17419. },
  17420. maw: {
  17421. height: math.unit(0.6407, "meters"),
  17422. name: "Maw",
  17423. image: {
  17424. source: "./media/characters/claude-delroute/maw.svg"
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(7, "feet"),
  17432. default: true
  17433. },
  17434. {
  17435. name: "Lorge",
  17436. height: math.unit(20, "feet")
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(8 + 4 / 12, "feet"),
  17445. weight: math.unit(600, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/dragonien/front.svg",
  17449. extra: 100 / 94,
  17450. bottom: 3.3 / 103.3445
  17451. }
  17452. },
  17453. back: {
  17454. height: math.unit(8 + 4 / 12, "feet"),
  17455. weight: math.unit(600, "lb"),
  17456. name: "Back",
  17457. image: {
  17458. source: "./media/characters/dragonien/back.svg",
  17459. extra: 776 / 746,
  17460. bottom: 6.4 / 782.0616
  17461. }
  17462. },
  17463. foot: {
  17464. height: math.unit(1.54, "feet"),
  17465. name: "Foot",
  17466. image: {
  17467. source: "./media/characters/dragonien/foot.svg",
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(8 + 4 / 12, "feet"),
  17475. default: true
  17476. },
  17477. {
  17478. name: "Macro",
  17479. height: math.unit(200, "feet")
  17480. },
  17481. {
  17482. name: "Megamacro",
  17483. height: math.unit(1, "mile")
  17484. },
  17485. {
  17486. name: "Gigamacro",
  17487. height: math.unit(1000, "miles")
  17488. },
  17489. ]
  17490. ))
  17491. characterMakers.push(() => makeCharacter(
  17492. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17493. {
  17494. front: {
  17495. height: math.unit(5 + 2 / 12, "feet"),
  17496. weight: math.unit(110, "lb"),
  17497. name: "Front",
  17498. image: {
  17499. source: "./media/characters/desta/front.svg",
  17500. extra: 767 / 726,
  17501. bottom: 11.7 / 779
  17502. }
  17503. },
  17504. back: {
  17505. height: math.unit(5 + 2 / 12, "feet"),
  17506. weight: math.unit(110, "lb"),
  17507. name: "Back",
  17508. image: {
  17509. source: "./media/characters/desta/back.svg",
  17510. extra: 777 / 728,
  17511. bottom: 6 / 784
  17512. }
  17513. },
  17514. frontAlt: {
  17515. height: math.unit(5 + 2 / 12, "feet"),
  17516. weight: math.unit(110, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/desta/front-alt.svg",
  17520. extra: 1482 / 1417
  17521. }
  17522. },
  17523. side: {
  17524. height: math.unit(5 + 2 / 12, "feet"),
  17525. weight: math.unit(110, "lb"),
  17526. name: "Side",
  17527. image: {
  17528. source: "./media/characters/desta/side.svg",
  17529. extra: 2579 / 2491,
  17530. bottom: 0.053
  17531. }
  17532. },
  17533. },
  17534. [
  17535. {
  17536. name: "Micro",
  17537. height: math.unit(6, "inches")
  17538. },
  17539. {
  17540. name: "Normal",
  17541. height: math.unit(5 + 2 / 12, "feet"),
  17542. default: true
  17543. },
  17544. {
  17545. name: "Macro",
  17546. height: math.unit(62, "feet")
  17547. },
  17548. {
  17549. name: "Megamacro",
  17550. height: math.unit(1800, "feet")
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17556. {
  17557. front: {
  17558. height: math.unit(10, "feet"),
  17559. weight: math.unit(700, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/storm-alystar/front.svg",
  17563. extra: 2112 / 1898,
  17564. bottom: 0.034
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Micro",
  17571. height: math.unit(3.5, "inches")
  17572. },
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(10, "feet"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Macro",
  17580. height: math.unit(400, "feet")
  17581. },
  17582. {
  17583. name: "Deific",
  17584. height: math.unit(60, "miles")
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(2.35, "meters"),
  17593. weight: math.unit(119, "kg"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/ilia/front.svg",
  17597. extra: 1285 / 1255,
  17598. bottom: 0.06
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(2.35, "meters")
  17606. },
  17607. {
  17608. name: "Macro",
  17609. height: math.unit(140, "meters"),
  17610. default: true
  17611. },
  17612. {
  17613. name: "Megamacro",
  17614. height: math.unit(100, "miles")
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17620. {
  17621. front: {
  17622. height: math.unit(6 + 5 / 12, "feet"),
  17623. weight: math.unit(190, "lb"),
  17624. name: "Front",
  17625. image: {
  17626. source: "./media/characters/kingdead/front.svg",
  17627. extra: 1228 / 1177
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Micro",
  17634. height: math.unit(7, "inches")
  17635. },
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(6 + 5 / 12, "feet")
  17639. },
  17640. {
  17641. name: "Macro",
  17642. height: math.unit(150, "feet"),
  17643. default: true
  17644. },
  17645. {
  17646. name: "Megamacro",
  17647. height: math.unit(200, "miles")
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17653. {
  17654. front: {
  17655. height: math.unit(8, "feet"),
  17656. weight: math.unit(600, "lb"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/kyrehx/front.svg",
  17660. extra: 1195 / 1095,
  17661. bottom: 0.034
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Micro",
  17668. height: math.unit(2, "inches")
  17669. },
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(8, "feet"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Macro",
  17677. height: math.unit(255, "feet")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17686. weight: math.unit(184, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/xang/front.svg",
  17690. extra: 845 / 755
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17698. default: true
  17699. },
  17700. {
  17701. name: "Macro",
  17702. height: math.unit(0.935 * 146, "feet")
  17703. },
  17704. {
  17705. name: "Megamacro",
  17706. height: math.unit(0.935 * 3, "miles")
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17712. {
  17713. frontDressed: {
  17714. height: math.unit(5 + 7 / 12, "feet"),
  17715. weight: math.unit(140, "lb"),
  17716. name: "Front (Dressed)",
  17717. image: {
  17718. source: "./media/characters/doc-weardno/front-dressed.svg",
  17719. extra: 263 / 234
  17720. }
  17721. },
  17722. backDressed: {
  17723. height: math.unit(5 + 7 / 12, "feet"),
  17724. weight: math.unit(140, "lb"),
  17725. name: "Back (Dressed)",
  17726. image: {
  17727. source: "./media/characters/doc-weardno/back-dressed.svg",
  17728. extra: 266 / 238
  17729. }
  17730. },
  17731. front: {
  17732. height: math.unit(5 + 7 / 12, "feet"),
  17733. weight: math.unit(140, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/doc-weardno/front.svg",
  17737. extra: 254 / 233
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Micro",
  17744. height: math.unit(3, "inches")
  17745. },
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(5 + 7 / 12, "feet"),
  17749. default: true
  17750. },
  17751. {
  17752. name: "Macro",
  17753. height: math.unit(25, "feet")
  17754. },
  17755. {
  17756. name: "Megamacro",
  17757. height: math.unit(2, "miles")
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(6 + 2 / 12, "feet"),
  17766. weight: math.unit(153, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/seth-whilst/front.svg",
  17770. bottom: 0.07
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Micro",
  17777. height: math.unit(5, "inches")
  17778. },
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(6 + 2 / 12, "feet"),
  17782. default: true
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17788. {
  17789. front: {
  17790. height: math.unit(3, "inches"),
  17791. weight: math.unit(8, "grams"),
  17792. name: "Front",
  17793. image: {
  17794. source: "./media/characters/pocket-jabari/front.svg",
  17795. extra: 1024 / 974,
  17796. bottom: 0.039
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Minimicro",
  17803. height: math.unit(8, "mm")
  17804. },
  17805. {
  17806. name: "Micro",
  17807. height: math.unit(3, "inches"),
  17808. default: true
  17809. },
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(3, "feet")
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(15, "feet"),
  17821. weight: math.unit(3280, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/sapphy/front.svg",
  17825. extra: 671 / 577,
  17826. bottom: 0.085
  17827. }
  17828. },
  17829. back: {
  17830. height: math.unit(15, "feet"),
  17831. weight: math.unit(3280, "lb"),
  17832. name: "Back",
  17833. image: {
  17834. source: "./media/characters/sapphy/back.svg",
  17835. extra: 631 / 607,
  17836. bottom: 0.045
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(15, "feet")
  17844. },
  17845. {
  17846. name: "Casual Macro",
  17847. height: math.unit(120, "feet")
  17848. },
  17849. {
  17850. name: "Macro",
  17851. height: math.unit(2150, "feet"),
  17852. default: true
  17853. },
  17854. {
  17855. name: "Megamacro",
  17856. height: math.unit(8, "miles")
  17857. },
  17858. {
  17859. name: "Galaxy Mom",
  17860. height: math.unit(6, "megalightyears")
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17866. {
  17867. front: {
  17868. height: math.unit(6, "feet"),
  17869. weight: math.unit(170, "lb"),
  17870. name: "Front",
  17871. image: {
  17872. source: "./media/characters/kiro/front.svg",
  17873. extra: 1064 / 1012,
  17874. bottom: 0.052
  17875. }
  17876. },
  17877. },
  17878. [
  17879. {
  17880. name: "Micro",
  17881. height: math.unit(6, "inches")
  17882. },
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(6, "feet"),
  17886. default: true
  17887. },
  17888. {
  17889. name: "Macro",
  17890. height: math.unit(72, "feet")
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(5 + 9 / 12, "feet"),
  17899. weight: math.unit(175, "lb"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/irishfox/front.svg",
  17903. extra: 1912 / 1680,
  17904. bottom: 0.02
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Nano",
  17911. height: math.unit(1, "mm")
  17912. },
  17913. {
  17914. name: "Micro",
  17915. height: math.unit(2, "inches")
  17916. },
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(5 + 9 / 12, "feet"),
  17920. default: true
  17921. },
  17922. {
  17923. name: "Macro",
  17924. height: math.unit(45, "feet")
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(6 + 1 / 12, "feet"),
  17933. weight: math.unit(150, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/aronai-sieyes/front.svg",
  17937. extra: 1556 / 1480,
  17938. bottom: 0.015
  17939. }
  17940. },
  17941. side: {
  17942. height: math.unit(6 + 1 / 12, "feet"),
  17943. weight: math.unit(150, "lb"),
  17944. name: "Side",
  17945. image: {
  17946. source: "./media/characters/aronai-sieyes/side.svg",
  17947. extra: 1433 / 1390,
  17948. bottom: 0.0393
  17949. }
  17950. },
  17951. back: {
  17952. height: math.unit(6 + 1 / 12, "feet"),
  17953. weight: math.unit(150, "lb"),
  17954. name: "Back",
  17955. image: {
  17956. source: "./media/characters/aronai-sieyes/back.svg",
  17957. extra: 1544 / 1494,
  17958. bottom: 0.02
  17959. }
  17960. },
  17961. frontClothed: {
  17962. height: math.unit(6 + 1 / 12, "feet"),
  17963. weight: math.unit(150, "lb"),
  17964. name: "Front (Clothed)",
  17965. image: {
  17966. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17967. extra: 1582 / 1527
  17968. }
  17969. },
  17970. feral: {
  17971. height: math.unit(18, "feet"),
  17972. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17973. name: "Feral",
  17974. image: {
  17975. source: "./media/characters/aronai-sieyes/feral.svg",
  17976. extra: 1530 / 1240,
  17977. bottom: 0.035
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Micro",
  17984. height: math.unit(2, "inches")
  17985. },
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(6 + 1 / 12, "feet"),
  17989. default: true
  17990. }
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17995. {
  17996. front: {
  17997. height: math.unit(12, "feet"),
  17998. weight: math.unit(410, "kg"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/xuna/front.svg",
  18002. extra: 2184 / 1980
  18003. }
  18004. },
  18005. side: {
  18006. height: math.unit(12, "feet"),
  18007. weight: math.unit(410, "kg"),
  18008. name: "Side",
  18009. image: {
  18010. source: "./media/characters/xuna/side.svg",
  18011. extra: 2184 / 1980
  18012. }
  18013. },
  18014. back: {
  18015. height: math.unit(12, "feet"),
  18016. weight: math.unit(410, "kg"),
  18017. name: "Back",
  18018. image: {
  18019. source: "./media/characters/xuna/back.svg",
  18020. extra: 2184 / 1980
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Nano glow",
  18027. height: math.unit(10, "nm")
  18028. },
  18029. {
  18030. name: "Micro floof",
  18031. height: math.unit(0.3, "m")
  18032. },
  18033. {
  18034. name: "Huggable softy boi",
  18035. height: math.unit(3.6576, "m"),
  18036. default: true
  18037. },
  18038. {
  18039. name: "Admirable floof",
  18040. height: math.unit(80, "meters")
  18041. },
  18042. {
  18043. name: "Gentle macro",
  18044. height: math.unit(300, "meters")
  18045. },
  18046. {
  18047. name: "Very careful floof",
  18048. height: math.unit(3200, "meters")
  18049. },
  18050. {
  18051. name: "The mega floof",
  18052. height: math.unit(36000, "meters")
  18053. },
  18054. {
  18055. name: "Giga-fur-Wicker",
  18056. height: math.unit(4800000, "meters")
  18057. },
  18058. {
  18059. name: "Licky world",
  18060. height: math.unit(20000000, "meters")
  18061. },
  18062. {
  18063. name: "Floofy cyan sun",
  18064. height: math.unit(1500000000, "meters")
  18065. },
  18066. {
  18067. name: "Milky Wicker",
  18068. height: math.unit(1000000000000000000000, "meters")
  18069. },
  18070. {
  18071. name: "The observing Wicker",
  18072. height: math.unit(999999999999999999999999999, "meters")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(5 + 9 / 12, "feet"),
  18081. weight: math.unit(150, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/arokha-sieyes/front.svg",
  18085. extra: 1425 / 1284,
  18086. bottom: 0.05
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(5 + 9 / 12, "feet")
  18094. },
  18095. {
  18096. name: "Macro",
  18097. height: math.unit(30, "meters"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6, "feet"),
  18107. weight: math.unit(180, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/arokh-sieyes/front.svg",
  18111. extra: 1830 / 1769,
  18112. bottom: 0.01
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(6, "feet")
  18120. },
  18121. {
  18122. name: "Macro",
  18123. height: math.unit(30, "meters"),
  18124. default: true
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18130. {
  18131. side: {
  18132. height: math.unit(13 + 1 / 12, "feet"),
  18133. weight: math.unit(8.5, "tonnes"),
  18134. name: "Side",
  18135. image: {
  18136. source: "./media/characters/goldeneye/side.svg",
  18137. extra: 1182 / 778,
  18138. bottom: 0.067
  18139. }
  18140. },
  18141. paw: {
  18142. height: math.unit(3.4, "feet"),
  18143. name: "Paw",
  18144. image: {
  18145. source: "./media/characters/goldeneye/paw.svg"
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Normal",
  18152. height: math.unit(13 + 1 / 12, "feet"),
  18153. default: true
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18159. {
  18160. front: {
  18161. height: math.unit(6 + 1 / 12, "feet"),
  18162. weight: math.unit(210, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/leonardo-lycheborne/front.svg",
  18166. extra: 390 / 365,
  18167. bottom: 0.032
  18168. }
  18169. },
  18170. side: {
  18171. height: math.unit(6 + 1 / 12, "feet"),
  18172. weight: math.unit(210, "lb"),
  18173. name: "Side",
  18174. image: {
  18175. source: "./media/characters/leonardo-lycheborne/side.svg",
  18176. extra: 390 / 365,
  18177. bottom: 0.005
  18178. }
  18179. },
  18180. back: {
  18181. height: math.unit(6 + 1 / 12, "feet"),
  18182. weight: math.unit(210, "lb"),
  18183. name: "Back",
  18184. image: {
  18185. source: "./media/characters/leonardo-lycheborne/back.svg",
  18186. extra: 392 / 366,
  18187. bottom: 0.01
  18188. }
  18189. },
  18190. hand: {
  18191. height: math.unit(1.08, "feet"),
  18192. name: "Hand",
  18193. image: {
  18194. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18195. }
  18196. },
  18197. foot: {
  18198. height: math.unit(1.32, "feet"),
  18199. name: "Foot",
  18200. image: {
  18201. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18202. }
  18203. },
  18204. were: {
  18205. height: math.unit(20, "feet"),
  18206. weight: math.unit(7800, "lb"),
  18207. name: "Were",
  18208. image: {
  18209. source: "./media/characters/leonardo-lycheborne/were.svg",
  18210. extra: 308 / 294,
  18211. bottom: 0.048
  18212. }
  18213. },
  18214. feral: {
  18215. height: math.unit(7.5, "feet"),
  18216. weight: math.unit(600, "lb"),
  18217. name: "Feral",
  18218. image: {
  18219. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18220. extra: 210 / 186,
  18221. bottom: 0.108
  18222. }
  18223. },
  18224. taur: {
  18225. height: math.unit(11, "feet"),
  18226. weight: math.unit(3300, "lb"),
  18227. name: "Taur",
  18228. image: {
  18229. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18230. extra: 320 / 303,
  18231. bottom: 0.025
  18232. }
  18233. },
  18234. barghest: {
  18235. height: math.unit(11, "feet"),
  18236. weight: math.unit(1300, "lb"),
  18237. name: "Barghest",
  18238. image: {
  18239. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18240. extra: 323 / 302,
  18241. bottom: 0.027
  18242. }
  18243. },
  18244. dick: {
  18245. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18246. name: "Dick",
  18247. image: {
  18248. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18249. }
  18250. },
  18251. dickWere: {
  18252. height: math.unit((20) / 3.8, "feet"),
  18253. name: "Dick (Were)",
  18254. image: {
  18255. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18256. }
  18257. },
  18258. },
  18259. [
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(6 + 1 / 12, "feet"),
  18263. default: true
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(10, "feet"),
  18272. weight: math.unit(350, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/jet/front.svg",
  18276. extra: 2050 / 1980,
  18277. bottom: 0.013
  18278. }
  18279. },
  18280. back: {
  18281. height: math.unit(10, "feet"),
  18282. weight: math.unit(350, "lb"),
  18283. name: "Back",
  18284. image: {
  18285. source: "./media/characters/jet/back.svg",
  18286. extra: 2050 / 1980,
  18287. bottom: 0.013
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Micro",
  18294. height: math.unit(6, "inches")
  18295. },
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(10, "feet"),
  18299. default: true
  18300. },
  18301. {
  18302. name: "Macro",
  18303. height: math.unit(100, "feet")
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18309. {
  18310. front: {
  18311. height: math.unit(15, "feet"),
  18312. weight: math.unit(2800, "lb"),
  18313. name: "Front",
  18314. image: {
  18315. source: "./media/characters/tanarath/front.svg",
  18316. extra: 2392 / 2220,
  18317. bottom: 0.03
  18318. }
  18319. },
  18320. back: {
  18321. height: math.unit(15, "feet"),
  18322. weight: math.unit(2800, "lb"),
  18323. name: "Back",
  18324. image: {
  18325. source: "./media/characters/tanarath/back.svg",
  18326. extra: 2392 / 2220,
  18327. bottom: 0.03
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(15, "feet"),
  18335. default: true
  18336. },
  18337. ]
  18338. ))
  18339. characterMakers.push(() => makeCharacter(
  18340. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18341. {
  18342. front: {
  18343. height: math.unit(7 + 1 / 12, "feet"),
  18344. weight: math.unit(175, "lb"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/patty-cattybatty/front.svg",
  18348. extra: 908 / 874,
  18349. bottom: 0.025
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Micro",
  18356. height: math.unit(1, "inch")
  18357. },
  18358. {
  18359. name: "Normal",
  18360. height: math.unit(7 + 1 / 12, "feet")
  18361. },
  18362. {
  18363. name: "Mini Macro",
  18364. height: math.unit(155, "feet")
  18365. },
  18366. {
  18367. name: "Macro",
  18368. height: math.unit(1077, "feet")
  18369. },
  18370. {
  18371. name: "Mega Macro",
  18372. height: math.unit(47650, "feet"),
  18373. default: true
  18374. },
  18375. {
  18376. name: "Giga Macro",
  18377. height: math.unit(440, "miles")
  18378. },
  18379. {
  18380. name: "Tera Macro",
  18381. height: math.unit(8700, "miles")
  18382. },
  18383. {
  18384. name: "Planetary Macro",
  18385. height: math.unit(32700, "miles")
  18386. },
  18387. {
  18388. name: "Solar Macro",
  18389. height: math.unit(550000, "miles")
  18390. },
  18391. {
  18392. name: "Celestial Macro",
  18393. height: math.unit(2.5, "AU")
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18399. {
  18400. front: {
  18401. height: math.unit(4 + 5 / 12, "feet"),
  18402. weight: math.unit(90, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/cappu/front.svg",
  18406. extra: 1247 / 1152,
  18407. bottom: 0.012
  18408. }
  18409. },
  18410. },
  18411. [
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(4 + 5 / 12, "feet"),
  18415. default: true
  18416. },
  18417. ]
  18418. ))
  18419. characterMakers.push(() => makeCharacter(
  18420. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18421. {
  18422. frontDressed: {
  18423. height: math.unit(70, "cm"),
  18424. weight: math.unit(6, "kg"),
  18425. name: "Front (Dressed)",
  18426. image: {
  18427. source: "./media/characters/sebi/front-dressed.svg",
  18428. extra: 713.5 / 686.5,
  18429. bottom: 0.003
  18430. }
  18431. },
  18432. front: {
  18433. height: math.unit(70, "cm"),
  18434. weight: math.unit(5, "kg"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/sebi/front.svg",
  18438. extra: 713.5 / 686.5,
  18439. bottom: 0.003
  18440. }
  18441. }
  18442. },
  18443. [
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(70, "cm"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Macro",
  18451. height: math.unit(8, "meters")
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(6, "feet"),
  18460. weight: math.unit(150, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/typhek/front.svg",
  18464. extra: 1948 / 1929,
  18465. bottom: 0.025
  18466. }
  18467. },
  18468. side: {
  18469. height: math.unit(6, "feet"),
  18470. weight: math.unit(150, "lb"),
  18471. name: "Side",
  18472. image: {
  18473. source: "./media/characters/typhek/side.svg",
  18474. extra: 2034 / 2010,
  18475. bottom: 0.003
  18476. }
  18477. },
  18478. back: {
  18479. height: math.unit(6, "feet"),
  18480. weight: math.unit(150, "lb"),
  18481. name: "Back",
  18482. image: {
  18483. source: "./media/characters/typhek/back.svg",
  18484. extra: 2005 / 1978,
  18485. bottom: 0.004
  18486. }
  18487. },
  18488. palm: {
  18489. height: math.unit(1.2, "feet"),
  18490. name: "Palm",
  18491. image: {
  18492. source: "./media/characters/typhek/palm.svg"
  18493. }
  18494. },
  18495. fist: {
  18496. height: math.unit(1.1, "feet"),
  18497. name: "Fist",
  18498. image: {
  18499. source: "./media/characters/typhek/fist.svg"
  18500. }
  18501. },
  18502. foot: {
  18503. height: math.unit(1.57, "feet"),
  18504. name: "Foot",
  18505. image: {
  18506. source: "./media/characters/typhek/foot.svg"
  18507. }
  18508. },
  18509. sole: {
  18510. height: math.unit(2.05, "feet"),
  18511. name: "Sole",
  18512. image: {
  18513. source: "./media/characters/typhek/sole.svg"
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Macro",
  18520. height: math.unit(40, "stories"),
  18521. default: true
  18522. },
  18523. {
  18524. name: "Megamacro",
  18525. height: math.unit(1, "mile")
  18526. },
  18527. {
  18528. name: "Gigamacro",
  18529. height: math.unit(4000, "solarradii")
  18530. },
  18531. {
  18532. name: "Universal",
  18533. height: math.unit(1.1, "universes")
  18534. }
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18539. {
  18540. side: {
  18541. height: math.unit(5 + 7 / 12, "feet"),
  18542. weight: math.unit(150, "lb"),
  18543. name: "Side",
  18544. image: {
  18545. source: "./media/characters/kassy/side.svg",
  18546. extra: 1280 / 1225,
  18547. bottom: 0.002
  18548. }
  18549. },
  18550. front: {
  18551. height: math.unit(5 + 7 / 12, "feet"),
  18552. weight: math.unit(150, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/kassy/front.svg",
  18556. extra: 1280 / 1225,
  18557. bottom: 0.025
  18558. }
  18559. },
  18560. back: {
  18561. height: math.unit(5 + 7 / 12, "feet"),
  18562. weight: math.unit(150, "lb"),
  18563. name: "Back",
  18564. image: {
  18565. source: "./media/characters/kassy/back.svg",
  18566. extra: 1280 / 1225,
  18567. bottom: 0.002
  18568. }
  18569. },
  18570. foot: {
  18571. height: math.unit(1.266, "feet"),
  18572. name: "Foot",
  18573. image: {
  18574. source: "./media/characters/kassy/foot.svg"
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 7 / 12, "feet")
  18582. },
  18583. {
  18584. name: "Macro",
  18585. height: math.unit(137, "feet"),
  18586. default: true
  18587. },
  18588. {
  18589. name: "Megamacro",
  18590. height: math.unit(1, "mile")
  18591. },
  18592. ]
  18593. ))
  18594. characterMakers.push(() => makeCharacter(
  18595. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18596. {
  18597. front: {
  18598. height: math.unit(6 + 1 / 12, "feet"),
  18599. weight: math.unit(200, "lb"),
  18600. name: "Front",
  18601. image: {
  18602. source: "./media/characters/neil/front.svg",
  18603. extra: 1326 / 1250,
  18604. bottom: 0.023
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(6 + 1 / 12, "feet"),
  18612. default: true
  18613. },
  18614. {
  18615. name: "Macro",
  18616. height: math.unit(200, "feet")
  18617. },
  18618. ]
  18619. ))
  18620. characterMakers.push(() => makeCharacter(
  18621. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18622. {
  18623. front: {
  18624. height: math.unit(5 + 9 / 12, "feet"),
  18625. weight: math.unit(190, "lb"),
  18626. name: "Front",
  18627. image: {
  18628. source: "./media/characters/atticus/front.svg",
  18629. extra: 2934 / 2785,
  18630. bottom: 0.025
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(5 + 9 / 12, "feet"),
  18638. default: true
  18639. },
  18640. {
  18641. name: "Macro",
  18642. height: math.unit(180, "feet")
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18648. {
  18649. side: {
  18650. height: math.unit(9, "feet"),
  18651. weight: math.unit(650, "lb"),
  18652. name: "Side",
  18653. image: {
  18654. source: "./media/characters/milo/side.svg",
  18655. extra: 2644 / 2310,
  18656. bottom: 0.032
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(9, "feet"),
  18664. default: true
  18665. },
  18666. {
  18667. name: "Macro",
  18668. height: math.unit(300, "feet")
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18674. {
  18675. side: {
  18676. height: math.unit(8, "meters"),
  18677. weight: math.unit(90000, "kg"),
  18678. name: "Side",
  18679. image: {
  18680. source: "./media/characters/ijzer/side.svg",
  18681. extra: 2756 / 1600,
  18682. bottom: 0.01
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Small",
  18689. height: math.unit(3, "meters")
  18690. },
  18691. {
  18692. name: "Normal",
  18693. height: math.unit(8, "meters"),
  18694. default: true
  18695. },
  18696. {
  18697. name: "Normal+",
  18698. height: math.unit(10, "meters")
  18699. },
  18700. {
  18701. name: "Bigger",
  18702. height: math.unit(24, "meters")
  18703. },
  18704. {
  18705. name: "Huge",
  18706. height: math.unit(80, "meters")
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(6 + 2 / 12, "feet"),
  18715. weight: math.unit(153, "lb"),
  18716. name: "Front",
  18717. image: {
  18718. source: "./media/characters/luca-cervicum/front.svg",
  18719. extra: 370 / 327,
  18720. bottom: 0.015
  18721. }
  18722. },
  18723. back: {
  18724. height: math.unit(6 + 2 / 12, "feet"),
  18725. weight: math.unit(153, "lb"),
  18726. name: "Back",
  18727. image: {
  18728. source: "./media/characters/luca-cervicum/back.svg",
  18729. extra: 367 / 333,
  18730. bottom: 0.005
  18731. }
  18732. },
  18733. frontGear: {
  18734. height: math.unit(6 + 2 / 12, "feet"),
  18735. weight: math.unit(173, "lb"),
  18736. name: "Front (Gear)",
  18737. image: {
  18738. source: "./media/characters/luca-cervicum/front-gear.svg",
  18739. extra: 377 / 333,
  18740. bottom: 0.006
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(6 + 2 / 12, "feet"),
  18748. default: true
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(6 + 1 / 12, "feet"),
  18757. weight: math.unit(304, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/oliver/front.svg",
  18761. extra: 157 / 143,
  18762. bottom: 0.08
  18763. }
  18764. },
  18765. },
  18766. [
  18767. {
  18768. name: "Normal",
  18769. height: math.unit(6 + 1 / 12, "feet"),
  18770. default: true
  18771. },
  18772. ]
  18773. ))
  18774. characterMakers.push(() => makeCharacter(
  18775. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18776. {
  18777. front: {
  18778. height: math.unit(5 + 7 / 12, "feet"),
  18779. weight: math.unit(140, "lb"),
  18780. name: "Front",
  18781. image: {
  18782. source: "./media/characters/shane/front.svg",
  18783. extra: 304 / 289,
  18784. bottom: 0.005
  18785. }
  18786. },
  18787. },
  18788. [
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(5 + 7 / 12, "feet"),
  18792. default: true
  18793. },
  18794. ]
  18795. ))
  18796. characterMakers.push(() => makeCharacter(
  18797. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18798. {
  18799. front: {
  18800. height: math.unit(5 + 9 / 12, "feet"),
  18801. weight: math.unit(178, "lb"),
  18802. name: "Front",
  18803. image: {
  18804. source: "./media/characters/shin/front.svg",
  18805. extra: 159 / 151,
  18806. bottom: 0.015
  18807. }
  18808. },
  18809. },
  18810. [
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(5 + 9 / 12, "feet"),
  18814. default: true
  18815. },
  18816. ]
  18817. ))
  18818. characterMakers.push(() => makeCharacter(
  18819. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18820. {
  18821. front: {
  18822. height: math.unit(5 + 10 / 12, "feet"),
  18823. weight: math.unit(168, "lb"),
  18824. name: "Front",
  18825. image: {
  18826. source: "./media/characters/xerxes/front.svg",
  18827. extra: 282 / 260,
  18828. bottom: 0.045
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(5 + 10 / 12, "feet"),
  18836. default: true
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18842. {
  18843. front: {
  18844. height: math.unit(6 + 7 / 12, "feet"),
  18845. weight: math.unit(208, "lb"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/chaska/front.svg",
  18849. extra: 332 / 319,
  18850. bottom: 0.015
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(6 + 7 / 12, "feet"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(5 + 8 / 12, "feet"),
  18867. weight: math.unit(208, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/enuk/front.svg",
  18871. extra: 437 / 406,
  18872. bottom: 0.02
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(5 + 8 / 12, "feet"),
  18880. default: true
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(5 + 10 / 12, "feet"),
  18889. weight: math.unit(252, "lb"),
  18890. name: "Front",
  18891. image: {
  18892. source: "./media/characters/bruun/front.svg",
  18893. extra: 197 / 187,
  18894. bottom: 0.012
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(5 + 10 / 12, "feet"),
  18902. default: true
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(6 + 10 / 12, "feet"),
  18911. weight: math.unit(255, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/alexeev/front.svg",
  18915. extra: 213 / 200,
  18916. bottom: 0.05
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(6 + 10 / 12, "feet"),
  18924. default: true
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(2 + 8 / 12, "feet"),
  18933. weight: math.unit(22, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/evelyn/front.svg",
  18937. extra: 208 / 180
  18938. }
  18939. },
  18940. },
  18941. [
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(2 + 8 / 12, "feet"),
  18945. default: true
  18946. },
  18947. ]
  18948. ))
  18949. characterMakers.push(() => makeCharacter(
  18950. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18951. {
  18952. front: {
  18953. height: math.unit(5 + 9 / 12, "feet"),
  18954. weight: math.unit(139, "lb"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/inca/front.svg",
  18958. extra: 294 / 291,
  18959. bottom: 0.03
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(5 + 9 / 12, "feet"),
  18967. default: true
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18973. {
  18974. front: {
  18975. height: math.unit(5 + 1 / 12, "feet"),
  18976. weight: math.unit(84, "lb"),
  18977. name: "Front",
  18978. image: {
  18979. source: "./media/characters/magdalene/front.svg",
  18980. extra: 293 / 273
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(5 + 1 / 12, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(6 + 3 / 12, "feet"),
  18997. weight: math.unit(185, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/mera/front.svg",
  19001. extra: 291 / 277,
  19002. bottom: 0.03
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(6 + 3 / 12, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(6 + 7 / 12, "feet"),
  19019. weight: math.unit(160, "lb"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/ceres/front.svg",
  19023. extra: 1023 / 950,
  19024. bottom: 0.027
  19025. }
  19026. },
  19027. back: {
  19028. height: math.unit(6 + 7 / 12, "feet"),
  19029. weight: math.unit(160, "lb"),
  19030. name: "Back",
  19031. image: {
  19032. source: "./media/characters/ceres/back.svg",
  19033. extra: 1023 / 950
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(6 + 7 / 12, "feet"),
  19041. default: true
  19042. },
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19047. {
  19048. front: {
  19049. height: math.unit(5 + 10 / 12, "feet"),
  19050. weight: math.unit(150, "lb"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/kris/front.svg",
  19054. extra: 885 / 803,
  19055. bottom: 0.03
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(5 + 10 / 12, "feet"),
  19063. default: true
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19069. {
  19070. front: {
  19071. height: math.unit(7, "feet"),
  19072. weight: math.unit(120, "kg"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/taluthus/front.svg",
  19076. extra: 903 / 833,
  19077. bottom: 0.015
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Normal",
  19084. height: math.unit(7, "feet"),
  19085. default: true
  19086. },
  19087. {
  19088. name: "Macro",
  19089. height: math.unit(300, "feet")
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(5 + 9 / 12, "feet"),
  19098. weight: math.unit(145, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/dawn/front.svg",
  19102. extra: 2094 / 2016,
  19103. bottom: 0.025
  19104. }
  19105. },
  19106. back: {
  19107. height: math.unit(5 + 9 / 12, "feet"),
  19108. weight: math.unit(160, "lb"),
  19109. name: "Back",
  19110. image: {
  19111. source: "./media/characters/dawn/back.svg",
  19112. extra: 2112 / 2080,
  19113. bottom: 0.005
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(6 + 7 / 12, "feet"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19127. {
  19128. anthro: {
  19129. height: math.unit(8 + 3 / 12, "feet"),
  19130. weight: math.unit(450, "lb"),
  19131. name: "Anthro",
  19132. image: {
  19133. source: "./media/characters/arador/anthro.svg",
  19134. extra: 1835 / 1718,
  19135. bottom: 0.025
  19136. }
  19137. },
  19138. feral: {
  19139. height: math.unit(4, "feet"),
  19140. weight: math.unit(200, "lb"),
  19141. name: "Feral",
  19142. image: {
  19143. source: "./media/characters/arador/feral.svg",
  19144. extra: 1683 / 1514,
  19145. bottom: 0.07
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(8 + 3 / 12, "feet")
  19153. },
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(82.5, "feet"),
  19157. default: true
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(5 + 10 / 12, "feet"),
  19166. weight: math.unit(125, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/dharsi/front.svg",
  19170. extra: 716 / 630,
  19171. bottom: 0.035
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Nano",
  19178. height: math.unit(100, "nm")
  19179. },
  19180. {
  19181. name: "Micro",
  19182. height: math.unit(2, "inches")
  19183. },
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(5 + 10 / 12, "feet"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Macro",
  19191. height: math.unit(1000, "feet")
  19192. },
  19193. {
  19194. name: "Megamacro",
  19195. height: math.unit(10, "miles")
  19196. },
  19197. {
  19198. name: "Gigamacro",
  19199. height: math.unit(3000, "miles")
  19200. },
  19201. {
  19202. name: "Teramacro",
  19203. height: math.unit(500000, "miles")
  19204. },
  19205. {
  19206. name: "Teramacro+",
  19207. height: math.unit(30, "galaxies")
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(6, "feet"),
  19216. weight: math.unit(150, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/deathy/front.svg",
  19220. extra: 1552 / 1463,
  19221. bottom: 0.025
  19222. }
  19223. },
  19224. side: {
  19225. height: math.unit(6, "feet"),
  19226. weight: math.unit(150, "lb"),
  19227. name: "Side",
  19228. image: {
  19229. source: "./media/characters/deathy/side.svg",
  19230. extra: 1604 / 1455,
  19231. bottom: 0.025
  19232. }
  19233. },
  19234. back: {
  19235. height: math.unit(6, "feet"),
  19236. weight: math.unit(150, "lb"),
  19237. name: "Back",
  19238. image: {
  19239. source: "./media/characters/deathy/back.svg",
  19240. extra: 1580 / 1463,
  19241. bottom: 0.005
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Micro",
  19248. height: math.unit(5, "millimeters")
  19249. },
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(6 + 5 / 12, "feet"),
  19253. default: true
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19259. {
  19260. front: {
  19261. height: math.unit(16, "feet"),
  19262. weight: math.unit(4000, "lb"),
  19263. name: "Front",
  19264. image: {
  19265. source: "./media/characters/juniper/front.svg",
  19266. bottom: 0.04
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(16, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(6, "feet"),
  19283. weight: math.unit(150, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/hipster/front.svg",
  19287. extra: 1312 / 1209,
  19288. bottom: 0.025
  19289. }
  19290. },
  19291. back: {
  19292. height: math.unit(6, "feet"),
  19293. weight: math.unit(150, "lb"),
  19294. name: "Back",
  19295. image: {
  19296. source: "./media/characters/hipster/back.svg",
  19297. extra: 1281 / 1196,
  19298. bottom: 0.01
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Micro",
  19305. height: math.unit(1, "mm")
  19306. },
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(4, "inches"),
  19310. default: true
  19311. },
  19312. {
  19313. name: "Macro",
  19314. height: math.unit(500, "feet")
  19315. },
  19316. {
  19317. name: "Megamacro",
  19318. height: math.unit(1000, "miles")
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(6, "feet"),
  19327. weight: math.unit(150, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/tendirmuldr/front.svg",
  19331. extra: 1878 / 1772,
  19332. bottom: 0.015
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Megamacro",
  19339. height: math.unit(1500, "miles"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19346. {
  19347. front: {
  19348. height: math.unit(14, "feet"),
  19349. weight: math.unit(12000, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/mort/front.svg",
  19353. extra: 365 / 318,
  19354. bottom: 0.01
  19355. }
  19356. },
  19357. side: {
  19358. height: math.unit(14, "feet"),
  19359. weight: math.unit(12000, "lb"),
  19360. name: "Side",
  19361. image: {
  19362. source: "./media/characters/mort/side.svg",
  19363. extra: 365 / 318,
  19364. bottom: 0.052
  19365. },
  19366. default: true
  19367. },
  19368. back: {
  19369. height: math.unit(14, "feet"),
  19370. weight: math.unit(12000, "lb"),
  19371. name: "Back",
  19372. image: {
  19373. source: "./media/characters/mort/back.svg",
  19374. extra: 371 / 332,
  19375. bottom: 0.18
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(14, "feet"),
  19383. default: true
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19389. {
  19390. front: {
  19391. height: math.unit(8, "feet"),
  19392. weight: math.unit(1, "ton"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/lycoa/front.svg",
  19396. extra: 1875 / 1789,
  19397. bottom: 0.022
  19398. }
  19399. },
  19400. back: {
  19401. height: math.unit(8, "feet"),
  19402. weight: math.unit(1, "ton"),
  19403. name: "Back",
  19404. image: {
  19405. source: "./media/characters/lycoa/back.svg",
  19406. extra: 1835 / 1781,
  19407. bottom: 0.03
  19408. }
  19409. },
  19410. head: {
  19411. height: math.unit(2.1, "feet"),
  19412. name: "Head",
  19413. image: {
  19414. source: "./media/characters/lycoa/head.svg"
  19415. }
  19416. },
  19417. tailmaw: {
  19418. height: math.unit(1.9, "feet"),
  19419. name: "Tailmaw",
  19420. image: {
  19421. source: "./media/characters/lycoa/tailmaw.svg"
  19422. }
  19423. },
  19424. tentacles: {
  19425. height: math.unit(2.1, "feet"),
  19426. name: "Tentacles",
  19427. image: {
  19428. source: "./media/characters/lycoa/tentacles.svg"
  19429. }
  19430. },
  19431. dick: {
  19432. height: math.unit(1.73, "feet"),
  19433. name: "Dick",
  19434. image: {
  19435. source: "./media/characters/lycoa/dick.svg"
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(8, "feet"),
  19443. default: true
  19444. },
  19445. {
  19446. name: "Macro",
  19447. height: math.unit(30, "feet")
  19448. },
  19449. ]
  19450. ))
  19451. characterMakers.push(() => makeCharacter(
  19452. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19453. {
  19454. front: {
  19455. height: math.unit(4 + 2 / 12, "feet"),
  19456. weight: math.unit(70, "lb"),
  19457. name: "Front",
  19458. image: {
  19459. source: "./media/characters/naldara/front.svg",
  19460. extra: 841 / 720,
  19461. bottom: 0.04
  19462. }
  19463. },
  19464. naga: {
  19465. height: math.unit(23, "feet"),
  19466. weight: math.unit(15000, "kg"),
  19467. name: "Naga",
  19468. image: {
  19469. source: "./media/characters/naldara/naga.svg",
  19470. extra: 3290 / 2959,
  19471. bottom: 124 / 3432
  19472. }
  19473. },
  19474. },
  19475. [
  19476. {
  19477. name: "Normal",
  19478. height: math.unit(4 + 2 / 12, "feet"),
  19479. default: true
  19480. },
  19481. ]
  19482. ))
  19483. characterMakers.push(() => makeCharacter(
  19484. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19485. {
  19486. front: {
  19487. height: math.unit(13 + 7 / 12, "feet"),
  19488. weight: math.unit(1500, "lb"),
  19489. name: "Front",
  19490. image: {
  19491. source: "./media/characters/briar/front.svg",
  19492. extra: 626 / 596,
  19493. bottom: 0.08
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(13 + 7 / 12, "feet"),
  19501. default: true
  19502. },
  19503. ]
  19504. ))
  19505. characterMakers.push(() => makeCharacter(
  19506. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19507. {
  19508. side: {
  19509. height: math.unit(10, "feet"),
  19510. weight: math.unit(500, "lb"),
  19511. name: "Side",
  19512. image: {
  19513. source: "./media/characters/vanguard/side.svg",
  19514. extra: 502 / 425,
  19515. bottom: 0.087
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(10, "feet"),
  19523. default: true
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19529. {
  19530. front: {
  19531. height: math.unit(7.5, "feet"),
  19532. weight: math.unit(2, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/artemis/front.svg",
  19536. extra: 1192 / 1075,
  19537. bottom: 0.07
  19538. }
  19539. },
  19540. frontNsfw: {
  19541. height: math.unit(7.5, "feet"),
  19542. weight: math.unit(2, "lb"),
  19543. name: "Front (NSFW)",
  19544. image: {
  19545. source: "./media/characters/artemis/front-nsfw.svg",
  19546. extra: 1192 / 1075,
  19547. bottom: 0.07
  19548. }
  19549. },
  19550. frontNsfwer: {
  19551. height: math.unit(7.5, "feet"),
  19552. weight: math.unit(2, "lb"),
  19553. name: "Front (NSFW-er)",
  19554. image: {
  19555. source: "./media/characters/artemis/front-nsfwer.svg",
  19556. extra: 1192 / 1075,
  19557. bottom: 0.07
  19558. }
  19559. },
  19560. side: {
  19561. height: math.unit(7.5, "feet"),
  19562. weight: math.unit(2, "lb"),
  19563. name: "Side",
  19564. image: {
  19565. source: "./media/characters/artemis/side.svg",
  19566. extra: 1192 / 1075,
  19567. bottom: 0.07
  19568. }
  19569. },
  19570. sideNsfw: {
  19571. height: math.unit(7.5, "feet"),
  19572. weight: math.unit(2, "lb"),
  19573. name: "Side (NSFW)",
  19574. image: {
  19575. source: "./media/characters/artemis/side-nsfw.svg",
  19576. extra: 1192 / 1075,
  19577. bottom: 0.07
  19578. }
  19579. },
  19580. sideNsfwer: {
  19581. height: math.unit(7.5, "feet"),
  19582. weight: math.unit(2, "lb"),
  19583. name: "Side (NSFW-er)",
  19584. image: {
  19585. source: "./media/characters/artemis/side-nsfwer.svg",
  19586. extra: 1192 / 1075,
  19587. bottom: 0.07
  19588. }
  19589. },
  19590. maw: {
  19591. height: math.unit(1.1, "feet"),
  19592. name: "Maw",
  19593. image: {
  19594. source: "./media/characters/artemis/maw.svg"
  19595. }
  19596. },
  19597. stomach: {
  19598. height: math.unit(0.95, "feet"),
  19599. name: "Stomach",
  19600. image: {
  19601. source: "./media/characters/artemis/stomach.svg"
  19602. }
  19603. },
  19604. dickCanine: {
  19605. height: math.unit(1, "feet"),
  19606. name: "Dick (Canine)",
  19607. image: {
  19608. source: "./media/characters/artemis/dick-canine.svg"
  19609. }
  19610. },
  19611. dickEquine: {
  19612. height: math.unit(0.85, "feet"),
  19613. name: "Dick (Equine)",
  19614. image: {
  19615. source: "./media/characters/artemis/dick-equine.svg"
  19616. }
  19617. },
  19618. dickExotic: {
  19619. height: math.unit(0.85, "feet"),
  19620. name: "Dick (Exotic)",
  19621. image: {
  19622. source: "./media/characters/artemis/dick-exotic.svg"
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(7.5, "feet"),
  19630. default: true
  19631. },
  19632. {
  19633. name: "Enlarged",
  19634. height: math.unit(12, "feet")
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19640. {
  19641. front: {
  19642. height: math.unit(5 + 3 / 12, "feet"),
  19643. weight: math.unit(160, "lb"),
  19644. name: "Front",
  19645. image: {
  19646. source: "./media/characters/kira/front.svg",
  19647. extra: 906 / 786,
  19648. bottom: 0.01
  19649. }
  19650. },
  19651. back: {
  19652. height: math.unit(5 + 3 / 12, "feet"),
  19653. weight: math.unit(160, "lb"),
  19654. name: "Back",
  19655. image: {
  19656. source: "./media/characters/kira/back.svg",
  19657. extra: 882 / 757,
  19658. bottom: 0.005
  19659. }
  19660. },
  19661. frontDressed: {
  19662. height: math.unit(5 + 3 / 12, "feet"),
  19663. weight: math.unit(160, "lb"),
  19664. name: "Front (Dressed)",
  19665. image: {
  19666. source: "./media/characters/kira/front-dressed.svg",
  19667. extra: 906 / 786,
  19668. bottom: 0.01
  19669. }
  19670. },
  19671. beans: {
  19672. height: math.unit(0.92, "feet"),
  19673. name: "Beans",
  19674. image: {
  19675. source: "./media/characters/kira/beans.svg"
  19676. }
  19677. },
  19678. },
  19679. [
  19680. {
  19681. name: "Normal",
  19682. height: math.unit(5 + 3 / 12, "feet"),
  19683. default: true
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19689. {
  19690. front: {
  19691. height: math.unit(5 + 4 / 12, "feet"),
  19692. weight: math.unit(145, "lb"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/scramble/front.svg",
  19696. extra: 763 / 727,
  19697. bottom: 0.05
  19698. }
  19699. },
  19700. back: {
  19701. height: math.unit(5 + 4 / 12, "feet"),
  19702. weight: math.unit(145, "lb"),
  19703. name: "Back",
  19704. image: {
  19705. source: "./media/characters/scramble/back.svg",
  19706. extra: 826 / 737,
  19707. bottom: 0.002
  19708. }
  19709. },
  19710. },
  19711. [
  19712. {
  19713. name: "Normal",
  19714. height: math.unit(5 + 4 / 12, "feet"),
  19715. default: true
  19716. },
  19717. ]
  19718. ))
  19719. characterMakers.push(() => makeCharacter(
  19720. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19721. {
  19722. side: {
  19723. height: math.unit(6 + 2 / 12, "feet"),
  19724. weight: math.unit(190, "lb"),
  19725. name: "Side",
  19726. image: {
  19727. source: "./media/characters/biscuit/side.svg",
  19728. extra: 858 / 791,
  19729. bottom: 0.044
  19730. }
  19731. },
  19732. },
  19733. [
  19734. {
  19735. name: "Normal",
  19736. height: math.unit(6 + 2 / 12, "feet"),
  19737. default: true
  19738. },
  19739. ]
  19740. ))
  19741. characterMakers.push(() => makeCharacter(
  19742. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19743. {
  19744. front: {
  19745. height: math.unit(5 + 2 / 12, "feet"),
  19746. weight: math.unit(120, "lb"),
  19747. name: "Front",
  19748. image: {
  19749. source: "./media/characters/poffin/front.svg",
  19750. extra: 786 / 680,
  19751. bottom: 0.005
  19752. }
  19753. },
  19754. },
  19755. [
  19756. {
  19757. name: "Normal",
  19758. height: math.unit(5 + 2 / 12, "feet"),
  19759. default: true
  19760. },
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19765. {
  19766. front: {
  19767. height: math.unit(6 + 3 / 12, "feet"),
  19768. weight: math.unit(519, "lb"),
  19769. name: "Front",
  19770. image: {
  19771. source: "./media/characters/dhari/front.svg",
  19772. extra: 1048 / 946,
  19773. bottom: 0.015
  19774. }
  19775. },
  19776. back: {
  19777. height: math.unit(6 + 3 / 12, "feet"),
  19778. weight: math.unit(519, "lb"),
  19779. name: "Back",
  19780. image: {
  19781. source: "./media/characters/dhari/back.svg",
  19782. extra: 1048 / 931,
  19783. bottom: 0.005
  19784. }
  19785. },
  19786. frontDressed: {
  19787. height: math.unit(6 + 3 / 12, "feet"),
  19788. weight: math.unit(519, "lb"),
  19789. name: "Front (Dressed)",
  19790. image: {
  19791. source: "./media/characters/dhari/front-dressed.svg",
  19792. extra: 1713 / 1546,
  19793. bottom: 0.02
  19794. }
  19795. },
  19796. backDressed: {
  19797. height: math.unit(6 + 3 / 12, "feet"),
  19798. weight: math.unit(519, "lb"),
  19799. name: "Back (Dressed)",
  19800. image: {
  19801. source: "./media/characters/dhari/back-dressed.svg",
  19802. extra: 1699 / 1537,
  19803. bottom: 0.01
  19804. }
  19805. },
  19806. maw: {
  19807. height: math.unit(0.95, "feet"),
  19808. name: "Maw",
  19809. image: {
  19810. source: "./media/characters/dhari/maw.svg"
  19811. }
  19812. },
  19813. wereFront: {
  19814. height: math.unit(12 + 8 / 12, "feet"),
  19815. weight: math.unit(4000, "lb"),
  19816. name: "Front (Were)",
  19817. image: {
  19818. source: "./media/characters/dhari/were-front.svg",
  19819. extra: 1065 / 969,
  19820. bottom: 0.015
  19821. }
  19822. },
  19823. wereBack: {
  19824. height: math.unit(12 + 8 / 12, "feet"),
  19825. weight: math.unit(4000, "lb"),
  19826. name: "Back (Were)",
  19827. image: {
  19828. source: "./media/characters/dhari/were-back.svg",
  19829. extra: 1065 / 969,
  19830. bottom: 0.012
  19831. }
  19832. },
  19833. wereMaw: {
  19834. height: math.unit(0.625, "meters"),
  19835. name: "Maw (Were)",
  19836. image: {
  19837. source: "./media/characters/dhari/were-maw.svg"
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "Normal",
  19844. height: math.unit(6 + 3 / 12, "feet"),
  19845. default: true
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19851. {
  19852. anthro: {
  19853. height: math.unit(5 + 7 / 12, "feet"),
  19854. weight: math.unit(175, "lb"),
  19855. name: "Anthro",
  19856. image: {
  19857. source: "./media/characters/rena-dyne/anthro.svg",
  19858. extra: 1849 / 1785,
  19859. bottom: 0.005
  19860. }
  19861. },
  19862. taur: {
  19863. height: math.unit(15 + 6 / 12, "feet"),
  19864. weight: math.unit(8000, "lb"),
  19865. name: "Taur",
  19866. image: {
  19867. source: "./media/characters/rena-dyne/taur.svg",
  19868. extra: 2315 / 2234,
  19869. bottom: 0.033
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Normal",
  19876. height: math.unit(5 + 7 / 12, "feet"),
  19877. default: true
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(8, "feet"),
  19886. weight: math.unit(600, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/weremeep/front.svg",
  19890. extra: 967 / 862,
  19891. bottom: 0.01
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(8, "feet"),
  19899. default: true
  19900. },
  19901. {
  19902. name: "Lorg",
  19903. height: math.unit(12, "feet")
  19904. },
  19905. {
  19906. name: "Oh Lawd She Comin'",
  19907. height: math.unit(20, "feet")
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19913. {
  19914. front: {
  19915. height: math.unit(4, "feet"),
  19916. weight: math.unit(90, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/reza/front.svg",
  19920. extra: 1183 / 1111,
  19921. bottom: 0.017
  19922. }
  19923. },
  19924. back: {
  19925. height: math.unit(4, "feet"),
  19926. weight: math.unit(90, "lb"),
  19927. name: "Back",
  19928. image: {
  19929. source: "./media/characters/reza/back.svg",
  19930. extra: 1183 / 1111,
  19931. bottom: 0.01
  19932. }
  19933. },
  19934. drake: {
  19935. height: math.unit(30, "feet"),
  19936. weight: math.unit(246960, "lb"),
  19937. name: "Drake",
  19938. image: {
  19939. source: "./media/characters/reza/drake.svg",
  19940. extra: 2350 / 2024,
  19941. bottom: 60.7 / 2403
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(4, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19955. {
  19956. side: {
  19957. height: math.unit(15, "feet"),
  19958. weight: math.unit(14, "tons"),
  19959. name: "Side",
  19960. image: {
  19961. source: "./media/characters/athea/side.svg",
  19962. extra: 960 / 540,
  19963. bottom: 0.003
  19964. }
  19965. },
  19966. sitting: {
  19967. height: math.unit(6 * 2.85, "feet"),
  19968. weight: math.unit(14, "tons"),
  19969. name: "Sitting",
  19970. image: {
  19971. source: "./media/characters/athea/sitting.svg",
  19972. extra: 621 / 581,
  19973. bottom: 0.075
  19974. }
  19975. },
  19976. maw: {
  19977. height: math.unit(7.59498031496063, "feet"),
  19978. name: "Maw",
  19979. image: {
  19980. source: "./media/characters/athea/maw.svg"
  19981. }
  19982. },
  19983. },
  19984. [
  19985. {
  19986. name: "Lap Cat",
  19987. height: math.unit(2.5, "feet")
  19988. },
  19989. {
  19990. name: "Minimacro",
  19991. height: math.unit(15, "feet"),
  19992. default: true
  19993. },
  19994. {
  19995. name: "Macro",
  19996. height: math.unit(120, "feet")
  19997. },
  19998. {
  19999. name: "Macro+",
  20000. height: math.unit(640, "feet")
  20001. },
  20002. {
  20003. name: "Colossus",
  20004. height: math.unit(2.2, "miles")
  20005. },
  20006. ]
  20007. ))
  20008. characterMakers.push(() => makeCharacter(
  20009. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20010. {
  20011. front: {
  20012. height: math.unit(8 + 8 / 12, "feet"),
  20013. weight: math.unit(130, "kg"),
  20014. name: "Front",
  20015. image: {
  20016. source: "./media/characters/seroko/front.svg",
  20017. extra: 1385 / 1280,
  20018. bottom: 0.025
  20019. }
  20020. },
  20021. back: {
  20022. height: math.unit(8 + 8 / 12, "feet"),
  20023. weight: math.unit(130, "kg"),
  20024. name: "Back",
  20025. image: {
  20026. source: "./media/characters/seroko/back.svg",
  20027. extra: 1369 / 1238,
  20028. bottom: 0.018
  20029. }
  20030. },
  20031. frontDressed: {
  20032. height: math.unit(8 + 8 / 12, "feet"),
  20033. weight: math.unit(130, "kg"),
  20034. name: "Front (Dressed)",
  20035. image: {
  20036. source: "./media/characters/seroko/front-dressed.svg",
  20037. extra: 1366 / 1275,
  20038. bottom: 0.03
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(8 + 8 / 12, "feet"),
  20046. default: true
  20047. },
  20048. ]
  20049. ))
  20050. characterMakers.push(() => makeCharacter(
  20051. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20052. {
  20053. front: {
  20054. height: math.unit(5.5, "feet"),
  20055. weight: math.unit(160, "lb"),
  20056. name: "Front",
  20057. image: {
  20058. source: "./media/characters/quatzi/front.svg",
  20059. extra: 2346 / 2242,
  20060. bottom: 0.015
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(5.5, "feet"),
  20068. default: true
  20069. },
  20070. {
  20071. name: "Big",
  20072. height: math.unit(7.7, "feet")
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(5 + 11 / 12, "feet"),
  20081. weight: math.unit(180, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/sen/front.svg",
  20085. extra: 1321 / 1254,
  20086. bottom: 0.015
  20087. }
  20088. },
  20089. side: {
  20090. height: math.unit(5 + 11 / 12, "feet"),
  20091. weight: math.unit(180, "lb"),
  20092. name: "Side",
  20093. image: {
  20094. source: "./media/characters/sen/side.svg",
  20095. extra: 1321 / 1254,
  20096. bottom: 0.007
  20097. }
  20098. },
  20099. back: {
  20100. height: math.unit(5 + 11 / 12, "feet"),
  20101. weight: math.unit(180, "lb"),
  20102. name: "Back",
  20103. image: {
  20104. source: "./media/characters/sen/back.svg",
  20105. extra: 1321 / 1254
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(5 + 11 / 12, "feet"),
  20113. default: true
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(166.6, "cm"),
  20122. weight: math.unit(66.6, "kg"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/fruity/front.svg",
  20126. extra: 1510 / 1386,
  20127. bottom: 0.04
  20128. }
  20129. },
  20130. back: {
  20131. height: math.unit(166.6, "cm"),
  20132. weight: math.unit(66.6, "lb"),
  20133. name: "Back",
  20134. image: {
  20135. source: "./media/characters/fruity/back.svg",
  20136. extra: 1563 / 1435,
  20137. bottom: 0.005
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(166.6, "cm"),
  20145. default: true
  20146. },
  20147. {
  20148. name: "Demonic",
  20149. height: math.unit(166.6, "feet")
  20150. },
  20151. ]
  20152. ))
  20153. characterMakers.push(() => makeCharacter(
  20154. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20155. {
  20156. side: {
  20157. height: math.unit(10, "feet"),
  20158. weight: math.unit(500, "lb"),
  20159. name: "Side",
  20160. image: {
  20161. source: "./media/characters/zost/side.svg",
  20162. extra: 966 / 880,
  20163. bottom: 0.075
  20164. }
  20165. },
  20166. mawFront: {
  20167. height: math.unit(1.08, "meters"),
  20168. name: "Maw (Front)",
  20169. image: {
  20170. source: "./media/characters/zost/maw-front.svg"
  20171. }
  20172. },
  20173. mawSide: {
  20174. height: math.unit(2.66, "feet"),
  20175. name: "Maw (Side)",
  20176. image: {
  20177. source: "./media/characters/zost/maw-side.svg"
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(10, "feet"),
  20185. default: true
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20191. {
  20192. front: {
  20193. height: math.unit(5 + 4 / 12, "feet"),
  20194. weight: math.unit(120, "lb"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/luci/front.svg",
  20198. extra: 1985 / 1884,
  20199. bottom: 0.04
  20200. }
  20201. },
  20202. back: {
  20203. height: math.unit(5 + 4 / 12, "feet"),
  20204. weight: math.unit(120, "lb"),
  20205. name: "Back",
  20206. image: {
  20207. source: "./media/characters/luci/back.svg",
  20208. extra: 1892 / 1791,
  20209. bottom: 0.002
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Normal",
  20216. height: math.unit(5 + 4 / 12, "feet"),
  20217. default: true
  20218. },
  20219. ]
  20220. ))
  20221. characterMakers.push(() => makeCharacter(
  20222. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20223. {
  20224. front: {
  20225. height: math.unit(1500, "feet"),
  20226. weight: math.unit(3.8e6, "tons"),
  20227. name: "Front",
  20228. image: {
  20229. source: "./media/characters/2th/front.svg",
  20230. extra: 3489 / 3350,
  20231. bottom: 0.1
  20232. }
  20233. },
  20234. foot: {
  20235. height: math.unit(461, "feet"),
  20236. name: "Foot",
  20237. image: {
  20238. source: "./media/characters/2th/foot.svg"
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "\"Micro\"",
  20245. height: math.unit(15 + 7 / 12, "feet")
  20246. },
  20247. {
  20248. name: "Normal",
  20249. height: math.unit(1500, "feet"),
  20250. default: true
  20251. },
  20252. {
  20253. name: "Macro",
  20254. height: math.unit(5000, "feet")
  20255. },
  20256. {
  20257. name: "Megamacro",
  20258. height: math.unit(15, "miles")
  20259. },
  20260. {
  20261. name: "Gigamacro",
  20262. height: math.unit(4000, "miles")
  20263. },
  20264. {
  20265. name: "Galactic",
  20266. height: math.unit(50, "AU")
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(5 + 6 / 12, "feet"),
  20275. weight: math.unit(220, "lb"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/amethyst/front.svg",
  20279. extra: 2078 / 2040,
  20280. bottom: 0.045
  20281. }
  20282. },
  20283. back: {
  20284. height: math.unit(5 + 6 / 12, "feet"),
  20285. weight: math.unit(220, "lb"),
  20286. name: "Back",
  20287. image: {
  20288. source: "./media/characters/amethyst/back.svg",
  20289. extra: 2021 / 1989,
  20290. bottom: 0.02
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(5 + 6 / 12, "feet"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20304. {
  20305. front: {
  20306. height: math.unit(4 + 11 / 12, "feet"),
  20307. weight: math.unit(120, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/yumi-akiyama/front.svg",
  20311. extra: 1327 / 1235,
  20312. bottom: 0.02
  20313. }
  20314. },
  20315. back: {
  20316. height: math.unit(4 + 11 / 12, "feet"),
  20317. weight: math.unit(120, "lb"),
  20318. name: "Back",
  20319. image: {
  20320. source: "./media/characters/yumi-akiyama/back.svg",
  20321. extra: 1287 / 1245,
  20322. bottom: 0.002
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Galactic",
  20329. height: math.unit(50, "galaxies"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Universal",
  20334. height: math.unit(100, "universes")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(8, "feet"),
  20343. weight: math.unit(500, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/rifter-yrmori/front.svg",
  20347. extra: 1180 / 1125,
  20348. bottom: 0.02
  20349. }
  20350. },
  20351. back: {
  20352. height: math.unit(8, "feet"),
  20353. weight: math.unit(500, "lb"),
  20354. name: "Back",
  20355. image: {
  20356. source: "./media/characters/rifter-yrmori/back.svg",
  20357. extra: 1190 / 1145,
  20358. bottom: 0.001
  20359. }
  20360. },
  20361. wings: {
  20362. height: math.unit(7.75, "feet"),
  20363. weight: math.unit(500, "lb"),
  20364. name: "Wings",
  20365. image: {
  20366. source: "./media/characters/rifter-yrmori/wings.svg",
  20367. extra: 1357 / 1285
  20368. }
  20369. },
  20370. maw: {
  20371. height: math.unit(0.8, "feet"),
  20372. name: "Maw",
  20373. image: {
  20374. source: "./media/characters/rifter-yrmori/maw.svg"
  20375. }
  20376. },
  20377. mawfront: {
  20378. height: math.unit(1.45, "feet"),
  20379. name: "Maw (Front)",
  20380. image: {
  20381. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20382. }
  20383. },
  20384. },
  20385. [
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(8, "feet"),
  20389. default: true
  20390. },
  20391. {
  20392. name: "Macro",
  20393. height: math.unit(42, "meters")
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20399. {
  20400. were: {
  20401. height: math.unit(25 + 6 / 12, "feet"),
  20402. weight: math.unit(10000, "lb"),
  20403. name: "Were",
  20404. image: {
  20405. source: "./media/characters/tahajin/were.svg",
  20406. extra: 801 / 770,
  20407. bottom: 0.042
  20408. }
  20409. },
  20410. aquatic: {
  20411. height: math.unit(6 + 4 / 12, "feet"),
  20412. weight: math.unit(160, "lb"),
  20413. name: "Aquatic",
  20414. image: {
  20415. source: "./media/characters/tahajin/aquatic.svg",
  20416. extra: 572 / 542,
  20417. bottom: 0.04
  20418. }
  20419. },
  20420. chow: {
  20421. height: math.unit(8 + 11 / 12, "feet"),
  20422. weight: math.unit(450, "lb"),
  20423. name: "Chow",
  20424. image: {
  20425. source: "./media/characters/tahajin/chow.svg",
  20426. extra: 660 / 640,
  20427. bottom: 0.015
  20428. }
  20429. },
  20430. demiNaga: {
  20431. height: math.unit(6 + 8 / 12, "feet"),
  20432. weight: math.unit(300, "lb"),
  20433. name: "Demi Naga",
  20434. image: {
  20435. source: "./media/characters/tahajin/demi-naga.svg",
  20436. extra: 643 / 615,
  20437. bottom: 0.1
  20438. }
  20439. },
  20440. data: {
  20441. height: math.unit(5, "inches"),
  20442. weight: math.unit(0.1, "lb"),
  20443. name: "Data",
  20444. image: {
  20445. source: "./media/characters/tahajin/data.svg"
  20446. }
  20447. },
  20448. fluu: {
  20449. height: math.unit(5 + 7 / 12, "feet"),
  20450. weight: math.unit(140, "lb"),
  20451. name: "Fluu",
  20452. image: {
  20453. source: "./media/characters/tahajin/fluu.svg",
  20454. extra: 628 / 592,
  20455. bottom: 0.02
  20456. }
  20457. },
  20458. starWarrior: {
  20459. height: math.unit(4 + 5 / 12, "feet"),
  20460. weight: math.unit(50, "lb"),
  20461. name: "Star Warrior",
  20462. image: {
  20463. source: "./media/characters/tahajin/star-warrior.svg"
  20464. }
  20465. },
  20466. },
  20467. [
  20468. {
  20469. name: "Normal",
  20470. height: math.unit(25 + 6 / 12, "feet"),
  20471. default: true
  20472. },
  20473. ]
  20474. ))
  20475. characterMakers.push(() => makeCharacter(
  20476. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20477. {
  20478. front: {
  20479. height: math.unit(8, "feet"),
  20480. weight: math.unit(350, "lb"),
  20481. name: "Front",
  20482. image: {
  20483. source: "./media/characters/gabira/front.svg",
  20484. extra: 608 / 580,
  20485. bottom: 0.03
  20486. }
  20487. },
  20488. back: {
  20489. height: math.unit(8, "feet"),
  20490. weight: math.unit(350, "lb"),
  20491. name: "Back",
  20492. image: {
  20493. source: "./media/characters/gabira/back.svg",
  20494. extra: 608 / 580,
  20495. bottom: 0.03
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(8, "feet"),
  20503. default: true
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20509. {
  20510. front: {
  20511. height: math.unit(5 + 3 / 12, "feet"),
  20512. weight: math.unit(137, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/sasha-katraine/front.svg",
  20516. bottom: 0.045
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Micro",
  20523. height: math.unit(5, "inches")
  20524. },
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(5 + 3 / 12, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20534. {
  20535. side: {
  20536. height: math.unit(4, "inches"),
  20537. weight: math.unit(200, "grams"),
  20538. name: "Side",
  20539. image: {
  20540. source: "./media/characters/der/side.svg",
  20541. extra: 719 / 400,
  20542. bottom: 30.6 / 749.9187
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Micro",
  20549. height: math.unit(4, "inches"),
  20550. default: true
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20556. {
  20557. side: {
  20558. height: math.unit(30, "meters"),
  20559. weight: math.unit(700, "tonnes"),
  20560. name: "Side",
  20561. image: {
  20562. source: "./media/characters/fixerdragon/side.svg",
  20563. extra: (1293.0514 - 116.03) / 1106.86,
  20564. bottom: 116.03 / 1293.0514
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Planck",
  20571. height: math.unit(1.6e-35, "meters")
  20572. },
  20573. {
  20574. name: "Micro",
  20575. height: math.unit(0.4, "meters")
  20576. },
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(30, "meters"),
  20580. default: true
  20581. },
  20582. {
  20583. name: "Megamacro",
  20584. height: math.unit(1.2, "megameters")
  20585. },
  20586. {
  20587. name: "Teramacro",
  20588. height: math.unit(130, "terameters")
  20589. },
  20590. {
  20591. name: "Yottamacro",
  20592. height: math.unit(6200, "yottameters")
  20593. },
  20594. ]
  20595. ));
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20598. {
  20599. front: {
  20600. height: math.unit(8, "feet"),
  20601. weight: math.unit(250, "lb"),
  20602. name: "Front",
  20603. image: {
  20604. source: "./media/characters/kite/front.svg",
  20605. extra: 2796 / 2659,
  20606. bottom: 0.002
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Normal",
  20613. height: math.unit(8, "feet"),
  20614. default: true
  20615. },
  20616. {
  20617. name: "Macro",
  20618. height: math.unit(360, "feet")
  20619. },
  20620. {
  20621. name: "Megamacro",
  20622. height: math.unit(1500, "feet")
  20623. },
  20624. ]
  20625. ))
  20626. characterMakers.push(() => makeCharacter(
  20627. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20628. {
  20629. front: {
  20630. height: math.unit(5 + 10 / 12, "feet"),
  20631. weight: math.unit(150, "lb"),
  20632. name: "Front",
  20633. image: {
  20634. source: "./media/characters/poojawa-vynar/front.svg",
  20635. extra: (1506.1547 - 55) / 1356.6,
  20636. bottom: 55 / 1506.1547
  20637. }
  20638. },
  20639. frontTailless: {
  20640. height: math.unit(5 + 10 / 12, "feet"),
  20641. weight: math.unit(150, "lb"),
  20642. name: "Front (Tailless)",
  20643. image: {
  20644. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20645. extra: (1506.1547 - 55) / 1356.6,
  20646. bottom: 55 / 1506.1547
  20647. }
  20648. },
  20649. },
  20650. [
  20651. {
  20652. name: "Normal",
  20653. height: math.unit(5 + 10 / 12, "feet"),
  20654. default: true
  20655. },
  20656. ]
  20657. ))
  20658. characterMakers.push(() => makeCharacter(
  20659. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20660. {
  20661. front: {
  20662. height: math.unit(293, "meters"),
  20663. weight: math.unit(70400, "tons"),
  20664. name: "Front",
  20665. image: {
  20666. source: "./media/characters/violette/front.svg",
  20667. extra: 1227 / 1180,
  20668. bottom: 0.005
  20669. }
  20670. },
  20671. back: {
  20672. height: math.unit(293, "meters"),
  20673. weight: math.unit(70400, "tons"),
  20674. name: "Back",
  20675. image: {
  20676. source: "./media/characters/violette/back.svg",
  20677. extra: 1227 / 1180,
  20678. bottom: 0.005
  20679. }
  20680. },
  20681. },
  20682. [
  20683. {
  20684. name: "Macro",
  20685. height: math.unit(293, "meters"),
  20686. default: true
  20687. },
  20688. ]
  20689. ))
  20690. characterMakers.push(() => makeCharacter(
  20691. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20692. {
  20693. front: {
  20694. height: math.unit(1050, "feet"),
  20695. weight: math.unit(200000, "tons"),
  20696. name: "Front",
  20697. image: {
  20698. source: "./media/characters/alessandra/front.svg",
  20699. extra: 960 / 912,
  20700. bottom: 0.06
  20701. }
  20702. },
  20703. },
  20704. [
  20705. {
  20706. name: "Macro",
  20707. height: math.unit(1050, "feet")
  20708. },
  20709. {
  20710. name: "Macro+",
  20711. height: math.unit(900, "meters"),
  20712. default: true
  20713. },
  20714. ]
  20715. ))
  20716. characterMakers.push(() => makeCharacter(
  20717. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20718. {
  20719. front: {
  20720. height: math.unit(5, "feet"),
  20721. weight: math.unit(187, "lb"),
  20722. name: "Front",
  20723. image: {
  20724. source: "./media/characters/person/front.svg",
  20725. extra: 3087 / 2945,
  20726. bottom: 91 / 3181
  20727. }
  20728. },
  20729. },
  20730. [
  20731. {
  20732. name: "Micro",
  20733. height: math.unit(3, "inches")
  20734. },
  20735. {
  20736. name: "Normal",
  20737. height: math.unit(5, "feet"),
  20738. default: true
  20739. },
  20740. {
  20741. name: "Macro",
  20742. height: math.unit(90, "feet")
  20743. },
  20744. {
  20745. name: "Max Size",
  20746. height: math.unit(280, "feet")
  20747. },
  20748. ]
  20749. ))
  20750. characterMakers.push(() => makeCharacter(
  20751. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20752. {
  20753. front: {
  20754. height: math.unit(4.5, "meters"),
  20755. weight: math.unit(3200, "lb"),
  20756. name: "Front",
  20757. image: {
  20758. source: "./media/characters/ty/front.svg",
  20759. extra: 1038 / 960,
  20760. bottom: 31.156 / 1068
  20761. }
  20762. },
  20763. back: {
  20764. height: math.unit(4.5, "meters"),
  20765. weight: math.unit(3200, "lb"),
  20766. name: "Back",
  20767. image: {
  20768. source: "./media/characters/ty/back.svg",
  20769. extra: 1044 / 966,
  20770. bottom: 7.48 / 1049
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(4.5, "meters"),
  20778. default: true
  20779. },
  20780. ]
  20781. ))
  20782. characterMakers.push(() => makeCharacter(
  20783. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20784. {
  20785. front: {
  20786. height: math.unit(5 + 4 / 12, "feet"),
  20787. weight: math.unit(115, "lb"),
  20788. name: "Front",
  20789. image: {
  20790. source: "./media/characters/rocky/front.svg",
  20791. extra: 1012 / 975,
  20792. bottom: 54 / 1066
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Normal",
  20799. height: math.unit(5 + 4 / 12, "feet"),
  20800. default: true
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20806. {
  20807. upright: {
  20808. height: math.unit(6, "meters"),
  20809. weight: math.unit(4000, "kg"),
  20810. name: "Upright",
  20811. image: {
  20812. source: "./media/characters/ruin/upright.svg",
  20813. extra: 668 / 661,
  20814. bottom: 42 / 799.8396
  20815. }
  20816. },
  20817. },
  20818. [
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(6, "meters"),
  20822. default: true
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20828. {
  20829. front: {
  20830. height: math.unit(5, "feet"),
  20831. weight: math.unit(106, "lb"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/robin/front.svg",
  20835. extra: 862 / 799,
  20836. bottom: 42.4 / 914.8856
  20837. }
  20838. },
  20839. },
  20840. [
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(5, "feet"),
  20844. default: true
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20850. {
  20851. side: {
  20852. height: math.unit(3, "feet"),
  20853. weight: math.unit(225, "lb"),
  20854. name: "Side",
  20855. image: {
  20856. source: "./media/characters/saian/side.svg",
  20857. extra: 566 / 356,
  20858. bottom: 79.7 / 643
  20859. }
  20860. },
  20861. maw: {
  20862. height: math.unit(2.85, "feet"),
  20863. name: "Maw",
  20864. image: {
  20865. source: "./media/characters/saian/maw.svg"
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(3, "feet"),
  20873. default: true
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20879. {
  20880. side: {
  20881. height: math.unit(8, "feet"),
  20882. weight: math.unit(300, "lb"),
  20883. name: "Side",
  20884. image: {
  20885. source: "./media/characters/equus-silvermane/side.svg",
  20886. extra: 2176 / 2050,
  20887. bottom: 65.7 / 2245
  20888. }
  20889. },
  20890. front: {
  20891. height: math.unit(8, "feet"),
  20892. weight: math.unit(300, "lb"),
  20893. name: "Front",
  20894. image: {
  20895. source: "./media/characters/equus-silvermane/front.svg",
  20896. extra: 4633 / 4400,
  20897. bottom: 71.3 / 4706.915
  20898. }
  20899. },
  20900. sideStepping: {
  20901. height: math.unit(8, "feet"),
  20902. weight: math.unit(300, "lb"),
  20903. name: "Side (Stepping)",
  20904. image: {
  20905. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20906. extra: 1968 / 1860,
  20907. bottom: 16.4 / 1989
  20908. }
  20909. },
  20910. },
  20911. [
  20912. {
  20913. name: "Normal",
  20914. height: math.unit(8, "feet")
  20915. },
  20916. {
  20917. name: "Minimacro",
  20918. height: math.unit(75, "feet"),
  20919. default: true
  20920. },
  20921. {
  20922. name: "Macro",
  20923. height: math.unit(150, "feet")
  20924. },
  20925. {
  20926. name: "Macro+",
  20927. height: math.unit(1000, "feet")
  20928. },
  20929. {
  20930. name: "Megamacro",
  20931. height: math.unit(1, "mile")
  20932. },
  20933. ]
  20934. ))
  20935. characterMakers.push(() => makeCharacter(
  20936. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20937. {
  20938. side: {
  20939. height: math.unit(20, "feet"),
  20940. weight: math.unit(30000, "kg"),
  20941. name: "Side",
  20942. image: {
  20943. source: "./media/characters/windar/side.svg",
  20944. extra: 1491 / 1248,
  20945. bottom: 82.56 / 1568
  20946. }
  20947. },
  20948. },
  20949. [
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(20, "feet"),
  20953. default: true
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20959. {
  20960. side: {
  20961. height: math.unit(15.66, "feet"),
  20962. weight: math.unit(150, "lb"),
  20963. name: "Side",
  20964. image: {
  20965. source: "./media/characters/melody/side.svg",
  20966. extra: 1097 / 944,
  20967. bottom: 11.8 / 1109
  20968. }
  20969. },
  20970. sideOutfit: {
  20971. height: math.unit(15.66, "feet"),
  20972. weight: math.unit(150, "lb"),
  20973. name: "Side (Outfit)",
  20974. image: {
  20975. source: "./media/characters/melody/side-outfit.svg",
  20976. extra: 1097 / 944,
  20977. bottom: 11.8 / 1109
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(15.66, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20991. {
  20992. front: {
  20993. height: math.unit(8, "feet"),
  20994. weight: math.unit(325, "lb"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/windera/front.svg",
  20998. extra: 3180 / 2845,
  20999. bottom: 178 / 3365
  21000. }
  21001. },
  21002. },
  21003. [
  21004. {
  21005. name: "Normal",
  21006. height: math.unit(8, "feet"),
  21007. default: true
  21008. },
  21009. ]
  21010. ))
  21011. characterMakers.push(() => makeCharacter(
  21012. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21013. {
  21014. front: {
  21015. height: math.unit(28.75, "feet"),
  21016. weight: math.unit(2000, "kg"),
  21017. name: "Front",
  21018. image: {
  21019. source: "./media/characters/sonear/front.svg",
  21020. extra: 1041.1 / 964.9,
  21021. bottom: 53.7 / 1096.6
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(28.75, "feet"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21035. {
  21036. side: {
  21037. height: math.unit(25.5, "feet"),
  21038. weight: math.unit(23000, "kg"),
  21039. name: "Side",
  21040. image: {
  21041. source: "./media/characters/kanara/side.svg"
  21042. }
  21043. },
  21044. },
  21045. [
  21046. {
  21047. name: "Normal",
  21048. height: math.unit(25.5, "feet"),
  21049. default: true
  21050. },
  21051. ]
  21052. ))
  21053. characterMakers.push(() => makeCharacter(
  21054. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21055. {
  21056. side: {
  21057. height: math.unit(10, "feet"),
  21058. weight: math.unit(1000, "kg"),
  21059. name: "Side",
  21060. image: {
  21061. source: "./media/characters/ereus/side.svg",
  21062. extra: 1157 / 959,
  21063. bottom: 153 / 1312.5
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(10, "feet"),
  21071. default: true
  21072. },
  21073. ]
  21074. ))
  21075. characterMakers.push(() => makeCharacter(
  21076. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21077. {
  21078. side: {
  21079. height: math.unit(4.5, "feet"),
  21080. weight: math.unit(500, "lb"),
  21081. name: "Side",
  21082. image: {
  21083. source: "./media/characters/e-ter/side.svg",
  21084. extra: 1550 / 1248,
  21085. bottom: 146 / 1694
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Normal",
  21092. height: math.unit(4.5, "feet"),
  21093. default: true
  21094. },
  21095. ]
  21096. ))
  21097. characterMakers.push(() => makeCharacter(
  21098. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21099. {
  21100. side: {
  21101. height: math.unit(9.7, "feet"),
  21102. weight: math.unit(4000, "kg"),
  21103. name: "Side",
  21104. image: {
  21105. source: "./media/characters/yamie/side.svg"
  21106. }
  21107. },
  21108. },
  21109. [
  21110. {
  21111. name: "Normal",
  21112. height: math.unit(9.7, "feet"),
  21113. default: true
  21114. },
  21115. ]
  21116. ))
  21117. characterMakers.push(() => makeCharacter(
  21118. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21119. {
  21120. front: {
  21121. height: math.unit(50, "feet"),
  21122. weight: math.unit(50000, "kg"),
  21123. name: "Front",
  21124. image: {
  21125. source: "./media/characters/anders/front.svg",
  21126. extra: 570 / 539,
  21127. bottom: 14.7 / 586.7
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Large",
  21134. height: math.unit(50, "feet")
  21135. },
  21136. {
  21137. name: "Macro",
  21138. height: math.unit(2000, "feet"),
  21139. default: true
  21140. },
  21141. {
  21142. name: "Megamacro",
  21143. height: math.unit(12, "miles")
  21144. },
  21145. ]
  21146. ))
  21147. characterMakers.push(() => makeCharacter(
  21148. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21149. {
  21150. front: {
  21151. height: math.unit(7 + 2 / 12, "feet"),
  21152. weight: math.unit(300, "lb"),
  21153. name: "Front",
  21154. image: {
  21155. source: "./media/characters/reban/front.svg",
  21156. extra: 516 / 487,
  21157. bottom: 42.82 / 558.356
  21158. }
  21159. },
  21160. dick: {
  21161. height: math.unit(7 / 5, "feet"),
  21162. name: "Dick",
  21163. image: {
  21164. source: "./media/characters/reban/dick.svg"
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Natural Height",
  21171. height: math.unit(7 + 2 / 12, "feet")
  21172. },
  21173. {
  21174. name: "Macro",
  21175. height: math.unit(500, "feet"),
  21176. default: true
  21177. },
  21178. {
  21179. name: "Canon Height",
  21180. height: math.unit(50, "AU")
  21181. },
  21182. ]
  21183. ))
  21184. characterMakers.push(() => makeCharacter(
  21185. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21186. {
  21187. front: {
  21188. height: math.unit(6, "feet"),
  21189. weight: math.unit(150, "lb"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/terrance-keayes/front.svg",
  21193. extra: 1.005,
  21194. bottom: 151 / 1615
  21195. }
  21196. },
  21197. side: {
  21198. height: math.unit(6, "feet"),
  21199. weight: math.unit(150, "lb"),
  21200. name: "Side",
  21201. image: {
  21202. source: "./media/characters/terrance-keayes/side.svg",
  21203. extra: 1.005,
  21204. bottom: 129.4 / 1544
  21205. }
  21206. },
  21207. back: {
  21208. height: math.unit(6, "feet"),
  21209. weight: math.unit(150, "lb"),
  21210. name: "Back",
  21211. image: {
  21212. source: "./media/characters/terrance-keayes/back.svg",
  21213. extra: 1.005,
  21214. bottom: 58.4 / 1557.3
  21215. }
  21216. },
  21217. dick: {
  21218. height: math.unit(6 * 0.208, "feet"),
  21219. name: "Dick",
  21220. image: {
  21221. source: "./media/characters/terrance-keayes/dick.svg"
  21222. }
  21223. },
  21224. },
  21225. [
  21226. {
  21227. name: "Canon Height",
  21228. height: math.unit(35, "miles"),
  21229. default: true
  21230. },
  21231. ]
  21232. ))
  21233. characterMakers.push(() => makeCharacter(
  21234. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21235. {
  21236. front: {
  21237. height: math.unit(6, "feet"),
  21238. weight: math.unit(150, "lb"),
  21239. name: "Front",
  21240. image: {
  21241. source: "./media/characters/ofelia/front.svg",
  21242. extra: 546 / 541,
  21243. bottom: 39 / 583
  21244. }
  21245. },
  21246. back: {
  21247. height: math.unit(6, "feet"),
  21248. weight: math.unit(150, "lb"),
  21249. name: "Back",
  21250. image: {
  21251. source: "./media/characters/ofelia/back.svg",
  21252. extra: 564 / 559.5,
  21253. bottom: 8.69 / 573.02
  21254. }
  21255. },
  21256. maw: {
  21257. height: math.unit(1, "feet"),
  21258. name: "Maw",
  21259. image: {
  21260. source: "./media/characters/ofelia/maw.svg"
  21261. }
  21262. },
  21263. foot: {
  21264. height: math.unit(1.949, "feet"),
  21265. name: "Foot",
  21266. image: {
  21267. source: "./media/characters/ofelia/foot.svg"
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Canon Height",
  21274. height: math.unit(2000, "miles"),
  21275. default: true
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21281. {
  21282. front: {
  21283. height: math.unit(6, "feet"),
  21284. weight: math.unit(150, "lb"),
  21285. name: "Front",
  21286. image: {
  21287. source: "./media/characters/samuel/front.svg",
  21288. extra: 265 / 258,
  21289. bottom: 2 / 266.1566
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Macro",
  21296. height: math.unit(100, "feet"),
  21297. default: true
  21298. },
  21299. {
  21300. name: "Full Size",
  21301. height: math.unit(1000, "miles")
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21307. {
  21308. front: {
  21309. height: math.unit(6, "feet"),
  21310. weight: math.unit(300, "lb"),
  21311. name: "Front",
  21312. image: {
  21313. source: "./media/characters/beishir-kiel/front.svg",
  21314. extra: 569 / 547,
  21315. bottom: 41.9 / 609
  21316. }
  21317. },
  21318. maw: {
  21319. height: math.unit(6 * 0.202, "feet"),
  21320. name: "Maw",
  21321. image: {
  21322. source: "./media/characters/beishir-kiel/maw.svg"
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Macro",
  21329. height: math.unit(300, "feet"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21336. {
  21337. front: {
  21338. height: math.unit(5 + 8 / 12, "feet"),
  21339. weight: math.unit(120, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/logan-grey/front.svg",
  21343. extra: 2539 / 2393,
  21344. bottom: 97.6 / 2636.37
  21345. }
  21346. },
  21347. frontAlt: {
  21348. height: math.unit(5 + 8 / 12, "feet"),
  21349. weight: math.unit(120, "lb"),
  21350. name: "Front (Alt)",
  21351. image: {
  21352. source: "./media/characters/logan-grey/front-alt.svg",
  21353. extra: 958 / 893,
  21354. bottom: 15 / 970.768
  21355. }
  21356. },
  21357. back: {
  21358. height: math.unit(5 + 8 / 12, "feet"),
  21359. weight: math.unit(120, "lb"),
  21360. name: "Back",
  21361. image: {
  21362. source: "./media/characters/logan-grey/back.svg",
  21363. extra: 958 / 893,
  21364. bottom: 2.1881 / 970.9788
  21365. }
  21366. },
  21367. dick: {
  21368. height: math.unit(1.437, "feet"),
  21369. name: "Dick",
  21370. image: {
  21371. source: "./media/characters/logan-grey/dick.svg"
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(5 + 8 / 12, "feet")
  21379. },
  21380. {
  21381. name: "The 500 Foot Femboy",
  21382. height: math.unit(500, "feet"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Megmacro",
  21387. height: math.unit(20, "miles")
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21393. {
  21394. front: {
  21395. height: math.unit(8 + 2 / 12, "feet"),
  21396. weight: math.unit(275, "lb"),
  21397. name: "Front",
  21398. image: {
  21399. source: "./media/characters/draganta/front.svg",
  21400. extra: 1177 / 1135,
  21401. bottom: 33.46 / 1212.1
  21402. }
  21403. },
  21404. },
  21405. [
  21406. {
  21407. name: "Normal",
  21408. height: math.unit(8 + 6 / 12, "feet"),
  21409. default: true
  21410. },
  21411. {
  21412. name: "Macro",
  21413. height: math.unit(150, "feet")
  21414. },
  21415. {
  21416. name: "Megamacro",
  21417. height: math.unit(1000, "miles")
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21423. {
  21424. front: {
  21425. height: math.unit(1.72, "m"),
  21426. weight: math.unit(80, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/voski/front.svg",
  21430. extra: 2076.22 / 2022.4,
  21431. bottom: 102.7 / 2177.3866
  21432. }
  21433. },
  21434. frontNsfw: {
  21435. height: math.unit(1.72, "m"),
  21436. weight: math.unit(80, "lb"),
  21437. name: "Front (NSFW)",
  21438. image: {
  21439. source: "./media/characters/voski/front-nsfw.svg",
  21440. extra: 2076.22 / 2022.4,
  21441. bottom: 102.7 / 2177.3866
  21442. }
  21443. },
  21444. back: {
  21445. height: math.unit(1.72, "m"),
  21446. weight: math.unit(80, "lb"),
  21447. name: "Back",
  21448. image: {
  21449. source: "./media/characters/voski/back.svg",
  21450. extra: 2104 / 2051,
  21451. bottom: 10.45 / 2113.63
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(1.72, "m")
  21459. },
  21460. {
  21461. name: "Macro",
  21462. height: math.unit(55, "m"),
  21463. default: true
  21464. },
  21465. {
  21466. name: "Macro+",
  21467. height: math.unit(300, "m")
  21468. },
  21469. {
  21470. name: "Macro++",
  21471. height: math.unit(700, "m")
  21472. },
  21473. {
  21474. name: "Macro+++",
  21475. height: math.unit(4500, "m")
  21476. },
  21477. {
  21478. name: "Macro++++",
  21479. height: math.unit(45, "km")
  21480. },
  21481. {
  21482. name: "Macro+++++",
  21483. height: math.unit(1220, "km")
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(2.3, "m"),
  21492. weight: math.unit(304, "kg"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/icowom-lee/front.svg",
  21496. extra: 985 / 955,
  21497. bottom: 25.4 / 1012
  21498. }
  21499. },
  21500. fronttentacles: {
  21501. height: math.unit(2.3, "m"),
  21502. weight: math.unit(304, "kg"),
  21503. name: "Front-tentacles",
  21504. image: {
  21505. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21506. extra: 985 / 955,
  21507. bottom: 25.4 / 1012
  21508. }
  21509. },
  21510. back: {
  21511. height: math.unit(2.3, "m"),
  21512. weight: math.unit(304, "kg"),
  21513. name: "Back",
  21514. image: {
  21515. source: "./media/characters/icowom-lee/back.svg",
  21516. extra: 975 / 954,
  21517. bottom: 9.5 / 985
  21518. }
  21519. },
  21520. backtentacles: {
  21521. height: math.unit(2.3, "m"),
  21522. weight: math.unit(304, "kg"),
  21523. name: "Back-tentacles",
  21524. image: {
  21525. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21526. extra: 975 / 954,
  21527. bottom: 9.5 / 985
  21528. }
  21529. },
  21530. frontDressed: {
  21531. height: math.unit(2.3, "m"),
  21532. weight: math.unit(304, "kg"),
  21533. name: "Front (Dressed)",
  21534. image: {
  21535. source: "./media/characters/icowom-lee/front-dressed.svg",
  21536. extra: 3076 / 2933,
  21537. bottom: 51.4 / 3125.1889
  21538. }
  21539. },
  21540. rump: {
  21541. height: math.unit(0.776, "meters"),
  21542. name: "Rump",
  21543. image: {
  21544. source: "./media/characters/icowom-lee/rump.svg"
  21545. }
  21546. },
  21547. genitals: {
  21548. height: math.unit(0.78, "meters"),
  21549. name: "Genitals",
  21550. image: {
  21551. source: "./media/characters/icowom-lee/genitals.svg"
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Normal",
  21558. height: math.unit(2.3, "meters"),
  21559. default: true
  21560. },
  21561. {
  21562. name: "Macro",
  21563. height: math.unit(94, "meters"),
  21564. default: true
  21565. },
  21566. ]
  21567. ))
  21568. characterMakers.push(() => makeCharacter(
  21569. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21570. {
  21571. front: {
  21572. height: math.unit(22, "meters"),
  21573. weight: math.unit(21000, "kg"),
  21574. name: "Front",
  21575. image: {
  21576. source: "./media/characters/shock-diamond/front.svg",
  21577. extra: 2204 / 2053,
  21578. bottom: 65 / 2239.47
  21579. }
  21580. },
  21581. frontNude: {
  21582. height: math.unit(22, "meters"),
  21583. weight: math.unit(21000, "kg"),
  21584. name: "Front (Nude)",
  21585. image: {
  21586. source: "./media/characters/shock-diamond/front-nude.svg",
  21587. extra: 2514 / 2285,
  21588. bottom: 13 / 2527.56
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(3, "meters")
  21596. },
  21597. {
  21598. name: "Macro",
  21599. height: math.unit(22, "meters"),
  21600. default: true
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21606. {
  21607. front: {
  21608. height: math.unit(5 + 4 / 12, "feet"),
  21609. weight: math.unit(120, "lb"),
  21610. name: "Front",
  21611. image: {
  21612. source: "./media/characters/rory/front.svg",
  21613. extra: 589 / 556,
  21614. bottom: 45.7 / 635.76
  21615. }
  21616. },
  21617. frontNude: {
  21618. height: math.unit(5 + 4 / 12, "feet"),
  21619. weight: math.unit(120, "lb"),
  21620. name: "Front (Nude)",
  21621. image: {
  21622. source: "./media/characters/rory/front-nude.svg",
  21623. extra: 589 / 556,
  21624. bottom: 45.7 / 635.76
  21625. }
  21626. },
  21627. side: {
  21628. height: math.unit(5 + 4 / 12, "feet"),
  21629. weight: math.unit(120, "lb"),
  21630. name: "Side",
  21631. image: {
  21632. source: "./media/characters/rory/side.svg",
  21633. extra: 597 / 564,
  21634. bottom: 55 / 653
  21635. }
  21636. },
  21637. back: {
  21638. height: math.unit(5 + 4 / 12, "feet"),
  21639. weight: math.unit(120, "lb"),
  21640. name: "Back",
  21641. image: {
  21642. source: "./media/characters/rory/back.svg",
  21643. extra: 620 / 585,
  21644. bottom: 8.86 / 630.43
  21645. }
  21646. },
  21647. dick: {
  21648. height: math.unit(0.86, "feet"),
  21649. name: "Dick",
  21650. image: {
  21651. source: "./media/characters/rory/dick.svg"
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Normal",
  21658. height: math.unit(5 + 4 / 12, "feet"),
  21659. default: true
  21660. },
  21661. {
  21662. name: "Macro",
  21663. height: math.unit(100, "feet")
  21664. },
  21665. {
  21666. name: "Macro+",
  21667. height: math.unit(140, "feet")
  21668. },
  21669. {
  21670. name: "Macro++",
  21671. height: math.unit(300, "feet")
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21677. {
  21678. front: {
  21679. height: math.unit(5 + 9 / 12, "feet"),
  21680. weight: math.unit(190, "lb"),
  21681. name: "Front",
  21682. image: {
  21683. source: "./media/characters/sprisk/front.svg",
  21684. extra: 1225 / 1180,
  21685. bottom: 42.7 / 1266.4
  21686. }
  21687. },
  21688. frontNsfw: {
  21689. height: math.unit(5 + 9 / 12, "feet"),
  21690. weight: math.unit(190, "lb"),
  21691. name: "Front (NSFW)",
  21692. image: {
  21693. source: "./media/characters/sprisk/front-nsfw.svg",
  21694. extra: 1225 / 1180,
  21695. bottom: 42.7 / 1266.4
  21696. }
  21697. },
  21698. back: {
  21699. height: math.unit(5 + 9 / 12, "feet"),
  21700. weight: math.unit(190, "lb"),
  21701. name: "Back",
  21702. image: {
  21703. source: "./media/characters/sprisk/back.svg",
  21704. extra: 1247 / 1200,
  21705. bottom: 5.6 / 1253.04
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Tiny",
  21712. height: math.unit(2, "inches")
  21713. },
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(5 + 9 / 12, "feet"),
  21717. default: true
  21718. },
  21719. {
  21720. name: "Mini Macro",
  21721. height: math.unit(18, "feet")
  21722. },
  21723. {
  21724. name: "Macro",
  21725. height: math.unit(100, "feet")
  21726. },
  21727. {
  21728. name: "MACRO",
  21729. height: math.unit(50, "miles")
  21730. },
  21731. {
  21732. name: "M A C R O",
  21733. height: math.unit(300, "miles")
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21739. {
  21740. side: {
  21741. height: math.unit(15.6, "meters"),
  21742. weight: math.unit(700000, "kg"),
  21743. name: "Side",
  21744. image: {
  21745. source: "./media/characters/bunsen/side.svg",
  21746. extra: 1644 / 358
  21747. }
  21748. },
  21749. foot: {
  21750. height: math.unit(1.611 * 1644 / 358, "meter"),
  21751. name: "Foot",
  21752. image: {
  21753. source: "./media/characters/bunsen/foot.svg"
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Small",
  21760. height: math.unit(10, "feet")
  21761. },
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(15.6, "meters"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(4 + 11 / 12, "feet"),
  21774. weight: math.unit(140, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/sesh/front.svg",
  21778. extra: 3420 / 3231,
  21779. bottom: 72 / 3949.5
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(4 + 11 / 12, "feet")
  21787. },
  21788. {
  21789. name: "Grown",
  21790. height: math.unit(15, "feet"),
  21791. default: true
  21792. },
  21793. {
  21794. name: "Macro",
  21795. height: math.unit(1500, "feet")
  21796. },
  21797. {
  21798. name: "Megamacro",
  21799. height: math.unit(30, "miles")
  21800. },
  21801. {
  21802. name: "Continental",
  21803. height: math.unit(3000, "miles")
  21804. },
  21805. {
  21806. name: "Gravity Mass",
  21807. height: math.unit(300000, "miles")
  21808. },
  21809. {
  21810. name: "Planet Buster",
  21811. height: math.unit(30000000, "miles")
  21812. },
  21813. {
  21814. name: "Big",
  21815. height: math.unit(3000000000, "miles")
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(9, "feet"),
  21824. weight: math.unit(350, "lb"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/pepper/front.svg",
  21828. extra: 1448 / 1312,
  21829. bottom: 9.4 / 1457.88
  21830. }
  21831. },
  21832. back: {
  21833. height: math.unit(9, "feet"),
  21834. weight: math.unit(350, "lb"),
  21835. name: "Back",
  21836. image: {
  21837. source: "./media/characters/pepper/back.svg",
  21838. extra: 1423 / 1300,
  21839. bottom: 4.6 / 1429
  21840. }
  21841. },
  21842. maw: {
  21843. height: math.unit(0.932, "feet"),
  21844. name: "Maw",
  21845. image: {
  21846. source: "./media/characters/pepper/maw.svg"
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(9, "feet"),
  21854. default: true
  21855. },
  21856. ]
  21857. ))
  21858. characterMakers.push(() => makeCharacter(
  21859. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21860. {
  21861. front: {
  21862. height: math.unit(6, "feet"),
  21863. weight: math.unit(150, "lb"),
  21864. name: "Front",
  21865. image: {
  21866. source: "./media/characters/maelstrom/front.svg",
  21867. extra: 2100 / 1883,
  21868. bottom: 94 / 2196.7
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Less Kaiju",
  21875. height: math.unit(200, "feet")
  21876. },
  21877. {
  21878. name: "Kaiju",
  21879. height: math.unit(400, "feet"),
  21880. default: true
  21881. },
  21882. {
  21883. name: "Kaiju-er",
  21884. height: math.unit(600, "feet")
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21890. {
  21891. front: {
  21892. height: math.unit(6 + 5 / 12, "feet"),
  21893. weight: math.unit(180, "lb"),
  21894. name: "Front",
  21895. image: {
  21896. source: "./media/characters/lexir/front.svg",
  21897. extra: 180 / 172,
  21898. bottom: 12 / 192
  21899. }
  21900. },
  21901. back: {
  21902. height: math.unit(6 + 5 / 12, "feet"),
  21903. weight: math.unit(180, "lb"),
  21904. name: "Back",
  21905. image: {
  21906. source: "./media/characters/lexir/back.svg",
  21907. extra: 183.84 / 175.5,
  21908. bottom: 3.1 / 187
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Very Smal",
  21915. height: math.unit(1, "nm")
  21916. },
  21917. {
  21918. name: "Normal",
  21919. height: math.unit(6 + 5 / 12, "feet"),
  21920. default: true
  21921. },
  21922. {
  21923. name: "Macro",
  21924. height: math.unit(1, "mile")
  21925. },
  21926. {
  21927. name: "Megamacro",
  21928. height: math.unit(50, "miles")
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21934. {
  21935. front: {
  21936. height: math.unit(1.5, "meters"),
  21937. weight: math.unit(100, "lb"),
  21938. name: "Front",
  21939. image: {
  21940. source: "./media/characters/maksio/front.svg",
  21941. extra: 1549 / 1531,
  21942. bottom: 123.7 / 1674.5429
  21943. }
  21944. },
  21945. back: {
  21946. height: math.unit(1.5, "meters"),
  21947. weight: math.unit(100, "lb"),
  21948. name: "Back",
  21949. image: {
  21950. source: "./media/characters/maksio/back.svg",
  21951. extra: 1541 / 1509,
  21952. bottom: 97 / 1639
  21953. }
  21954. },
  21955. hand: {
  21956. height: math.unit(0.621, "feet"),
  21957. name: "Hand",
  21958. image: {
  21959. source: "./media/characters/maksio/hand.svg"
  21960. }
  21961. },
  21962. foot: {
  21963. height: math.unit(1.611, "feet"),
  21964. name: "Foot",
  21965. image: {
  21966. source: "./media/characters/maksio/foot.svg"
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Shrunken",
  21973. height: math.unit(10, "cm")
  21974. },
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(150, "cm"),
  21978. default: true
  21979. },
  21980. ]
  21981. ))
  21982. characterMakers.push(() => makeCharacter(
  21983. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21984. {
  21985. front: {
  21986. height: math.unit(100, "feet"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/erza-bear/front.svg",
  21990. extra: 2449 / 2390,
  21991. bottom: 46 / 2494
  21992. }
  21993. },
  21994. back: {
  21995. height: math.unit(100, "feet"),
  21996. name: "Back",
  21997. image: {
  21998. source: "./media/characters/erza-bear/back.svg",
  21999. extra: 2489 / 2430,
  22000. bottom: 85.4 / 2480
  22001. }
  22002. },
  22003. tail: {
  22004. height: math.unit(42, "feet"),
  22005. name: "Tail",
  22006. image: {
  22007. source: "./media/characters/erza-bear/tail.svg"
  22008. }
  22009. },
  22010. tongue: {
  22011. height: math.unit(8, "feet"),
  22012. name: "Tongue",
  22013. image: {
  22014. source: "./media/characters/erza-bear/tongue.svg"
  22015. }
  22016. },
  22017. dick: {
  22018. height: math.unit(10.5, "feet"),
  22019. name: "Dick",
  22020. image: {
  22021. source: "./media/characters/erza-bear/dick.svg"
  22022. }
  22023. },
  22024. dickVertical: {
  22025. height: math.unit(16.9, "feet"),
  22026. name: "Dick (Vertical)",
  22027. image: {
  22028. source: "./media/characters/erza-bear/dick-vertical.svg"
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Macro",
  22035. height: math.unit(100, "feet"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(172, "cm"),
  22045. weight: math.unit(73, "kg"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/violet-flor/front.svg",
  22049. extra: 1530 / 1442,
  22050. bottom: 61.9 / 1588.8
  22051. }
  22052. },
  22053. back: {
  22054. height: math.unit(180, "cm"),
  22055. weight: math.unit(73, "kg"),
  22056. name: "Back",
  22057. image: {
  22058. source: "./media/characters/violet-flor/back.svg",
  22059. extra: 1692 / 1630,
  22060. bottom: 20 / 1712
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(172, "cm"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(6, "feet"),
  22077. weight: math.unit(220, "lb"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/lynn-rhea/front.svg",
  22081. extra: 310 / 273
  22082. }
  22083. },
  22084. back: {
  22085. height: math.unit(6, "feet"),
  22086. weight: math.unit(220, "lb"),
  22087. name: "Back",
  22088. image: {
  22089. source: "./media/characters/lynn-rhea/back.svg",
  22090. extra: 310 / 273
  22091. }
  22092. },
  22093. dicks: {
  22094. height: math.unit(0.9, "feet"),
  22095. name: "Dicks",
  22096. image: {
  22097. source: "./media/characters/lynn-rhea/dicks.svg"
  22098. }
  22099. },
  22100. slit: {
  22101. height: math.unit(0.4, "feet"),
  22102. name: "Slit",
  22103. image: {
  22104. source: "./media/characters/lynn-rhea/slit.svg"
  22105. }
  22106. },
  22107. },
  22108. [
  22109. {
  22110. name: "Micro",
  22111. height: math.unit(1, "inch")
  22112. },
  22113. {
  22114. name: "Macro",
  22115. height: math.unit(60, "feet"),
  22116. default: true
  22117. },
  22118. {
  22119. name: "Megamacro",
  22120. height: math.unit(2, "miles")
  22121. },
  22122. {
  22123. name: "Gigamacro",
  22124. height: math.unit(3, "earths")
  22125. },
  22126. {
  22127. name: "Galactic",
  22128. height: math.unit(0.8, "galaxies")
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22134. {
  22135. front: {
  22136. height: math.unit(1600, "feet"),
  22137. weight: math.unit(85758785169, "kg"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/valathos/front.svg",
  22141. extra: 1451 / 1339
  22142. }
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Macro",
  22148. height: math.unit(1600, "feet"),
  22149. default: true
  22150. },
  22151. ]
  22152. ))
  22153. characterMakers.push(() => makeCharacter(
  22154. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22155. {
  22156. front: {
  22157. height: math.unit(7 + 5 / 12, "feet"),
  22158. weight: math.unit(300, "lb"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/azula/front.svg",
  22162. extra: 3208 / 2880,
  22163. bottom: 80.2 / 3277
  22164. }
  22165. },
  22166. back: {
  22167. height: math.unit(7 + 5 / 12, "feet"),
  22168. weight: math.unit(300, "lb"),
  22169. name: "Back",
  22170. image: {
  22171. source: "./media/characters/azula/back.svg",
  22172. extra: 3169 / 2822,
  22173. bottom: 150.6 / 3321
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(7 + 5 / 12, "feet"),
  22181. default: true
  22182. },
  22183. {
  22184. name: "Big",
  22185. height: math.unit(20, "feet")
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(5 + 1 / 12, "feet"),
  22194. weight: math.unit(110, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/rupert/front.svg",
  22198. extra: 1549 / 1495,
  22199. bottom: 54.2 / 1604.4
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(5 + 1 / 12, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(8 + 4 / 12, "feet"),
  22216. weight: math.unit(350, "lb"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/sheera-castellar/front.svg",
  22220. extra: 1957 / 1894,
  22221. bottom: 26.97 / 1975.017
  22222. }
  22223. },
  22224. side: {
  22225. height: math.unit(8 + 4 / 12, "feet"),
  22226. weight: math.unit(350, "lb"),
  22227. name: "Side",
  22228. image: {
  22229. source: "./media/characters/sheera-castellar/side.svg",
  22230. extra: 1957 / 1894
  22231. }
  22232. },
  22233. back: {
  22234. height: math.unit(8 + 4 / 12, "feet"),
  22235. weight: math.unit(350, "lb"),
  22236. name: "Back",
  22237. image: {
  22238. source: "./media/characters/sheera-castellar/back.svg",
  22239. extra: 1957 / 1894
  22240. }
  22241. },
  22242. angled: {
  22243. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22244. weight: math.unit(350, "lb"),
  22245. name: "Angled",
  22246. image: {
  22247. source: "./media/characters/sheera-castellar/angled.svg",
  22248. extra: 1807 / 1707,
  22249. bottom: 68 / 1875
  22250. }
  22251. },
  22252. genitals: {
  22253. height: math.unit(2.2, "feet"),
  22254. name: "Genitals",
  22255. image: {
  22256. source: "./media/characters/sheera-castellar/genitals.svg"
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Normal",
  22263. height: math.unit(8 + 4 / 12, "feet")
  22264. },
  22265. {
  22266. name: "Macro",
  22267. height: math.unit(150, "feet"),
  22268. default: true
  22269. },
  22270. {
  22271. name: "Macro+",
  22272. height: math.unit(800, "feet")
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(6, "feet"),
  22281. weight: math.unit(150, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/jaipur/front.svg",
  22285. extra: 3860 / 3731,
  22286. bottom: 287 / 4140
  22287. }
  22288. },
  22289. back: {
  22290. height: math.unit(6, "feet"),
  22291. weight: math.unit(150, "lb"),
  22292. name: "Back",
  22293. image: {
  22294. source: "./media/characters/jaipur/back.svg",
  22295. extra: 4060 / 3930,
  22296. bottom: 151 / 4200
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(1.85, "meters"),
  22304. default: true
  22305. },
  22306. {
  22307. name: "Macro",
  22308. height: math.unit(150, "meters")
  22309. },
  22310. {
  22311. name: "Macro+",
  22312. height: math.unit(0.5, "miles")
  22313. },
  22314. {
  22315. name: "Macro++",
  22316. height: math.unit(2.5, "miles")
  22317. },
  22318. {
  22319. name: "Macro+++",
  22320. height: math.unit(12, "miles")
  22321. },
  22322. {
  22323. name: "Macro++++",
  22324. height: math.unit(120, "miles")
  22325. },
  22326. {
  22327. name: "Macro+++++",
  22328. height: math.unit(1200, "miles")
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(6, "feet"),
  22337. weight: math.unit(150, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/sheila-wolf/front.svg",
  22341. extra: 1931 / 1808,
  22342. bottom: 29.5 / 1960
  22343. }
  22344. },
  22345. dick: {
  22346. height: math.unit(1.464, "feet"),
  22347. name: "Dick",
  22348. image: {
  22349. source: "./media/characters/sheila-wolf/dick.svg"
  22350. }
  22351. },
  22352. muzzle: {
  22353. height: math.unit(0.513, "feet"),
  22354. name: "Muzzle",
  22355. image: {
  22356. source: "./media/characters/sheila-wolf/muzzle.svg"
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Macro",
  22363. height: math.unit(70, "feet"),
  22364. default: true
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22370. {
  22371. front: {
  22372. height: math.unit(32, "meters"),
  22373. weight: math.unit(300000, "kg"),
  22374. name: "Front",
  22375. image: {
  22376. source: "./media/characters/almor/front.svg",
  22377. extra: 1408 / 1322,
  22378. bottom: 94.6 / 1506.5
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Macro",
  22385. height: math.unit(32, "meters"),
  22386. default: true
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22392. {
  22393. front: {
  22394. height: math.unit(7, "feet"),
  22395. weight: math.unit(200, "lb"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/silver/front.svg",
  22399. extra: 472.1 / 450.5,
  22400. bottom: 26.5 / 499.424
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Normal",
  22407. height: math.unit(7, "feet"),
  22408. default: true
  22409. },
  22410. {
  22411. name: "Macro",
  22412. height: math.unit(800, "feet")
  22413. },
  22414. {
  22415. name: "Megamacro",
  22416. height: math.unit(250, "miles")
  22417. },
  22418. ]
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22422. {
  22423. front: {
  22424. height: math.unit(6, "feet"),
  22425. weight: math.unit(150, "lb"),
  22426. name: "Front",
  22427. image: {
  22428. source: "./media/characters/pliskin/front.svg",
  22429. extra: 1469 / 1359,
  22430. bottom: 70 / 1540
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Micro",
  22437. height: math.unit(3, "inches")
  22438. },
  22439. {
  22440. name: "Normal",
  22441. height: math.unit(5 + 11 / 12, "feet"),
  22442. default: true
  22443. },
  22444. {
  22445. name: "Macro",
  22446. height: math.unit(120, "feet")
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(6, "feet"),
  22455. weight: math.unit(150, "lb"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/sammy/front.svg",
  22459. extra: 1193 / 1089,
  22460. bottom: 30.5 / 1226
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Macro",
  22467. height: math.unit(1700, "feet"),
  22468. default: true
  22469. },
  22470. {
  22471. name: "Examacro",
  22472. height: math.unit(2.5e9, "lightyears")
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22478. {
  22479. front: {
  22480. height: math.unit(21, "meters"),
  22481. weight: math.unit(12, "tonnes"),
  22482. name: "Front",
  22483. image: {
  22484. source: "./media/characters/kuru/front.svg",
  22485. extra: 4301 / 3785,
  22486. bottom: 371.3 / 4691
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Macro",
  22493. height: math.unit(21, "meters"),
  22494. default: true
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22500. {
  22501. front: {
  22502. height: math.unit(23, "meters"),
  22503. weight: math.unit(12.2, "tonnes"),
  22504. name: "Front",
  22505. image: {
  22506. source: "./media/characters/rakka/front.svg",
  22507. extra: 4670 / 4169,
  22508. bottom: 301 / 4968.7
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Macro",
  22515. height: math.unit(23, "meters"),
  22516. default: true
  22517. },
  22518. ]
  22519. ))
  22520. characterMakers.push(() => makeCharacter(
  22521. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22522. {
  22523. front: {
  22524. height: math.unit(6, "feet"),
  22525. weight: math.unit(150, "lb"),
  22526. name: "Front",
  22527. image: {
  22528. source: "./media/characters/rhys-feline/front.svg",
  22529. extra: 2488 / 2308,
  22530. bottom: 35.67 / 2519.19
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Really Small",
  22537. height: math.unit(1, "nm")
  22538. },
  22539. {
  22540. name: "Micro",
  22541. height: math.unit(4, "inches")
  22542. },
  22543. {
  22544. name: "Normal",
  22545. height: math.unit(4 + 10 / 12, "feet"),
  22546. default: true
  22547. },
  22548. {
  22549. name: "Macro",
  22550. height: math.unit(100, "feet")
  22551. },
  22552. {
  22553. name: "Megamacto",
  22554. height: math.unit(50, "miles")
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22560. {
  22561. side: {
  22562. height: math.unit(30, "feet"),
  22563. weight: math.unit(35000, "kg"),
  22564. name: "Side",
  22565. image: {
  22566. source: "./media/characters/alydar/side.svg",
  22567. extra: 234 / 222,
  22568. bottom: 6.5 / 241
  22569. }
  22570. },
  22571. front: {
  22572. height: math.unit(30, "feet"),
  22573. weight: math.unit(35000, "kg"),
  22574. name: "Front",
  22575. image: {
  22576. source: "./media/characters/alydar/front.svg",
  22577. extra: 223.37 / 210.2,
  22578. bottom: 22.3 / 246.76
  22579. }
  22580. },
  22581. top: {
  22582. height: math.unit(64.54, "feet"),
  22583. weight: math.unit(35000, "kg"),
  22584. name: "Top",
  22585. image: {
  22586. source: "./media/characters/alydar/top.svg"
  22587. }
  22588. },
  22589. anthro: {
  22590. height: math.unit(30, "feet"),
  22591. weight: math.unit(9000, "kg"),
  22592. name: "Anthro",
  22593. image: {
  22594. source: "./media/characters/alydar/anthro.svg",
  22595. extra: 432 / 421,
  22596. bottom: 7.18 / 440
  22597. }
  22598. },
  22599. maw: {
  22600. height: math.unit(11.693, "feet"),
  22601. name: "Maw",
  22602. image: {
  22603. source: "./media/characters/alydar/maw.svg"
  22604. }
  22605. },
  22606. head: {
  22607. height: math.unit(11.693, "feet"),
  22608. name: "Head",
  22609. image: {
  22610. source: "./media/characters/alydar/head.svg"
  22611. }
  22612. },
  22613. headAlt: {
  22614. height: math.unit(12.861, "feet"),
  22615. name: "Head (Alt)",
  22616. image: {
  22617. source: "./media/characters/alydar/head-alt.svg"
  22618. }
  22619. },
  22620. wing: {
  22621. height: math.unit(20.712, "feet"),
  22622. name: "Wing",
  22623. image: {
  22624. source: "./media/characters/alydar/wing.svg"
  22625. }
  22626. },
  22627. wingFeather: {
  22628. height: math.unit(9.662, "feet"),
  22629. name: "Wing Feather",
  22630. image: {
  22631. source: "./media/characters/alydar/wing-feather.svg"
  22632. }
  22633. },
  22634. countourFeather: {
  22635. height: math.unit(4.154, "feet"),
  22636. name: "Contour Feather",
  22637. image: {
  22638. source: "./media/characters/alydar/contour-feather.svg"
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Diplomatic",
  22645. height: math.unit(13, "feet"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Small",
  22650. height: math.unit(30, "feet")
  22651. },
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(95, "feet"),
  22655. default: true
  22656. },
  22657. {
  22658. name: "Large",
  22659. height: math.unit(285, "feet")
  22660. },
  22661. {
  22662. name: "Incomprehensible",
  22663. height: math.unit(450, "megameters")
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22669. {
  22670. side: {
  22671. height: math.unit(11, "feet"),
  22672. weight: math.unit(1750, "kg"),
  22673. name: "Side",
  22674. image: {
  22675. source: "./media/characters/selicia/side.svg",
  22676. extra: 440 / 396,
  22677. bottom: 24.8 / 465.979
  22678. }
  22679. },
  22680. maw: {
  22681. height: math.unit(4.665, "feet"),
  22682. name: "Maw",
  22683. image: {
  22684. source: "./media/characters/selicia/maw.svg"
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(11, "feet"),
  22692. default: true
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22698. {
  22699. side: {
  22700. height: math.unit(2 + 6 / 12, "feet"),
  22701. weight: math.unit(30, "lb"),
  22702. name: "Side",
  22703. image: {
  22704. source: "./media/characters/layla/side.svg",
  22705. extra: 244 / 188,
  22706. bottom: 18.2 / 262.1
  22707. }
  22708. },
  22709. back: {
  22710. height: math.unit(2 + 6 / 12, "feet"),
  22711. weight: math.unit(30, "lb"),
  22712. name: "Back",
  22713. image: {
  22714. source: "./media/characters/layla/back.svg",
  22715. extra: 308 / 241.5,
  22716. bottom: 8.9 / 316.8
  22717. }
  22718. },
  22719. cumming: {
  22720. height: math.unit(2 + 6 / 12, "feet"),
  22721. weight: math.unit(30, "lb"),
  22722. name: "Cumming",
  22723. image: {
  22724. source: "./media/characters/layla/cumming.svg",
  22725. extra: 342 / 279,
  22726. bottom: 595 / 938
  22727. }
  22728. },
  22729. dickFlaccid: {
  22730. height: math.unit(2.595, "feet"),
  22731. name: "Flaccid Genitals",
  22732. image: {
  22733. source: "./media/characters/layla/dick-flaccid.svg"
  22734. }
  22735. },
  22736. dickErect: {
  22737. height: math.unit(2.359, "feet"),
  22738. name: "Erect Genitals",
  22739. image: {
  22740. source: "./media/characters/layla/dick-erect.svg"
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Micro",
  22747. height: math.unit(1, "inch")
  22748. },
  22749. {
  22750. name: "Small",
  22751. height: math.unit(1, "foot")
  22752. },
  22753. {
  22754. name: "Normal",
  22755. height: math.unit(2 + 6 / 12, "feet"),
  22756. default: true
  22757. },
  22758. {
  22759. name: "Macro",
  22760. height: math.unit(200, "feet")
  22761. },
  22762. {
  22763. name: "Megamacro",
  22764. height: math.unit(1000, "miles")
  22765. },
  22766. {
  22767. name: "Planetary",
  22768. height: math.unit(8000, "miles")
  22769. },
  22770. {
  22771. name: "True Layla",
  22772. height: math.unit(200000 * 7, "multiverses")
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22778. {
  22779. back: {
  22780. height: math.unit(10.5, "feet"),
  22781. weight: math.unit(800, "lb"),
  22782. name: "Back",
  22783. image: {
  22784. source: "./media/characters/knox/back.svg",
  22785. extra: 1486 / 1089,
  22786. bottom: 107 / 1601.4
  22787. }
  22788. },
  22789. side: {
  22790. height: math.unit(10.5, "feet"),
  22791. weight: math.unit(800, "lb"),
  22792. name: "Side",
  22793. image: {
  22794. source: "./media/characters/knox/side.svg",
  22795. extra: 244 / 218,
  22796. bottom: 14 / 260
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Compact",
  22803. height: math.unit(10.5, "feet"),
  22804. default: true
  22805. },
  22806. {
  22807. name: "Dynamax",
  22808. height: math.unit(210, "feet")
  22809. },
  22810. {
  22811. name: "Full Macro",
  22812. height: math.unit(850, "feet")
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22818. {
  22819. front: {
  22820. height: math.unit(6, "feet"),
  22821. weight: math.unit(152, "lb"),
  22822. name: "Front",
  22823. image: {
  22824. source: "./media/characters/shin-pikachu/front.svg",
  22825. extra: 1574 / 1480,
  22826. bottom: 53.3 / 1626
  22827. }
  22828. },
  22829. hand: {
  22830. height: math.unit(1.055, "feet"),
  22831. name: "Hand",
  22832. image: {
  22833. source: "./media/characters/shin-pikachu/hand.svg"
  22834. }
  22835. },
  22836. foot: {
  22837. height: math.unit(1.1, "feet"),
  22838. name: "Foot",
  22839. image: {
  22840. source: "./media/characters/shin-pikachu/foot.svg"
  22841. }
  22842. },
  22843. collar: {
  22844. height: math.unit(0.386, "feet"),
  22845. name: "Collar",
  22846. image: {
  22847. source: "./media/characters/shin-pikachu/collar.svg"
  22848. }
  22849. },
  22850. },
  22851. [
  22852. {
  22853. name: "Smallest",
  22854. height: math.unit(0.5, "inches")
  22855. },
  22856. {
  22857. name: "Micro",
  22858. height: math.unit(6, "inches")
  22859. },
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(6, "feet"),
  22863. default: true
  22864. },
  22865. {
  22866. name: "Macro",
  22867. height: math.unit(150, "feet")
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22873. {
  22874. front: {
  22875. height: math.unit(28, "feet"),
  22876. weight: math.unit(10500, "lb"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/kayda/front.svg",
  22880. extra: 1536 / 1428,
  22881. bottom: 68.7 / 1603
  22882. }
  22883. },
  22884. back: {
  22885. height: math.unit(28, "feet"),
  22886. weight: math.unit(10500, "lb"),
  22887. name: "Back",
  22888. image: {
  22889. source: "./media/characters/kayda/back.svg",
  22890. extra: 1557 / 1464,
  22891. bottom: 39.5 / 1597.49
  22892. }
  22893. },
  22894. dick: {
  22895. height: math.unit(3.858, "feet"),
  22896. name: "Dick",
  22897. image: {
  22898. source: "./media/characters/kayda/dick.svg"
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Macro",
  22905. height: math.unit(28, "feet"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(10 + 11 / 12, "feet"),
  22915. weight: math.unit(1400, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/brian/front.svg",
  22919. extra: 737 / 692,
  22920. bottom: 55.4 / 785
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Normal",
  22927. height: math.unit(10 + 11 / 12, "feet"),
  22928. default: true
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22934. {
  22935. front: {
  22936. height: math.unit(5 + 8 / 12, "feet"),
  22937. weight: math.unit(140, "lb"),
  22938. name: "Front",
  22939. image: {
  22940. source: "./media/characters/khemri/front.svg",
  22941. extra: 4780 / 4059,
  22942. bottom: 80.1 / 4859.25
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Micro",
  22949. height: math.unit(6, "inches")
  22950. },
  22951. {
  22952. name: "Normal",
  22953. height: math.unit(5 + 8 / 12, "feet"),
  22954. default: true
  22955. },
  22956. ]
  22957. ))
  22958. characterMakers.push(() => makeCharacter(
  22959. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22960. {
  22961. front: {
  22962. height: math.unit(13, "feet"),
  22963. weight: math.unit(1700, "lb"),
  22964. name: "Front",
  22965. image: {
  22966. source: "./media/characters/felix-braveheart/front.svg",
  22967. extra: 1222 / 1157,
  22968. bottom: 53.2 / 1280
  22969. }
  22970. },
  22971. back: {
  22972. height: math.unit(13, "feet"),
  22973. weight: math.unit(1700, "lb"),
  22974. name: "Back",
  22975. image: {
  22976. source: "./media/characters/felix-braveheart/back.svg",
  22977. extra: 1277 / 1203,
  22978. bottom: 50.2 / 1327
  22979. }
  22980. },
  22981. feral: {
  22982. height: math.unit(6, "feet"),
  22983. weight: math.unit(400, "lb"),
  22984. name: "Feral",
  22985. image: {
  22986. source: "./media/characters/felix-braveheart/feral.svg",
  22987. extra: 682 / 625,
  22988. bottom: 6.9 / 688
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(13, "feet"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23002. {
  23003. side: {
  23004. height: math.unit(5 + 11 / 12, "feet"),
  23005. weight: math.unit(1400, "lb"),
  23006. name: "Side",
  23007. image: {
  23008. source: "./media/characters/shadow-blade/side.svg",
  23009. extra: 1726 / 1267,
  23010. bottom: 58.4 / 1785
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Normal",
  23017. height: math.unit(5 + 11 / 12, "feet"),
  23018. default: true
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23024. {
  23025. front: {
  23026. height: math.unit(1 + 6 / 12, "feet"),
  23027. weight: math.unit(25, "lb"),
  23028. name: "Front",
  23029. image: {
  23030. source: "./media/characters/karla-halldor/front.svg",
  23031. extra: 1459 / 1383,
  23032. bottom: 12 / 1472
  23033. }
  23034. },
  23035. },
  23036. [
  23037. {
  23038. name: "Normal",
  23039. height: math.unit(1 + 6 / 12, "feet"),
  23040. default: true
  23041. },
  23042. ]
  23043. ))
  23044. characterMakers.push(() => makeCharacter(
  23045. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23046. {
  23047. front: {
  23048. height: math.unit(6 + 2 / 12, "feet"),
  23049. weight: math.unit(160, "lb"),
  23050. name: "Front",
  23051. image: {
  23052. source: "./media/characters/ariam/front.svg",
  23053. extra: 714 / 617,
  23054. bottom: 23.4 / 737,
  23055. }
  23056. },
  23057. squatting: {
  23058. height: math.unit(4.1, "feet"),
  23059. weight: math.unit(160, "lb"),
  23060. name: "Squatting",
  23061. image: {
  23062. source: "./media/characters/ariam/squatting.svg",
  23063. extra: 2617 / 2112,
  23064. bottom: 61.2 / 2681,
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Normal",
  23071. height: math.unit(6 + 2 / 12, "feet"),
  23072. default: true
  23073. },
  23074. {
  23075. name: "Normal+",
  23076. height: math.unit(4, "meters")
  23077. },
  23078. {
  23079. name: "Macro",
  23080. height: math.unit(50, "meters")
  23081. },
  23082. {
  23083. name: "Macro+",
  23084. height: math.unit(100, "meters")
  23085. },
  23086. {
  23087. name: "Megamacro",
  23088. height: math.unit(20, "km")
  23089. },
  23090. ]
  23091. ))
  23092. characterMakers.push(() => makeCharacter(
  23093. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23094. {
  23095. front: {
  23096. height: math.unit(1.67, "meters"),
  23097. weight: math.unit(140, "lb"),
  23098. name: "Front",
  23099. image: {
  23100. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23101. extra: 438 / 410,
  23102. bottom: 0.75 / 439
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Shrunken",
  23109. height: math.unit(7.6, "cm")
  23110. },
  23111. {
  23112. name: "Human Scale",
  23113. height: math.unit(1.67, "meters")
  23114. },
  23115. {
  23116. name: "Wolxi Scale",
  23117. height: math.unit(36.7, "meters"),
  23118. default: true
  23119. },
  23120. ]
  23121. ))
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23124. {
  23125. front: {
  23126. height: math.unit(1.73, "meters"),
  23127. weight: math.unit(240, "lb"),
  23128. name: "Front",
  23129. image: {
  23130. source: "./media/characters/izue-two-mothers/front.svg",
  23131. extra: 469 / 437,
  23132. bottom: 1.24 / 470.6
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Shrunken",
  23139. height: math.unit(7.86, "cm")
  23140. },
  23141. {
  23142. name: "Human Scale",
  23143. height: math.unit(1.73, "meters")
  23144. },
  23145. {
  23146. name: "Wolxi Scale",
  23147. height: math.unit(38, "meters"),
  23148. default: true
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(1.55, "meters"),
  23157. weight: math.unit(120, "lb"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/teeku-love-shack/front.svg",
  23161. extra: 387 / 362,
  23162. bottom: 1.51 / 388
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Shrunken",
  23169. height: math.unit(7, "cm")
  23170. },
  23171. {
  23172. name: "Human Scale",
  23173. height: math.unit(1.55, "meters")
  23174. },
  23175. {
  23176. name: "Wolxi Scale",
  23177. height: math.unit(34.1, "meters"),
  23178. default: true
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(1.83, "meters"),
  23187. weight: math.unit(135, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/dejma-the-red/front.svg",
  23191. extra: 480 / 458,
  23192. bottom: 1.8 / 482
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Shrunken",
  23199. height: math.unit(8.3, "cm")
  23200. },
  23201. {
  23202. name: "Human Scale",
  23203. height: math.unit(1.83, "meters")
  23204. },
  23205. {
  23206. name: "Wolxi Scale",
  23207. height: math.unit(40, "meters"),
  23208. default: true
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23214. {
  23215. front: {
  23216. height: math.unit(1.78, "meters"),
  23217. weight: math.unit(65, "kg"),
  23218. name: "Front",
  23219. image: {
  23220. source: "./media/characters/aki/front.svg",
  23221. extra: 452 / 415
  23222. }
  23223. },
  23224. frontNsfw: {
  23225. height: math.unit(1.78, "meters"),
  23226. weight: math.unit(65, "kg"),
  23227. name: "Front (NSFW)",
  23228. image: {
  23229. source: "./media/characters/aki/front-nsfw.svg",
  23230. extra: 452 / 415
  23231. }
  23232. },
  23233. back: {
  23234. height: math.unit(1.78, "meters"),
  23235. weight: math.unit(65, "kg"),
  23236. name: "Back",
  23237. image: {
  23238. source: "./media/characters/aki/back.svg",
  23239. extra: 452 / 415
  23240. }
  23241. },
  23242. rump: {
  23243. height: math.unit(2.05, "feet"),
  23244. name: "Rump",
  23245. image: {
  23246. source: "./media/characters/aki/rump.svg"
  23247. }
  23248. },
  23249. dick: {
  23250. height: math.unit(0.95, "feet"),
  23251. name: "Dick",
  23252. image: {
  23253. source: "./media/characters/aki/dick.svg"
  23254. }
  23255. },
  23256. },
  23257. [
  23258. {
  23259. name: "Micro",
  23260. height: math.unit(15, "cm")
  23261. },
  23262. {
  23263. name: "Normal",
  23264. height: math.unit(178, "cm"),
  23265. default: true
  23266. },
  23267. {
  23268. name: "Macro",
  23269. height: math.unit(214, "m")
  23270. },
  23271. {
  23272. name: "Macro+",
  23273. height: math.unit(534, "m")
  23274. },
  23275. ]
  23276. ))
  23277. characterMakers.push(() => makeCharacter(
  23278. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23279. {
  23280. front: {
  23281. height: math.unit(5 + 5 / 12, "feet"),
  23282. weight: math.unit(120, "lb"),
  23283. name: "Front",
  23284. image: {
  23285. source: "./media/characters/ari/front.svg",
  23286. extra: 714.5 / 682,
  23287. bottom: 8 / 722.5
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(5 + 5 / 12, "feet")
  23295. },
  23296. {
  23297. name: "Macro",
  23298. height: math.unit(100, "feet"),
  23299. default: true
  23300. },
  23301. {
  23302. name: "Megamacro",
  23303. height: math.unit(100, "miles")
  23304. },
  23305. {
  23306. name: "Gigamacro",
  23307. height: math.unit(80000, "miles")
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23313. {
  23314. side: {
  23315. height: math.unit(9, "feet"),
  23316. weight: math.unit(400, "kg"),
  23317. name: "Side",
  23318. image: {
  23319. source: "./media/characters/bolt/side.svg",
  23320. extra: 1126 / 896,
  23321. bottom: 60 / 1187.3,
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Micro",
  23328. height: math.unit(5, "inches")
  23329. },
  23330. {
  23331. name: "Normal",
  23332. height: math.unit(9, "feet"),
  23333. default: true
  23334. },
  23335. {
  23336. name: "Macro",
  23337. height: math.unit(700, "feet")
  23338. },
  23339. {
  23340. name: "Max Size",
  23341. height: math.unit(1.52e22, "yottameters")
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(4.53, "meters"),
  23350. weight: math.unit(3, "tons"),
  23351. name: "Front",
  23352. image: {
  23353. source: "./media/characters/draekon-sylviar/front.svg",
  23354. extra: 1228 / 1068,
  23355. bottom: 41 / 1270
  23356. }
  23357. },
  23358. tail: {
  23359. height: math.unit(1.772, "meter"),
  23360. name: "Tail",
  23361. image: {
  23362. source: "./media/characters/draekon-sylviar/tail.svg"
  23363. }
  23364. },
  23365. head: {
  23366. height: math.unit(1.331, "meter"),
  23367. name: "Head",
  23368. image: {
  23369. source: "./media/characters/draekon-sylviar/head.svg"
  23370. }
  23371. },
  23372. hand: {
  23373. height: math.unit(0.564, "meter"),
  23374. name: "Hand",
  23375. image: {
  23376. source: "./media/characters/draekon-sylviar/hand.svg"
  23377. }
  23378. },
  23379. foot: {
  23380. height: math.unit(0.621, "meter"),
  23381. name: "Foot",
  23382. image: {
  23383. source: "./media/characters/draekon-sylviar/foot.svg",
  23384. bottom: 32 / 324
  23385. }
  23386. },
  23387. dick: {
  23388. height: math.unit(61, "cm"),
  23389. name: "Dick",
  23390. image: {
  23391. source: "./media/characters/draekon-sylviar/dick.svg"
  23392. }
  23393. },
  23394. dickseparated: {
  23395. height: math.unit(61, "cm"),
  23396. name: "Dick-separated",
  23397. image: {
  23398. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23399. }
  23400. },
  23401. },
  23402. [
  23403. {
  23404. name: "Small",
  23405. height: math.unit(4.53 / 2, "meters"),
  23406. default: true
  23407. },
  23408. {
  23409. name: "Normal",
  23410. height: math.unit(4.53, "meters"),
  23411. default: true
  23412. },
  23413. {
  23414. name: "Large",
  23415. height: math.unit(4.53 * 2, "meters"),
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23421. {
  23422. front: {
  23423. height: math.unit(6 + 2 / 12, "feet"),
  23424. weight: math.unit(180, "lb"),
  23425. name: "Front",
  23426. image: {
  23427. source: "./media/characters/brawler/front.svg",
  23428. extra: 3301 / 3027,
  23429. bottom: 138 / 3439
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(6 + 2 / 12, "feet"),
  23437. default: true
  23438. },
  23439. ]
  23440. ))
  23441. characterMakers.push(() => makeCharacter(
  23442. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23443. {
  23444. front: {
  23445. height: math.unit(11, "feet"),
  23446. weight: math.unit(1000, "lb"),
  23447. name: "Front",
  23448. image: {
  23449. source: "./media/characters/alex/front.svg",
  23450. bottom: 44.5 / 620
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Micro",
  23457. height: math.unit(5, "inches")
  23458. },
  23459. {
  23460. name: "Normal",
  23461. height: math.unit(11, "feet"),
  23462. default: true
  23463. },
  23464. {
  23465. name: "Macro",
  23466. height: math.unit(9.5e9, "feet")
  23467. },
  23468. {
  23469. name: "Max Size",
  23470. height: math.unit(1.4e283, "yottameters")
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23476. {
  23477. female: {
  23478. height: math.unit(29.9, "m"),
  23479. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23480. name: "Female",
  23481. image: {
  23482. source: "./media/characters/zenari/female.svg",
  23483. extra: 3281.6 / 3217,
  23484. bottom: 72.2 / 3353
  23485. }
  23486. },
  23487. male: {
  23488. height: math.unit(27.7, "m"),
  23489. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23490. name: "Male",
  23491. image: {
  23492. source: "./media/characters/zenari/male.svg",
  23493. extra: 3008 / 2991,
  23494. bottom: 54.6 / 3069
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Macro",
  23501. height: math.unit(29.7, "meters"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23508. {
  23509. female: {
  23510. height: math.unit(23.8, "m"),
  23511. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23512. name: "Female",
  23513. image: {
  23514. source: "./media/characters/mactarian/female.svg",
  23515. extra: 2662 / 2569,
  23516. bottom: 73 / 2736
  23517. }
  23518. },
  23519. male: {
  23520. height: math.unit(23.8, "m"),
  23521. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23522. name: "Male",
  23523. image: {
  23524. source: "./media/characters/mactarian/male.svg",
  23525. extra: 2673 / 2600,
  23526. bottom: 76 / 2750
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Macro",
  23533. height: math.unit(23.8, "meters"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23540. {
  23541. female: {
  23542. height: math.unit(19.3, "m"),
  23543. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23544. name: "Female",
  23545. image: {
  23546. source: "./media/characters/umok/female.svg",
  23547. extra: 2186 / 2078,
  23548. bottom: 87 / 2277
  23549. }
  23550. },
  23551. male: {
  23552. height: math.unit(19.5, "m"),
  23553. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23554. name: "Male",
  23555. image: {
  23556. source: "./media/characters/umok/male.svg",
  23557. extra: 2233 / 2140,
  23558. bottom: 24.4 / 2258
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "Macro",
  23565. height: math.unit(19.3, "meters"),
  23566. default: true
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23572. {
  23573. female: {
  23574. height: math.unit(26.15, "m"),
  23575. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23576. name: "Female",
  23577. image: {
  23578. source: "./media/characters/joraxian/female.svg",
  23579. extra: 2912 / 2824,
  23580. bottom: 36 / 2956
  23581. }
  23582. },
  23583. male: {
  23584. height: math.unit(25.4, "m"),
  23585. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23586. name: "Male",
  23587. image: {
  23588. source: "./media/characters/joraxian/male.svg",
  23589. extra: 2877 / 2721,
  23590. bottom: 82 / 2967
  23591. }
  23592. },
  23593. },
  23594. [
  23595. {
  23596. name: "Macro",
  23597. height: math.unit(26.15, "meters"),
  23598. default: true
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23604. {
  23605. female: {
  23606. height: math.unit(21.6, "m"),
  23607. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23608. name: "Female",
  23609. image: {
  23610. source: "./media/characters/sthara/female.svg",
  23611. extra: 2516 / 2347,
  23612. bottom: 21.5 / 2537
  23613. }
  23614. },
  23615. male: {
  23616. height: math.unit(24, "m"),
  23617. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23618. name: "Male",
  23619. image: {
  23620. source: "./media/characters/sthara/male.svg",
  23621. extra: 2732 / 2607,
  23622. bottom: 23 / 2732
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Macro",
  23629. height: math.unit(21.6, "meters"),
  23630. default: true
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23636. {
  23637. front: {
  23638. height: math.unit(6 + 4 / 12, "feet"),
  23639. weight: math.unit(175, "lb"),
  23640. name: "Front",
  23641. image: {
  23642. source: "./media/characters/luka-bryzant/front.svg",
  23643. extra: 311 / 289,
  23644. bottom: 4 / 315
  23645. }
  23646. },
  23647. back: {
  23648. height: math.unit(6 + 4 / 12, "feet"),
  23649. weight: math.unit(175, "lb"),
  23650. name: "Back",
  23651. image: {
  23652. source: "./media/characters/luka-bryzant/back.svg",
  23653. extra: 311 / 289,
  23654. bottom: 3.8 / 313.7
  23655. }
  23656. },
  23657. },
  23658. [
  23659. {
  23660. name: "Micro",
  23661. height: math.unit(10, "inches")
  23662. },
  23663. {
  23664. name: "Normal",
  23665. height: math.unit(6 + 4 / 12, "feet"),
  23666. default: true
  23667. },
  23668. {
  23669. name: "Large",
  23670. height: math.unit(12, "feet")
  23671. },
  23672. ]
  23673. ))
  23674. characterMakers.push(() => makeCharacter(
  23675. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23676. {
  23677. front: {
  23678. height: math.unit(5 + 7 / 12, "feet"),
  23679. weight: math.unit(185, "lb"),
  23680. name: "Front",
  23681. image: {
  23682. source: "./media/characters/aman-aquila/front.svg",
  23683. extra: 1013 / 976,
  23684. bottom: 45.6 / 1057
  23685. }
  23686. },
  23687. side: {
  23688. height: math.unit(5 + 7 / 12, "feet"),
  23689. weight: math.unit(185, "lb"),
  23690. name: "Side",
  23691. image: {
  23692. source: "./media/characters/aman-aquila/side.svg",
  23693. extra: 1054 / 1011,
  23694. bottom: 15 / 1070
  23695. }
  23696. },
  23697. back: {
  23698. height: math.unit(5 + 7 / 12, "feet"),
  23699. weight: math.unit(185, "lb"),
  23700. name: "Back",
  23701. image: {
  23702. source: "./media/characters/aman-aquila/back.svg",
  23703. extra: 1026 / 970,
  23704. bottom: 12 / 1039
  23705. }
  23706. },
  23707. head: {
  23708. height: math.unit(1.211, "feet"),
  23709. name: "Head",
  23710. image: {
  23711. source: "./media/characters/aman-aquila/head.svg",
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Minimicro",
  23718. height: math.unit(0.057, "inches")
  23719. },
  23720. {
  23721. name: "Micro",
  23722. height: math.unit(7, "inches")
  23723. },
  23724. {
  23725. name: "Mini",
  23726. height: math.unit(3 + 7 / 12, "feet")
  23727. },
  23728. {
  23729. name: "Normal",
  23730. height: math.unit(5 + 7 / 12, "feet"),
  23731. default: true
  23732. },
  23733. {
  23734. name: "Macro",
  23735. height: math.unit(157 + 7 / 12, "feet")
  23736. },
  23737. {
  23738. name: "Megamacro",
  23739. height: math.unit(1557 + 7 / 12, "feet")
  23740. },
  23741. {
  23742. name: "Gigamacro",
  23743. height: math.unit(15557 + 7 / 12, "feet")
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23749. {
  23750. front: {
  23751. height: math.unit(3 + 2 / 12, "inches"),
  23752. weight: math.unit(0.3, "ounces"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/hiphae/front.svg",
  23756. extra: 1931 / 1683,
  23757. bottom: 24 / 1955
  23758. }
  23759. },
  23760. },
  23761. [
  23762. {
  23763. name: "Normal",
  23764. height: math.unit(3 + 1 / 2, "inches"),
  23765. default: true
  23766. },
  23767. ]
  23768. ))
  23769. characterMakers.push(() => makeCharacter(
  23770. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23771. {
  23772. front: {
  23773. height: math.unit(5 + 10 / 12, "feet"),
  23774. weight: math.unit(165, "lb"),
  23775. name: "Front",
  23776. image: {
  23777. source: "./media/characters/nicky/front.svg",
  23778. extra: 3144 / 2886,
  23779. bottom: 45.6 / 3192
  23780. }
  23781. },
  23782. back: {
  23783. height: math.unit(5 + 10 / 12, "feet"),
  23784. weight: math.unit(165, "lb"),
  23785. name: "Back",
  23786. image: {
  23787. source: "./media/characters/nicky/back.svg",
  23788. extra: 3055 / 2804,
  23789. bottom: 28.4 / 3087
  23790. }
  23791. },
  23792. frontclothed: {
  23793. height: math.unit(5 + 10 / 12, "feet"),
  23794. weight: math.unit(165, "lb"),
  23795. name: "Front-clothed",
  23796. image: {
  23797. source: "./media/characters/nicky/front-clothed.svg",
  23798. extra: 3184.9 / 2926.9,
  23799. bottom: 86.5 / 3239.9
  23800. }
  23801. },
  23802. foot: {
  23803. height: math.unit(1.16, "feet"),
  23804. name: "Foot",
  23805. image: {
  23806. source: "./media/characters/nicky/foot.svg"
  23807. }
  23808. },
  23809. feet: {
  23810. height: math.unit(1.34, "feet"),
  23811. name: "Feet",
  23812. image: {
  23813. source: "./media/characters/nicky/feet.svg"
  23814. }
  23815. },
  23816. maw: {
  23817. height: math.unit(0.9, "feet"),
  23818. name: "Maw",
  23819. image: {
  23820. source: "./media/characters/nicky/maw.svg"
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(5 + 10 / 12, "feet"),
  23828. default: true
  23829. },
  23830. {
  23831. name: "Macro",
  23832. height: math.unit(60, "feet")
  23833. },
  23834. {
  23835. name: "Megamacro",
  23836. height: math.unit(1, "mile")
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23842. {
  23843. side: {
  23844. height: math.unit(10, "feet"),
  23845. weight: math.unit(600, "lb"),
  23846. name: "Side",
  23847. image: {
  23848. source: "./media/characters/blair/side.svg",
  23849. bottom: 16.6 / 475,
  23850. extra: 458 / 431
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Micro",
  23857. height: math.unit(8, "inches")
  23858. },
  23859. {
  23860. name: "Normal",
  23861. height: math.unit(10, "feet"),
  23862. default: true
  23863. },
  23864. {
  23865. name: "Macro",
  23866. height: math.unit(180, "feet")
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23872. {
  23873. front: {
  23874. height: math.unit(5 + 4 / 12, "feet"),
  23875. weight: math.unit(125, "lb"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/fisher/front.svg",
  23879. extra: 444 / 390,
  23880. bottom: 2 / 444.8
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Micro",
  23887. height: math.unit(4, "inches")
  23888. },
  23889. {
  23890. name: "Normal",
  23891. height: math.unit(5 + 4 / 12, "feet"),
  23892. default: true
  23893. },
  23894. {
  23895. name: "Macro",
  23896. height: math.unit(100, "feet")
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23902. {
  23903. front: {
  23904. height: math.unit(6.71, "feet"),
  23905. weight: math.unit(200, "lb"),
  23906. capacity: math.unit(1000000, "people"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/gliss/front.svg",
  23910. extra: 2347 / 2231,
  23911. bottom: 113 / 2462
  23912. }
  23913. },
  23914. hammerspaceSize: {
  23915. height: math.unit(6.71 * 717, "feet"),
  23916. weight: math.unit(200, "lb"),
  23917. capacity: math.unit(1000000, "people"),
  23918. name: "Hammerspace Size",
  23919. image: {
  23920. source: "./media/characters/gliss/front.svg",
  23921. extra: 2347 / 2231,
  23922. bottom: 113 / 2462
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Normal",
  23929. height: math.unit(6.71, "feet"),
  23930. default: true
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23936. {
  23937. side: {
  23938. height: math.unit(1.44, "m"),
  23939. weight: math.unit(80, "kg"),
  23940. name: "Side",
  23941. image: {
  23942. source: "./media/characters/dune-anderson/side.svg",
  23943. bottom: 49 / 1426
  23944. }
  23945. },
  23946. },
  23947. [
  23948. {
  23949. name: "Wolf-sized",
  23950. height: math.unit(1.44, "meters")
  23951. },
  23952. {
  23953. name: "Normal",
  23954. height: math.unit(5.05, "meters"),
  23955. default: true
  23956. },
  23957. {
  23958. name: "Big",
  23959. height: math.unit(14.4, "meters")
  23960. },
  23961. {
  23962. name: "Huge",
  23963. height: math.unit(144, "meters")
  23964. },
  23965. ]
  23966. ))
  23967. characterMakers.push(() => makeCharacter(
  23968. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23969. {
  23970. front: {
  23971. height: math.unit(7, "feet"),
  23972. weight: math.unit(425, "lb"),
  23973. name: "Front",
  23974. image: {
  23975. source: "./media/characters/hind/front.svg",
  23976. extra: 2091 / 1860,
  23977. bottom: 129 / 2220
  23978. }
  23979. },
  23980. back: {
  23981. height: math.unit(7, "feet"),
  23982. weight: math.unit(425, "lb"),
  23983. name: "Back",
  23984. image: {
  23985. source: "./media/characters/hind/back.svg",
  23986. extra: 2091 / 1860,
  23987. bottom: 24.6 / 2309
  23988. }
  23989. },
  23990. tail: {
  23991. height: math.unit(2.8, "feet"),
  23992. name: "Tail",
  23993. image: {
  23994. source: "./media/characters/hind/tail.svg"
  23995. }
  23996. },
  23997. head: {
  23998. height: math.unit(2.55, "feet"),
  23999. name: "Head",
  24000. image: {
  24001. source: "./media/characters/hind/head.svg"
  24002. }
  24003. },
  24004. },
  24005. [
  24006. {
  24007. name: "XS",
  24008. height: math.unit(0.7, "feet")
  24009. },
  24010. {
  24011. name: "Normal",
  24012. height: math.unit(7, "feet"),
  24013. default: true
  24014. },
  24015. {
  24016. name: "XL",
  24017. height: math.unit(70, "feet")
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24023. {
  24024. front: {
  24025. height: math.unit(6, "feet"),
  24026. weight: math.unit(150, "lb"),
  24027. name: "Front",
  24028. image: {
  24029. source: "./media/characters/dylan-skaven/front.svg",
  24030. extra: 2318 / 2063,
  24031. bottom: 93.4 / 2410
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Nano",
  24038. height: math.unit(1, "mm")
  24039. },
  24040. {
  24041. name: "Micro",
  24042. height: math.unit(1, "cm")
  24043. },
  24044. {
  24045. name: "Normal",
  24046. height: math.unit(2.1, "meters"),
  24047. default: true
  24048. },
  24049. ]
  24050. ))
  24051. characterMakers.push(() => makeCharacter(
  24052. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24053. {
  24054. front: {
  24055. height: math.unit(7 + 5 / 12, "feet"),
  24056. weight: math.unit(357, "lb"),
  24057. name: "Front",
  24058. image: {
  24059. source: "./media/characters/solex-draconov/front.svg",
  24060. extra: 1993 / 1865,
  24061. bottom: 117 / 2111
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Natural Height",
  24068. height: math.unit(7 + 5 / 12, "feet"),
  24069. default: true
  24070. },
  24071. {
  24072. name: "Macro",
  24073. height: math.unit(350, "feet")
  24074. },
  24075. {
  24076. name: "Macro+",
  24077. height: math.unit(1000, "feet")
  24078. },
  24079. {
  24080. name: "Megamacro",
  24081. height: math.unit(20, "km")
  24082. },
  24083. {
  24084. name: "Megamacro+",
  24085. height: math.unit(1000, "km")
  24086. },
  24087. {
  24088. name: "Gigamacro",
  24089. height: math.unit(2.5, "Gm")
  24090. },
  24091. {
  24092. name: "Teramacro",
  24093. height: math.unit(15, "Tm")
  24094. },
  24095. {
  24096. name: "Galactic",
  24097. height: math.unit(30, "Zm")
  24098. },
  24099. {
  24100. name: "Universal",
  24101. height: math.unit(21000, "Ym")
  24102. },
  24103. {
  24104. name: "Omniversal",
  24105. height: math.unit(9.861e50, "Ym")
  24106. },
  24107. {
  24108. name: "Existential",
  24109. height: math.unit(1e300, "meters")
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24115. {
  24116. side: {
  24117. height: math.unit(25, "feet"),
  24118. weight: math.unit(90000, "lb"),
  24119. name: "Side",
  24120. image: {
  24121. source: "./media/characters/mandarax/side.svg",
  24122. extra: 614 / 332,
  24123. bottom: 55 / 630
  24124. }
  24125. },
  24126. head: {
  24127. height: math.unit(11.4, "feet"),
  24128. name: "Head",
  24129. image: {
  24130. source: "./media/characters/mandarax/head.svg"
  24131. }
  24132. },
  24133. belly: {
  24134. height: math.unit(33, "feet"),
  24135. name: "Belly",
  24136. capacity: math.unit(500, "people"),
  24137. image: {
  24138. source: "./media/characters/mandarax/belly.svg"
  24139. }
  24140. },
  24141. dick: {
  24142. height: math.unit(8.46, "feet"),
  24143. name: "Dick",
  24144. image: {
  24145. source: "./media/characters/mandarax/dick.svg"
  24146. }
  24147. },
  24148. top: {
  24149. height: math.unit(28, "meters"),
  24150. name: "Top",
  24151. image: {
  24152. source: "./media/characters/mandarax/top.svg"
  24153. }
  24154. },
  24155. },
  24156. [
  24157. {
  24158. name: "Normal",
  24159. height: math.unit(25, "feet"),
  24160. default: true
  24161. },
  24162. ]
  24163. ))
  24164. characterMakers.push(() => makeCharacter(
  24165. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24166. {
  24167. front: {
  24168. height: math.unit(5, "feet"),
  24169. weight: math.unit(90, "lb"),
  24170. name: "Front",
  24171. image: {
  24172. source: "./media/characters/pixil/front.svg",
  24173. extra: 2000 / 1618,
  24174. bottom: 12.3 / 2011
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Normal",
  24181. height: math.unit(5, "feet"),
  24182. default: true
  24183. },
  24184. {
  24185. name: "Megamacro",
  24186. height: math.unit(10, "miles"),
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24192. {
  24193. front: {
  24194. height: math.unit(7 + 2 / 12, "feet"),
  24195. weight: math.unit(200, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/angel/front.svg",
  24199. extra: 1830 / 1737,
  24200. bottom: 22.6 / 1854,
  24201. }
  24202. },
  24203. },
  24204. [
  24205. {
  24206. name: "Normal",
  24207. height: math.unit(7 + 2 / 12, "feet"),
  24208. default: true
  24209. },
  24210. {
  24211. name: "Macro",
  24212. height: math.unit(1000, "feet")
  24213. },
  24214. {
  24215. name: "Megamacro",
  24216. height: math.unit(2, "miles")
  24217. },
  24218. {
  24219. name: "Gigamacro",
  24220. height: math.unit(20, "earths")
  24221. },
  24222. ]
  24223. ))
  24224. characterMakers.push(() => makeCharacter(
  24225. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24226. {
  24227. front: {
  24228. height: math.unit(5, "feet"),
  24229. weight: math.unit(180, "lb"),
  24230. name: "Front",
  24231. image: {
  24232. source: "./media/characters/mekana/front.svg",
  24233. extra: 1671 / 1605,
  24234. bottom: 3.5 / 1691
  24235. }
  24236. },
  24237. side: {
  24238. height: math.unit(5, "feet"),
  24239. weight: math.unit(180, "lb"),
  24240. name: "Side",
  24241. image: {
  24242. source: "./media/characters/mekana/side.svg",
  24243. extra: 1671 / 1605,
  24244. bottom: 3.5 / 1691
  24245. }
  24246. },
  24247. back: {
  24248. height: math.unit(5, "feet"),
  24249. weight: math.unit(180, "lb"),
  24250. name: "Back",
  24251. image: {
  24252. source: "./media/characters/mekana/back.svg",
  24253. extra: 1671 / 1605,
  24254. bottom: 3.5 / 1691
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(5, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(4 + 6 / 12, "feet"),
  24271. weight: math.unit(80, "lb"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/pixie/front.svg",
  24275. extra: 1924 / 1825,
  24276. bottom: 22.4 / 1946
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Normal",
  24283. height: math.unit(4 + 6 / 12, "feet"),
  24284. default: true
  24285. },
  24286. {
  24287. name: "Macro",
  24288. height: math.unit(40, "feet")
  24289. },
  24290. ]
  24291. ))
  24292. characterMakers.push(() => makeCharacter(
  24293. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24294. {
  24295. front: {
  24296. height: math.unit(2.1, "meters"),
  24297. weight: math.unit(200, "lb"),
  24298. name: "Front",
  24299. image: {
  24300. source: "./media/characters/the-lascivious/front.svg",
  24301. extra: 1 / 0.893,
  24302. bottom: 3.5 / 573.7
  24303. }
  24304. },
  24305. },
  24306. [
  24307. {
  24308. name: "Human Scale",
  24309. height: math.unit(2.1, "meters")
  24310. },
  24311. {
  24312. name: "Wolxi Scale",
  24313. height: math.unit(46.2, "m"),
  24314. default: true
  24315. },
  24316. {
  24317. name: "Boinker of Buildings",
  24318. height: math.unit(10, "km")
  24319. },
  24320. {
  24321. name: "Shagger of Skyscrapers",
  24322. height: math.unit(40, "km")
  24323. },
  24324. {
  24325. name: "Banger of Boroughs",
  24326. height: math.unit(4000, "km")
  24327. },
  24328. {
  24329. name: "Screwer of States",
  24330. height: math.unit(100000, "km")
  24331. },
  24332. {
  24333. name: "Pounder of Planets",
  24334. height: math.unit(2000000, "km")
  24335. },
  24336. ]
  24337. ))
  24338. characterMakers.push(() => makeCharacter(
  24339. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24340. {
  24341. front: {
  24342. height: math.unit(6, "feet"),
  24343. weight: math.unit(150, "lb"),
  24344. name: "Front",
  24345. image: {
  24346. source: "./media/characters/aj/front.svg",
  24347. extra: 2039 / 1562,
  24348. bottom: 40 / 2079
  24349. }
  24350. },
  24351. },
  24352. [
  24353. {
  24354. name: "Normal",
  24355. height: math.unit(11 + 6 / 12, "feet"),
  24356. default: true
  24357. },
  24358. {
  24359. name: "Megamacro",
  24360. height: math.unit(60, "megameters")
  24361. },
  24362. ]
  24363. ))
  24364. characterMakers.push(() => makeCharacter(
  24365. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24366. {
  24367. side: {
  24368. height: math.unit(31 + 8 / 12, "feet"),
  24369. weight: math.unit(75000, "kg"),
  24370. name: "Side",
  24371. image: {
  24372. source: "./media/characters/koros/side.svg",
  24373. extra: 1442 / 1297,
  24374. bottom: 122.7 / 1562
  24375. }
  24376. },
  24377. dicksKingsCrown: {
  24378. height: math.unit(6, "feet"),
  24379. name: "Dicks (King's Crown)",
  24380. image: {
  24381. source: "./media/characters/koros/dicks-kings-crown.svg"
  24382. }
  24383. },
  24384. dicksTailSet: {
  24385. height: math.unit(3, "feet"),
  24386. name: "Dicks (Tail Set)",
  24387. image: {
  24388. source: "./media/characters/koros/dicks-tail-set.svg"
  24389. }
  24390. },
  24391. dickCumming: {
  24392. height: math.unit(7.98, "feet"),
  24393. name: "Dick (Cumming)",
  24394. image: {
  24395. source: "./media/characters/koros/dick-cumming.svg"
  24396. }
  24397. },
  24398. dicksBack: {
  24399. height: math.unit(5.9, "feet"),
  24400. name: "Dicks (Back)",
  24401. image: {
  24402. source: "./media/characters/koros/dicks-back.svg"
  24403. }
  24404. },
  24405. dicksFront: {
  24406. height: math.unit(3.72, "feet"),
  24407. name: "Dicks (Front)",
  24408. image: {
  24409. source: "./media/characters/koros/dicks-front.svg"
  24410. }
  24411. },
  24412. dicksPeeking: {
  24413. height: math.unit(3.0, "feet"),
  24414. name: "Dicks (Peeking)",
  24415. image: {
  24416. source: "./media/characters/koros/dicks-peeking.svg"
  24417. }
  24418. },
  24419. eye: {
  24420. height: math.unit(1.7, "feet"),
  24421. name: "Eye",
  24422. image: {
  24423. source: "./media/characters/koros/eye.svg"
  24424. }
  24425. },
  24426. headFront: {
  24427. height: math.unit(11.69, "feet"),
  24428. name: "Head (Front)",
  24429. image: {
  24430. source: "./media/characters/koros/head-front.svg"
  24431. }
  24432. },
  24433. headSide: {
  24434. height: math.unit(14, "feet"),
  24435. name: "Head (Side)",
  24436. image: {
  24437. source: "./media/characters/koros/head-side.svg"
  24438. }
  24439. },
  24440. leg: {
  24441. height: math.unit(17, "feet"),
  24442. name: "Leg",
  24443. image: {
  24444. source: "./media/characters/koros/leg.svg"
  24445. }
  24446. },
  24447. mawSide: {
  24448. height: math.unit(12.8, "feet"),
  24449. name: "Maw (Side)",
  24450. image: {
  24451. source: "./media/characters/koros/maw-side.svg"
  24452. }
  24453. },
  24454. mawSpitting: {
  24455. height: math.unit(17, "feet"),
  24456. name: "Maw (Spitting)",
  24457. image: {
  24458. source: "./media/characters/koros/maw-spitting.svg"
  24459. }
  24460. },
  24461. slit: {
  24462. height: math.unit(2.8, "feet"),
  24463. name: "Slit",
  24464. image: {
  24465. source: "./media/characters/koros/slit.svg"
  24466. }
  24467. },
  24468. stomach: {
  24469. height: math.unit(6.8, "feet"),
  24470. capacity: math.unit(20, "people"),
  24471. name: "Stomach",
  24472. image: {
  24473. source: "./media/characters/koros/stomach.svg"
  24474. }
  24475. },
  24476. wingspanBottom: {
  24477. height: math.unit(114, "feet"),
  24478. name: "Wingspan (Bottom)",
  24479. image: {
  24480. source: "./media/characters/koros/wingspan-bottom.svg"
  24481. }
  24482. },
  24483. wingspanTop: {
  24484. height: math.unit(104, "feet"),
  24485. name: "Wingspan (Top)",
  24486. image: {
  24487. source: "./media/characters/koros/wingspan-top.svg"
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Normal",
  24494. height: math.unit(31 + 8 / 12, "feet"),
  24495. default: true
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24501. {
  24502. front: {
  24503. height: math.unit(18 + 5 / 12, "feet"),
  24504. weight: math.unit(3750, "kg"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/vexx/front.svg",
  24508. extra: 426 / 396,
  24509. bottom: 31.5 / 458
  24510. }
  24511. },
  24512. maw: {
  24513. height: math.unit(6, "feet"),
  24514. name: "Maw",
  24515. image: {
  24516. source: "./media/characters/vexx/maw.svg"
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Normal",
  24523. height: math.unit(18 + 5 / 12, "feet"),
  24524. default: true
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24530. {
  24531. front: {
  24532. height: math.unit(17 + 6 / 12, "feet"),
  24533. weight: math.unit(150, "lb"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/baadra/front.svg",
  24537. extra: 3137 / 2890,
  24538. bottom: 168.4 / 3305
  24539. }
  24540. },
  24541. back: {
  24542. height: math.unit(17 + 6 / 12, "feet"),
  24543. weight: math.unit(150, "lb"),
  24544. name: "Back",
  24545. image: {
  24546. source: "./media/characters/baadra/back.svg",
  24547. extra: 3142 / 2890,
  24548. bottom: 220 / 3371
  24549. }
  24550. },
  24551. head: {
  24552. height: math.unit(5.45, "feet"),
  24553. name: "Head",
  24554. image: {
  24555. source: "./media/characters/baadra/head.svg"
  24556. }
  24557. },
  24558. headAngry: {
  24559. height: math.unit(4.95, "feet"),
  24560. name: "Head (Angry)",
  24561. image: {
  24562. source: "./media/characters/baadra/head-angry.svg"
  24563. }
  24564. },
  24565. headOpen: {
  24566. height: math.unit(6, "feet"),
  24567. name: "Head (Open)",
  24568. image: {
  24569. source: "./media/characters/baadra/head-open.svg"
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Normal",
  24576. height: math.unit(17 + 6 / 12, "feet"),
  24577. default: true
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24583. {
  24584. front: {
  24585. height: math.unit(7 + 3 / 12, "feet"),
  24586. weight: math.unit(180, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/juri/front.svg",
  24590. extra: 1401 / 1237,
  24591. bottom: 18.5 / 1418
  24592. }
  24593. },
  24594. side: {
  24595. height: math.unit(7 + 3 / 12, "feet"),
  24596. weight: math.unit(180, "lb"),
  24597. name: "Side",
  24598. image: {
  24599. source: "./media/characters/juri/side.svg",
  24600. extra: 1424 / 1242,
  24601. bottom: 18.5 / 1447
  24602. }
  24603. },
  24604. sitting: {
  24605. height: math.unit(6, "feet"),
  24606. weight: math.unit(180, "lb"),
  24607. name: "Sitting",
  24608. image: {
  24609. source: "./media/characters/juri/sitting.svg",
  24610. extra: 1270 / 1143,
  24611. bottom: 100 / 1343
  24612. }
  24613. },
  24614. back: {
  24615. height: math.unit(7 + 3 / 12, "feet"),
  24616. weight: math.unit(180, "lb"),
  24617. name: "Back",
  24618. image: {
  24619. source: "./media/characters/juri/back.svg",
  24620. extra: 1377 / 1240,
  24621. bottom: 23.7 / 1405
  24622. }
  24623. },
  24624. maw: {
  24625. height: math.unit(2.8, "feet"),
  24626. name: "Maw",
  24627. image: {
  24628. source: "./media/characters/juri/maw.svg"
  24629. }
  24630. },
  24631. stomach: {
  24632. height: math.unit(0.89, "feet"),
  24633. capacity: math.unit(4, "liters"),
  24634. name: "Stomach",
  24635. image: {
  24636. source: "./media/characters/juri/stomach.svg"
  24637. }
  24638. },
  24639. },
  24640. [
  24641. {
  24642. name: "Normal",
  24643. height: math.unit(7 + 3 / 12, "feet"),
  24644. default: true
  24645. },
  24646. ]
  24647. ))
  24648. characterMakers.push(() => makeCharacter(
  24649. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24650. {
  24651. fox: {
  24652. height: math.unit(5 + 6 / 12, "feet"),
  24653. weight: math.unit(140, "lb"),
  24654. name: "Fox",
  24655. image: {
  24656. source: "./media/characters/maxene-sita/fox.svg",
  24657. extra: 146 / 138,
  24658. bottom: 2.1 / 148.19
  24659. }
  24660. },
  24661. kitsune: {
  24662. height: math.unit(10, "feet"),
  24663. weight: math.unit(800, "lb"),
  24664. name: "Kitsune",
  24665. image: {
  24666. source: "./media/characters/maxene-sita/kitsune.svg",
  24667. extra: 185 / 176,
  24668. bottom: 4.7 / 189.9
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(5 + 6 / 12, "feet"),
  24676. default: true
  24677. },
  24678. ]
  24679. ))
  24680. characterMakers.push(() => makeCharacter(
  24681. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24682. {
  24683. front: {
  24684. height: math.unit(3 + 4 / 12, "feet"),
  24685. weight: math.unit(70, "lb"),
  24686. name: "Front",
  24687. image: {
  24688. source: "./media/characters/maia/front.svg",
  24689. extra: 227 / 219.5,
  24690. bottom: 40 / 267
  24691. }
  24692. },
  24693. back: {
  24694. height: math.unit(3 + 4 / 12, "feet"),
  24695. weight: math.unit(70, "lb"),
  24696. name: "Back",
  24697. image: {
  24698. source: "./media/characters/maia/back.svg",
  24699. extra: 237 / 225
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Normal",
  24706. height: math.unit(3 + 4 / 12, "feet"),
  24707. default: true
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24713. {
  24714. front: {
  24715. height: math.unit(5 + 10 / 12, "feet"),
  24716. weight: math.unit(197, "lb"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/jabaro/front.svg",
  24720. extra: 225 / 216,
  24721. bottom: 5.06 / 230
  24722. }
  24723. },
  24724. back: {
  24725. height: math.unit(5 + 10 / 12, "feet"),
  24726. weight: math.unit(197, "lb"),
  24727. name: "Back",
  24728. image: {
  24729. source: "./media/characters/jabaro/back.svg",
  24730. extra: 225 / 219,
  24731. bottom: 1.9 / 227
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Normal",
  24738. height: math.unit(5 + 10 / 12, "feet"),
  24739. default: true
  24740. },
  24741. ]
  24742. ))
  24743. characterMakers.push(() => makeCharacter(
  24744. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24745. {
  24746. front: {
  24747. height: math.unit(5 + 8 / 12, "feet"),
  24748. weight: math.unit(139, "lb"),
  24749. name: "Front",
  24750. image: {
  24751. source: "./media/characters/risa/front.svg",
  24752. extra: 270 / 260,
  24753. bottom: 11.2 / 282
  24754. }
  24755. },
  24756. back: {
  24757. height: math.unit(5 + 8 / 12, "feet"),
  24758. weight: math.unit(139, "lb"),
  24759. name: "Back",
  24760. image: {
  24761. source: "./media/characters/risa/back.svg",
  24762. extra: 264 / 255,
  24763. bottom: 4 / 268
  24764. }
  24765. },
  24766. },
  24767. [
  24768. {
  24769. name: "Normal",
  24770. height: math.unit(5 + 8 / 12, "feet"),
  24771. default: true
  24772. },
  24773. ]
  24774. ))
  24775. characterMakers.push(() => makeCharacter(
  24776. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24777. {
  24778. front: {
  24779. height: math.unit(2 + 11 / 12, "feet"),
  24780. weight: math.unit(30, "lb"),
  24781. name: "Front",
  24782. image: {
  24783. source: "./media/characters/weatley/front.svg",
  24784. bottom: 10.7 / 414,
  24785. extra: 403.5 / 362
  24786. }
  24787. },
  24788. back: {
  24789. height: math.unit(2 + 11 / 12, "feet"),
  24790. weight: math.unit(30, "lb"),
  24791. name: "Back",
  24792. image: {
  24793. source: "./media/characters/weatley/back.svg",
  24794. bottom: 10.7 / 414,
  24795. extra: 403.5 / 362
  24796. }
  24797. },
  24798. },
  24799. [
  24800. {
  24801. name: "Normal",
  24802. height: math.unit(2 + 11 / 12, "feet"),
  24803. default: true
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24809. {
  24810. front: {
  24811. height: math.unit(5 + 2 / 12, "feet"),
  24812. weight: math.unit(50, "kg"),
  24813. name: "Front",
  24814. image: {
  24815. source: "./media/characters/mercury-crescent/front.svg",
  24816. extra: 1088 / 1033,
  24817. bottom: 18.9 / 1109
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(5 + 2 / 12, "feet"),
  24825. default: true
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(2, "feet"),
  24834. weight: math.unit(15, "kg"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/diamond-jones/front.svg",
  24838. bottom: 16 / 568
  24839. }
  24840. },
  24841. },
  24842. [
  24843. {
  24844. name: "Normal",
  24845. height: math.unit(2, "feet"),
  24846. default: true
  24847. },
  24848. ]
  24849. ))
  24850. characterMakers.push(() => makeCharacter(
  24851. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24852. {
  24853. front: {
  24854. height: math.unit(3, "feet"),
  24855. weight: math.unit(30, "kg"),
  24856. name: "Front",
  24857. image: {
  24858. source: "./media/characters/sweet-bit/front.svg",
  24859. extra: 675 / 567,
  24860. bottom: 27.7 / 703
  24861. }
  24862. },
  24863. },
  24864. [
  24865. {
  24866. name: "Normal",
  24867. height: math.unit(3, "feet"),
  24868. default: true
  24869. },
  24870. ]
  24871. ))
  24872. characterMakers.push(() => makeCharacter(
  24873. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24874. {
  24875. side: {
  24876. height: math.unit(9.178, "feet"),
  24877. weight: math.unit(500, "lb"),
  24878. name: "Side",
  24879. image: {
  24880. source: "./media/characters/umbrazen/side.svg",
  24881. extra: 1730 / 1473,
  24882. bottom: 34.6 / 1765
  24883. }
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "Normal",
  24889. height: math.unit(9.178, "feet"),
  24890. default: true
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24896. {
  24897. front: {
  24898. height: math.unit(10, "feet"),
  24899. weight: math.unit(750, "lb"),
  24900. name: "Front",
  24901. image: {
  24902. source: "./media/characters/arlist/front.svg",
  24903. extra: 961 / 778,
  24904. bottom: 6.2 / 986
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(10, "feet"),
  24912. default: true
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24918. {
  24919. front: {
  24920. height: math.unit(5 + 1 / 12, "feet"),
  24921. weight: math.unit(110, "lb"),
  24922. name: "Front",
  24923. image: {
  24924. source: "./media/characters/aradel/front.svg",
  24925. extra: 324 / 303,
  24926. bottom: 3.6 / 329.4
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Normal",
  24933. height: math.unit(5 + 1 / 12, "feet"),
  24934. default: true
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(3 + 8 / 12, "feet"),
  24943. weight: math.unit(50, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/serryn/front.svg",
  24947. extra: 1792 / 1656,
  24948. bottom: 43.5 / 1840
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Normal",
  24955. height: math.unit(3 + 8 / 12, "feet"),
  24956. default: true
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Xavier Thyme" },
  24962. {
  24963. front: {
  24964. height: math.unit(7 + 10 / 12, "feet"),
  24965. weight: math.unit(255, "lb"),
  24966. name: "Front",
  24967. image: {
  24968. source: "./media/characters/xavier-thyme/front.svg",
  24969. extra: 3733 / 3642,
  24970. bottom: 131 / 3869
  24971. }
  24972. },
  24973. frontRaven: {
  24974. height: math.unit(7 + 10 / 12, "feet"),
  24975. weight: math.unit(255, "lb"),
  24976. name: "Front (Raven)",
  24977. image: {
  24978. source: "./media/characters/xavier-thyme/front-raven.svg",
  24979. extra: 4385 / 3642,
  24980. bottom: 131 / 4517
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Normal",
  24987. height: math.unit(7 + 10 / 12, "feet"),
  24988. default: true
  24989. },
  24990. ]
  24991. ))
  24992. characterMakers.push(() => makeCharacter(
  24993. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24994. {
  24995. front: {
  24996. height: math.unit(1.6, "m"),
  24997. weight: math.unit(50, "kg"),
  24998. name: "Front",
  24999. image: {
  25000. source: "./media/characters/kiki/front.svg",
  25001. extra: 4682 / 3610,
  25002. bottom: 115 / 4777
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Normal",
  25009. height: math.unit(1.6, "meters"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25016. {
  25017. front: {
  25018. height: math.unit(50, "m"),
  25019. weight: math.unit(500, "tonnes"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/ryoko/front.svg",
  25023. extra: 4632 / 3926,
  25024. bottom: 193 / 4823
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Normal",
  25031. height: math.unit(50, "meters"),
  25032. default: true
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25038. {
  25039. front: {
  25040. height: math.unit(30, "m"),
  25041. weight: math.unit(22, "tonnes"),
  25042. name: "Front",
  25043. image: {
  25044. source: "./media/characters/elio/front.svg",
  25045. extra: 4582 / 3720,
  25046. bottom: 236 / 4828
  25047. }
  25048. },
  25049. },
  25050. [
  25051. {
  25052. name: "Normal",
  25053. height: math.unit(30, "meters"),
  25054. default: true
  25055. },
  25056. ]
  25057. ))
  25058. characterMakers.push(() => makeCharacter(
  25059. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25060. {
  25061. front: {
  25062. height: math.unit(6 + 3 / 12, "feet"),
  25063. weight: math.unit(120, "lb"),
  25064. name: "Front",
  25065. image: {
  25066. source: "./media/characters/azura/front.svg",
  25067. extra: 1149 / 1135,
  25068. bottom: 45 / 1194
  25069. }
  25070. },
  25071. frontClothed: {
  25072. height: math.unit(6 + 3 / 12, "feet"),
  25073. weight: math.unit(120, "lb"),
  25074. name: "Front (Clothed)",
  25075. image: {
  25076. source: "./media/characters/azura/front-clothed.svg",
  25077. extra: 1149 / 1135,
  25078. bottom: 45 / 1194
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(6 + 3 / 12, "feet"),
  25086. default: true
  25087. },
  25088. {
  25089. name: "Macro",
  25090. height: math.unit(20 + 6 / 12, "feet")
  25091. },
  25092. {
  25093. name: "Megamacro",
  25094. height: math.unit(12, "miles")
  25095. },
  25096. {
  25097. name: "Gigamacro",
  25098. height: math.unit(10000, "miles")
  25099. },
  25100. {
  25101. name: "Teramacro",
  25102. height: math.unit(900000, "miles")
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25108. {
  25109. front: {
  25110. height: math.unit(12, "feet"),
  25111. weight: math.unit(1, "ton"),
  25112. capacity: math.unit(660000, "gallons"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/zeus/front.svg",
  25116. extra: 5005 / 4717,
  25117. bottom: 363 / 5388
  25118. }
  25119. },
  25120. },
  25121. [
  25122. {
  25123. name: "Normal",
  25124. height: math.unit(12, "feet")
  25125. },
  25126. {
  25127. name: "Preferred Size",
  25128. height: math.unit(0.5, "miles"),
  25129. default: true
  25130. },
  25131. {
  25132. name: "Giga Horse",
  25133. height: math.unit(300, "miles")
  25134. },
  25135. {
  25136. name: "Riding Planets",
  25137. height: math.unit(30, "megameters")
  25138. },
  25139. {
  25140. name: "Cosmic Giant",
  25141. height: math.unit(3, "zettameters")
  25142. },
  25143. {
  25144. name: "Breeding God",
  25145. height: math.unit(9.92e22, "yottameters")
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25151. {
  25152. side: {
  25153. height: math.unit(9, "feet"),
  25154. weight: math.unit(1500, "kg"),
  25155. name: "Side",
  25156. image: {
  25157. source: "./media/characters/fang/side.svg",
  25158. extra: 924 / 866,
  25159. bottom: 47.5 / 972.3
  25160. }
  25161. },
  25162. },
  25163. [
  25164. {
  25165. name: "Normal",
  25166. height: math.unit(9, "feet"),
  25167. default: true
  25168. },
  25169. {
  25170. name: "Macro",
  25171. height: math.unit(75 + 6 / 12, "feet")
  25172. },
  25173. {
  25174. name: "Teramacro",
  25175. height: math.unit(50000, "miles")
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25181. {
  25182. front: {
  25183. height: math.unit(10, "feet"),
  25184. weight: math.unit(2, "tons"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/rekhit/front.svg",
  25188. extra: 2796 / 2590,
  25189. bottom: 225 / 3022
  25190. }
  25191. },
  25192. },
  25193. [
  25194. {
  25195. name: "Normal",
  25196. height: math.unit(10, "feet"),
  25197. default: true
  25198. },
  25199. {
  25200. name: "Macro",
  25201. height: math.unit(500, "feet")
  25202. },
  25203. ]
  25204. ))
  25205. characterMakers.push(() => makeCharacter(
  25206. { name: "Dahlia Verrick" },
  25207. {
  25208. front: {
  25209. height: math.unit(7 + 6.451 / 12, "feet"),
  25210. weight: math.unit(310, "lb"),
  25211. name: "Front",
  25212. image: {
  25213. source: "./media/characters/dahlia-verrick/front.svg",
  25214. extra: 1488 / 1365,
  25215. bottom: 6.2 / 1495
  25216. }
  25217. },
  25218. back: {
  25219. height: math.unit(7 + 6.451 / 12, "feet"),
  25220. weight: math.unit(310, "lb"),
  25221. name: "Back",
  25222. image: {
  25223. source: "./media/characters/dahlia-verrick/back.svg",
  25224. extra: 1472 / 1351,
  25225. bottom: 5.28 / 1477
  25226. }
  25227. },
  25228. frontBusiness: {
  25229. height: math.unit(7 + 6.451 / 12, "feet"),
  25230. weight: math.unit(200, "lb"),
  25231. name: "Front (Business)",
  25232. image: {
  25233. source: "./media/characters/dahlia-verrick/front-business.svg",
  25234. extra: 1478 / 1381,
  25235. bottom: 5.5 / 1484
  25236. }
  25237. },
  25238. frontCasual: {
  25239. height: math.unit(7 + 6.451 / 12, "feet"),
  25240. weight: math.unit(200, "lb"),
  25241. name: "Front (Casual)",
  25242. image: {
  25243. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25244. extra: 1478 / 1381,
  25245. bottom: 5.5 / 1484
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Travel-Sized",
  25252. height: math.unit(7.45, "inches")
  25253. },
  25254. {
  25255. name: "Normal",
  25256. height: math.unit(7 + 6.451 / 12, "feet"),
  25257. default: true
  25258. },
  25259. {
  25260. name: "Hitting the Town",
  25261. height: math.unit(37 + 8 / 12, "feet")
  25262. },
  25263. {
  25264. name: "Stomp in the Suburbs",
  25265. height: math.unit(964 + 9.728 / 12, "feet")
  25266. },
  25267. {
  25268. name: "Sit on the City",
  25269. height: math.unit(61747 + 10.592 / 12, "feet")
  25270. },
  25271. {
  25272. name: "Glomp the Globe",
  25273. height: math.unit(252919327 + 4.832 / 12, "feet")
  25274. },
  25275. ]
  25276. ))
  25277. characterMakers.push(() => makeCharacter(
  25278. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25279. {
  25280. front: {
  25281. height: math.unit(6 + 4 / 12, "feet"),
  25282. weight: math.unit(320, "lb"),
  25283. name: "Front",
  25284. image: {
  25285. source: "./media/characters/balina-mahigan/front.svg",
  25286. extra: 447 / 428,
  25287. bottom: 18 / 466
  25288. }
  25289. },
  25290. back: {
  25291. height: math.unit(6 + 4 / 12, "feet"),
  25292. weight: math.unit(320, "lb"),
  25293. name: "Back",
  25294. image: {
  25295. source: "./media/characters/balina-mahigan/back.svg",
  25296. extra: 445 / 428,
  25297. bottom: 4.07 / 448
  25298. }
  25299. },
  25300. arm: {
  25301. height: math.unit(1.88, "feet"),
  25302. name: "Arm",
  25303. image: {
  25304. source: "./media/characters/balina-mahigan/arm.svg"
  25305. }
  25306. },
  25307. backPort: {
  25308. height: math.unit(0.685, "feet"),
  25309. name: "Back Port",
  25310. image: {
  25311. source: "./media/characters/balina-mahigan/back-port.svg"
  25312. }
  25313. },
  25314. hoofpaw: {
  25315. height: math.unit(1.41, "feet"),
  25316. name: "Hoofpaw",
  25317. image: {
  25318. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25319. }
  25320. },
  25321. leftHandBack: {
  25322. height: math.unit(0.938, "feet"),
  25323. name: "Left Hand (Back)",
  25324. image: {
  25325. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25326. }
  25327. },
  25328. leftHandFront: {
  25329. height: math.unit(0.938, "feet"),
  25330. name: "Left Hand (Front)",
  25331. image: {
  25332. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25333. }
  25334. },
  25335. rightHandBack: {
  25336. height: math.unit(0.95, "feet"),
  25337. name: "Right Hand (Back)",
  25338. image: {
  25339. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25340. }
  25341. },
  25342. rightHandFront: {
  25343. height: math.unit(0.95, "feet"),
  25344. name: "Right Hand (Front)",
  25345. image: {
  25346. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Normal",
  25353. height: math.unit(6 + 4 / 12, "feet"),
  25354. default: true
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25360. {
  25361. front: {
  25362. height: math.unit(6, "feet"),
  25363. weight: math.unit(320, "lb"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/balina-mejeri/front.svg",
  25367. extra: 517 / 488,
  25368. bottom: 44.2 / 561
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(6 + 4 / 12, "feet")
  25376. },
  25377. {
  25378. name: "Business",
  25379. height: math.unit(155, "feet"),
  25380. default: true
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25386. {
  25387. kneeling: {
  25388. height: math.unit(6 + 4 / 12, "feet"),
  25389. weight: math.unit(300 * 20, "lb"),
  25390. name: "Kneeling",
  25391. image: {
  25392. source: "./media/characters/balbarian/kneeling.svg",
  25393. extra: 922 / 862,
  25394. bottom: 42.4 / 965
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Normal",
  25401. height: math.unit(6 + 4 / 12, "feet")
  25402. },
  25403. {
  25404. name: "Treasured",
  25405. height: math.unit(18 + 9 / 12, "feet"),
  25406. default: true
  25407. },
  25408. {
  25409. name: "Macro",
  25410. height: math.unit(900, "feet")
  25411. },
  25412. ]
  25413. ))
  25414. characterMakers.push(() => makeCharacter(
  25415. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25416. {
  25417. front: {
  25418. height: math.unit(6 + 4 / 12, "feet"),
  25419. weight: math.unit(325, "lb"),
  25420. name: "Front",
  25421. image: {
  25422. source: "./media/characters/balina-amarini/front.svg",
  25423. extra: 415 / 403,
  25424. bottom: 19 / 433.4
  25425. }
  25426. },
  25427. back: {
  25428. height: math.unit(6 + 4 / 12, "feet"),
  25429. weight: math.unit(325, "lb"),
  25430. name: "Back",
  25431. image: {
  25432. source: "./media/characters/balina-amarini/back.svg",
  25433. extra: 415 / 403,
  25434. bottom: 13.5 / 432
  25435. }
  25436. },
  25437. overdrive: {
  25438. height: math.unit(6 + 4 / 12, "feet"),
  25439. weight: math.unit(400, "lb"),
  25440. name: "Overdrive",
  25441. image: {
  25442. source: "./media/characters/balina-amarini/overdrive.svg",
  25443. extra: 269 / 259,
  25444. bottom: 12 / 282
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Boom",
  25451. height: math.unit(9 + 10 / 12, "feet"),
  25452. default: true
  25453. },
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(280, "feet")
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25462. {
  25463. goddess: {
  25464. height: math.unit(600, "feet"),
  25465. weight: math.unit(2000000, "tons"),
  25466. name: "Goddess",
  25467. image: {
  25468. source: "./media/characters/lady-kubwa/goddess.svg",
  25469. extra: 1240.5 / 1223,
  25470. bottom: 22 / 1263
  25471. }
  25472. },
  25473. goddesser: {
  25474. height: math.unit(900, "feet"),
  25475. weight: math.unit(20000000, "lb"),
  25476. name: "Goddess-er",
  25477. image: {
  25478. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25479. extra: 899 / 888,
  25480. bottom: 12.6 / 912
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Macro",
  25487. height: math.unit(600, "feet"),
  25488. default: true
  25489. },
  25490. {
  25491. name: "Megamacro",
  25492. height: math.unit(250, "miles")
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(7 + 7 / 12, "feet"),
  25501. weight: math.unit(250, "lb"),
  25502. name: "Front",
  25503. image: {
  25504. source: "./media/characters/tala-grovehorn/front.svg",
  25505. extra: 2636 / 2525,
  25506. bottom: 147 / 2781
  25507. }
  25508. },
  25509. back: {
  25510. height: math.unit(7 + 7 / 12, "feet"),
  25511. weight: math.unit(250, "lb"),
  25512. name: "Back",
  25513. image: {
  25514. source: "./media/characters/tala-grovehorn/back.svg",
  25515. extra: 2635 / 2539,
  25516. bottom: 100 / 2732.8
  25517. }
  25518. },
  25519. mouth: {
  25520. height: math.unit(1.15, "feet"),
  25521. name: "Mouth",
  25522. image: {
  25523. source: "./media/characters/tala-grovehorn/mouth.svg"
  25524. }
  25525. },
  25526. dick: {
  25527. height: math.unit(2.36, "feet"),
  25528. name: "Dick",
  25529. image: {
  25530. source: "./media/characters/tala-grovehorn/dick.svg"
  25531. }
  25532. },
  25533. slit: {
  25534. height: math.unit(0.61, "feet"),
  25535. name: "Slit",
  25536. image: {
  25537. source: "./media/characters/tala-grovehorn/slit.svg"
  25538. }
  25539. },
  25540. },
  25541. [
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25546. {
  25547. front: {
  25548. height: math.unit(7 + 7 / 12, "feet"),
  25549. weight: math.unit(225, "lb"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/epona/front.svg",
  25553. extra: 2445 / 2290,
  25554. bottom: 251 / 2696
  25555. }
  25556. },
  25557. back: {
  25558. height: math.unit(7 + 7 / 12, "feet"),
  25559. weight: math.unit(225, "lb"),
  25560. name: "Back",
  25561. image: {
  25562. source: "./media/characters/epona/back.svg",
  25563. extra: 2546 / 2408,
  25564. bottom: 44 / 2589
  25565. }
  25566. },
  25567. genitals: {
  25568. height: math.unit(1.5, "feet"),
  25569. name: "Genitals",
  25570. image: {
  25571. source: "./media/characters/epona/genitals.svg"
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Normal",
  25578. height: math.unit(7 + 7 / 12, "feet")
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25584. {
  25585. front: {
  25586. height: math.unit(7, "feet"),
  25587. weight: math.unit(518, "lb"),
  25588. name: "Front",
  25589. image: {
  25590. source: "./media/characters/avia-bloodbourn/front.svg",
  25591. extra: 1466 / 1350,
  25592. bottom: 65 / 1527
  25593. }
  25594. },
  25595. },
  25596. [
  25597. ]
  25598. ))
  25599. characterMakers.push(() => makeCharacter(
  25600. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25601. {
  25602. front: {
  25603. height: math.unit(9.35, "feet"),
  25604. weight: math.unit(600, "lb"),
  25605. name: "Front",
  25606. image: {
  25607. source: "./media/characters/amera/front.svg",
  25608. extra: 891 / 818,
  25609. bottom: 30 / 922.7
  25610. }
  25611. },
  25612. back: {
  25613. height: math.unit(9.35, "feet"),
  25614. weight: math.unit(600, "lb"),
  25615. name: "Back",
  25616. image: {
  25617. source: "./media/characters/amera/back.svg",
  25618. extra: 876 / 824,
  25619. bottom: 6.8 / 884
  25620. }
  25621. },
  25622. dick: {
  25623. height: math.unit(2.14, "feet"),
  25624. name: "Dick",
  25625. image: {
  25626. source: "./media/characters/amera/dick.svg"
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(9.35, "feet"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25640. {
  25641. kneeling: {
  25642. height: math.unit(3 + 4 / 12, "feet"),
  25643. weight: math.unit(90, "lb"),
  25644. name: "Kneeling",
  25645. image: {
  25646. source: "./media/characters/rosewen/kneeling.svg",
  25647. extra: 1835 / 1571,
  25648. bottom: 27.7 / 1862
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(3 + 4 / 12, "feet"),
  25656. default: true
  25657. },
  25658. ]
  25659. ))
  25660. characterMakers.push(() => makeCharacter(
  25661. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25662. {
  25663. front: {
  25664. height: math.unit(5 + 10 / 12, "feet"),
  25665. weight: math.unit(200, "lb"),
  25666. name: "Front",
  25667. image: {
  25668. source: "./media/characters/sabah/front.svg",
  25669. extra: 849 / 763,
  25670. bottom: 33.9 / 881
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Normal",
  25677. height: math.unit(5 + 10 / 12, "feet"),
  25678. default: true
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25684. {
  25685. front: {
  25686. height: math.unit(3 + 5 / 12, "feet"),
  25687. weight: math.unit(40, "kg"),
  25688. name: "Front",
  25689. image: {
  25690. source: "./media/characters/purple-flame/front.svg",
  25691. extra: 1577 / 1412,
  25692. bottom: 97 / 1694
  25693. }
  25694. },
  25695. frontDressed: {
  25696. height: math.unit(3 + 5 / 12, "feet"),
  25697. weight: math.unit(40, "kg"),
  25698. name: "Front (Dressed)",
  25699. image: {
  25700. source: "./media/characters/purple-flame/front-dressed.svg",
  25701. extra: 1577 / 1412,
  25702. bottom: 97 / 1694
  25703. }
  25704. },
  25705. headphones: {
  25706. height: math.unit(0.85, "feet"),
  25707. name: "Headphones",
  25708. image: {
  25709. source: "./media/characters/purple-flame/headphones.svg"
  25710. }
  25711. },
  25712. },
  25713. [
  25714. {
  25715. name: "Really Small",
  25716. height: math.unit(5, "cm")
  25717. },
  25718. {
  25719. name: "Micro",
  25720. height: math.unit(1 + 5 / 12, "feet")
  25721. },
  25722. {
  25723. name: "Normal",
  25724. height: math.unit(3 + 5 / 12, "feet"),
  25725. default: true
  25726. },
  25727. {
  25728. name: "Minimacro",
  25729. height: math.unit(125, "feet")
  25730. },
  25731. {
  25732. name: "Macro",
  25733. height: math.unit(0.5, "miles")
  25734. },
  25735. {
  25736. name: "Megamacro",
  25737. height: math.unit(50, "miles")
  25738. },
  25739. {
  25740. name: "Gigantic",
  25741. height: math.unit(750, "miles")
  25742. },
  25743. {
  25744. name: "Planetary",
  25745. height: math.unit(15000, "miles")
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(14, "feet"),
  25754. weight: math.unit(959, "lb"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/arsenal/front.svg",
  25758. extra: 2357 / 2157,
  25759. bottom: 93 / 2458
  25760. }
  25761. },
  25762. },
  25763. [
  25764. {
  25765. name: "Normal",
  25766. height: math.unit(14, "feet"),
  25767. default: true
  25768. },
  25769. ]
  25770. ))
  25771. characterMakers.push(() => makeCharacter(
  25772. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25773. {
  25774. front: {
  25775. height: math.unit(6, "feet"),
  25776. weight: math.unit(150, "lb"),
  25777. name: "Front",
  25778. image: {
  25779. source: "./media/characters/adira/front.svg",
  25780. extra: 1078 / 1029,
  25781. bottom: 87 / 1166
  25782. }
  25783. },
  25784. },
  25785. [
  25786. {
  25787. name: "Micro",
  25788. height: math.unit(4, "inches"),
  25789. default: true
  25790. },
  25791. {
  25792. name: "Macro",
  25793. height: math.unit(50, "feet")
  25794. },
  25795. ]
  25796. ))
  25797. characterMakers.push(() => makeCharacter(
  25798. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25799. {
  25800. front: {
  25801. height: math.unit(16, "feet"),
  25802. weight: math.unit(1000, "lb"),
  25803. name: "Front",
  25804. image: {
  25805. source: "./media/characters/grim/front.svg",
  25806. extra: 622 / 614,
  25807. bottom: 18.1 / 642
  25808. }
  25809. },
  25810. back: {
  25811. height: math.unit(16, "feet"),
  25812. weight: math.unit(1000, "lb"),
  25813. name: "Back",
  25814. image: {
  25815. source: "./media/characters/grim/back.svg",
  25816. extra: 610.6 / 602,
  25817. bottom: 40.8 / 652
  25818. }
  25819. },
  25820. hunched: {
  25821. height: math.unit(9.75, "feet"),
  25822. weight: math.unit(1000, "lb"),
  25823. name: "Hunched",
  25824. image: {
  25825. source: "./media/characters/grim/hunched.svg",
  25826. extra: 304 / 297,
  25827. bottom: 35.4 / 394
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(16, "feet"),
  25835. default: true
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(2.3, "meters"),
  25844. weight: math.unit(300, "lb"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/sinja/front-sfw.svg",
  25848. extra: 1393 / 1294,
  25849. bottom: 70 / 1463
  25850. }
  25851. },
  25852. frontNsfw: {
  25853. height: math.unit(2.3, "meters"),
  25854. weight: math.unit(300, "lb"),
  25855. name: "Front (NSFW)",
  25856. image: {
  25857. source: "./media/characters/sinja/front-nsfw.svg",
  25858. extra: 1393 / 1294,
  25859. bottom: 70 / 1463
  25860. }
  25861. },
  25862. back: {
  25863. height: math.unit(2.3, "meters"),
  25864. weight: math.unit(300, "lb"),
  25865. name: "Back",
  25866. image: {
  25867. source: "./media/characters/sinja/back.svg",
  25868. extra: 1393 / 1294,
  25869. bottom: 70 / 1463
  25870. }
  25871. },
  25872. head: {
  25873. height: math.unit(1.771, "feet"),
  25874. name: "Head",
  25875. image: {
  25876. source: "./media/characters/sinja/head.svg"
  25877. }
  25878. },
  25879. slit: {
  25880. height: math.unit(0.8, "feet"),
  25881. name: "Slit",
  25882. image: {
  25883. source: "./media/characters/sinja/slit.svg"
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Normal",
  25890. height: math.unit(2.3, "meters")
  25891. },
  25892. {
  25893. name: "Macro",
  25894. height: math.unit(91, "meters"),
  25895. default: true
  25896. },
  25897. {
  25898. name: "Megamacro",
  25899. height: math.unit(91440, "meters")
  25900. },
  25901. {
  25902. name: "Gigamacro",
  25903. height: math.unit(60960000, "meters")
  25904. },
  25905. {
  25906. name: "Teramacro",
  25907. height: math.unit(9144000000, "meters")
  25908. },
  25909. ]
  25910. ))
  25911. characterMakers.push(() => makeCharacter(
  25912. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25913. {
  25914. front: {
  25915. height: math.unit(1.7, "meters"),
  25916. weight: math.unit(130, "lb"),
  25917. name: "Front",
  25918. image: {
  25919. source: "./media/characters/kyu/front.svg",
  25920. extra: 415 / 395,
  25921. bottom: 5 / 420
  25922. }
  25923. },
  25924. head: {
  25925. height: math.unit(1.75, "feet"),
  25926. name: "Head",
  25927. image: {
  25928. source: "./media/characters/kyu/head.svg"
  25929. }
  25930. },
  25931. foot: {
  25932. height: math.unit(0.81, "feet"),
  25933. name: "Foot",
  25934. image: {
  25935. source: "./media/characters/kyu/foot.svg"
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Normal",
  25942. height: math.unit(1.7, "meters")
  25943. },
  25944. {
  25945. name: "Macro",
  25946. height: math.unit(131, "feet"),
  25947. default: true
  25948. },
  25949. {
  25950. name: "Megamacro",
  25951. height: math.unit(91440, "meters")
  25952. },
  25953. {
  25954. name: "Gigamacro",
  25955. height: math.unit(60960000, "meters")
  25956. },
  25957. {
  25958. name: "Teramacro",
  25959. height: math.unit(9144000000, "meters")
  25960. },
  25961. ]
  25962. ))
  25963. characterMakers.push(() => makeCharacter(
  25964. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25965. {
  25966. front: {
  25967. height: math.unit(7 + 1 / 12, "feet"),
  25968. weight: math.unit(250, "lb"),
  25969. name: "Front",
  25970. image: {
  25971. source: "./media/characters/joey/front.svg",
  25972. extra: 1791 / 1537,
  25973. bottom: 28 / 1816
  25974. }
  25975. },
  25976. },
  25977. [
  25978. {
  25979. name: "Micro",
  25980. height: math.unit(3, "inches")
  25981. },
  25982. {
  25983. name: "Normal",
  25984. height: math.unit(7 + 1 / 12, "feet"),
  25985. default: true
  25986. },
  25987. ]
  25988. ))
  25989. characterMakers.push(() => makeCharacter(
  25990. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25991. {
  25992. front: {
  25993. height: math.unit(165, "cm"),
  25994. weight: math.unit(140, "lb"),
  25995. name: "Front",
  25996. image: {
  25997. source: "./media/characters/sam-evans/front.svg",
  25998. extra: 3417 / 3230,
  25999. bottom: 41.3 / 3417
  26000. }
  26001. },
  26002. frontSixTails: {
  26003. height: math.unit(165, "cm"),
  26004. weight: math.unit(140, "lb"),
  26005. name: "Front-six-tails",
  26006. image: {
  26007. source: "./media/characters/sam-evans/front-six-tails.svg",
  26008. extra: 3417 / 3230,
  26009. bottom: 41.3 / 3417
  26010. }
  26011. },
  26012. back: {
  26013. height: math.unit(165, "cm"),
  26014. weight: math.unit(140, "lb"),
  26015. name: "Back",
  26016. image: {
  26017. source: "./media/characters/sam-evans/back.svg",
  26018. extra: 3227 / 3032,
  26019. bottom: 6.8 / 3234
  26020. }
  26021. },
  26022. face: {
  26023. height: math.unit(0.68, "feet"),
  26024. name: "Face",
  26025. image: {
  26026. source: "./media/characters/sam-evans/face.svg"
  26027. }
  26028. },
  26029. },
  26030. [
  26031. {
  26032. name: "Normal",
  26033. height: math.unit(165, "cm"),
  26034. default: true
  26035. },
  26036. {
  26037. name: "Macro",
  26038. height: math.unit(100, "meters")
  26039. },
  26040. {
  26041. name: "Macro+",
  26042. height: math.unit(800, "meters")
  26043. },
  26044. {
  26045. name: "Macro++",
  26046. height: math.unit(3, "km")
  26047. },
  26048. {
  26049. name: "Macro+++",
  26050. height: math.unit(30, "km")
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26056. {
  26057. front: {
  26058. height: math.unit(10, "feet"),
  26059. weight: math.unit(750, "lb"),
  26060. name: "Front",
  26061. image: {
  26062. source: "./media/characters/juliet-a/front.svg",
  26063. extra: 1766 / 1720,
  26064. bottom: 43 / 1809
  26065. }
  26066. },
  26067. back: {
  26068. height: math.unit(10, "feet"),
  26069. weight: math.unit(750, "lb"),
  26070. name: "Back",
  26071. image: {
  26072. source: "./media/characters/juliet-a/back.svg",
  26073. extra: 1781 / 1734,
  26074. bottom: 35 / 1810,
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Normal",
  26081. height: math.unit(10, "feet"),
  26082. default: true
  26083. },
  26084. {
  26085. name: "Dragon Form",
  26086. height: math.unit(250, "feet")
  26087. },
  26088. {
  26089. name: "Macro",
  26090. height: math.unit(1000, "feet")
  26091. },
  26092. {
  26093. name: "Megamacro",
  26094. height: math.unit(10000, "feet")
  26095. }
  26096. ]
  26097. ))
  26098. characterMakers.push(() => makeCharacter(
  26099. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26100. {
  26101. regular: {
  26102. height: math.unit(7 + 3 / 12, "feet"),
  26103. weight: math.unit(260, "lb"),
  26104. name: "Regular",
  26105. image: {
  26106. source: "./media/characters/wild/regular.svg",
  26107. extra: 97.45 / 92,
  26108. bottom: 6.8 / 104.3
  26109. }
  26110. },
  26111. biggums: {
  26112. height: math.unit(8 + 6 / 12, "feet"),
  26113. weight: math.unit(425, "lb"),
  26114. name: "Biggums",
  26115. image: {
  26116. source: "./media/characters/wild/biggums.svg",
  26117. extra: 97.45 / 92,
  26118. bottom: 7.5 / 132.34
  26119. }
  26120. },
  26121. mawRegular: {
  26122. height: math.unit(1.24, "feet"),
  26123. name: "Maw (Regular)",
  26124. image: {
  26125. source: "./media/characters/wild/maw.svg"
  26126. }
  26127. },
  26128. mawBiggums: {
  26129. height: math.unit(1.47, "feet"),
  26130. name: "Maw (Biggums)",
  26131. image: {
  26132. source: "./media/characters/wild/maw.svg"
  26133. }
  26134. },
  26135. },
  26136. [
  26137. {
  26138. name: "Normal",
  26139. height: math.unit(7 + 3 / 12, "feet"),
  26140. default: true
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26146. {
  26147. front: {
  26148. height: math.unit(2.5, "meters"),
  26149. weight: math.unit(200, "kg"),
  26150. name: "Front",
  26151. image: {
  26152. source: "./media/characters/vidar/front.svg",
  26153. extra: 2994 / 2795,
  26154. bottom: 56 / 3061
  26155. }
  26156. },
  26157. back: {
  26158. height: math.unit(2.5, "meters"),
  26159. weight: math.unit(200, "kg"),
  26160. name: "Back",
  26161. image: {
  26162. source: "./media/characters/vidar/back.svg",
  26163. extra: 3131 / 2928,
  26164. bottom: 13.5 / 3141.5
  26165. }
  26166. },
  26167. feral: {
  26168. height: math.unit(2.5, "meters"),
  26169. weight: math.unit(2000, "kg"),
  26170. name: "Feral",
  26171. image: {
  26172. source: "./media/characters/vidar/feral.svg",
  26173. extra: 2790 / 1765,
  26174. bottom: 6 / 2796
  26175. }
  26176. },
  26177. },
  26178. [
  26179. {
  26180. name: "Normal",
  26181. height: math.unit(2.5, "meters"),
  26182. default: true
  26183. },
  26184. {
  26185. name: "Macro",
  26186. height: math.unit(100, "meters")
  26187. },
  26188. ]
  26189. ))
  26190. characterMakers.push(() => makeCharacter(
  26191. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26192. {
  26193. front: {
  26194. height: math.unit(5 + 9 / 12, "feet"),
  26195. weight: math.unit(120, "lb"),
  26196. name: "Front",
  26197. image: {
  26198. source: "./media/characters/ash/front.svg",
  26199. extra: 2189 / 1961,
  26200. bottom: 5.2 / 2194
  26201. }
  26202. },
  26203. },
  26204. [
  26205. {
  26206. name: "Normal",
  26207. height: math.unit(5 + 9 / 12, "feet"),
  26208. default: true
  26209. },
  26210. ]
  26211. ))
  26212. characterMakers.push(() => makeCharacter(
  26213. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26214. {
  26215. front: {
  26216. height: math.unit(9, "feet"),
  26217. weight: math.unit(10000, "lb"),
  26218. name: "Front",
  26219. image: {
  26220. source: "./media/characters/gygabite/front.svg",
  26221. bottom: 31.7 / 537.8,
  26222. extra: 505 / 370
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(9, "feet"),
  26230. default: true
  26231. },
  26232. ]
  26233. ))
  26234. characterMakers.push(() => makeCharacter(
  26235. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26236. {
  26237. front: {
  26238. height: math.unit(12, "feet"),
  26239. weight: math.unit(35000, "lb"),
  26240. name: "Front",
  26241. image: {
  26242. source: "./media/characters/p0tat0/front.svg",
  26243. extra: 1065 / 921,
  26244. bottom: 55.7 / 1121.25
  26245. }
  26246. },
  26247. },
  26248. [
  26249. {
  26250. name: "Normal",
  26251. height: math.unit(12, "feet"),
  26252. default: true
  26253. },
  26254. ]
  26255. ))
  26256. characterMakers.push(() => makeCharacter(
  26257. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26258. {
  26259. side: {
  26260. height: math.unit(6.5, "feet"),
  26261. weight: math.unit(800, "lb"),
  26262. name: "Side",
  26263. image: {
  26264. source: "./media/characters/dusk/side.svg",
  26265. extra: 615 / 373,
  26266. bottom: 53 / 664
  26267. }
  26268. },
  26269. sitting: {
  26270. height: math.unit(7, "feet"),
  26271. weight: math.unit(800, "lb"),
  26272. name: "Sitting",
  26273. image: {
  26274. source: "./media/characters/dusk/sitting.svg",
  26275. extra: 753 / 425,
  26276. bottom: 33 / 774
  26277. }
  26278. },
  26279. head: {
  26280. height: math.unit(6.1, "feet"),
  26281. name: "Head",
  26282. image: {
  26283. source: "./media/characters/dusk/head.svg"
  26284. }
  26285. },
  26286. },
  26287. [
  26288. {
  26289. name: "Normal",
  26290. height: math.unit(7, "feet"),
  26291. default: true
  26292. },
  26293. ]
  26294. ))
  26295. characterMakers.push(() => makeCharacter(
  26296. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26297. {
  26298. front: {
  26299. height: math.unit(15, "feet"),
  26300. weight: math.unit(7000, "lb"),
  26301. name: "Front",
  26302. image: {
  26303. source: "./media/characters/jay-direwolf/front.svg",
  26304. extra: 1810 / 1732,
  26305. bottom: 66 / 1892
  26306. }
  26307. },
  26308. },
  26309. [
  26310. {
  26311. name: "Normal",
  26312. height: math.unit(15, "feet"),
  26313. default: true
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26319. {
  26320. front: {
  26321. height: math.unit(4 + 9 / 12, "feet"),
  26322. weight: math.unit(130, "lb"),
  26323. name: "Front",
  26324. image: {
  26325. source: "./media/characters/anchovie/front.svg",
  26326. extra: 382 / 350,
  26327. bottom: 25 / 409
  26328. }
  26329. },
  26330. back: {
  26331. height: math.unit(4 + 9 / 12, "feet"),
  26332. weight: math.unit(130, "lb"),
  26333. name: "Back",
  26334. image: {
  26335. source: "./media/characters/anchovie/back.svg",
  26336. extra: 385 / 352,
  26337. bottom: 16.6 / 402
  26338. }
  26339. },
  26340. frontDressed: {
  26341. height: math.unit(4 + 9 / 12, "feet"),
  26342. weight: math.unit(130, "lb"),
  26343. name: "Front (Dressed)",
  26344. image: {
  26345. source: "./media/characters/anchovie/front-dressed.svg",
  26346. extra: 382 / 350,
  26347. bottom: 25 / 409
  26348. }
  26349. },
  26350. backDressed: {
  26351. height: math.unit(4 + 9 / 12, "feet"),
  26352. weight: math.unit(130, "lb"),
  26353. name: "Back (Dressed)",
  26354. image: {
  26355. source: "./media/characters/anchovie/back-dressed.svg",
  26356. extra: 385 / 352,
  26357. bottom: 16.6 / 402
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Micro",
  26364. height: math.unit(6.4, "inches")
  26365. },
  26366. {
  26367. name: "Normal",
  26368. height: math.unit(4 + 9 / 12, "feet"),
  26369. default: true
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26375. {
  26376. front: {
  26377. height: math.unit(2, "meters"),
  26378. weight: math.unit(180, "lb"),
  26379. name: "Front",
  26380. image: {
  26381. source: "./media/characters/acidrenamon/front.svg",
  26382. extra: 987 / 890,
  26383. bottom: 22.8 / 1009
  26384. }
  26385. },
  26386. back: {
  26387. height: math.unit(2, "meters"),
  26388. weight: math.unit(180, "lb"),
  26389. name: "Back",
  26390. image: {
  26391. source: "./media/characters/acidrenamon/back.svg",
  26392. extra: 983 / 891,
  26393. bottom: 8.4 / 992
  26394. }
  26395. },
  26396. head: {
  26397. height: math.unit(1.92, "feet"),
  26398. name: "Head",
  26399. image: {
  26400. source: "./media/characters/acidrenamon/head.svg"
  26401. }
  26402. },
  26403. rump: {
  26404. height: math.unit(1.72, "feet"),
  26405. name: "Rump",
  26406. image: {
  26407. source: "./media/characters/acidrenamon/rump.svg"
  26408. }
  26409. },
  26410. tail: {
  26411. height: math.unit(4.2, "feet"),
  26412. name: "Tail",
  26413. image: {
  26414. source: "./media/characters/acidrenamon/tail.svg"
  26415. }
  26416. },
  26417. },
  26418. [
  26419. {
  26420. name: "Normal",
  26421. height: math.unit(2, "meters"),
  26422. default: true
  26423. },
  26424. {
  26425. name: "Minimacro",
  26426. height: math.unit(7, "meters")
  26427. },
  26428. {
  26429. name: "Macro",
  26430. height: math.unit(200, "meters")
  26431. },
  26432. {
  26433. name: "Gigamacro",
  26434. height: math.unit(0.2, "earths")
  26435. },
  26436. ]
  26437. ))
  26438. characterMakers.push(() => makeCharacter(
  26439. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26440. {
  26441. front: {
  26442. height: math.unit(6, "feet"),
  26443. weight: math.unit(150, "lb"),
  26444. name: "Front",
  26445. image: {
  26446. source: "./media/characters/kenzie-lee/front.svg",
  26447. extra: 1525 / 1465,
  26448. bottom: 45 / 1570
  26449. }
  26450. },
  26451. side: {
  26452. height: math.unit(6, "feet"),
  26453. weight: math.unit(150, "lb"),
  26454. name: "Side",
  26455. image: {
  26456. source: "./media/characters/kenzie-lee/side.svg",
  26457. extra: 5505 / 5383,
  26458. bottom: 60 / 5573
  26459. }
  26460. },
  26461. },
  26462. [
  26463. {
  26464. name: "Normal",
  26465. height: math.unit(152, "feet"),
  26466. default: true
  26467. },
  26468. {
  26469. name: "Megamacro",
  26470. height: math.unit(7, "miles")
  26471. },
  26472. {
  26473. name: "Gigamacro",
  26474. height: math.unit(8000, "miles")
  26475. },
  26476. ]
  26477. ))
  26478. characterMakers.push(() => makeCharacter(
  26479. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26480. {
  26481. side: {
  26482. height: math.unit(6, "feet"),
  26483. weight: math.unit(150, "lb"),
  26484. name: "Side",
  26485. image: {
  26486. source: "./media/characters/withers/side.svg",
  26487. extra: 1830 / 1728,
  26488. bottom: 96 / 1927
  26489. }
  26490. },
  26491. front: {
  26492. height: math.unit(6, "feet"),
  26493. weight: math.unit(150, "lb"),
  26494. name: "Front",
  26495. image: {
  26496. source: "./media/characters/withers/front.svg",
  26497. extra: 1514 / 1438,
  26498. bottom: 118 / 1632
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(6, "feet")
  26506. },
  26507. {
  26508. name: "Macro",
  26509. height: math.unit(50, "feet")
  26510. },
  26511. {
  26512. name: "Megamacro",
  26513. height: math.unit(15, "miles"),
  26514. default: true
  26515. },
  26516. {
  26517. name: "Megamacro+",
  26518. height: math.unit(100, "km")
  26519. },
  26520. {
  26521. name: "Gigamacro",
  26522. height: math.unit(4750, "miles")
  26523. },
  26524. {
  26525. name: "Gigamacro+",
  26526. height: math.unit(32000, "miles")
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26532. {
  26533. front: {
  26534. height: math.unit(6 + 7 / 12, "feet"),
  26535. weight: math.unit(250, "lb"),
  26536. name: "Front",
  26537. image: {
  26538. source: "./media/characters/nemoskii/front.svg",
  26539. extra: 2270 / 1734,
  26540. bottom: 86 / 2354
  26541. }
  26542. },
  26543. back: {
  26544. height: math.unit(6 + 7 / 12, "feet"),
  26545. weight: math.unit(250, "lb"),
  26546. name: "Back",
  26547. image: {
  26548. source: "./media/characters/nemoskii/back.svg",
  26549. extra: 1845 / 1788,
  26550. bottom: 10.5 / 1852
  26551. }
  26552. },
  26553. head: {
  26554. height: math.unit(1.31, "feet"),
  26555. name: "Head",
  26556. image: {
  26557. source: "./media/characters/nemoskii/head.svg"
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(6 + 7 / 12, "feet"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(1, "mile"),
  26574. weight: math.unit(265261.9, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/shui/front.svg",
  26578. extra: 1633 / 1564,
  26579. bottom: 91.5 / 1726
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Macro",
  26586. height: math.unit(1, "mile"),
  26587. default: true
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(12 + 6 / 12, "feet"),
  26596. weight: math.unit(1342, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/arokh-takakura/front.svg",
  26600. extra: 1089 / 1043,
  26601. bottom: 77.4 / 1176.7
  26602. }
  26603. },
  26604. back: {
  26605. height: math.unit(12 + 6 / 12, "feet"),
  26606. weight: math.unit(1342, "lb"),
  26607. name: "Back",
  26608. image: {
  26609. source: "./media/characters/arokh-takakura/back.svg",
  26610. extra: 1046 / 1019,
  26611. bottom: 102 / 1150
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Big",
  26618. height: math.unit(12 + 6 / 12, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(5 + 6 / 12, "feet"),
  26628. weight: math.unit(150, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/theo/front.svg",
  26632. extra: 1184 / 1131,
  26633. bottom: 7.4 / 1191
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Micro",
  26640. height: math.unit(5, "inches")
  26641. },
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(5 + 6 / 12, "feet"),
  26645. default: true
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(5 + 9 / 12, "feet"),
  26654. weight: math.unit(130, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/cecelia-swift/front.svg",
  26658. extra: 502 / 484,
  26659. bottom: 23 / 523
  26660. }
  26661. },
  26662. back: {
  26663. height: math.unit(5 + 9 / 12, "feet"),
  26664. weight: math.unit(130, "lb"),
  26665. name: "Back",
  26666. image: {
  26667. source: "./media/characters/cecelia-swift/back.svg",
  26668. extra: 499 / 485,
  26669. bottom: 12 / 511
  26670. }
  26671. },
  26672. head: {
  26673. height: math.unit(0.90, "feet"),
  26674. name: "Head",
  26675. image: {
  26676. source: "./media/characters/cecelia-swift/head.svg"
  26677. }
  26678. },
  26679. rump: {
  26680. height: math.unit(1.75, "feet"),
  26681. name: "Rump",
  26682. image: {
  26683. source: "./media/characters/cecelia-swift/rump.svg"
  26684. }
  26685. },
  26686. },
  26687. [
  26688. {
  26689. name: "Normal",
  26690. height: math.unit(5 + 9 / 12, "feet"),
  26691. default: true
  26692. },
  26693. {
  26694. name: "Big",
  26695. height: math.unit(50, "feet")
  26696. },
  26697. {
  26698. name: "Macro",
  26699. height: math.unit(100, "feet")
  26700. },
  26701. {
  26702. name: "Macro+",
  26703. height: math.unit(500, "feet")
  26704. },
  26705. {
  26706. name: "Macro++",
  26707. height: math.unit(1000, "feet")
  26708. },
  26709. ]
  26710. ))
  26711. characterMakers.push(() => makeCharacter(
  26712. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26713. {
  26714. front: {
  26715. height: math.unit(6, "feet"),
  26716. weight: math.unit(150, "lb"),
  26717. name: "Front",
  26718. image: {
  26719. source: "./media/characters/kaunan/front.svg",
  26720. extra: 2890 / 2523,
  26721. bottom: 49 / 2939
  26722. }
  26723. },
  26724. },
  26725. [
  26726. {
  26727. name: "Macro",
  26728. height: math.unit(150, "feet"),
  26729. default: true
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26735. {
  26736. front: {
  26737. height: math.unit(175, "cm"),
  26738. weight: math.unit(60, "kg"),
  26739. name: "Front",
  26740. image: {
  26741. source: "./media/characters/fei/front.svg",
  26742. extra: 2581 / 2400,
  26743. bottom: 82.2 / 2663
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Mortal",
  26750. height: math.unit(175, "cm")
  26751. },
  26752. {
  26753. name: "Normal",
  26754. height: math.unit(3500, "m"),
  26755. default: true
  26756. },
  26757. {
  26758. name: "Stroll",
  26759. height: math.unit(17.5, "km")
  26760. },
  26761. {
  26762. name: "Showoff",
  26763. height: math.unit(175, "km")
  26764. },
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26769. {
  26770. front: {
  26771. height: math.unit(7, "feet"),
  26772. weight: math.unit(1000, "kg"),
  26773. name: "Front",
  26774. image: {
  26775. source: "./media/characters/edrax/front.svg",
  26776. extra: 2838 / 2550,
  26777. bottom: 130 / 2968
  26778. }
  26779. },
  26780. },
  26781. [
  26782. {
  26783. name: "Small",
  26784. height: math.unit(7, "feet")
  26785. },
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(1500, "meters")
  26789. },
  26790. {
  26791. name: "Mega",
  26792. height: math.unit(12000000, "km"),
  26793. default: true
  26794. },
  26795. {
  26796. name: "Megamacro",
  26797. height: math.unit(10600000, "lightyears")
  26798. },
  26799. {
  26800. name: "Hypermacro",
  26801. height: math.unit(256, "yottameters")
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26807. {
  26808. front: {
  26809. height: math.unit(10, "feet"),
  26810. weight: math.unit(750, "lb"),
  26811. name: "Front",
  26812. image: {
  26813. source: "./media/characters/clove/front.svg",
  26814. extra: 2031 / 1860,
  26815. bottom: 47.8 / 2080
  26816. }
  26817. },
  26818. back: {
  26819. height: math.unit(10, "feet"),
  26820. weight: math.unit(750, "lb"),
  26821. name: "Back",
  26822. image: {
  26823. source: "./media/characters/clove/back.svg",
  26824. extra: 2025 / 1859,
  26825. bottom: 46 / 2071
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Normal",
  26832. height: math.unit(10, "feet")
  26833. },
  26834. ]
  26835. ))
  26836. characterMakers.push(() => makeCharacter(
  26837. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26838. {
  26839. front: {
  26840. height: math.unit(4, "feet"),
  26841. weight: math.unit(50, "lb"),
  26842. name: "Front",
  26843. image: {
  26844. source: "./media/characters/alex-rabbit/front.svg",
  26845. extra: 507 / 458,
  26846. bottom: 18.5 / 527
  26847. }
  26848. },
  26849. back: {
  26850. height: math.unit(4, "feet"),
  26851. weight: math.unit(50, "lb"),
  26852. name: "Back",
  26853. image: {
  26854. source: "./media/characters/alex-rabbit/back.svg",
  26855. extra: 502 / 460,
  26856. bottom: 18.9 / 521
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Normal",
  26863. height: math.unit(4, "feet"),
  26864. default: true
  26865. },
  26866. ]
  26867. ))
  26868. characterMakers.push(() => makeCharacter(
  26869. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26870. {
  26871. front: {
  26872. height: math.unit(1 + 3 / 12, "feet"),
  26873. weight: math.unit(80, "lb"),
  26874. name: "Front",
  26875. image: {
  26876. source: "./media/characters/zander-rose/front.svg",
  26877. extra: 916 / 797,
  26878. bottom: 17 / 933
  26879. }
  26880. },
  26881. back: {
  26882. height: math.unit(1 + 3 / 12, "feet"),
  26883. weight: math.unit(80, "lb"),
  26884. name: "Back",
  26885. image: {
  26886. source: "./media/characters/zander-rose/back.svg",
  26887. extra: 903 / 779,
  26888. bottom: 31 / 934
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(1 + 3 / 12, "feet"),
  26896. default: true
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26902. {
  26903. anthro: {
  26904. height: math.unit(6, "feet"),
  26905. weight: math.unit(150, "lb"),
  26906. name: "Anthro",
  26907. image: {
  26908. source: "./media/characters/razz/anthro.svg",
  26909. extra: 1437 / 1343,
  26910. bottom: 48 / 1485
  26911. }
  26912. },
  26913. feral: {
  26914. height: math.unit(6, "feet"),
  26915. weight: math.unit(150, "lb"),
  26916. name: "Feral",
  26917. image: {
  26918. source: "./media/characters/razz/feral.svg",
  26919. extra: 2569 / 1385,
  26920. bottom: 95 / 2664
  26921. }
  26922. },
  26923. },
  26924. [
  26925. {
  26926. name: "Normal",
  26927. height: math.unit(6, "feet"),
  26928. default: true
  26929. },
  26930. ]
  26931. ))
  26932. characterMakers.push(() => makeCharacter(
  26933. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26934. {
  26935. front: {
  26936. height: math.unit(9 + 4 / 12, "feet"),
  26937. weight: math.unit(500, "lb"),
  26938. name: "Front",
  26939. image: {
  26940. source: "./media/characters/morrigan/front.svg",
  26941. extra: 2707 / 2579,
  26942. bottom: 156 / 2863
  26943. }
  26944. },
  26945. },
  26946. [
  26947. {
  26948. name: "Normal",
  26949. height: math.unit(9 + 4 / 12, "feet"),
  26950. default: true
  26951. },
  26952. ]
  26953. ))
  26954. characterMakers.push(() => makeCharacter(
  26955. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26956. {
  26957. front: {
  26958. height: math.unit(5, "stories"),
  26959. weight: math.unit(4000, "lb"),
  26960. name: "Front",
  26961. image: {
  26962. source: "./media/characters/jenene/front.svg",
  26963. extra: 1780 / 1710,
  26964. bottom: 57 / 1837
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(5, "stories"),
  26972. default: true
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26978. {
  26979. front: {
  26980. height: math.unit(6, "feet"),
  26981. weight: math.unit(150, "lb"),
  26982. name: "Front",
  26983. image: {
  26984. source: "./media/characters/vix-archaser/front.svg",
  26985. extra: 2767 / 2562,
  26986. bottom: 36 / 2803
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Micro",
  26993. height: math.unit(1, "foot")
  26994. },
  26995. {
  26996. name: "Normal",
  26997. height: math.unit(6 + 5 / 12, "feet")
  26998. },
  26999. {
  27000. name: "Minimacro",
  27001. height: math.unit(500, "feet")
  27002. },
  27003. {
  27004. name: "Macro",
  27005. height: math.unit(4, "miles")
  27006. },
  27007. {
  27008. name: "Megamacro",
  27009. height: math.unit(250, "miles"),
  27010. default: true
  27011. },
  27012. {
  27013. name: "Gigamacro",
  27014. height: math.unit(1, "universe")
  27015. },
  27016. {
  27017. name: "Endgame",
  27018. height: math.unit(100, "multiverses")
  27019. }
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27024. {
  27025. taurSfw: {
  27026. height: math.unit(10, "meters"),
  27027. weight: math.unit(17500, "kg"),
  27028. name: "Taur",
  27029. image: {
  27030. source: "./media/characters/faey/taur-sfw.svg",
  27031. extra: 1200 / 968,
  27032. bottom: 41 / 1241
  27033. }
  27034. },
  27035. chestmaw: {
  27036. height: math.unit(2.01, "meters"),
  27037. name: "Chestmaw",
  27038. image: {
  27039. source: "./media/characters/faey/chestmaw.svg"
  27040. }
  27041. },
  27042. foot: {
  27043. height: math.unit(2.43, "meters"),
  27044. name: "Foot",
  27045. image: {
  27046. source: "./media/characters/faey/foot.svg"
  27047. }
  27048. },
  27049. jaws: {
  27050. height: math.unit(1.66, "meters"),
  27051. name: "Jaws",
  27052. image: {
  27053. source: "./media/characters/faey/jaws.svg"
  27054. }
  27055. },
  27056. tongues: {
  27057. height: math.unit(2.01, "meters"),
  27058. name: "Tongues",
  27059. image: {
  27060. source: "./media/characters/faey/tongues.svg"
  27061. }
  27062. },
  27063. },
  27064. [
  27065. {
  27066. name: "Small",
  27067. height: math.unit(10, "meters"),
  27068. default: true
  27069. },
  27070. {
  27071. name: "Big",
  27072. height: math.unit(500000, "km")
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27078. {
  27079. front: {
  27080. height: math.unit(7, "feet"),
  27081. weight: math.unit(275, "lb"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/roku/front.svg",
  27085. extra: 903 / 878,
  27086. bottom: 37 / 940
  27087. }
  27088. },
  27089. },
  27090. [
  27091. {
  27092. name: "Normal",
  27093. height: math.unit(7, "feet"),
  27094. default: true
  27095. },
  27096. {
  27097. name: "Macro",
  27098. height: math.unit(500, "feet")
  27099. },
  27100. {
  27101. name: "Megamacro",
  27102. height: math.unit(200, "miles")
  27103. },
  27104. ]
  27105. ))
  27106. characterMakers.push(() => makeCharacter(
  27107. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27108. {
  27109. front: {
  27110. height: math.unit(6 + 2 / 12, "feet"),
  27111. weight: math.unit(150, "lb"),
  27112. name: "Front",
  27113. image: {
  27114. source: "./media/characters/lira/front.svg",
  27115. extra: 1727 / 1605,
  27116. bottom: 26 / 1753
  27117. }
  27118. },
  27119. back: {
  27120. height: math.unit(6 + 2 / 12, "feet"),
  27121. weight: math.unit(150, "lb"),
  27122. name: "Back",
  27123. image: {
  27124. source: "./media/characters/lira/back.svg",
  27125. extra: 1713 / 159,
  27126. bottom: 20 / 1733
  27127. }
  27128. },
  27129. hand: {
  27130. height: math.unit(0.75, "feet"),
  27131. name: "Hand",
  27132. image: {
  27133. source: "./media/characters/lira/hand.svg"
  27134. }
  27135. },
  27136. maw: {
  27137. height: math.unit(0.65, "feet"),
  27138. name: "Maw",
  27139. image: {
  27140. source: "./media/characters/lira/maw.svg"
  27141. }
  27142. },
  27143. pawDigi: {
  27144. height: math.unit(1.6, "feet"),
  27145. name: "Paw Digi",
  27146. image: {
  27147. source: "./media/characters/lira/paw-digi.svg"
  27148. }
  27149. },
  27150. pawPlanti: {
  27151. height: math.unit(1.4, "feet"),
  27152. name: "Paw Planti",
  27153. image: {
  27154. source: "./media/characters/lira/paw-planti.svg"
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(6 + 2 / 12, "feet"),
  27162. default: true
  27163. },
  27164. {
  27165. name: "Macro",
  27166. height: math.unit(100, "feet")
  27167. },
  27168. {
  27169. name: "Macro²",
  27170. height: math.unit(1600, "feet")
  27171. },
  27172. {
  27173. name: "Planetary",
  27174. height: math.unit(20, "earths")
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(6, "feet"),
  27183. weight: math.unit(150, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/hadjet/front.svg",
  27187. extra: 1480 / 1346,
  27188. bottom: 26 / 1506
  27189. }
  27190. },
  27191. frontNsfw: {
  27192. height: math.unit(6, "feet"),
  27193. weight: math.unit(150, "lb"),
  27194. name: "Front (NSFW)",
  27195. image: {
  27196. source: "./media/characters/hadjet/front-nsfw.svg",
  27197. extra: 1440 / 1358,
  27198. bottom: 52 / 1492
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Macro",
  27205. height: math.unit(10, "stories"),
  27206. default: true
  27207. },
  27208. {
  27209. name: "Megamacro",
  27210. height: math.unit(1.5, "miles")
  27211. },
  27212. {
  27213. name: "Megamacro+",
  27214. height: math.unit(5, "miles")
  27215. },
  27216. ]
  27217. ))
  27218. characterMakers.push(() => makeCharacter(
  27219. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27220. {
  27221. side: {
  27222. height: math.unit(106, "feet"),
  27223. weight: math.unit(500, "tonnes"),
  27224. name: "Side",
  27225. image: {
  27226. source: "./media/characters/kodran/side.svg",
  27227. extra: 553 / 480,
  27228. bottom: 33 / 586
  27229. }
  27230. },
  27231. front: {
  27232. height: math.unit(132, "feet"),
  27233. weight: math.unit(500, "tonnes"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/kodran/front.svg",
  27237. extra: 667 / 643,
  27238. bottom: 42 / 709
  27239. }
  27240. },
  27241. flying: {
  27242. height: math.unit(350, "feet"),
  27243. weight: math.unit(500, "tonnes"),
  27244. name: "Flying",
  27245. image: {
  27246. source: "./media/characters/kodran/flying.svg"
  27247. }
  27248. },
  27249. foot: {
  27250. height: math.unit(33, "feet"),
  27251. name: "Foot",
  27252. image: {
  27253. source: "./media/characters/kodran/foot.svg"
  27254. }
  27255. },
  27256. footFront: {
  27257. height: math.unit(19, "feet"),
  27258. name: "Foot (Front)",
  27259. image: {
  27260. source: "./media/characters/kodran/foot-front.svg",
  27261. extra: 261 / 261,
  27262. bottom: 91 / 352
  27263. }
  27264. },
  27265. headFront: {
  27266. height: math.unit(53, "feet"),
  27267. name: "Head (Front)",
  27268. image: {
  27269. source: "./media/characters/kodran/head-front.svg"
  27270. }
  27271. },
  27272. headSide: {
  27273. height: math.unit(65, "feet"),
  27274. name: "Head (Side)",
  27275. image: {
  27276. source: "./media/characters/kodran/head-side.svg"
  27277. }
  27278. },
  27279. throat: {
  27280. height: math.unit(79, "feet"),
  27281. name: "Throat",
  27282. image: {
  27283. source: "./media/characters/kodran/throat.svg"
  27284. }
  27285. },
  27286. },
  27287. [
  27288. {
  27289. name: "Large",
  27290. height: math.unit(106, "feet"),
  27291. default: true
  27292. },
  27293. ]
  27294. ))
  27295. characterMakers.push(() => makeCharacter(
  27296. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27297. {
  27298. side: {
  27299. height: math.unit(11, "feet"),
  27300. weight: math.unit(150, "lb"),
  27301. name: "Side",
  27302. image: {
  27303. source: "./media/characters/pyxaron/side.svg",
  27304. extra: 305 / 195,
  27305. bottom: 17 / 322
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Normal",
  27312. height: math.unit(11, "feet")
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(6, "feet"),
  27321. weight: math.unit(150, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/meep/front.svg",
  27325. extra: 88 / 80,
  27326. bottom: 6 / 94
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Fun Sized",
  27333. height: math.unit(2, "inches"),
  27334. default: true
  27335. },
  27336. {
  27337. name: "Friend Sized",
  27338. height: math.unit(8, "inches")
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27344. {
  27345. front: {
  27346. height: math.unit(15, "feet"),
  27347. weight: math.unit(2500, "lb"),
  27348. name: "Front",
  27349. image: {
  27350. source: "./media/characters/holly-rabbit/front.svg",
  27351. extra: 1433 / 1233,
  27352. bottom: 125 / 1558
  27353. }
  27354. },
  27355. dick: {
  27356. height: math.unit(4.6, "feet"),
  27357. name: "Dick",
  27358. image: {
  27359. source: "./media/characters/holly-rabbit/dick.svg"
  27360. }
  27361. },
  27362. },
  27363. [
  27364. {
  27365. name: "Normal",
  27366. height: math.unit(15, "feet"),
  27367. default: true
  27368. },
  27369. {
  27370. name: "Macro",
  27371. height: math.unit(250, "feet")
  27372. },
  27373. {
  27374. name: "Macro+",
  27375. height: math.unit(2500, "feet")
  27376. },
  27377. ]
  27378. ))
  27379. characterMakers.push(() => makeCharacter(
  27380. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27381. {
  27382. front: {
  27383. height: math.unit(3.02, "meters"),
  27384. weight: math.unit(500, "kg"),
  27385. name: "Front",
  27386. image: {
  27387. source: "./media/characters/drena/front.svg",
  27388. extra: 282 / 243,
  27389. bottom: 8 / 290
  27390. }
  27391. },
  27392. side: {
  27393. height: math.unit(3.02, "meters"),
  27394. weight: math.unit(500, "kg"),
  27395. name: "Side",
  27396. image: {
  27397. source: "./media/characters/drena/side.svg",
  27398. extra: 280 / 245,
  27399. bottom: 10 / 290
  27400. }
  27401. },
  27402. back: {
  27403. height: math.unit(3.02, "meters"),
  27404. weight: math.unit(500, "kg"),
  27405. name: "Back",
  27406. image: {
  27407. source: "./media/characters/drena/back.svg",
  27408. extra: 278 / 243,
  27409. bottom: 2 / 280
  27410. }
  27411. },
  27412. foot: {
  27413. height: math.unit(0.75, "meters"),
  27414. name: "Foot",
  27415. image: {
  27416. source: "./media/characters/drena/foot.svg"
  27417. }
  27418. },
  27419. maw: {
  27420. height: math.unit(0.82, "meters"),
  27421. name: "Maw",
  27422. image: {
  27423. source: "./media/characters/drena/maw.svg"
  27424. }
  27425. },
  27426. rump: {
  27427. height: math.unit(0.93, "meters"),
  27428. name: "Rump",
  27429. image: {
  27430. source: "./media/characters/drena/rump.svg"
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(3.02, "meters"),
  27438. default: true
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(6 + 4 / 12, "feet"),
  27447. weight: math.unit(250, "lb"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/remmyzilla/front.svg",
  27451. extra: 4033 / 3588,
  27452. bottom: 123 / 4156
  27453. }
  27454. },
  27455. back: {
  27456. height: math.unit(6 + 4 / 12, "feet"),
  27457. weight: math.unit(250, "lb"),
  27458. name: "Back",
  27459. image: {
  27460. source: "./media/characters/remmyzilla/back.svg",
  27461. extra: 2687 / 2555,
  27462. bottom: 48 / 2735
  27463. }
  27464. },
  27465. frontFancy: {
  27466. height: math.unit(6 + 4 / 12, "feet"),
  27467. weight: math.unit(250, "lb"),
  27468. name: "Front (Fancy)",
  27469. image: {
  27470. source: "./media/characters/remmyzilla/front-fancy.svg",
  27471. extra: 4119 / 3419,
  27472. bottom: 237 / 4356
  27473. }
  27474. },
  27475. paw: {
  27476. height: math.unit(1.73, "feet"),
  27477. name: "Paw",
  27478. image: {
  27479. source: "./media/characters/remmyzilla/paw.svg"
  27480. }
  27481. },
  27482. maw: {
  27483. height: math.unit(1.73, "feet"),
  27484. name: "Maw",
  27485. image: {
  27486. source: "./media/characters/remmyzilla/maw.svg"
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(6 + 4 / 12, "feet")
  27494. },
  27495. {
  27496. name: "Minimacro",
  27497. height: math.unit(12 + 8 / 12, "feet")
  27498. },
  27499. {
  27500. name: "Normal",
  27501. height: math.unit(640, "feet"),
  27502. default: true
  27503. },
  27504. {
  27505. name: "Megamacro",
  27506. height: math.unit(6400, "feet")
  27507. },
  27508. {
  27509. name: "Gigamacro",
  27510. height: math.unit(64000, "miles")
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(2.5, "meters"),
  27519. weight: math.unit(300, "lb"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/lawrence/front.svg",
  27523. extra: 357 / 335,
  27524. bottom: 30 / 387
  27525. }
  27526. },
  27527. back: {
  27528. height: math.unit(2.5, "meters"),
  27529. weight: math.unit(300, "lb"),
  27530. name: "Back",
  27531. image: {
  27532. source: "./media/characters/lawrence/back.svg",
  27533. extra: 357 / 338,
  27534. bottom: 16 / 373
  27535. }
  27536. },
  27537. head: {
  27538. height: math.unit(0.9, "meter"),
  27539. name: "Head",
  27540. image: {
  27541. source: "./media/characters/lawrence/head.svg"
  27542. }
  27543. },
  27544. maw: {
  27545. height: math.unit(0.7, "meter"),
  27546. name: "Maw",
  27547. image: {
  27548. source: "./media/characters/lawrence/maw.svg"
  27549. }
  27550. },
  27551. footBottom: {
  27552. height: math.unit(0.5, "meter"),
  27553. name: "Foot (Bottom)",
  27554. image: {
  27555. source: "./media/characters/lawrence/foot-bottom.svg"
  27556. }
  27557. },
  27558. footTop: {
  27559. height: math.unit(0.5, "meter"),
  27560. name: "Foot (Top)",
  27561. image: {
  27562. source: "./media/characters/lawrence/foot-top.svg"
  27563. }
  27564. },
  27565. },
  27566. [
  27567. {
  27568. name: "Normal",
  27569. height: math.unit(2.5, "meters"),
  27570. default: true
  27571. },
  27572. {
  27573. name: "Macro",
  27574. height: math.unit(95, "meters")
  27575. },
  27576. {
  27577. name: "Megamacro",
  27578. height: math.unit(150, "km")
  27579. },
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27584. {
  27585. front: {
  27586. height: math.unit(4.2, "meters"),
  27587. name: "Front",
  27588. image: {
  27589. source: "./media/characters/sydney/front.svg",
  27590. extra: 1323 / 1277,
  27591. bottom: 111 / 1434
  27592. }
  27593. },
  27594. },
  27595. [
  27596. {
  27597. name: "Normal",
  27598. height: math.unit(4.2, "meters")
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27604. {
  27605. back: {
  27606. height: math.unit(201, "feet"),
  27607. name: "Back",
  27608. image: {
  27609. source: "./media/characters/jessica/back.svg",
  27610. extra: 273 / 259,
  27611. bottom: 7 / 280
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Normal",
  27618. height: math.unit(201, "feet"),
  27619. default: true
  27620. },
  27621. {
  27622. name: "Megamacro",
  27623. height: math.unit(8, "miles")
  27624. },
  27625. ]
  27626. ))
  27627. characterMakers.push(() => makeCharacter(
  27628. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27629. {
  27630. side: {
  27631. height: math.unit(320, "cm"),
  27632. name: "Side",
  27633. image: {
  27634. source: "./media/characters/victoria/side.svg",
  27635. extra: 778/346,
  27636. bottom: 56/834
  27637. }
  27638. },
  27639. maw: {
  27640. height: math.unit(5.9, "feet"),
  27641. name: "Maw",
  27642. image: {
  27643. source: "./media/characters/victoria/maw.svg"
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(320, "cm"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Cat", species: ["cat"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(5 + 6/12, "feet"),
  27660. name: "Front",
  27661. image: {
  27662. source: "./media/characters/cat/front.svg",
  27663. extra: 1374/1257,
  27664. bottom: 59/1433
  27665. }
  27666. },
  27667. back: {
  27668. height: math.unit(5 + 6/12, "feet"),
  27669. name: "Back",
  27670. image: {
  27671. source: "./media/characters/cat/back.svg",
  27672. extra: 1337/1226,
  27673. bottom: 34/1371
  27674. }
  27675. },
  27676. taur: {
  27677. height: math.unit(7, "feet"),
  27678. name: "Taur",
  27679. image: {
  27680. source: "./media/characters/cat/taur.svg",
  27681. extra: 1345/1231,
  27682. bottom: 66/1411
  27683. }
  27684. },
  27685. },
  27686. [
  27687. {
  27688. name: "Really small",
  27689. height: math.unit(1, "nm")
  27690. },
  27691. {
  27692. name: "Micro",
  27693. height: math.unit(5, "inches")
  27694. },
  27695. {
  27696. name: "Normal",
  27697. height: math.unit(5 + 6/12, "feet"),
  27698. default: true
  27699. },
  27700. {
  27701. name: "Macro",
  27702. height: math.unit(50, "feet")
  27703. },
  27704. {
  27705. name: "Macro+",
  27706. height: math.unit(150, "feet")
  27707. },
  27708. {
  27709. name: "Megamacro",
  27710. height: math.unit(100, "miles")
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Cat (Lucario)", species: ["lucario"], tags: ["anthro"] },
  27716. {
  27717. normal: {
  27718. height: math.unit(4, "feet"),
  27719. name: "Normal",
  27720. image: {
  27721. source: "./media/characters/cat-lucario/normal.svg",
  27722. extra: 1470/1318,
  27723. bottom: 65/1535
  27724. }
  27725. },
  27726. mega: {
  27727. height: math.unit(4, "feet"),
  27728. name: "Mega",
  27729. image: {
  27730. source: "./media/characters/cat-lucario/mega.svg",
  27731. extra: 1515/1319,
  27732. bottom: 63/1578
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Micro",
  27739. height: math.unit(4, "inches")
  27740. },
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(4, "feet"),
  27744. default: true
  27745. },
  27746. {
  27747. name: "Macro",
  27748. height: math.unit(150, "feet")
  27749. },
  27750. {
  27751. name: "Macro+",
  27752. height: math.unit(500, "feet")
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Cat (Nickit)", species: ["nickit"], tags: ["feral"] },
  27758. {
  27759. side: {
  27760. height: math.unit(2, "feet"),
  27761. name: "Side",
  27762. image: {
  27763. source: "./media/characters/cat-nickit/side.svg",
  27764. extra: 1980/1585,
  27765. bottom: 102/2082
  27766. }
  27767. },
  27768. },
  27769. [
  27770. {
  27771. name: "Really small",
  27772. height: math.unit(1, "nm")
  27773. },
  27774. {
  27775. name: "Micro",
  27776. height: math.unit(1, "inch")
  27777. },
  27778. {
  27779. name: "Normal",
  27780. height: math.unit(2, "feet"),
  27781. default: true
  27782. },
  27783. {
  27784. name: "Dyanmaxed",
  27785. height: math.unit(65, "feet")
  27786. },
  27787. {
  27788. name: "Macro",
  27789. height: math.unit(150, "feet")
  27790. },
  27791. {
  27792. name: "Macro+",
  27793. height: math.unit(900, "feet")
  27794. },
  27795. ]
  27796. ))
  27797. //characters
  27798. function makeCharacters() {
  27799. const results = [];
  27800. characterMakers.forEach(character => {
  27801. results.push(character());
  27802. });
  27803. return results;
  27804. }